@salesforce/source-deploy-retrieve 5.9.11 → 5.10.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.10.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.11...v5.10.0) (2022-02-17)
6
+
7
+ ### Features
8
+
9
+ - new UiViewDefinition metadata type ([#572](https://github.com/forcedotcom/source-deploy-retrieve/issues/572)) ([9b3e0ea](https://github.com/forcedotcom/source-deploy-retrieve/commit/9b3e0ead89e87b17263b61b734a8edb1c900fc01))
10
+
5
11
  ### [5.9.11](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.10...v5.9.11) (2022-02-17)
6
12
 
7
13
  ### [5.9.10](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.9...v5.9.10) (2022-02-15)
@@ -2770,6 +2770,17 @@
2770
2770
  "directoryName": "OmniInteractionConfig",
2771
2771
  "inFolder": false,
2772
2772
  "strictDirectoryName": false
2773
+ },
2774
+ "uiviewdefinition": {
2775
+ "id": "uiviewdefinition",
2776
+ "name": "UiViewDefinition",
2777
+ "suffix": "uiview",
2778
+ "directoryName": "uiviews",
2779
+ "inFolder": false,
2780
+ "strictDirectoryName": false,
2781
+ "strategies": {
2782
+ "adapter": "matchingContentFile"
2783
+ }
2773
2784
  }
2774
2785
  },
2775
2786
  "suffixes": {
@@ -3072,7 +3083,8 @@
3072
3083
  "buildingEnergyIntensityConfig": "bldgenrgyintensitycnfg",
3073
3084
  "stationaryAssetEnvSourceConfig": "stnryassetenvsrccnfg",
3074
3085
  "vehicleAssetEmssnSourceConfig": "vehicleassetemssnsrccnfg",
3075
- "omniInteractionConfig": "omniinteractionconfig"
3086
+ "omniInteractionConfig": "omniinteractionconfig",
3087
+ "uiview": "uiviewdefinition"
3076
3088
  },
3077
3089
  "strictDirectoryNames": {
3078
3090
  "experiences": "experiencebundle",
@@ -2774,6 +2774,17 @@ export declare const registry: Readonly<{
2774
2774
  inFolder: boolean;
2775
2775
  strictDirectoryName: boolean;
2776
2776
  };
2777
+ uiviewdefinition: {
2778
+ id: string;
2779
+ name: string;
2780
+ suffix: string;
2781
+ directoryName: string;
2782
+ inFolder: boolean;
2783
+ strictDirectoryName: boolean;
2784
+ strategies: {
2785
+ adapter: string;
2786
+ };
2787
+ };
2777
2788
  };
2778
2789
  suffixes: {
2779
2790
  ai: string;
@@ -3076,6 +3087,7 @@ export declare const registry: Readonly<{
3076
3087
  stationaryAssetEnvSourceConfig: string;
3077
3088
  vehicleAssetEmssnSourceConfig: string;
3078
3089
  omniInteractionConfig: string;
3090
+ uiview: string;
3079
3091
  };
3080
3092
  strictDirectoryNames: {
3081
3093
  experiences: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/source-deploy-retrieve",
3
- "version": "5.9.11",
3
+ "version": "5.10.0",
4
4
  "description": "JavaScript library to run Salesforce metadata deploys and retrieves",
5
5
  "main": "lib/src/index.js",
6
6
  "author": "Salesforce",