@salesforce/source-deploy-retrieve 6.8.5 → 6.9.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.
@@ -230,6 +230,14 @@
230
230
  "inFolder": false,
231
231
  "strictDirectoryName": false
232
232
  },
233
+ "externalcredential": {
234
+ "id": "externalcredential",
235
+ "name": "ExternalCredential",
236
+ "suffix": "externalCredential",
237
+ "directoryName": "externalCredentials",
238
+ "inFolder": false,
239
+ "strictDirectoryName": false
240
+ },
233
241
  "namedcredential": {
234
242
  "id": "namedcredential",
235
243
  "name": "NamedCredential",
@@ -3104,6 +3112,46 @@
3104
3112
  "directoryName": "SchedulingObjectives",
3105
3113
  "inFolder": false,
3106
3114
  "strictDirectoryName": false
3115
+ },
3116
+ "relationshipgraphdefinition": {
3117
+ "id": "relationshipgraphdefinition",
3118
+ "name": "RelationshipGraphDefinition",
3119
+ "suffix": "relationshipGraphDefinition",
3120
+ "directoryName": "relationshipGraphDefinitions",
3121
+ "inFolder": false,
3122
+ "strictDirectoryName": false
3123
+ },
3124
+ "callctragentfavtrfrdest": {
3125
+ "id": "callctragentfavtrfrdest",
3126
+ "name": "CallCtrAgentFavTrfrDest",
3127
+ "suffix": "callCtrAgentFavTrfrDest",
3128
+ "directoryName": "callCtrAgentFavTrfrDests",
3129
+ "inFolder": false,
3130
+ "strictDirectoryName": false
3131
+ },
3132
+ "marketsegmentdefinition": {
3133
+ "id": "marketsegmentdefinition",
3134
+ "name": "MarketSegmentDefinition",
3135
+ "suffix": "marketSegmentDefinition",
3136
+ "directoryName": "marketSegmentDefinitions",
3137
+ "inFolder": false,
3138
+ "strictDirectoryName": false
3139
+ },
3140
+ "mfgprogramtemplate": {
3141
+ "id": "mfgprogramtemplate",
3142
+ "name": "MfgProgramTemplate",
3143
+ "suffix": "mfgProgramTemplate",
3144
+ "directoryName": "MfgProgramTemplate",
3145
+ "inFolder": false,
3146
+ "strictDirectoryName": false
3147
+ },
3148
+ "streamingappdataconnector": {
3149
+ "id": "streamingappdataconnector",
3150
+ "name": "StreamingAppDataConnector",
3151
+ "suffix": "streamingAppDataConnector",
3152
+ "directoryName": "streamingAppDataConnectors",
3153
+ "inFolder": false,
3154
+ "strictDirectoryName": false
3107
3155
  }
3108
3156
  },
3109
3157
  "suffixes": {
@@ -3446,7 +3494,13 @@
3446
3494
  "digitalExperienceConfig": "digitalexperienceconfig",
3447
3495
  "forecastingFilter": "forecastingfilter",
3448
3496
  "forecastingFilterCondition": "forecastingfiltercondition",
3449
- "schedulingObjective": "schedulingobjective"
3497
+ "schedulingObjective": "schedulingobjective",
3498
+ "relationshipGraphDefinition": "relationshipgraphdefinition",
3499
+ "callCtrAgentFavTrfrDest": "callctragentfavtrfrdest",
3500
+ "externalCredential": "externalcredential",
3501
+ "marketSegmentDefinition": "marketsegmentdefinition",
3502
+ "mfgProgramTemplate": "mfgprogramtemplate",
3503
+ "streamingAppDataConnector": "streamingappdataconnector"
3450
3504
  },
