@salesforce/core 3.23.1 → 3.23.2
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,12 @@
|
|
|
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
|
+
### [3.23.2](https://github.com/forcedotcom/sfdx-core/compare/v3.23.1...v3.23.2) (2022-06-30)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- add getter for shape dir name ([#614](https://github.com/forcedotcom/sfdx-core/issues/614)) ([06282d8](https://github.com/forcedotcom/sfdx-core/commit/06282d868b508b2d8417fcd4de404a7863c74b14))
|
|
10
|
+
|
|
5
11
|
### [3.23.1](https://github.com/forcedotcom/sfdx-core/compare/v3.23.0...v3.23.1) (2022-06-30)
|
|
6
12
|
|
|
7
13
|
### Bug Fixes
|
|
@@ -48,6 +48,7 @@ export default class SettingsGenerator {
|
|
|
48
48
|
* Deploys the settings to the org.
|
|
49
49
|
*/
|
|
50
50
|
deploySettingsViaFolder(scratchOrg: Org, apiVersion: string): Promise<void>;
|
|
51
|
+
getShapeDirName(): string;
|
|
51
52
|
private writeObjectSettingsIfNeeded;
|
|
52
53
|
private writeSettingsIfNeeded;
|
|
53
54
|
private createPackageXml;
|
|
@@ -113,6 +113,9 @@ class SettingsGenerator {
|
|
|
113
113
|
throw error;
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
|
+
getShapeDirName() {
|
|
117
|
+
return this.shapeDirName;
|
|
118
|
+
}
|
|
116
119
|
async writeObjectSettingsIfNeeded(objectsDir) {
|
|
117
120
|
if (!this.objectSettingsData || !Object.keys(this.objectSettingsData).length) {
|
|
118
121
|
return;
|