mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
chore(core): Add exemptions to fix intermittent type error on build (#16420)
This commit is contained in:
@@ -562,6 +562,7 @@ export class SourceControlImportService {
|
||||
newSharedCredential.projectId = remoteOwnerProject?.id ?? personalProject.id;
|
||||
newSharedCredential.role = 'credential:owner';
|
||||
|
||||
// @ts-ignore CAT-957
|
||||
await this.sharedCredentialsRepository.upsert({ ...newSharedCredential }, [
|
||||
'credentialsId',
|
||||
'projectId',
|
||||
@@ -616,6 +617,7 @@ export class SourceControlImportService {
|
||||
);
|
||||
}
|
||||
|
||||
// @ts-ignore CAT-957
|
||||
const tagCopy = this.tagRepository.create(tag);
|
||||
await this.tagRepository.upsert(tagCopy, {
|
||||
skipUpdateIfNoValuesChanged: true,
|
||||
@@ -672,6 +674,7 @@ export class SourceControlImportService {
|
||||
},
|
||||
});
|
||||
|
||||
// @ts-ignore CAT-957
|
||||
await this.folderRepository.upsert(folderCopy, {
|
||||
skipUpdateIfNoValuesChanged: true,
|
||||
conflictPaths: { id: true },
|
||||
|
||||
Reference in New Issue
Block a user