sf-decomposer 6.38.4 → 6.39.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
@@ -5,6 +5,20 @@
5
5
 
6
6
  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.
7
7
 
8
+ ## [6.39.0](https://github.com/mcarvin8/sf-decomposer/compare/v6.38.5...v6.39.0) (2026-07-14)
9
+
10
+
11
+ ### Features
12
+
13
+ * **metadata:** refresh SDR registry to 12.37.2 ([25495b1](https://github.com/mcarvin8/sf-decomposer/commit/25495b1cdbdf66355b0a691acda9a9ad48073814))
14
+
15
+ ## [6.38.5](https://github.com/mcarvin8/sf-decomposer/compare/v6.38.4...v6.38.5) (2026-07-13)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **metadata:** add configName unique id for genComputingSummaryDefAccess ([#536](https://github.com/mcarvin8/sf-decomposer/issues/536)) ([d5b8f6d](https://github.com/mcarvin8/sf-decomposer/commit/d5b8f6d6e0d426781358d01fdce0d284c5610a4e))
21
+
8
22
  ## [6.38.4](https://github.com/mcarvin8/sf-decomposer/compare/v6.38.3...v6.38.4) (2026-07-11)
9
23
 
10
24
 
@@ -1,80 +1,80 @@
1
1
  declare const _default: {
2
- profile: {
2
+ app: {
3
3
  uniqueIdElements: string[];
4
4
  };
5
- permissionset: {
5
+ approvalProcess: {
6
6
  uniqueIdElements: string[];
7
7
  };
8
- flow: {
8
+ bot: {
9
9
  uniqueIdElements: string[];
10
10
  };
11
- globalValueSetTranslation: {
11
+ duplicateRule: {
12
12
  uniqueIdElements: string[];
13
13
  };
14
- standardValueSetTranslation: {
14
+ entitlementProcess: {
15
15
  uniqueIdElements: string[];
16
16
  };
17
- bot: {
17
+ flow: {
18
18
  uniqueIdElements: string[];
19
19
  };
20
- marketingappextension: {
20
+ genAiPlugin: {
21
21
  uniqueIdElements: string[];
22
22
  };
23
- loyaltyProgramSetup: {
23
+ genAiPromptTemplate: {
24
24
  uniqueIdElements: string[];
25
25
  };
26
- entitlementProcess: {
26
+ globalValueSetTranslation: {
27
27
  uniqueIdElements: string[];
28
28
  };
29
- approvalProcess: {
29
+ liveChatAgentConfig: {
30
30
  uniqueIdElements: string[];
31
31
  };
32
- quickAction: {
32
+ liveChatButton: {
33
33
  uniqueIdElements: string[];
34
34
  };
35
- md: {
35
+ loyaltyProgramSetup: {
36
36
  uniqueIdElements: string[];
37
37
  };
38
- pathAssistant: {
38
+ marketingappextension: {
39
39
  uniqueIdElements: string[];
40
40
  };
41
- omniSupervisorConfig: {
41
+ md: {
42
42
  uniqueIdElements: string[];
43
43
  };
44
- genAiPromptTemplate: {
44
+ mlDomain: {
45
45
  uniqueIdElements: string[];
46
46
  };
47
- mlDomain: {
47
+ mutingpermissionset: {
48
48
  uniqueIdElements: string[];
49
49
  };
50
- liveChatAgentConfig: {
50
+ omniSupervisorConfig: {
51
51
  uniqueIdElements: string[];
52
52
  };
53
- liveChatButton: {
53
+ pathAssistant: {
54
54
  uniqueIdElements: string[];
55
55
  };
56
- duplicateRule: {
56
+ permissionset: {
57
57
  uniqueIdElements: string[];
58
58
  };
59
- queue: {
59
+ profile: {
60
60
  uniqueIdElements: string[];
61
61
  };
62
- reportType: {
62
+ queue: {
63
63
  uniqueIdElements: string[];
64
64
  };
65
- serviceChannel: {
65
+ quickAction: {
66
66
  uniqueIdElements: string[];
67
67
  };
68
- genAiPlugin: {
68
+ recordType: {
69
69
  uniqueIdElements: string[];
70
70
  };
71
- app: {
71
+ reportType: {
72
72
  uniqueIdElements: string[];
73
73
  };
74
- recordType: {
74
+ serviceChannel: {
75
75
  uniqueIdElements: string[];
76
76
  };
77
- mutingpermissionset: {
77
+ standardValueSetTranslation: {
78
78
  uniqueIdElements: string[];
79
79
  };
80
80
  }[];
@@ -1,57 +1,64 @@
1
+ // Unique ID elements for repeating child elements of metadata types.
2
+ // These are used to generate stable, human-readable filenames for shards of repeating elements.
3
+ // The default behavior is to use the `<fullName>` or `<name>` of the child element, but some metadata types have repeating children that do not carry a unique name.
4
+ // In those cases, we can specify a different field (or compound of fields) to use as the unique ID.
1
5
  export default [
2
6
  {
3
- profile: {
4
- // `<profileActionOverrides>` (API v37-44, deprecated but still present in
5
- // legacy orgs) has the same compound natural key problem as
6
- // CustomApplication's `<profileActionOverrides>`/`<actionOverrides>`
7
- // (see `app` below): a single field like `<actionName>` collides for
8
- // every sibling sharing `actionName>view</actionName>`. Compound keys
9
- // join resolved values with `__` for a stable, collision-free filename.
7
+ app: {
8
+ // CustomApplication's `<profileActionOverrides>` and `<actionOverrides>`
9
+ // have a *compound* natural unique key: any single field (e.g. just
10
+ // `<actionName>`) collides for hundreds of siblings sharing
11
+ // `<actionName>View</actionName>`, silently merging on disassembly.
12
+ // Compound keys (config-disassembler >= 0.4.5) join the resolved values
13
+ // with `__` to form a stable, readable, collision-free filename.
10
14
  //
11
15
  // Fallback chain, widest first:
12
- // 1. actionName+pageOrSobjectType+formFactor+recordType
13
- // 2. actionName+pageOrSobjectType+formFactor
14
- // Items missing `pageOrSobjectType` or `formFactor` fall through to the
15
- // SHA-256 outer-element hash, which is correct since we can't safely
16
- // name them without those keys.
16
+ // 1. profileActionOverrides with recordType
17
+ // 2. profileActionOverrides without recordType
18
+ // 3. actionOverrides with recordType (no profile)
19
+ // 4. actionOverrides without recordType (no profile)
20
+ // Items missing `pageOrSobjectType` or `formFactor` (very rare) fall
21
+ // through to the SHA-256 outer-element hash, which is correct since
22
+ // we can't safely name them without those keys.
17
23
  uniqueIdElements: [
24
+ 'actionName+pageOrSobjectType+formFactor+profile+recordType',
25
+ 'actionName+pageOrSobjectType+formFactor+profile',
18
26
  'actionName+pageOrSobjectType+formFactor+recordType',
19
27
  'actionName+pageOrSobjectType+formFactor',
20
- 'application',
21
- 'apexClass',
22
- 'externalDataSource',
23
- 'flow',
24
- 'object',
25
- 'apexPage',
26
- 'recordType',
27
- 'tab',
28
- 'field',
29
- 'startAddress',
30
- 'dataCategoryGroup',
31
- 'layout',
32
- 'weekdayStart',
33
- 'friendlyname',
34
- 'agentName',
35
- 'servicePresenceStatus',
36
- 'configName',
37
28
  ],
38
29
  },
39
- permissionset: {
30
+ approvalProcess: {
31
+ // `<approvalStep>` already keys off `<name>` via the default list, but
32
+ // `<allowedSubmitters>` items only carry `<type>` (e.g. `creator`,
33
+ // `owner`, `queue`). Multiple submitters with the same `<type>` in one
34
+ // process will collide and fall back to SHA-256, which is acceptable
35
+ // (and rare in practice) compared to *every* allowedSubmitters shard
36
+ // hashing today.
37
+ uniqueIdElements: ['type'],
38
+ },
39
+ bot: {
40
40
  uniqueIdElements: [
41
- 'application',
42
- 'apexClass',
43
- 'externalDataSource',
44
- 'flow',
45
- 'object',
46
- 'apexPage',
47
- 'recordType',
48
- 'tab',
49
- 'field',
50
- 'agentName',
51
- 'externalCredentialPrincipal',
52
- 'servicePresenceStatus',
41
+ 'developerName',
42
+ 'stepIdentifier',
43
+ 'invocationActionName',
44
+ 'parameterName',
45
+ 'nlpProviderType',
46
+ 'dialog',
47
+ 'chatButtonName',
53
48
  ],
54
49
  },
50
+ duplicateRule: {
51
+ // `<duplicateRuleMatchRules>` items carry `<matchingRule>`. Each
52
+ // match rule appears once per duplicate rule, so the field is unique
53
+ // within the parent.
54
+ uniqueIdElements: ['matchingRule'],
55
+ },
56
+ entitlementProcess: {
57
+ // `<milestones>` items have no `<fullName>`/`<name>`; the canonical key
58
+ // is `<milestoneName>`. Without this, every milestone shard falls back
59
+ // to a SHA-256 hash filename.
60
+ uniqueIdElements: ['milestoneName'],
61
+ },
55
62
  flow: {
56
63
  uniqueIdElements: [
57
64
  'apexClass',
@@ -65,50 +72,38 @@ export default [
65
72
  'promptText',
66
73
  ],
67
74
  },
68
- globalValueSetTranslation: {
69
- uniqueIdElements: ['masterLabel'],
75
+ genAiPlugin: {
76
+ // `<genAiFunctions>` items are keyed by `<functionName>`;
77
+ // `<genAiPluginInstructions>` items by `<developerName>`. Each
78
+ // repeating child only carries one of these fields, so first-match
79
+ // wins picks the right one without a compound.
80
+ uniqueIdElements: ['functionName', 'developerName'],
70
81
  },
71
- standardValueSetTranslation: {
82
+ genAiPromptTemplate: {
83
+ // `<templateVersions>` items carry a unique `<versionIdentifier>` per
84
+ // version. The trailing `_<n>` makes it filesystem-safe.
85
+ uniqueIdElements: ['versionIdentifier'],
86
+ },
87
+ globalValueSetTranslation: {
72
88
  uniqueIdElements: ['masterLabel'],
73
89
  },
74
- bot: {
75
- uniqueIdElements: [
76
- 'developerName',
77
- 'stepIdentifier',
78
- 'invocationActionName',
79
- 'parameterName',
80
- 'nlpProviderType',
81
- 'dialog',
82
- 'chatButtonName',
83
- ],
90
+ liveChatAgentConfig: {
91
+ // `<transferableButtons>` items carry `<button>`, `<supervisorSkills>`
92
+ // items carry `<skill>`. `<assignments>` items wrap heterogeneous
93
+ // user/group payloads with no single keyable field, so they continue
94
+ // to hash (stable per content).
95
+ uniqueIdElements: ['button', 'skill'],
84
96
  },
85
- marketingappextension: {
86
- uniqueIdElements: ['apiName'],
97
+ liveChatButton: {
98
+ // `<skills>` items use `<skill>`; `<deployments>` items use
99
+ // `<deployment>`.
100
+ uniqueIdElements: ['skill', 'deployment'],
87
101
  },
88
102
  loyaltyProgramSetup: {
89
103
  uniqueIdElements: ['processName'],
90
104
  },
91
- entitlementProcess: {
92
- // `<milestones>` items have no `<fullName>`/`<name>`; the canonical key
93
- // is `<milestoneName>`. Without this, every milestone shard falls back
94
- // to a SHA-256 hash filename.
95
- uniqueIdElements: ['milestoneName'],
96
- },
97
- approvalProcess: {
98
- // `<approvalStep>` already keys off `<name>` via the default list, but
99
- // `<allowedSubmitters>` items only carry `<type>` (e.g. `creator`,
100
- // `owner`, `queue`). Multiple submitters with the same `<type>` in one
101
- // process will collide and fall back to SHA-256, which is acceptable
102
- // (and rare in practice) compared to *every* allowedSubmitters shard
103
- // hashing today.
104
- uniqueIdElements: ['type'],
105
- },
106
- quickAction: {
107
- // `<fieldOverrides>` and `<quickActionLayoutItems>` both key off
108
- // `<field>`. Singleton wrappers like `<quickActionLayout>` and
109
- // `<quickActionSendEmailOptions>` still hash (one stable hash per
110
- // parent), which is correct and intentional.
111
- uniqueIdElements: ['field'],
105
+ marketingappextension: {
106
+ uniqueIdElements: ['apiName'],
112
107
  },
113
108
  md: {
114
109
  // `<values>` items inside a `<CustomMetadata>` record are keyed by
@@ -116,10 +111,26 @@ export default [
116
111
  // fields, so `<field>` is unique per shard.
117
112
  uniqueIdElements: ['field'],
118
113
  },
119
- pathAssistant: {
120
- // `<pathAssistantSteps>` items use `<picklistValueName>` (a stage
121
- // value like "Planning", "Pre-Live Review") as their natural key.
122
- uniqueIdElements: ['picklistValueName'],
114
+ mlDomain: {
115
+ // `<mlIntents>` items use `<developerName>` as their canonical key.
116
+ uniqueIdElements: ['developerName'],
117
+ },
118
+ mutingpermissionset: {
119
+ uniqueIdElements: [
120
+ 'application',
121
+ 'apexClass',
122
+ 'externalDataSource',
123
+ 'flow',
124
+ 'object',
125
+ 'apexPage',
126
+ 'recordType',
127
+ 'tab',
128
+ 'field',
129
+ 'agentName',
130
+ 'externalCredentialPrincipal',
131
+ 'servicePresenceStatus',
132
+ 'configName',
133
+ ],
123
134
  },
124
135
  omniSupervisorConfig: {
125
136
  // Six sibling repeating elements: `<omniSupervisorConfigUser>` /
@@ -128,38 +139,82 @@ export default [
128
139
  // fields, and `find_id_in_subtree` picks whichever one is present.
129
140
  uniqueIdElements: ['user', 'group', 'queue', 'profile', 'skill', 'actionName'],
130
141
  },
131
- genAiPromptTemplate: {
132
- // `<templateVersions>` items carry a unique `<versionIdentifier>` per
133
- // version. The trailing `_<n>` makes it filesystem-safe.
134
- uniqueIdElements: ['versionIdentifier'],
135
- },
136
- mlDomain: {
137
- // `<mlIntents>` items use `<developerName>` as their canonical key.
138
- uniqueIdElements: ['developerName'],
139
- },
140
- liveChatAgentConfig: {
141
- // `<transferableButtons>` items carry `<button>`, `<supervisorSkills>`
142
- // items carry `<skill>`. `<assignments>` items wrap heterogeneous
143
- // user/group payloads with no single keyable field, so they continue
144
- // to hash (stable per content).
145
- uniqueIdElements: ['button', 'skill'],
142
+ pathAssistant: {
143
+ // `<pathAssistantSteps>` items use `<picklistValueName>` (a stage
144
+ // value like "Planning", "Pre-Live Review") as their natural key.
145
+ uniqueIdElements: ['picklistValueName'],
146
146
  },
147
- liveChatButton: {
148
- // `<skills>` items use `<skill>`; `<deployments>` items use
149
- // `<deployment>`.
150
- uniqueIdElements: ['skill', 'deployment'],
147
+ permissionset: {
148
+ uniqueIdElements: [
149
+ 'application',
150
+ 'apexClass',
151
+ 'externalDataSource',
152
+ 'flow',
153
+ 'object',
154
+ 'apexPage',
155
+ 'recordType',
156
+ 'tab',
157
+ 'field',
158
+ 'agentName',
159
+ 'externalCredentialPrincipal',
160
+ 'servicePresenceStatus',
161
+ 'configName',
162
+ ],
151
163
  },
152
- duplicateRule: {
153
- // `<duplicateRuleMatchRules>` items carry `<matchingRule>`. Each
154
- // match rule appears once per duplicate rule, so the field is unique
155
- // within the parent.
156
- uniqueIdElements: ['matchingRule'],
164
+ profile: {
165
+ // `<profileActionOverrides>` (API v37-44, deprecated but still present in
166
+ // legacy orgs) has the same compound natural key problem as
167
+ // CustomApplication's `<profileActionOverrides>`/`<actionOverrides>`
168
+ // (see `app` above): a single field like `<actionName>` collides for
169
+ // every sibling sharing `actionName>view</actionName>`. Compound keys
170
+ // join resolved values with `__` for a stable, collision-free filename.
171
+ //
172
+ // Fallback chain, widest first:
173
+ // 1. actionName+pageOrSobjectType+formFactor+recordType
174
+ // 2. actionName+pageOrSobjectType+formFactor
175
+ // Items missing `pageOrSobjectType` or `formFactor` fall through to the
176
+ // SHA-256 outer-element hash, which is correct since we can't safely
177
+ // name them without those keys.
178
+ uniqueIdElements: [
179
+ 'actionName+pageOrSobjectType+formFactor+recordType',
180
+ 'actionName+pageOrSobjectType+formFactor',
181
+ 'application',
182
+ 'apexClass',
183
+ 'externalDataSource',
184
+ 'flow',
185
+ 'object',
186
+ 'apexPage',
187
+ 'recordType',
188
+ 'tab',
189
+ 'field',
190
+ 'startAddress',
191
+ 'dataCategoryGroup',
192
+ 'layout',
193
+ 'weekdayStart',
194
+ 'friendlyname',
195
+ 'agentName',
196
+ 'servicePresenceStatus',
197
+ 'configName',
198
+ ],
157
199
  },
158
200
  queue: {
159
201
  // `<queueSobject>` items are keyed by `<sobjectType>` (e.g. `Case`,
160
202
  // `Lead`). Each sobject appears at most once per queue.
161
203
  uniqueIdElements: ['sobjectType'],
162
204
  },
205
+ quickAction: {
206
+ // `<fieldOverrides>` and `<quickActionLayoutItems>` both key off
207
+ // `<field>`. Singleton wrappers like `<quickActionLayout>` and
208
+ // `<quickActionSendEmailOptions>` still hash (one stable hash per
209
+ // parent), which is correct and intentional.
210
+ uniqueIdElements: ['field'],
211
+ },
212
+ recordType: {
213
+ // `<picklistValues>` items are keyed by `<picklist>` (the API name of the
214
+ // picklist field, e.g. `IASubtheme__c`). Each picklist appears at most
215
+ // once per record type, so the field is unique within the parent.
216
+ uniqueIdElements: ['picklist'],
217
+ },
163
218
  reportType: {
164
219
  // `<sections>` items use `<masterLabel>` as their natural key — same
165
220
  // pattern as `globalValueSetTranslation`/`standardValueSetTranslation`.
@@ -179,57 +234,8 @@ export default [
179
234
  // happens to lack `<type>`.
180
235
  uniqueIdElements: ['type+value', 'value'],
181
236
  },
182
- genAiPlugin: {
183
- // `<genAiFunctions>` items are keyed by `<functionName>`;
184
- // `<genAiPluginInstructions>` items by `<developerName>`. Each
185
- // repeating child only carries one of these fields, so first-match
186
- // wins picks the right one without a compound.
187
- uniqueIdElements: ['functionName', 'developerName'],
188
- },
189
- app: {
190
- // CustomApplication's `<profileActionOverrides>` and `<actionOverrides>`
191
- // have a *compound* natural unique key: any single field (e.g. just
192
- // `<actionName>`) collides for hundreds of siblings sharing
193
- // `<actionName>View</actionName>`, silently merging on disassembly.
194
- // Compound keys (config-disassembler >= 0.4.5) join the resolved values
195
- // with `__` to form a stable, readable, collision-free filename.
196
- //
197
- // Fallback chain, widest first:
198
- // 1. profileActionOverrides with recordType
199
- // 2. profileActionOverrides without recordType
200
- // 3. actionOverrides with recordType (no profile)
201
- // 4. actionOverrides without recordType (no profile)
202
- // Items missing `pageOrSobjectType` or `formFactor` (very rare) fall
203
- // through to the SHA-256 outer-element hash, which is correct since
204
- // we can't safely name them without those keys.
205
- uniqueIdElements: [
206
- 'actionName+pageOrSobjectType+formFactor+profile+recordType',
207
- 'actionName+pageOrSobjectType+formFactor+profile',
208
- 'actionName+pageOrSobjectType+formFactor+recordType',
209
- 'actionName+pageOrSobjectType+formFactor',
210
- ],
211
- },
212
- recordType: {
213
- // `<picklistValues>` items are keyed by `<picklist>` (the API name of the
214
- // picklist field, e.g. `IASubtheme__c`). Each picklist appears at most
215
- // once per record type, so the field is unique within the parent.
216
- uniqueIdElements: ['picklist'],
217
- },
218
- mutingpermissionset: {
219
- uniqueIdElements: [
220
- 'application',
221
- 'apexClass',
222
- 'externalDataSource',
223
- 'flow',
224
- 'object',
225
- 'apexPage',
226
- 'recordType',
227
- 'tab',
228
- 'field',
229
- 'agentName',
230
- 'externalCredentialPrincipal',
231
- 'servicePresenceStatus',
232
- ],
237
+ standardValueSetTranslation: {
238
+ uniqueIdElements: ['masterLabel'],
233
239
  },
234
240
  },
235
241
  ];
@@ -1 +1 @@
1
- {"version":3,"file":"uniqueIdElements.js","sourceRoot":"","sources":["../../src/metadata/uniqueIdElements.ts"],"names":[],"mappings":"AAAA,eAAe;IACb;QACE,OAAO,EAAE;YACP,0EAA0E;YAC1E,4DAA4D;YAC5D,qEAAqE;YACrE,qEAAqE;YACrE,sEAAsE;YACtE,wEAAwE;YACxE,EAAE;YACF,gCAAgC;YAChC,0DAA0D;YAC1D,+CAA+C;YAC/C,wEAAwE;YACxE,qEAAqE;YACrE,gCAAgC;YAChC,gBAAgB,EAAE;gBAChB,oDAAoD;gBACpD,yCAAyC;gBACzC,aAAa;gBACb,WAAW;gBACX,oBAAoB;gBACpB,MAAM;gBACN,QAAQ;gBACR,UAAU;gBACV,YAAY;gBACZ,KAAK;gBACL,OAAO;gBACP,cAAc;gBACd,mBAAmB;gBACnB,QAAQ;gBACR,cAAc;gBACd,cAAc;gBACd,WAAW;gBACX,uBAAuB;gBACvB,YAAY;aACb;SACF;QACD,aAAa,EAAE;YACb,gBAAgB,EAAE;gBAChB,aAAa;gBACb,WAAW;gBACX,oBAAoB;gBACpB,MAAM;gBACN,QAAQ;gBACR,UAAU;gBACV,YAAY;gBACZ,KAAK;gBACL,OAAO;gBACP,WAAW;gBACX,6BAA6B;gBAC7B,uBAAuB;aACxB;SACF;QACD,IAAI,EAAE;YACJ,gBAAgB,EAAE;gBAChB,WAAW;gBACX,QAAQ;gBACR,OAAO;gBACP,QAAQ;gBACR,YAAY;gBACZ,iBAAiB;gBACjB,mBAAmB;gBACnB,YAAY;gBACZ,YAAY;aACb;SACF;QACD,yBAAyB,EAAE;YACzB,gBAAgB,EAAE,CAAC,aAAa,CAAC;SAClC;QACD,2BAA2B,EAAE;YAC3B,gBAAgB,EAAE,CAAC,aAAa,CAAC;SAClC;QACD,GAAG,EAAE;YACH,gBAAgB,EAAE;gBAChB,eAAe;gBACf,gBAAgB;gBAChB,sBAAsB;gBACtB,eAAe;gBACf,iBAAiB;gBACjB,QAAQ;gBACR,gBAAgB;aACjB;SACF;QACD,qBAAqB,EAAE;YACrB,gBAAgB,EAAE,CAAC,SAAS,CAAC;SAC9B;QACD,mBAAmB,EAAE;YACnB,gBAAgB,EAAE,CAAC,aAAa,CAAC;SAClC;QACD,kBAAkB,EAAE;YAClB,wEAAwE;YACxE,uEAAuE;YACvE,8BAA8B;YAC9B,gBAAgB,EAAE,CAAC,eAAe,CAAC;SACpC;QACD,eAAe,EAAE;YACf,uEAAuE;YACvE,mEAAmE;YACnE,uEAAuE;YACvE,qEAAqE;YACrE,qEAAqE;YACrE,iBAAiB;YACjB,gBAAgB,EAAE,CAAC,MAAM,CAAC;SAC3B;QACD,WAAW,EAAE;YACX,iEAAiE;YACjE,+DAA+D;YAC/D,kEAAkE;YAClE,6CAA6C;YAC7C,gBAAgB,EAAE,CAAC,OAAO,CAAC;SAC5B;QACD,EAAE,EAAE;YACF,mEAAmE;YACnE,qEAAqE;YACrE,4CAA4C;YAC5C,gBAAgB,EAAE,CAAC,OAAO,CAAC;SAC5B;QACD,aAAa,EAAE;YACb,kEAAkE;YAClE,kEAAkE;YAClE,gBAAgB,EAAE,CAAC,mBAAmB,CAAC;SACxC;QACD,oBAAoB,EAAE;YACpB,iEAAiE;YACjE,gEAAgE;YAChE,mEAAmE;YACnE,mEAAmE;YACnE,gBAAgB,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,YAAY,CAAC;SAC/E;QACD,mBAAmB,EAAE;YACnB,sEAAsE;YACtE,yDAAyD;YACzD,gBAAgB,EAAE,CAAC,mBAAmB,CAAC;SACxC;QACD,QAAQ,EAAE;YACR,oEAAoE;YACpE,gBAAgB,EAAE,CAAC,eAAe,CAAC;SACpC;QACD,mBAAmB,EAAE;YACnB,uEAAuE;YACvE,kEAAkE;YAClE,qEAAqE;YACrE,gCAAgC;YAChC,gBAAgB,EAAE,CAAC,QAAQ,EAAE,OAAO,CAAC;SACtC;QACD,cAAc,EAAE;YACd,4DAA4D;YAC5D,kBAAkB;YAClB,gBAAgB,EAAE,CAAC,OAAO,EAAE,YAAY,CAAC;SAC1C;QACD,aAAa,EAAE;YACb,iEAAiE;YACjE,qEAAqE;YACrE,qBAAqB;YACrB,gBAAgB,EAAE,CAAC,cAAc,CAAC;SACnC;QACD,KAAK,EAAE;YACL,oEAAoE;YACpE,wDAAwD;YACxD,gBAAgB,EAAE,CAAC,aAAa,CAAC;SAClC;QACD,UAAU,EAAE;YACV,qEAAqE;YACrE,wEAAwE;YACxE,yEAAyE;YACzE,qEAAqE;YACrE,+BAA+B;YAC/B,gBAAgB,EAAE,CAAC,aAAa,EAAE,cAAc,CAAC;SAClD;QACD,cAAc,EAAE;YACd,qEAAqE;YACrE,uEAAuE;YACvE,sEAAsE;YACtE,kEAAkE;YAClE,uEAAuE;YACvE,mEAAmE;YACnE,sEAAsE;YACtE,4BAA4B;YAC5B,gBAAgB,EAAE,CAAC,YAAY,EAAE,OAAO,CAAC;SAC1C;QACD,WAAW,EAAE;YACX,0DAA0D;YAC1D,+DAA+D;YAC/D,mEAAmE;YACnE,+CAA+C;YAC/C,gBAAgB,EAAE,CAAC,cAAc,EAAE,eAAe,CAAC;SACpD;QACD,GAAG,EAAE;YACH,yEAAyE;YACzE,oEAAoE;YACpE,4DAA4D;YAC5D,oEAAoE;YACpE,wEAAwE;YACxE,iEAAiE;YACjE,EAAE;YACF,gCAAgC;YAChC,8CAA8C;YAC9C,iDAAiD;YACjD,oDAAoD;YACpD,uDAAuD;YACvD,qEAAqE;YACrE,oEAAoE;YACpE,gDAAgD;YAChD,gBAAgB,EAAE;gBAChB,4DAA4D;gBAC5D,iDAAiD;gBACjD,oDAAoD;gBACpD,yCAAyC;aAC1C;SACF;QACD,UAAU,EAAE;YACV,0EAA0E;YAC1E,uEAAuE;YACvE,kEAAkE;YAClE,gBAAgB,EAAE,CAAC,UAAU,CAAC;SAC/B;QACD,mBAAmB,EAAE;YACnB,gBAAgB,EAAE;gBAChB,aAAa;gBACb,WAAW;gBACX,oBAAoB;gBACpB,MAAM;gBACN,QAAQ;gBACR,UAAU;gBACV,YAAY;gBACZ,KAAK;gBACL,OAAO;gBACP,WAAW;gBACX,6BAA6B;gBAC7B,uBAAuB;aACxB;SACF;KACF;CACF,CAAC"}
1
+ {"version":3,"file":"uniqueIdElements.js","sourceRoot":"","sources":["../../src/metadata/uniqueIdElements.ts"],"names":[],"mappings":"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"}
@@ -364,5 +364,5 @@
364
364
  ]
365
365
  }
366
366
  },
367
- "version": "6.38.4"
367
+ "version": "6.39.0"
368
368
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "sf-decomposer",
3
3
  "description": "Decompose Salesforce metadata into granular, VCS-friendly files; recompose for deployment.",
4
- "version": "6.38.4",
4
+ "version": "6.39.0",
5
5
  "dependencies": {
6
6
  "@oclif/core": "4.11.11",
7
7
  "@salesforce/core": "8.31.4",
8
8
  "@salesforce/sf-plugins-core": "12.2.25",
9
- "@salesforce/source-deploy-retrieve": "12.37.0",
9
+ "@salesforce/source-deploy-retrieve": "12.37.2",
10
10
  "config-disassembler": "3.0.2"
11
11
  },
12
12
  "devDependencies": {