File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -539,11 +539,16 @@ export class RemoteSourceTrackingService extends ConfigFile<RemoteSourceTracking
539
539
] . includes ( fileResponse . type ) &&
540
540
// don't wait for standard fields on standard objects
541
541
! ( fileResponse . type === 'CustomField' && ! fileResponse . filePath ?. includes ( '__c' ) ) &&
542
+ // deleted fields
543
+ ! ( fileResponse . type === 'CustomField' && ! fileResponse . filePath ?. includes ( '_del__c' ) ) &&
542
544
// they're settings to mdapi, and FooSettings in sourceMembers
543
545
! fileResponse . type . includes ( 'Settings' ) &&
544
546
// mdapi encodes these, sourceMembers don't have encoding
545
547
! (
546
- ( fileResponse . type === 'Layout' || fileResponse . type === 'BusinessProcess' ) &&
548
+ ( fileResponse . type === 'Layout' ||
549
+ fileResponse . type === 'BusinessProcess' ||
550
+ fileResponse . type === 'Profile' ||
551
+ fileResponse . type === 'HomePageLayout' ) &&
547
552
fileResponse . filePath ?. includes ( '%' )
548
553
) &&
549
554
// namespaced labels and CMDT don't resolve correctly
You can’t perform that action at this time.
0 commit comments