@salesforce/source-deploy-retrieve 5.3.0 → 5.4.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,13 @@
|
|
|
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.4.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.3.0...v5.4.0) (2021-11-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* new types OmniUiCard, OmniDataTransform ([3460dde](https://github.com/forcedotcom/source-deploy-retrieve/commit/3460dde71a274c23031f33ae8d408f755198f65d))
|
|
11
|
+
|
|
5
12
|
## [5.3.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.2.0...v5.3.0) (2021-11-03)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -2076,6 +2076,14 @@
|
|
|
2076
2076
|
"inFolder": false,
|
|
2077
2077
|
"strictDirectoryName": false
|
|
2078
2078
|
},
|
|
2079
|
+
"userprofilesearchscope": {
|
|
2080
|
+
"id": "userprofilesearchscope",
|
|
2081
|
+
"name": "UserProfileSearchScope",
|
|
2082
|
+
"suffix": "userProfileSearchScope",
|
|
2083
|
+
"directoryName": "userProfileSearchScopes",
|
|
2084
|
+
"inFolder": false,
|
|
2085
|
+
"strictDirectoryName": false
|
|
2086
|
+
},
|
|
2079
2087
|
"workskillrouting": {
|
|
2080
2088
|
"id": "workskillrouting",
|
|
2081
2089
|
"name": "WorkSkillRouting",
|
|
@@ -2647,6 +2655,22 @@
|
|
|
2647
2655
|
"directoryName": "svcCatalogItems",
|
|
2648
2656
|
"inFolder": false,
|
|
2649
2657
|
"strictDirectoryName": false
|
|
2658
|
+
},
|
|
2659
|
+
"omniuicard": {
|
|
2660
|
+
"id": "omniuicard",
|
|
2661
|
+
"name": "OmniUiCard",
|
|
2662
|
+
"suffix": "ouc",
|
|
2663
|
+
"directoryName": "omniUiCard",
|
|
2664
|
+
"inFolder": false,
|
|
2665
|
+
"strictDirectoryName": false
|
|
2666
|
+
},
|
|
2667
|
+
"omnidatatransform": {
|
|
2668
|
+
"id": "omnidatatransform",
|
|
2669
|
+
"name": "OmniDataTransform",
|
|
2670
|
+
"suffix": "rpt",
|
|
2671
|
+
"directoryName": "omniDataTransforms",
|
|
2672
|
+
"inFolder": false,
|
|
2673
|
+
"strictDirectoryName": false
|
|
2650
2674
|
}
|
|
2651
2675
|
},
|
|
2652
2676
|
"suffixes": {
|
|
@@ -2874,6 +2898,7 @@
|
|
|
2874
2898
|
"audience": "audience",
|
|
2875
2899
|
"cmsConnectSource": "cmsconnectsource",
|
|
2876
2900
|
"platformEventSubscriberConfig": "platformeventsubscriberconfig",
|
|
2901
|
+
"userProfileSearchScope": "userprofilesearchscope",
|
|
2877
2902
|
"workSkillRouting": "workskillrouting",
|
|
2878
2903
|
"timeSheetTemplate": "timesheettemplate",
|
|
2879
2904
|
"accountRelationshipShareRule": "accountrelationshipsharerule",
|
|
@@ -2938,7 +2963,9 @@
|
|
|
2938
2963
|
"permissionSetLicenseDefinition": "permissionsetlicensedefinition",
|
|
2939
2964
|
"category": "svccatalogcategory",
|
|
2940
2965
|
"fulfillmentFlow": "svccatalogfulfillmentflow",
|
|
2941
|
-
"catalogItem": "svccatalogitemdef"
|
|
2966
|
+
"catalogItem": "svccatalogitemdef",
|
|
2967
|
+
"ouc": "omniuicard",
|
|
2968
|
+
"rpt": "omnidatatransform"
|
|
2942
2969
|
},
|
|
2943
2970
|
"strictDirectoryNames": {
|
|
2944
2971
|
"experiences": "experiencebundle",
|
|
@@ -2079,6 +2079,14 @@ export declare const registry: Readonly<{
|
|
|
2079
2079
|
inFolder: boolean;
|
|
2080
2080
|
strictDirectoryName: boolean;
|
|
2081
2081
|
};
|
|
2082
|
+
userprofilesearchscope: {
|
|
2083
|
+
id: string;
|
|
2084
|
+
name: string;
|
|
2085
|
+
suffix: string;
|
|
2086
|
+
directoryName: string;
|
|
2087
|
+
inFolder: boolean;
|
|
2088
|
+
strictDirectoryName: boolean;
|
|
2089
|
+
};
|
|
2082
2090
|
workskillrouting: {
|
|
2083
2091
|
id: string;
|
|
2084
2092
|
name: string;
|
|
@@ -2651,6 +2659,22 @@ export declare const registry: Readonly<{
|
|
|
2651
2659
|
inFolder: boolean;
|
|
2652
2660
|
strictDirectoryName: boolean;
|
|
2653
2661
|
};
|
|
2662
|
+
omniuicard: {
|
|
2663
|
+
id: string;
|
|
2664
|
+
name: string;
|
|
2665
|
+
suffix: string;
|
|
2666
|
+
directoryName: string;
|
|
2667
|
+
inFolder: boolean;
|
|
2668
|
+
strictDirectoryName: boolean;
|
|
2669
|
+
};
|
|
2670
|
+
omnidatatransform: {
|
|
2671
|
+
id: string;
|
|
2672
|
+
name: string;
|
|
2673
|
+
suffix: string;
|
|
2674
|
+
directoryName: string;
|
|
2675
|
+
inFolder: boolean;
|
|
2676
|
+
strictDirectoryName: boolean;
|
|
2677
|
+
};
|
|
2654
2678
|
};
|
|
2655
2679
|
suffixes: {
|
|
2656
2680
|
ai: string;
|
|
@@ -2877,6 +2901,7 @@ export declare const registry: Readonly<{
|
|
|
2877
2901
|
audience: string;
|
|
2878
2902
|
cmsConnectSource: string;
|
|
2879
2903
|
platformEventSubscriberConfig: string;
|
|
2904
|
+
userProfileSearchScope: string;
|
|
2880
2905
|
workSkillRouting: string;
|
|
2881
2906
|
timeSheetTemplate: string;
|
|
2882
2907
|
accountRelationshipShareRule: string;
|
|
@@ -2942,6 +2967,8 @@ export declare const registry: Readonly<{
|
|
|
2942
2967
|
category: string;
|
|
2943
2968
|
fulfillmentFlow: string;
|
|
2944
2969
|
catalogItem: string;
|
|
2970
|
+
ouc: string;
|
|
2971
|
+
rpt: string;
|
|
2945
2972
|
};
|
|
2946
2973
|
strictDirectoryNames: {
|
|
2947
2974
|
experiences: string;
|