sf-decomposer 6.38.4 → 6.38.5

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,13 @@
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.38.5](https://github.com/mcarvin8/sf-decomposer/compare/v6.38.4...v6.38.5) (2026-07-13)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **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))
14
+
8
15
  ## [6.38.4](https://github.com/mcarvin8/sf-decomposer/compare/v6.38.3...v6.38.4) (2026-07-11)
9
16
 
10
17
 
@@ -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,60 @@
1
1
  export default [
2
2
  {
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.
3
+ app: {
4
+ // CustomApplication's `<profileActionOverrides>` and `<actionOverrides>`
5
+ // have a *compound* natural unique key: any single field (e.g. just
6
+ // `<actionName>`) collides for hundreds of siblings sharing
7
+ // `<actionName>View</actionName>`, silently merging on disassembly.
8
+ // Compound keys (config-disassembler >= 0.4.5) join the resolved values
9
+ // with `__` to form a stable, readable, collision-free filename.
10
10
  //
11
11
  // 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.
12
+ // 1. profileActionOverrides with recordType
13
+ // 2. profileActionOverrides without recordType
14
+ // 3. actionOverrides with recordType (no profile)
15
+ // 4. actionOverrides without recordType (no profile)
16
+ // Items missing `pageOrSobjectType` or `formFactor` (very rare) fall
17
+ // through to the SHA-256 outer-element hash, which is correct since
18
+ // we can't safely name them without those keys.
17
19
  uniqueIdElements: [
20
+ 'actionName+pageOrSobjectType+formFactor+profile+recordType',
21
+ 'actionName+pageOrSobjectType+formFactor+profile',
18
22
  'actionName+pageOrSobjectType+formFactor+recordType',
19
23
  '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
24
  ],
38
25
  },
39
- permissionset: {
26
+ approvalProcess: {
27
+ // `<approvalStep>` already keys off `<name>` via the default list, but
28
+ // `<allowedSubmitters>` items only carry `<type>` (e.g. `creator`,
29
+ // `owner`, `queue`). Multiple submitters with the same `<type>` in one
30
+ // process will collide and fall back to SHA-256, which is acceptable
31
+ // (and rare in practice) compared to *every* allowedSubmitters shard
32
+ // hashing today.
33
+ uniqueIdElements: ['type'],
34
+ },
35
+ bot: {
40
36
  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',
37
+ 'developerName',
38
+ 'stepIdentifier',
39
+ 'invocationActionName',
40
+ 'parameterName',
41
+ 'nlpProviderType',
42
+ 'dialog',
43
+ 'chatButtonName',
53
44
  ],
54
45
  },
46
+ duplicateRule: {
47
+ // `<duplicateRuleMatchRules>` items carry `<matchingRule>`. Each
48
+ // match rule appears once per duplicate rule, so the field is unique
49
+ // within the parent.
50
+ uniqueIdElements: ['matchingRule'],
51
+ },
52
+ entitlementProcess: {
53
+ // `<milestones>` items have no `<fullName>`/`<name>`; the canonical key
54
+ // is `<milestoneName>`. Without this, every milestone shard falls back
55
+ // to a SHA-256 hash filename.
56
+ uniqueIdElements: ['milestoneName'],
57
+ },
55
58
  flow: {
56
59
  uniqueIdElements: [
57
60
  'apexClass',
@@ -65,50 +68,38 @@ export default [
65
68
  'promptText',
66
69
  ],
67
70
  },
68
- globalValueSetTranslation: {
69
- uniqueIdElements: ['masterLabel'],
71
+ genAiPlugin: {
72
+ // `<genAiFunctions>` items are keyed by `<functionName>`;
73
+ // `<genAiPluginInstructions>` items by `<developerName>`. Each
74
+ // repeating child only carries one of these fields, so first-match
75
+ // wins picks the right one without a compound.
76
+ uniqueIdElements: ['functionName', 'developerName'],
70
77
  },
71
- standardValueSetTranslation: {
78
+ genAiPromptTemplate: {
79
+ // `<templateVersions>` items carry a unique `<versionIdentifier>` per
80
+ // version. The trailing `_<n>` makes it filesystem-safe.
81
+ uniqueIdElements: ['versionIdentifier'],
82
+ },
83
+ globalValueSetTranslation: {
72
84
  uniqueIdElements: ['masterLabel'],
73
85
  },
74
- bot: {
75
- uniqueIdElements: [
76
- 'developerName',
77
- 'stepIdentifier',
78
- 'invocationActionName',
79
- 'parameterName',
80
- 'nlpProviderType',
81
- 'dialog',
82
- 'chatButtonName',
83
- ],
86
+ liveChatAgentConfig: {
87
+ // `<transferableButtons>` items carry `<button>`, `<supervisorSkills>`
88
+ // items carry `<skill>`. `<assignments>` items wrap heterogeneous
89
+ // user/group payloads with no single keyable field, so they continue
90
+ // to hash (stable per content).
91
+ uniqueIdElements: ['button', 'skill'],
84
92
  },
85
- marketingappextension: {
86
- uniqueIdElements: ['apiName'],
93
+ liveChatButton: {
94
+ // `<skills>` items use `<skill>`; `<deployments>` items use
95
+ // `<deployment>`.
96
+ uniqueIdElements: ['skill', 'deployment'],
87
97
  },
88
98
  loyaltyProgramSetup: {
89
99
  uniqueIdElements: ['processName'],
90
100
  },
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'],
101
+ marketingappextension: {
102
+ uniqueIdElements: ['apiName'],
112
103
  },
113
104
  md: {
114
105
  // `<values>` items inside a `<CustomMetadata>` record are keyed by
@@ -116,10 +107,26 @@ export default [
116
107
  // fields, so `<field>` is unique per shard.
117
108
  uniqueIdElements: ['field'],
118
109
  },
119
- pathAssistant: {
120
- // `<pathAssistantSteps>` items use `<picklistValueName>` (a stage
121
- // value like "Planning", "Pre-Live Review") as their natural key.
122
- uniqueIdElements: ['picklistValueName'],
110
+ mlDomain: {
111
+ // `<mlIntents>` items use `<developerName>` as their canonical key.
112
+ uniqueIdElements: ['developerName'],
113
+ },
114
+ mutingpermissionset: {
115
+ uniqueIdElements: [
116
+ 'application',
117
+ 'apexClass',
118
+ 'externalDataSource',
119
+ 'flow',
120
+ 'object',
121
+ 'apexPage',
122
+ 'recordType',
123
+ 'tab',
124
+ 'field',
125
+ 'agentName',
126
+ 'externalCredentialPrincipal',
127
+ 'servicePresenceStatus',
128
+ 'configName',
129
+ ],
123
130
  },
124
131
  omniSupervisorConfig: {
125
132
  // Six sibling repeating elements: `<omniSupervisorConfigUser>` /
@@ -128,38 +135,82 @@ export default [
128
135
  // fields, and `find_id_in_subtree` picks whichever one is present.
129
136
  uniqueIdElements: ['user', 'group', 'queue', 'profile', 'skill', 'actionName'],
130
137
  },
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'],
138
+ pathAssistant: {
139
+ // `<pathAssistantSteps>` items use `<picklistValueName>` (a stage
140
+ // value like "Planning", "Pre-Live Review") as their natural key.
141
+ uniqueIdElements: ['picklistValueName'],
146
142
  },
147
- liveChatButton: {
148
- // `<skills>` items use `<skill>`; `<deployments>` items use
149
- // `<deployment>`.
150
- uniqueIdElements: ['skill', 'deployment'],
143
+ permissionset: {
144
+ uniqueIdElements: [
145
+ 'application',
146
+ 'apexClass',
147
+ 'externalDataSource',
148
+ 'flow',
149
+ 'object',
150
+ 'apexPage',
151
+ 'recordType',
152
+ 'tab',
153
+ 'field',
154
+ 'agentName',
155
+ 'externalCredentialPrincipal',
156
+ 'servicePresenceStatus',
157
+ 'configName',
158
+ ],
151
159
  },
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'],
160
+ profile: {
161
+ // `<profileActionOverrides>` (API v37-44, deprecated but still present in
162
+ // legacy orgs) has the same compound natural key problem as
163
+ // CustomApplication's `<profileActionOverrides>`/`<actionOverrides>`
164
+ // (see `app` above): a single field like `<actionName>` collides for
165
+ // every sibling sharing `actionName>view</actionName>`. Compound keys
166
+ // join resolved values with `__` for a stable, collision-free filename.
167
+ //
168
+ // Fallback chain, widest first:
169
+ // 1. actionName+pageOrSobjectType+formFactor+recordType
170
+ // 2. actionName+pageOrSobjectType+formFactor
171
+ // Items missing `pageOrSobjectType` or `formFactor` fall through to the
172
+ // SHA-256 outer-element hash, which is correct since we can't safely
173
+ // name them without those keys.
174
+ uniqueIdElements: [
175
+ 'actionName+pageOrSobjectType+formFactor+recordType',
176
+ 'actionName+pageOrSobjectType+formFactor',
177
+ 'application',
178
+ 'apexClass',
179
+ 'externalDataSource',
180
+ 'flow',
181
+ 'object',
182
+ 'apexPage',
183
+ 'recordType',
184
+ 'tab',
185
+ 'field',
186
+ 'startAddress',
187
+ 'dataCategoryGroup',
188
+ 'layout',
189
+ 'weekdayStart',
190
+ 'friendlyname',
191
+ 'agentName',
192
+ 'servicePresenceStatus',
193
+ 'configName',
194
+ ],
157
195
  },
158
196
  queue: {
159
197
  // `<queueSobject>` items are keyed by `<sobjectType>` (e.g. `Case`,
160
198
  // `Lead`). Each sobject appears at most once per queue.
161
199
  uniqueIdElements: ['sobjectType'],
162
200
  },
201
+ quickAction: {
202
+ // `<fieldOverrides>` and `<quickActionLayoutItems>` both key off
203
+ // `<field>`. Singleton wrappers like `<quickActionLayout>` and
204
+ // `<quickActionSendEmailOptions>` still hash (one stable hash per
205
+ // parent), which is correct and intentional.
206
+ uniqueIdElements: ['field'],
207
+ },
208
+ recordType: {
209
+ // `<picklistValues>` items are keyed by `<picklist>` (the API name of the
210
+ // picklist field, e.g. `IASubtheme__c`). Each picklist appears at most
211
+ // once per record type, so the field is unique within the parent.
212
+ uniqueIdElements: ['picklist'],
213
+ },
163
214
  reportType: {
164
215
  // `<sections>` items use `<masterLabel>` as their natural key — same
165
216
  // pattern as `globalValueSetTranslation`/`standardValueSetTranslation`.
@@ -179,57 +230,8 @@ export default [
179
230
  // happens to lack `<type>`.
180
231
  uniqueIdElements: ['type+value', 'value'],
181
232
  },
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
- ],
233
+ standardValueSetTranslation: {
234
+ uniqueIdElements: ['masterLabel'],
233
235
  },
234
236
  },
235
237
  ];
@@ -1 +1 @@
1
- {"version":3,"file":"uniqueIdElements.js","sourceRoot":"","sources":["../../src/metadata/uniqueIdElements.ts"],"names":[],"mappings":"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"}
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.38.5"
368
368
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
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.38.5",
5
5
  "dependencies": {
6
6
  "@oclif/core": "4.11.11",
7
7
  "@salesforce/core": "8.31.4",