@salesforce/core 3.35.0-qa.1 → 3.35.0-qa.3

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.
@@ -74,7 +74,7 @@ export declare class ConfigAggregator extends AsyncOptionalCreatable<ConfigAggre
74
74
  *
75
75
  * @param key The config key.
76
76
  */
77
- static getValue(key: string): ConfigInfo | undefined;
77
+ static getValue(key: string): ConfigInfo;
78
78
  /**
79
79
  * Get the static ConfigAggregator instance. If one doesn't exist, one will be created with
80
80
  * the **encrypted** config values. Encrypted config values need to be resolved
@@ -235,7 +235,7 @@ class ConfigAggregator extends kit_1.AsyncOptionalCreatable {
235
235
  */
236
236
  getConfigInfo() {
237
237
  const infos = Object.keys(this.getConfig())
238
- .filter((key) => this.getAllowedProperties().some((element) => key === element.key))
238
+ .filter((key) => this.getAllowedProperties().some((element) => key === element.key || key === element.newKey))
239
239
  .map((key) => this.getInfo(key))
240
240
  .filter((info) => !!info);
241
241
  return (0, kit_1.sortBy)(infos, 'key');
@@ -229,7 +229,8 @@ exports.SUPPORTED_ENV_VARS = {
229
229
  },
230
230
  [EnvironmentVariable.SFDX_REST_DEPLOY]: {
231
231
  description: getMessage(EnvironmentVariable.SFDX_REST_DEPLOY),
232
- synonymOf: null,
232
+ // this is not an "official" env var, but it supports the env=>config naming convention for the config that lives in plugin-deploy-retrieve
233
+ synonymOf: 'SF_ORG_METADATA_REST_DEPLOY',
233
234
  },
234
235
  [EnvironmentVariable.SFDX_SOURCE_MEMBER_POLLING_TIMEOUT]: {
235
236
  description: getMessage(EnvironmentVariable.SFDX_SOURCE_MEMBER_POLLING_TIMEOUT),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core",
3
- "version": "3.35.0-qa.1",
3
+ "version": "3.35.0-qa.3",
4
4
  "description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
5
5
  "main": "lib/exported",
6
6
  "types": "lib/exported.d.ts",