@salesforce/plugin-settings 1.4.32 → 1.4.33

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/README.md CHANGED
@@ -107,7 +107,7 @@ EXAMPLES
107
107
  $ sf alias list
108
108
  ```
109
109
 
110
- _See code: [src/commands/alias/list.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.32/src/commands/alias/list.ts)_
110
+ _See code: [src/commands/alias/list.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/alias/list.ts)_
111
111
 
112
112
  ## `sf alias set`
113
113
 
@@ -155,7 +155,7 @@ EXAMPLES
155
155
  $ sf alias set my-scratch-org test-ss0xut7txzxf@example.com
156
156
  ```
157
157
 
158
- _See code: [src/commands/alias/set.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.32/src/commands/alias/set.ts)_
158
+ _See code: [src/commands/alias/set.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/alias/set.ts)_
159
159
 
160
160
  ## `sf alias unset`
161
161
 
@@ -194,7 +194,7 @@ EXAMPLES
194
194
  $ sf alias unset --all [--no-prompt]
195
195
  ```
196
196
 
197
- _See code: [src/commands/alias/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.32/src/commands/alias/unset.ts)_
197
+ _See code: [src/commands/alias/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/alias/unset.ts)_
198
198
 
199
199
  ## `sf config get`
200
200
 
@@ -217,6 +217,9 @@ DESCRIPTION
217
217
  displayed; local ones are displayed if you run the command in a project directory. Run "sf config set" to set a
218
218
  configuration variable.
219
219
 
220
+ For the full list of available configuration variables, see
221
+ https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
222
+
220
223
  ALIASES
221
224
  $ sf force config get
222
225
 
@@ -230,7 +233,7 @@ EXAMPLES
230
233
  $ sf config get target-org api-version --verbose
231
234
  ```
232
235
 
233
- _See code: [src/commands/config/get.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.32/src/commands/config/get.ts)_
236
+ _See code: [src/commands/config/get.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/config/get.ts)_
234
237
 
235
238
  ## `sf config list`
236
239
 
@@ -249,6 +252,9 @@ DESCRIPTION
249
252
  Global configuration variables apply to any Salesforce DX project and are always displayed. If you run this command
250
253
  from a project directory, local configuration variables are also displayed.
251
254
 
255
+ For the full list of available configuration variables, see
256
+ https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
257
+
252
258
  ALIASES
253
259
  $ sf force config list
254
260
 
@@ -258,7 +264,7 @@ EXAMPLES
258
264
  $ sf config list
259
265
  ```
260
266
 
261
- _See code: [src/commands/config/list.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.32/src/commands/config/list.ts)_
267
+ _See code: [src/commands/config/list.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/config/list.ts)_
262
268
 
263
269
  ## `sf config set`
264
270
 
@@ -292,6 +298,9 @@ DESCRIPTION
292
298
 
293
299
  Run "sf config list" to see the configuration variables you've already set and their level (local or global).
294
300
 
301
+ For the full list of available configuration variables, see
302
+ https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
303
+
295
304
  ALIASES
296
305
  $ sf force config set
297
306
 
@@ -314,7 +323,7 @@ EXAMPLES
314
323
  $ sf config set target-org me@my.com
315
324
  ```
316
325
 
317
- _See code: [src/commands/config/set.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.32/src/commands/config/set.ts)_
326
+ _See code: [src/commands/config/set.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/config/set.ts)_
318
327
 
319
328
  ## `sf config unset`
320
329
 
@@ -337,6 +346,9 @@ DESCRIPTION
337
346
  Local configuration variables apply only to your current project. Global configuration variables apply in any
338
347
  Salesforce DX project.
339
348
 
349
+ For the full list of available configuration variables, see
350
+ https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
351
+
340
352
  ALIASES
341
353
  $ sf force config unset
342
354
 
@@ -350,6 +362,6 @@ EXAMPLES
350
362
  $ sf config unset target-org api-version --global
