Skip to content

Commit

Permalink
feat: 2 new metadata types for Assessment
Browse files Browse the repository at this point in the history
  • Loading branch information
SumitSinghalSalesForce authored May 11, 2022
1 parent 17e9dd4 commit 1ac6eeb
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
6 changes: 3 additions & 3 deletions METADATA_SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This list compares metadata types found in Salesforce v55 with the [metadata reg

This repository is used by both the Salesforce CLIs and Salesforce's VSCode Extensions.

Currently, there are 456/491 supported metadata types.
Currently, there are 458/491 supported metadata types.
For status on any existing gaps, please search or file an issue in the [Salesforce CLI issues only repo](https://github.com/forcedotcom/cli/issues).
To contribute a new metadata type, please see the [Contributing Metadata Types to the Registry](./contributing/metadata.md)

Expand Down Expand Up @@ -49,8 +49,8 @@ To contribute a new metadata type, please see the [Contributing Metadata Types t
|AppointmentSchedulingPolicy|||
|ApprovalProcess|||
|ArchiveSettings|||
|AssessmentQuestion||Not supported, but support could be added|
|AssessmentQuestionSet||Not supported, but support could be added|
|AssessmentQuestion|||
|AssessmentQuestionSet|||
|AssignmentRules|||
|AssistantContextItem|||
|AssistantDefinition|||
Expand Down
22 changes: 20 additions & 2 deletions src/registry/metadataRegistry.json
Original file line number Diff line number Diff line change
Expand Up @@ -2985,6 +2985,22 @@
"directoryName": "OmniInteractionAccessConfig",
"inFolder": false,
"strictDirectoryName": false
},
"assessmentquestion": {
"id": "assessmentquestion",
"name": "AssessmentQuestion",
"suffix": "aq",
"directoryName": "AssessmentQuestions",
"inFolder": false,
"strictDirectoryName": false
},
"assessmentquestionset": {
"id": "assessmentquestionset",
"name": "AssessmentQuestionSet",
"suffix": "aqs",
"directoryName": "AssessmentQuestionSets",
"inFolder": false,
"strictDirectoryName": false
}
},
"suffixes": {
Expand Down Expand Up @@ -3313,7 +3329,9 @@
"explainabilityActionVersion": "explainabilityactionversion",
"advAcctForecastDimSource": "advacctforecastdimsource",
"careLimitType": "carelimittype",
"omniInteractionAccessConfig": "omniinteractionaccessconfig"
"omniInteractionAccessConfig": "omniinteractionaccessconfig",
"aq": "assessmentquestion",
"aqs": "assessmentquestionset"
},
"strictDirectoryNames": {
"experiences": "experiencebundle",
Expand Down Expand Up @@ -3374,4 +3392,4 @@
"mktdatatranfield": "mktdatatranobject"
},
"apiVersion": "53.0"
}
}

0 comments on commit 1ac6eeb

Please sign in to comment.