@salesforce/source-deploy-retrieve 5.14.0 → 5.15.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.15.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.14.0...v5.15.0) (2022-05-12)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- **metadata registry:** adding BotTemplate to metadata registry ([#616](https://github.com/forcedotcom/source-deploy-retrieve/issues/616)) ([c1da4da](https://github.com/forcedotcom/source-deploy-retrieve/commit/c1da4dadc2cd268871b4f0933f431031159d4bf8))
|
|
10
|
+
|
|
5
11
|
## [5.14.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.13.1...v5.14.0) (2022-05-11)
|
|
6
12
|
|
|
7
13
|
### Features
|
|
@@ -1837,6 +1837,14 @@
|
|
|
1837
1837
|
"decomposition": "topLevel"
|
|
1838
1838
|
}
|
|
1839
1839
|
},
|
|
1840
|
+
"bottemplate": {
|
|
1841
|
+
"id": "bottemplate",
|
|
1842
|
+
"name": "BotTemplate",
|
|
1843
|
+
"suffix": "botTemplate",
|
|
1844
|
+
"directoryName": "botTemplates",
|
|
1845
|
+
"inFolder": false,
|
|
1846
|
+
"strictDirectoryName": true
|
|
1847
|
+
},
|
|
1840
1848
|
"animationrule": {
|
|
1841
1849
|
"id": "animationrule",
|
|
1842
1850
|
"name": "AnimationRule",
|
|
@@ -3213,6 +3221,7 @@
|
|
|
3213
3221
|
"prompt": "prompt",
|
|
3214
3222
|
"mlDomain": "mldomain",
|
|
3215
3223
|
"bot": "bot",
|
|
3224
|
+
"botTemplate": "bottemplate",
|
|
3216
3225
|
"botVersion": "botversion",
|
|
3217
3226
|
"animationRule": "animationrule",
|
|
3218
3227
|
"deployment": "recordactiondeployment",
|
|
@@ -3353,6 +3362,7 @@
|
|
|
3353
3362
|
"waveTemplates": "wavetemplatebundle",
|
|
3354
3363
|
"objects": "customobject",
|
|
3355
3364
|
"bots": "bot",
|
|
3365
|
+
"botTemplates": "bottemplate",
|
|
3356
3366
|
"objectTranslations": "customobjecttranslation",
|
|
3357
3367
|
"staticresources": "staticresource",
|
|
3358
3368
|
"sites": "customsite",
|
|
@@ -1840,6 +1840,14 @@ export declare const registry: Readonly<{
|
|
|
1840
1840
|
decomposition: string;
|
|
1841
1841
|
};
|
|
1842
1842
|
};
|
|
1843
|
+
bottemplate: {
|
|
1844
|
+
id: string;
|
|
1845
|
+
name: string;
|
|
1846
|
+
suffix: string;
|
|
1847
|
+
directoryName: string;
|
|
1848
|
+
inFolder: boolean;
|
|
1849
|
+
strictDirectoryName: boolean;
|
|
1850
|
+
};
|
|
1843
1851
|
animationrule: {
|
|
1844
1852
|
id: string;
|
|
1845
1853
|
name: string;
|
|
@@ -3216,6 +3224,7 @@ export declare const registry: Readonly<{
|
|
|
3216
3224
|
prompt: string;
|
|
3217
3225
|
mlDomain: string;
|
|
3218
3226
|
bot: string;
|
|
3227
|
+
botTemplate: string;
|
|
3219
3228
|
botVersion: string;
|
|
3220
3229
|
animationRule: string;
|
|
3221
3230
|
deployment: string;
|
|
@@ -3356,6 +3365,7 @@ export declare const registry: Readonly<{
|
|
|
3356
3365
|
waveTemplates: string;
|
|
3357
3366
|
objects: string;
|
|
3358
3367
|
bots: string;
|
|
3368
|
+
botTemplates: string;
|
|
3359
3369
|
objectTranslations: string;
|
|
3360
3370
|
staticresources: string;
|
|
3361
3371
|
sites: string;
|
package/package.json
CHANGED