351
363
  ```
352
364
 
353
- _See code: [src/commands/config/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.32/src/commands/config/unset.ts)_
365
+ _See code: [src/commands/config/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/1.4.33/src/commands/config/unset.ts)_
354
366
 
355
367
  <!-- commandsstop -->
@@ -6,6 +6,8 @@ Get the value of a configuration variable.
6
6
 
7
7
  Run "sf config list" to see all the configuration variables you've set. Global configuration variable are always displayed; local ones are displayed if you run the command in a project directory. Run "sf config set" to set a configuration variable.
8
8
 
9
+ For the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
10
+
9
11
  # examples
10
12
 
11
13
  - Get the value of the "target-org" configuration variable.
@@ -6,6 +6,8 @@ List the configuration variables that you've previously set.
6
6
 
7
7
  Global configuration variables apply to any Salesforce DX project and are always displayed. If you run this command from a project directory, local configuration variables are also displayed.
8
8
 
9
+ For the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
10
+
9
11
  # examples
10
12
 
11
13
  - List both global configuration variables and those local to your project:
@@ -16,6 +16,8 @@ The resolution order if you've set a flag value in multiple ways is as follows:
16
16
 
17
17
  Run "sf config list" to see the configuration variables you've already set and their level (local or global).
18
18
 
19
+ For the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
20
+
19
21
  # examples
20
22
 
21
23
  - Set the local target-org configuration variable to an org username:
@@ -6,6 +6,8 @@ Unset local or global configuration variables.
6
6
 
7
7
  Local configuration variables apply only to your current project. Global configuration variables apply in any Salesforce DX project.
8
8
 
9
+ For the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.
10
+
9
11
  # examples
10
12
 
11
13
  - Unset the local "target-org" configuration variable:
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.32",
2
+ "version": "1.4.33",
3
3
  "commands": {
4
4
  "alias:list": {
5
5
  "id": "alias:list",
@@ -136,7 +136,7 @@
136
136
  "config:get": {
137
137
  "id": "config:get",
138
138
  "summary": "Get the value of a configuration variable.",
139
- "description": "Run \"sf config list\" to see all the configuration variables you've set. Global configuration variable are always displayed; local ones are displayed if you run the command in a project directory. Run \"sf config set\" to set a configuration variable.",
139
+ "description": "Run \"sf config list\" to see all the configuration variables you've set. Global configuration variable are always displayed; local ones are displayed if you run the command in a project directory. Run \"sf config set\" to set a configuration variable.\n\nFor the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.",
140
140
  "strict": false,
141
141
  "pluginName": "@salesforce/plugin-settings",
142
142
  "pluginAlias": "@salesforce/plugin-settings",
@@ -218,7 +218,7 @@
218
218
  "config:list": {
219
219
  "id": "config:list",
220
220
  "summary": "List the configuration variables that you've previously set.",
221
- "description": "Global configuration variables apply to any Salesforce DX project and are always displayed. If you run this command from a project directory, local configuration variables are also displayed.",
221
+ "description": "Global configuration variables apply to any Salesforce DX project and are always displayed. If you run this command from a project directory, local configuration variables are also displayed.\n\nFor the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.",
222
222
  "strict": true,
223
223
  "pluginName": "@salesforce/plugin-settings",
224
224
  "pluginAlias": "@salesforce/plugin-settings",
@@ -255,7 +255,7 @@
255
255
  "config:set": {
256
256
  "id": "config:set",
257
257
  "summary": "Set one or more configuration variables, such as your default org.",
258
- "description": "Use configuration variables to set CLI defaults, such as your default org or the API version you want the CLI to use. For example, if you set the \"target-org\" configuration variable, you don't need to specify it as a \"sf deploy metadata\" flag if you're deploying to your default org.\n\nLocal configuration variables apply only to your current project. Global variables, specified with the --global flag, apply in any Salesforce DX project.\n\nThe resolution order if you've set a flag value in multiple ways is as follows:\n\n 1. Flag value specified at the command line.\n 2. Local (project-level) configuration variable.\n 3. Global configuration variable.\n\nRun \"sf config list\" to see the configuration variables you've already set and their level (local or global).",
258
+ "description": "Use configuration variables to set CLI defaults, such as your default org or the API version you want the CLI to use. For example, if you set the \"target-org\" configuration variable, you don't need to specify it as a \"sf deploy metadata\" flag if you're deploying to your default org.\n\nLocal configuration variables apply only to your current project. Global variables, specified with the --global flag, apply in any Salesforce DX project.\n\nThe resolution order if you've set a flag value in multiple ways is as follows:\n\n 1. Flag value specified at the command line.\n 2. Local (project-level) configuration variable.\n 3. Global configuration variable.\n\nRun \"sf config list\" to see the configuration variables you've already set and their level (local or global).\n\nFor the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.",
259
259
  "strict": false,
260
260
  "pluginName": "@salesforce/plugin-settings",
261
261
  "pluginAlias": "@salesforce/plugin-settings",
@@ -340,7 +340,7 @@
340
340
  "config:unset": {
341
341
  "id": "config:unset",
342
342
  "summary": "Unset local or global configuration variables.",
343
- "description": "Local configuration variables apply only to your current project. Global configuration variables apply in any Salesforce DX project.",
343
+ "description": "Local configuration variables apply only to your current project. Global configuration variables apply in any Salesforce DX project.\n\nFor the full list of available configuration variables, see https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_dev_cli_config_values.htm.",
344
344
  "strict": false,
345
345
  "pluginName": "@salesforce/plugin-settings",
346
346
  "pluginAlias": "@salesforce/plugin-settings",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-settings",
3
3
  "description": "configure the Salesforce CLI",
4
- "version": "1.4.32",
4
+ "version": "1.4.33",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
@@ -13,15 +13,15 @@
13
13
  },
14
14
  "devDependencies": {
15
15
  "@oclif/plugin-command-snapshot": "^4.0.14",
16
- "@oclif/test": "^2.5.5",
17
- "@salesforce/cli-plugins-testkit": "^4.3.4",
16
+ "@oclif/test": "^2.5.6",
17
+ "@salesforce/cli-plugins-testkit": "^4.4.2",
18
18
  "@salesforce/dev-config": "^4.0.1",
19
19
  "@salesforce/dev-scripts": "^5.10.0",
20
20
  "@salesforce/kit": "^3.0.11",
21
- "@salesforce/plugin-command-reference": "^3.0.33",
21
+ "@salesforce/plugin-command-reference": "^3.0.36",
22
22
  "@salesforce/plugin-deploy-retrieve": "^1.17.11",
23
23
  "@salesforce/prettier-config": "^0.0.3",
24
- "@salesforce/ts-sinon": "^1.4.15",
24
+ "@salesforce/ts-sinon": "^1.4.16",
25
25
  "@salesforce/ts-types": "^2.0.6",
26
26
  "@swc/core": "^1.3.27",
27
27
  "@types/fast-levenshtein": "^0.0.2",
@@ -228,7 +228,7 @@
228
228
  }
229
229
  },
230
230
  "sfdx": {
231
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.4.32.crt",
232
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.4.32.sig"
231
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.4.33.crt",
232
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.4.33.sig"
233
233
  }
234
234
  }