@salesforce/source-deploy-retrieve 5.6.4 → 5.7.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.7.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.6.4...v5.7.0) (2021-11-24)
6
+
7
+
8
+ ### Features
9
+
10
+ * add metadata types StnryAssetEnvSrcCnfg, BldgEnrgyIntensityCnfg, VehicleAssetEmssnSrcCnfg ([#508](https://github.com/forcedotcom/source-deploy-retrieve/issues/508)) ([e3dc3ef](https://github.com/forcedotcom/source-deploy-retrieve/commit/e3dc3ef51d8fba19ec9dfda43ca41ddaf26c9bc0))
11
+
5
12
  ### [5.6.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.6.3...v5.6.4) (2021-11-22)
6
13
 
7
14
 
@@ -2724,6 +2724,30 @@
2724
2724
  "directoryName": "omniIntegrationProcedures",
2725
2725
  "inFolder": false,
2726
2726
  "strictDirectoryName": false
2727
+ },
2728
+ "bldgenrgyintensitycnfg": {
2729
+ "id": "bldgenrgyintensitycnfg",
2730
+ "name": "BldgEnrgyIntensityCnfg",
2731
+ "suffix": "buildingEnergyIntensityConfig",
2732
+ "directoryName": "buildingEnergyIntensityConfigs",
2733
+ "inFolder": false,
2734
+ "strictDirectoryName": false
2735
+ },
2736
+ "stnryassetenvsrccnfg": {
2737
+ "id": "stnryassetenvsrccnfg",
2738
+ "name": "StnryAssetEnvSrcCnfg",
2739
+ "suffix": "stationaryAssetEnvSourceConfig",
2740
+ "directoryName": "stationaryAssetEnvSourceConfigs",
2741
+ "inFolder": false,
2742
+ "strictDirectoryName": false
2743
+ },
2744
+ "vehicleassetemssnsrccnfg": {
2745
+ "id": "vehicleassetemssnsrccnfg",
2746
+ "name": "VehicleAssetEmssnSrcCnfg",
2747
+ "suffix": "vehicleAssetEmssnSourceConfig",
2748
+ "directoryName": "vehicleAssetEmssnSourceConfigs",
2749
+ "inFolder": false,
2750
+ "strictDirectoryName": false
2727
2751
  }
2728
2752
  },
2729
2753
  "suffixes": {
@@ -3022,7 +3046,10 @@
3022
3046
  "rpt": "omnidatatransform",
3023
3047
  "mktDataTranField": "mktdatatranfield",
3024
3048
  "os": "omniscript",
3025
- "oip": "omniintegrationprocedure"
3049
+ "oip": "omniintegrationprocedure",
3050
+ "buildingEnergyIntensityConfig": "bldgenrgyintensitycnfg",
3051
+ "stationaryAssetEnvSourceConfig": "stnryassetenvsrccnfg",
3052
+ "vehicleAssetEmssnSourceConfig": "vehicleassetemssnsrccnfg"
3026
3053
  },
3027
3054
  "strictDirectoryNames": {
3028
3055
  "experiences": "experiencebundle",
@@ -2728,6 +2728,30 @@ export declare const registry: Readonly<{
2728
2728
  inFolder: boolean;
2729
2729
  strictDirectoryName: boolean;
2730
2730
  };
2731
+ bldgenrgyintensitycnfg: {
2732
+ id: string;
2733
+ name: string;
2734
+ suffix: string;
2735
+ directoryName: string;
2736
+ inFolder: boolean;
2737
+ strictDirectoryName: boolean;
2738
+ };
2739
+ stnryassetenvsrccnfg: {
2740
+ id: string;
2741
+ name: string;
2742
+ suffix: string;
2743
+ directoryName: string;
2744
+ inFolder: boolean;
2745
+ strictDirectoryName: boolean;
2746
+ };
2747
+ vehicleassetemssnsrccnfg: {
2748
+ id: string;
2749
+ name: string;
2750
+ suffix: string;
2751
+ directoryName: string;
2752
+ inFolder: boolean;
2753
+ strictDirectoryName: boolean;
2754
+ };
2731
2755
  };
2732
2756
  suffixes: {
2733
2757
  ai: string;
@@ -3026,6 +3050,9 @@ export declare const registry: Readonly<{
3026
3050
  mktDataTranField: string;
3027
3051
  os: string;
3028
3052
  oip: string;
3053
+ buildingEnergyIntensityConfig: string;
3054
+ stationaryAssetEnvSourceConfig: string;
3055
+ vehicleAssetEmssnSourceConfig: string;
3029
3056
  };
3030
3057
  strictDirectoryNames: {
3031
3058
  experiences: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/source-deploy-retrieve",
3
- "version": "5.6.4",
3
+ "version": "5.7.0",
4
4
  "description": "JavaScript library to run Salesforce metadata deploys and retrieves",
5
5
  "main": "lib/src/index.js",
6
6
  "author": "Salesforce",