@salesforce/source-deploy-retrieve 5.12.14 → 5.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [5.13.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.14...v5.13.0) (2022-05-11)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- 2 new metadata types for Assessment ([1ac6eeb](https://github.com/forcedotcom/source-deploy-retrieve/commit/1ac6eebd6e13b954b41a457a2a2ff5e4eca85a1e))
|
|
10
|
+
|
|
5
11
|
### [5.12.14](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.13...v5.12.14) (2022-05-09)
|
|
6
12
|
|
|
7
13
|
### [5.12.13](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.12...v5.12.13) (2022-05-05)
|
|
@@ -2985,6 +2985,22 @@
|
|
|
2985
2985
|
"directoryName": "OmniInteractionAccessConfig",
|
|
2986
2986
|
"inFolder": false,
|
|
2987
2987
|
"strictDirectoryName": false
|
|
2988
|
+
},
|
|
2989
|
+
"assessmentquestion": {
|
|
2990
|
+
"id": "assessmentquestion",
|
|
2991
|
+
"name": "AssessmentQuestion",
|
|
2992
|
+
"suffix": "aq",
|
|
2993
|
+
"directoryName": "AssessmentQuestions",
|
|
2994
|
+
"inFolder": false,
|
|
2995
|
+
"strictDirectoryName": false
|
|
2996
|
+
},
|
|
2997
|
+
"assessmentquestionset": {
|
|
2998
|
+
"id": "assessmentquestionset",
|
|
2999
|
+
"name": "AssessmentQuestionSet",
|
|
3000
|
+
"suffix": "aqs",
|
|
3001
|
+
"directoryName": "AssessmentQuestionSets",
|
|
3002
|
+
"inFolder": false,
|
|
3003
|
+
"strictDirectoryName": false
|
|
2988
3004
|
}
|
|
2989
3005
|
},
|
|
2990
3006
|
"suffixes": {
|
|
@@ -3313,7 +3329,9 @@
|
|
|
3313
3329
|
"explainabilityActionVersion": "explainabilityactionversion",
|
|
3314
3330
|
"advAcctForecastDimSource": "advacctforecastdimsource",
|
|
3315
3331
|
"careLimitType": "carelimittype",
|
|
3316
|
-
"omniInteractionAccessConfig": "omniinteractionaccessconfig"
|
|
3332
|
+
"omniInteractionAccessConfig": "omniinteractionaccessconfig",
|
|
3333
|
+
"aq": "assessmentquestion",
|
|
3334
|
+
"aqs": "assessmentquestionset"
|
|
3317
3335
|
},
|
|
3318
3336
|
"strictDirectoryNames": {
|
|
3319
3337
|
"experiences": "experiencebundle",
|
|
@@ -2989,6 +2989,22 @@ export declare const registry: Readonly<{
|
|
|
2989
2989
|
inFolder: boolean;
|
|
2990
2990
|
strictDirectoryName: boolean;
|
|
2991
2991
|
};
|
|
2992
|
+
assessmentquestion: {
|
|
2993
|
+
id: string;
|
|
2994
|
+
name: string;
|
|
2995
|
+
suffix: string;
|
|
2996
|
+
directoryName: string;
|
|
2997
|
+
inFolder: boolean;
|
|
2998
|
+
strictDirectoryName: boolean;
|
|
2999
|
+
};
|
|
3000
|
+
assessmentquestionset: {
|
|
3001
|
+
id: string;
|
|
3002
|
+
name: string;
|
|
3003
|
+
suffix: string;
|
|
3004
|
+
directoryName: string;
|
|
3005
|
+
inFolder: boolean;
|
|
3006
|
+
strictDirectoryName: boolean;
|
|
3007
|
+
};
|
|
2992
3008
|
};
|
|
2993
3009
|
suffixes: {
|
|
2994
3010
|
ai: string;
|
|
@@ -3317,6 +3333,8 @@ export declare const registry: Readonly<{
|
|
|
3317
3333
|
advAcctForecastDimSource: string;
|
|
3318
3334
|
careLimitType: string;
|
|
3319
3335
|
omniInteractionAccessConfig: string;
|
|
3336
|
+
aq: string;
|
|
3337
|
+
aqs: string;
|
|
3320
3338
|
};
|
|
3321
3339
|
strictDirectoryNames: {
|
|
3322
3340
|
experiences: string;
|
package/package.json
CHANGED