3451
3505
  "strictDirectoryNames": {
3452
3506
  "experiences": "experiencebundle",
@@ -23,11 +23,19 @@ exports.features = [
23
23
  'HEALTHCLOUDHPIBETA',
24
24
  'MANAGETIMELINE',
25
25
  'HEALTHCLOUDBETA',
26
- 'PARDOTADVANCED',
27
26
  'EMBEDDEDSERVICEMESSAGING',
28
27
  'UNIFIEDHEALTHSCORING',
29
28
  'HEALTHCLOUDADDON',
30
29
  'EINSTEINDOCREADER',
30
+ 'ACCOUNTINGSUBLEDGERACCESS',
31
+ 'BOTBLOCKS',
32
+ 'INSURANCECALCULATIONUSER',
33
+ 'SCFUELTYPEPILOTFEATURE',
34
+ 'B2CEREPRICINGKILLSWITCH',
35
+ 'USERACCESSPOLICIESFORPILOTVISIBILITY',
36
+ 'BOTBLOCKS',
37
+ 'INDUSTRIESINTERACTIONCALCULATION',
38
+ 'PARDOTADVANCED', // org:create throws a C-9999 when this is not excluded
31
39
  ];
32
40
  exports.settings = [
33
41
  'botSettings', // have not successfully deployed this because of licensing errors when deploying settings
@@ -38,12 +46,26 @@ exports.metadataTypes = [
38
46
  // two children of GlobalValueSet
39
47
  'CustomValue',
40
48
  'StandardValue',
41
- // the following are not describable based on their features/settings, last checked 2/24/2022
49
+ // the following are not describable based on their features/settings, see git blame for last time checked
42
50
  'DiscoveryStory',
43
51
  'EmployeeDataSyncProfile',
44
52
  'RelatedRecordAssocCriteria',
45
53
  'ScoreRange',
46
54
  'WorkflowFlowAction',
55
+ // org spins up fine, but describe is empty
56
+ 'SustainabilityUom',
57
+ // the metadata coverage report seems to be missing a setting:
58
+ // A scratch org was created with username test-o87upqyaagax@example.com, but the settings failed to deploy due to: enableInsights
59
+ 'ReferencedDashboard',
60
+ // spins up fine with feature B2CLOYALTYMANAGEMENT, not in describe
61
+ 'ExpressionSetObjectAlias',
62
+ // requires no features, but not in describe
63
+ 'ExternalDataSrcDescriptor',
64
+ // spun up with COMMONPRM, not in describe
65
+ 'PortalDelegablePermissionSet',
66
+ // spun up with CUSTOMERDATAPLATFORM, not in describe
67
+ 'ExternalDataTranField',
68
+ 'ExternalDataTranObject',
47
69
  ];
48
70
  const hasUnsupportedFeatures = (type) => {
49
71
  if (!type.orgShapes?.developer) {
@@ -1 +1 @@
1
- {"version":3,"file":"nonSupportedTypes.js","sourceRoot":"","sources":["../../../src/registry/nonSupportedTypes.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAIH;;;;;KAKK;AACQ,QAAA,QAAQ,GAAG;IACtB,mEAAmE;IACnE,gBAAgB;IAChB,mBAAmB;IACnB,cAAc;IACd,8BAA8B;IAC9B,2BAA2B;IAC3B,oBAAoB;IACpB,gBAAgB;IAChB,iBAAiB;IACjB,gBAAgB;IAChB,0BAA0B;IAC1B,sBAAsB;IACtB,kBAAkB;IAClB,mBAAmB;CACpB,CAAC;AAEW,QAAA,QAAQ,GAAG;IACtB,aAAa,EAAE,0FAA0F;CAC1G,CAAC;AACW,QAAA,aAAa,GAAG;IAC3B,+CAA+C;IAC/C,eAAe;IACf,iCAAiC;IACjC,aAAa;IACb,eAAe;IAEf,6FAA6F;IAC7F,gBAAgB;IAChB,yBAAyB;IACzB,4BAA4B;IAC5B,YAAY;IACZ,oBAAoB;CACrB,CAAC;AAEK,MAAM,sBAAsB,GAAG,CAAC,IAAwB,EAAW,EAAE;IAC1E,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,SAAS,EAAE;QAC9B,OAAO,IAAI,CAAC;KACb;IAED,IACE,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,QAAQ,EAAE,MAAM;QACzC,gBAAQ,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,EAAE,SAAS,CAAC,QAAQ,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,EAChF;QACA,OAAO,IAAI,CAAC;KACb;IACD,OAAO,IAAI,CAAC,SAAS,EAAE,SAAS,CAAC,QAAQ,IAAI,gBAAQ,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,EAAE,SAAS,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC;AACvH,CAAC,CAAC;AAZW,QAAA,sBAAsB,0BAYjC"}
1
+ {"version":3,"file":"nonSupportedTypes.js","sourceRoot":"","sources":["../../../src/registry/nonSupportedTypes.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAIH;;;;;KAKK;AACQ,QAAA,QAAQ,GAAG;IACtB,mEAAmE;IACnE,gBAAgB;IAChB,mBAAmB;IACnB,cAAc;IACd,8BAA8B;IAC9B,2BAA2B;IAC3B,oBAAoB;IACpB,gBAAgB;IAChB,iBAAiB;IACjB,0BAA0B;IAC1B,sBAAsB;IACtB,kBAAkB;IAClB,mBAAmB;IACnB,2BAA2B;IAC3B,WAAW;IACX,0BAA0B;IAC1B,wBAAwB;IACxB,yBAAyB;IACzB,sCAAsC;IACtC,WAAW;IACX,kCAAkC;IAElC,gBAAgB,EAAE,uDAAuD;CAC1E,CAAC;AAEW,QAAA,QAAQ,GAAG;IACtB,aAAa,EAAE,0FAA0F;CAC1G,CAAC;AACW,QAAA,aAAa,GAAG;IAC3B,+CAA+C;IAC/C,eAAe;IACf,iCAAiC;IACjC,aAAa;IACb,eAAe;IAEf,0GAA0G;IAC1G,gBAAgB;IAChB,yBAAyB;IACzB,4BAA4B;IAC5B,YAAY;IACZ,oBAAoB;IAEpB,2CAA2C;IAC3C,mBAAmB;IAEnB,8DAA8D;IAC9D,kIAAkI;IAClI,qBAAqB;IAErB,mEAAmE;IACnE,0BAA0B;IAE1B,4CAA4C;IAC5C,2BAA2B;IAE3B,0CAA0C;IAC1C,8BAA8B;IAE9B,qDAAqD;IACrD,uBAAuB;IACvB,wBAAwB;CACzB,CAAC;AAEK,MAAM,sBAAsB,GAAG,CAAC,IAAwB,EAAW,EAAE;IAC1E,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,SAAS,EAAE;QAC9B,OAAO,IAAI,CAAC;KACb;IAED,IACE,IAAI,CAAC,SAAS,CAAC,SAAS,CAAC,QAAQ,EAAE,MAAM;QACzC,gBAAQ,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,EAAE,SAAS,CAAC,QAAQ,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,EAChF;QACA,OAAO,IAAI,CAAC;KACb;IACD,OAAO,IAAI,CAAC,SAAS,EAAE,SAAS,CAAC,QAAQ,IAAI,gBAAQ,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,EAAE,SAAS,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC;AACvH,CAAC,CAAC;AAZW,QAAA,sBAAsB,0BAYjC"}
@@ -233,6 +233,14 @@ export declare const registry: Readonly<{
233
233
  inFolder: boolean;
234
234
  strictDirectoryName: boolean;
235
235
  };
236
+ externalcredential: {
237
+ id: string;
238
+ name: string;
239
+ suffix: string;
240
+ directoryName: string;
241
+ inFolder: boolean;
242
+ strictDirectoryName: boolean;
243
+ };
236
244
  namedcredential: {
237
245
  id: string;
238
246
  name: string;
@@ -3108,6 +3116,46 @@ export declare const registry: Readonly<{
3108
3116
  inFolder: boolean;
3109
3117
  strictDirectoryName: boolean;
3110
3118
  };
3119
+ relationshipgraphdefinition: {
3120
+ id: string;
3121
+ name: string;
3122
+ suffix: string;
3123
+ directoryName: string;
3124
+ inFolder: boolean;
3125
+ strictDirectoryName: boolean;
3126
+ };
3127
+ callctragentfavtrfrdest: {
3128
+ id: string;
3129
+ name: string;
3130
+ suffix: string;
3131
+ directoryName: string;
3132
+ inFolder: boolean;
3133
+ strictDirectoryName: boolean;
3134
+ };
3135
+ marketsegmentdefinition: {
3136
+ id: string;
3137
+ name: string;
3138
+ suffix: string;
3139
+ directoryName: string;
3140
+ inFolder: boolean;
3141
+ strictDirectoryName: boolean;
3142
+ };
3143
+ mfgprogramtemplate: {
3144
+ id: string;
3145
+ name: string;
3146
+ suffix: string;
3147
+ directoryName: string;
3148
+ inFolder: boolean;
3149
+ strictDirectoryName: boolean;
3150
+ };
3151
+ streamingappdataconnector: {
3152
+ id: string;
3153
+ name: string;
3154
+ suffix: string;
3155
+ directoryName: string;
3156
+ inFolder: boolean;
3157
+ strictDirectoryName: boolean;
3158
+ };
3111
3159
  };
3112
3160
  suffixes: {
3113
3161
  serviceAISetupDescription: string;
@@ -3450,6 +3498,12 @@ export declare const registry: Readonly<{
3450
3498
  forecastingFilter: string;
3451
3499
  forecastingFilterCondition: string;
3452
3500
  schedulingObjective: string;
3501
+ relationshipGraphDefinition: string;
3502
+ callCtrAgentFavTrfrDest: string;
3503
+ externalCredential: string;
3504
+ marketSegmentDefinition: string;
3505
+ mfgProgramTemplate: string;
3506
+ streamingAppDataConnector: string;
3453
3507
  };
3454
3508
  strictDirectoryNames: {
3455
3509
  experiences: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/source-deploy-retrieve",
3
- "version": "6.8.5",
3
+ "version": "6.9.0",
4
4
  "description": "JavaScript library to run Salesforce metadata deploys and retrieves",
5
5
  "main": "lib/src/index.js",
6
6
  "author": "Salesforce",