Skip to content

Commit 7d29521

Browse files
authored
Merge branch 'main' into wr/fix-enotdir-bundle-noncomponent-file
2 parents 13c488e + cecc7fa commit 7d29521

33 files changed

Lines changed: 1952 additions & 1797 deletions

‎.eslintignore‎

Lines changed: 0 additions & 2 deletions
This file was deleted.

‎.eslintrc.cjs‎

Lines changed: 0 additions & 3 deletions
This file was deleted.

‎CHANGELOG.md‎

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## [13.2.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/13.2.1...13.2.2) (2026-08-24)
2+
3+
4+
### Bug Fixes
5+
6+
* linting post-fork-merge ([#1824](https://github.com/forcedotcom/source-deploy-retrieve/issues/1824)) ([d5e0be4](https://github.com/forcedotcom/source-deploy-retrieve/commit/d5e0be4428846d7e7f6931aca51785981772895f))
7+
8+
9+
10+
## [13.2.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/13.2.0...13.2.1) (2026-08-24)
11+
12+
13+
### Bug Fixes
14+
15+
* resolve decomposed Permission Set parents by suffix ([#1817](https://github.com/forcedotcom/source-deploy-retrieve/issues/1817)) ([e1efcbc](https://github.com/forcedotcom/source-deploy-retrieve/commit/e1efcbc947a1c23dd7394bc8c20e95801bd4174c))
16+
17+
18+
19+
# [13.2.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/13.1.1...13.2.0) (2026-08-19)
20+
21+
22+
### Features
23+
24+
* export stdValueSetRegistry.json from main index.ts to be called properly outside this repo - W-23802414 ([#1822](https://github.com/forcedotcom/source-deploy-retrieve/issues/1822)) ([54dda96](https://github.com/forcedotcom/source-deploy-retrieve/commit/54dda96adbf7001ab201a4cd63232afdc89441d4))
25+
26+
27+
128
## [13.1.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/13.1.0...13.1.1) (2026-08-13)
229

330

‎HANDBOOK.md‎

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
- [Metadata registry entries](#metadata-registry-file)
1111
- [Updating the Metadata registry file](#updating-the-metadata-registry-file)
1212
- [The registry object](#the-registry-object)
13+
- [Standard value sets](#standard-value-sets)
1314
- [Querying registry data](#querying-registry-data)
1415
- [Component Resolution](#component-resolution)
1516
- [Overview](#overview-1)
@@ -146,6 +147,17 @@ registry.types.auradefinitionbundle.directoryName; // => 'aura'
146147

147148
📝 _The registry object is “deeply frozen”, meaning none of its properties, even the nested ones, are mutable. This is to ensure that a consumer cannot change registry information in a process and potentially affect functionality._
148149

150+
### Standard value sets
151+
152+
The library also exports `standardValueSet`, a reference to all supported StandardValueSet full names (e.g., `AccountContactMultiRoles`, `AccountOwnership`). This is useful when querying StandardValueSet metadata from an org:
153+
154+
```typescript
155+
import { standardValueSet } from '@salesforce/source-deploy-retrieve';
156+
157+
// Get all standard value set names
158+
const allStandardValueSets = standardValueSet.fullnames;
159+
```
160+
149161
### Registry Variants
150162

151163
It's possible that the registry isn't what a user wants

‎METADATA_SUPPORT.md‎

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -892,8 +892,11 @@ v68 introduces the following new types. Here's their current level of support
892892
|MarketingHierarchyGroupNodeDef|❌|Not supported, but support could be added|
893893
|MarketingHierarchyNodeDef|❌|Not supported, but support could be added|
894894
|MessagingMobileAppChannel|❌|Not supported, but support could be added (but not for tracking)|
895+
|MessagingMobileAppChannelButton|❌|Not supported, but support could be added (but not for tracking)|
896+
|MessagingMobileAppChannelButtonSet|❌|Not supported, but support could be added (but not for tracking)|
895897
|MissionforceSettings|✅||
896898
|MktPlanningOpsSettings|✅||
899+
|MobileAppNewsflashTopic|❌|Not supported, but support could be added (but not for tracking)|
897900
|MobilePublisherAppConfig|❌|Not supported, but support could be added|
898901
|MobilePublisherAppVersion|❌|Not supported, but support could be added|
899902
|MobilePublisherDelegateDistributionAccount|❌|Not supported, but support could be added|
@@ -915,6 +918,11 @@ v68 introduces the following new types. Here's their current level of support
915918
|ServiceItamSettings|✅||
916919
|StatisticalDealInsightsSettings|✅||
917920
|TelephonyProvider|❌|Not supported, but support could be added|
921+
|TenantSecurityPlaybookDef|❌|Not supported, but support could be added|
922+
|TenantSecurityPlaybookDefStep|❌|Not supported, but support could be added|
923+
|TenantSecurityPlaybookDefVer|❌|Not supported, but support could be added|
924+
|TenantSecurityStepDef|❌|Not supported, but support could be added|
925+
|TenantSecurityStepDefVer|❌|Not supported, but support could be added|
918926
|TrustedTelephonyProvider|❌|Not supported, but support could be added|
919927
|WinProbabilityScoringSetup|❌|Not supported, but support could be added|
920928
|WorkforceSchedulingSettings|✅||

0 commit comments

Comments
 (0)