From 031c8f3b101ef85140460b9dd8b79862abb27ff2 Mon Sep 17 00:00:00 2001 From: mshanemc Date: Mon, 6 May 2024 09:37:51 -0500 Subject: [PATCH] feat: new mdtypes --- src/registry/metadataRegistry.json | 20 +++++++++++++++++++- src/registry/nonSupportedTypes.ts | 8 +++++++- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/src/registry/metadataRegistry.json b/src/registry/metadataRegistry.json index 6903ecd09e..f9888b6445 100644 --- a/src/registry/metadataRegistry.json +++ b/src/registry/metadataRegistry.json @@ -493,7 +493,9 @@ "workflowTask": "workflowtask", "xmd": "wavexmd", "xml": "emailservicesfunction", - "xorghub": "xorghub" + "xorghub": "xorghub", + "RetrievalSummaryDefinition": "retrievalsummarydefinition", + "recordAlertTemplate": "recordalerttemplate" }, "types": { "accesscontrolpolicy": { @@ -4384,6 +4386,22 @@ "inFolder": false, "name": "XOrgHub", "suffix": "xorghub" + }, + "retrievalsummarydefinition": { + "id": "retrievalsummarydefinition", + "name": "RetrievalSummaryDefinition", + "suffix": "RetrievalSummaryDefinition", + "directoryName": "RetrievalSummaryDefinitions", + "inFolder": false, + "strictDirectoryName": false + }, + "recordalerttemplate": { + "id": "recordalerttemplate", + "name": "RecordAlertTemplate", + "suffix": "recordAlertTemplate", + "directoryName": "recordAlertTemplates", + "inFolder": false, + "strictDirectoryName": false } } } diff --git a/src/registry/nonSupportedTypes.ts b/src/registry/nonSupportedTypes.ts index 5d0d89aba4..94ae10a23f 100644 --- a/src/registry/nonSupportedTypes.ts +++ b/src/registry/nonSupportedTypes.ts @@ -36,6 +36,7 @@ export const features = [ 'FUNDRAISING', 'PARDOTADVANCED', // org:create throws a C-9999 when this is not excluded 'EXTERNALCONNECTIVITY', // for type ExternalAuthIdentityProvider. might work if it were added to a dev hub + 'COPILOT', // responds with [Error] EinsteinCopilot : There was an error enabling or disabling a setting \n' ]; export const settings = [ @@ -79,7 +80,12 @@ export const metadataTypes = [ // spun up org with ASSOCIATIONENGINE, not in describe 'RecAlrtDataSrcExpSetDef', - 'RecordAlertTemplate', + + // spun up org with EDUCATIONCLOUD:1, not in describe + 'LearningAchievementConfig', + + // spun up org with CORECPQ, not in describe + 'DocumentTemplate', ]; export const hasUnsupportedFeatures = (type: CoverageObjectType): boolean => {