chore(core): Add exemptions to fix intermittent type error on build (#16420)

This commit is contained in:
Iván Ovejero
2025-06-17 13:16:24 +02:00
committed by GitHub
parent 5caf7a2660
commit 9850a560b4
10 changed files with 12 additions and 0 deletions

View File

@@ -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 },