@salesforce/source-deploy-retrieve 5.6.0 → 5.6.1
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,8 @@
|
|
|
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.6.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.6.0...v5.6.1) (2021-11-17)
|
|
6
|
+
|
|
5
7
|
## [5.6.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.5.0...v5.6.0) (2021-11-16)
|
|
6
8
|
|
|
7
9
|
|
|
@@ -2384,6 +2384,13 @@
|
|
|
2384
2384
|
"directoryName": "benefitActions",
|
|
2385
2385
|
"strictDirectoryName": false
|
|
2386
2386
|
},
|
|
2387
|
+
"loyaltyprogramsetup": {
|
|
2388
|
+
"id": "loyaltyprogramsetup",
|
|
2389
|
+
"name": "LoyaltyProgramSetup",
|
|
2390
|
+
"suffix": "loyaltyProgramSetup",
|
|
2391
|
+
"directoryName": "loyaltyProgramSetups",
|
|
2392
|
+
"strictDirectoryName": false
|
|
2393
|
+
},
|
|
2387
2394
|
"channelobjectlinkingrule": {
|
|
2388
2395
|
"id": "channelobjectlinkingrule",
|
|
2389
2396
|
"name": "ChannelObjectLinkingRule",
|
|
@@ -2671,6 +2678,22 @@
|
|
|
2671
2678
|
"directoryName": "omniDataTransforms",
|
|
2672
2679
|
"inFolder": false,
|
|
2673
2680
|
"strictDirectoryName": false
|
|
2681
|
+
},
|
|
2682
|
+
"omniscript": {
|
|
2683
|
+
"id": "omniscript",
|
|
2684
|
+
"name": "OmniScript",
|
|
2685
|
+
"suffix": "os",
|
|
2686
|
+
"directoryName": "omniScripts",
|
|
2687
|
+
"inFolder": false,
|
|
2688
|
+
"strictDirectoryName": false
|
|
2689
|
+
},
|
|
2690
|
+
"omniintegrationprocedure": {
|
|
2691
|
+
"id": "omniintegrationprocedure",
|
|
2692
|
+
"name": "OmniIntegrationProcedure",
|
|
2693
|
+
"suffix": "oip",
|
|
2694
|
+
"directoryName": "omniIntegrationProcedures",
|
|
2695
|
+
"inFolder": false,
|
|
2696
|
+
"strictDirectoryName": false
|
|
2674
2697
|
}
|
|
2675
2698
|
},
|
|
2676
2699
|
"suffixes": {
|
|
@@ -2702,6 +2725,7 @@
|
|
|
2702
2725
|
"fieldSrcTrgtRelationship": "fieldsrctrgtrelationship",
|
|
2703
2726
|
"objectSourceTargetMap": "objectsourcetargetmap",
|
|
2704
2727
|
"benefitAction": "benefitaction",
|
|
2728
|
+
"loyaltyProgramSetup": "loyaltyprogramsetup",
|
|
2705
2729
|
"installedPackage": "installedpackage",
|
|
2706
2730
|
"labels": "customlabels",
|
|
2707
2731
|
"navigationMenu": "navigationmenu",
|
|
@@ -2965,7 +2989,9 @@
|
|
|
2965
2989
|
"fulfillmentFlow": "svccatalogfulfillmentflow",
|
|
2966
2990
|
"catalogItem": "svccatalogitemdef",
|
|
2967
2991
|
"ouc": "omniuicard",
|
|
2968
|
-
"rpt": "omnidatatransform"
|
|
2992
|
+
"rpt": "omnidatatransform",
|
|
2993
|
+
"os": "omniscript",
|
|
2994
|
+
"oip": "omniintegrationprocedure"
|
|
2969
2995
|
},
|
|
2970
2996
|
"strictDirectoryNames": {
|
|
2971
2997
|
"experiences": "experiencebundle",
|
|
@@ -2387,6 +2387,13 @@ export declare const registry: Readonly<{
|
|
|
2387
2387
|
directoryName: string;
|
|
2388
2388
|
strictDirectoryName: boolean;
|
|
2389
2389
|
};
|
|
2390
|
+
loyaltyprogramsetup: {
|
|
2391
|
+
id: string;
|
|
2392
|
+
name: string;
|
|
2393
|
+
suffix: string;
|
|
2394
|
+
directoryName: string;
|
|
2395
|
+
strictDirectoryName: boolean;
|
|
2396
|
+
};
|
|
2390
2397
|
channelobjectlinkingrule: {
|
|
2391
2398
|
id: string;
|
|
2392
2399
|
name: string;
|
|
@@ -2675,6 +2682,22 @@ export declare const registry: Readonly<{
|
|
|
2675
2682
|
inFolder: boolean;
|
|
2676
2683
|
strictDirectoryName: boolean;
|
|
2677
2684
|
};
|
|
2685
|
+
omniscript: {
|
|
2686
|
+
id: string;
|
|
2687
|
+
name: string;
|
|
2688
|
+
suffix: string;
|
|
2689
|
+
directoryName: string;
|
|
2690
|
+
inFolder: boolean;
|
|
2691
|
+
strictDirectoryName: boolean;
|
|
2692
|
+
};
|
|
2693
|
+
omniintegrationprocedure: {
|
|
2694
|
+
id: string;
|
|
2695
|
+
name: string;
|
|
2696
|
+
suffix: string;
|
|
2697
|
+
directoryName: string;
|
|
2698
|
+
inFolder: boolean;
|
|
2699
|
+
strictDirectoryName: boolean;
|
|
2700
|
+
};
|
|
2678
2701
|
};
|
|
2679
2702
|
suffixes: {
|
|
2680
2703
|
ai: string;
|
|
@@ -2705,6 +2728,7 @@ export declare const registry: Readonly<{
|
|
|
2705
2728
|
fieldSrcTrgtRelationship: string;
|
|
2706
2729
|
objectSourceTargetMap: string;
|
|
2707
2730
|
benefitAction: string;
|
|
2731
|
+
loyaltyProgramSetup: string;
|
|
2708
2732
|
installedPackage: string;
|
|
2709
2733
|
labels: string;
|
|
2710
2734
|
navigationMenu: string;
|
|
@@ -2969,6 +2993,8 @@ export declare const registry: Readonly<{
|
|
|
2969
2993
|
catalogItem: string;
|
|
2970
2994
|
ouc: string;
|
|
2971
2995
|
rpt: string;
|
|
2996
|
+
os: string;
|
|
2997
|
+
oip: string;
|
|
2972
2998
|
};
|
|
2973
2999
|
strictDirectoryNames: {
|
|
2974
3000
|
experiences: string;
|