@salesforce/plugin-settings 2.4.8 → 2.4.10
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/LICENSE.txt +1 -1
- package/README.md +7 -7
- package/oclif.manifest.json +215 -215
- package/package.json +8 -8
package/LICENSE.txt
CHANGED
package/README.md
CHANGED
|
@@ -108,7 +108,7 @@ EXAMPLES
|
|
|
108
108
|
$ sf alias list
|
|
109
109
|
```
|
|
110
110
|
|
|
111
|
-
_See code: [src/commands/alias/list.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
111
|
+
_See code: [src/commands/alias/list.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.10/src/commands/alias/list.ts)_
|
|
112
112
|
|
|
113
113
|
## `sf alias set`
|
|
114
114
|
|
|
@@ -157,7 +157,7 @@ EXAMPLES
|
|
|
157
157
|
$ sf alias set my-scratch-org test-ss0xut7txzxf@example.com
|
|
158
158
|
```
|
|
159
159
|
|
|
160
|
-
_See code: [src/commands/alias/set.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
160
|
+
_See code: [src/commands/alias/set.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.10/src/commands/alias/set.ts)_
|
|
161
161
|
|
|
162
162
|
## `sf alias unset`
|
|
163
163
|
|
|
@@ -197,7 +197,7 @@ EXAMPLES
|
|
|
197
197
|
$ sf alias unset --all [--no-prompt]
|
|
198
198
|
```
|
|
199
199
|
|
|
200
|
-
_See code: [src/commands/alias/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
200
|
+
_See code: [src/commands/alias/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.10/src/commands/alias/unset.ts)_
|
|
201
201
|
|
|
202
202
|
## `sf config get`
|
|
203
203
|
|
|
@@ -235,7 +235,7 @@ EXAMPLES
|
|
|
235
235
|
$ sf config get target-org api-version --verbose
|
|
236
236
|
```
|
|
237
237
|
|
|
238
|
-
_See code: [src/commands/config/get.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
238
|
+
_See code: [src/commands/config/get.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.10/src/commands/config/get.ts)_
|
|
239
239
|
|
|
240
240
|
## `sf config list`
|
|
241
241
|
|
|
@@ -275,7 +275,7 @@ EXAMPLES
|
|
|
275
275
|
$ sf config list
|
|
276
276
|
```
|
|
277
277
|
|
|
278
|
-
_See code: [src/commands/config/list.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
278
|
+
_See code: [src/commands/config/list.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.10/src/commands/config/list.ts)_
|
|
279
279
|
|
|
280
280
|
## `sf config set`
|
|
281
281
|
|
|
@@ -333,7 +333,7 @@ EXAMPLES
|
|
|
333
333
|
$ sf config set --global target-org=my-scratch-org target-dev-hub=my-dev-hub
|
|
334
334
|
```
|
|
335
335
|
|
|
336
|
-
_See code: [src/commands/config/set.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
336
|
+
_See code: [src/commands/config/set.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.10/src/commands/config/set.ts)_
|
|
337
337
|
|
|
338
338
|
## `sf config unset`
|
|
339
339
|
|
|
@@ -372,6 +372,6 @@ EXAMPLES
|
|
|
372
372
|
$ sf config unset target-org api-version --global
|
|
373
373
|
```
|
|
374
374
|
|
|
375
|
-
_See code: [src/commands/config/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
375
|
+
_See code: [src/commands/config/unset.ts](https://github.com/salesforcecli/plugin-settings/blob/2.4.10/src/commands/config/unset.ts)_
|
|
376
376
|
|
|
377
377
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
|
@@ -1,219 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"commands": {
|
|
3
|
-
"alias:list": {
|
|
4
|
-
"aliases": [
|
|
5
|
-
"force:alias:list"
|
|
6
|
-
],
|
|
7
|
-
"args": {},
|
|
8
|
-
"deprecateAliases": true,
|
|
9
|
-
"description": "Aliases are global, which means that you can use all the listed aliases in any Salesforce DX project on your computer.",
|
|
10
|
-
"examples": [
|
|
11
|
-
"List all the aliases you've set:\n<%= config.bin %> <%= command.id %>"
|
|
12
|
-
],
|
|
13
|
-
"flags": {
|
|
14
|
-
"json": {
|
|
15
|
-
"description": "Format output as json.",
|
|
16
|
-
"helpGroup": "GLOBAL",
|
|
17
|
-
"name": "json",
|
|
18
|
-
"allowNo": false,
|
|
19
|
-
"type": "boolean"
|
|
20
|
-
},
|
|
21
|
-
"flags-dir": {
|
|
22
|
-
"helpGroup": "GLOBAL",
|
|
23
|
-
"name": "flags-dir",
|
|
24
|
-
"summary": "Import flag values from a directory.",
|
|
25
|
-
"hasDynamicHelp": false,
|
|
26
|
-
"multiple": false,
|
|
27
|
-
"type": "option"
|
|
28
|
-
},
|
|
29
|
-
"loglevel": {
|
|
30
|
-
"deprecated": {
|
|
31
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
32
|
-
},
|
|
33
|
-
"hidden": true,
|
|
34
|
-
"name": "loglevel",
|
|
35
|
-
"hasDynamicHelp": false,
|
|
36
|
-
"multiple": false,
|
|
37
|
-
"type": "option"
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"hasDynamicHelp": false,
|
|
41
|
-
"hiddenAliases": [],
|
|
42
|
-
"id": "alias:list",
|
|
43
|
-
"pluginAlias": "@salesforce/plugin-settings",
|
|
44
|
-
"pluginName": "@salesforce/plugin-settings",
|
|
45
|
-
"pluginType": "core",
|
|
46
|
-
"strict": true,
|
|
47
|
-
"summary": "List all aliases currently set on your local computer.",
|
|
48
|
-
"isESM": true,
|
|
49
|
-
"relativePath": [
|
|
50
|
-
"lib",
|
|
51
|
-
"commands",
|
|
52
|
-
"alias",
|
|
53
|
-
"list.js"
|
|
54
|
-
],
|
|
55
|
-
"aliasPermutations": [
|
|
56
|
-
"force:alias:list",
|
|
57
|
-
"alias:force:list",
|
|
58
|
-
"alias:list:force",
|
|
59
|
-
"force:list:alias",
|
|
60
|
-
"list:force:alias",
|
|
61
|
-
"list:alias:force"
|
|
62
|
-
],
|
|
63
|
-
"permutations": [
|
|
64
|
-
"alias:list",
|
|
65
|
-
"list:alias"
|
|
66
|
-
]
|
|
67
|
-
},
|
|
68
|
-
"alias:set": {
|
|
69
|
-
"aliases": [
|
|
70
|
-
"force:alias:set"
|
|
71
|
-
],
|
|
72
|
-
"args": {},
|
|
73
|
-
"deprecateAliases": true,
|
|
74
|
-
"description": "Aliases are user-defined short names that make it easier to use the CLI. For example, users often set an alias for a scratch org usernames because they're long and unintuitive. Check the --help of a CLI command to determine where you can use an alias.\n\nYou can associate an alias with only one value at a time. If you set an alias multiple times, the alias points to the most recent value. Aliases are global; after you set an alias, you can use it in any Salesforce DX project on your computer.\n\nUse quotes to specify an alias value that contains spaces. You typically use an equal sign to set your alias, although you don't need it if you're setting a single alias in a command.",
|
|
75
|
-
"examples": [
|
|
76
|
-
"Set an alias for a scratch org username:\n<%= config.bin %> <%= command.id %> my-scratch-org=test-sadbiytjsupn@example.com",
|
|
77
|
-
"Set multiple aliases with a single command:\n<%= config.bin %> <%= command.id %> my-scratch-org=test-sadbiytjsupn@example.com my-other-scratch-org=test-ss0xut7txzxf@example.com",
|
|
78
|
-
"Set an alias that contains spaces:\n<%= config.bin %> <%= command.id %> my-alias='alias with spaces'",
|
|
79
|
-
"Set a single alias without using an equal sign:\n<%= config.bin %> <%= command.id %> my-scratch-org test-ss0xut7txzxf@example.com"
|
|
80
|
-
],
|
|
81
|
-
"flags": {
|
|
82
|
-
"json": {
|
|
83
|
-
"description": "Format output as json.",
|
|
84
|
-
"helpGroup": "GLOBAL",
|
|
85
|
-
"name": "json",
|
|
86
|
-
"allowNo": false,
|
|
87
|
-
"type": "boolean"
|
|
88
|
-
},
|
|
89
|
-
"flags-dir": {
|
|
90
|
-
"helpGroup": "GLOBAL",
|
|
91
|
-
"name": "flags-dir",
|
|
92
|
-
"summary": "Import flag values from a directory.",
|
|
93
|
-
"hasDynamicHelp": false,
|
|
94
|
-
"multiple": false,
|
|
95
|
-
"type": "option"
|
|
96
|
-
},
|
|
97
|
-
"loglevel": {
|
|
98
|
-
"deprecated": {
|
|
99
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
100
|
-
},
|
|
101
|
-
"hidden": true,
|
|
102
|
-
"name": "loglevel",
|
|
103
|
-
"hasDynamicHelp": false,
|
|
104
|
-
"multiple": false,
|
|
105
|
-
"type": "option"
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
|
-
"hasDynamicHelp": false,
|
|
109
|
-
"hiddenAliases": [],
|
|
110
|
-
"id": "alias:set",
|
|
111
|
-
"pluginAlias": "@salesforce/plugin-settings",
|
|
112
|
-
"pluginName": "@salesforce/plugin-settings",
|
|
113
|
-
"pluginType": "core",
|
|
114
|
-
"strict": false,
|
|
115
|
-
"summary": "Set one or more aliases on your local computer.",
|
|
116
|
-
"isESM": true,
|
|
117
|
-
"relativePath": [
|
|
118
|
-
"lib",
|
|
119
|
-
"commands",
|
|
120
|
-
"alias",
|
|
121
|
-
"set.js"
|
|
122
|
-
],
|
|
123
|
-
"aliasPermutations": [
|
|
124
|
-
"force:alias:set",
|
|
125
|
-
"alias:force:set",
|
|
126
|
-
"alias:set:force",
|
|
127
|
-
"force:set:alias",
|
|
128
|
-
"set:force:alias",
|
|
129
|
-
"set:alias:force"
|
|
130
|
-
],
|
|
131
|
-
"permutations": [
|
|
132
|
-
"alias:set",
|
|
133
|
-
"set:alias"
|
|
134
|
-
]
|
|
135
|
-
},
|
|
136
|
-
"alias:unset": {
|
|
137
|
-
"aliases": [
|
|
138
|
-
"force:alias:unset"
|
|
139
|
-
],
|
|
140
|
-
"args": {},
|
|
141
|
-
"deprecateAliases": true,
|
|
142
|
-
"description": "Aliases are global, so when you unset one it's no longer available in any Salesforce DX project.",
|
|
143
|
-
"examples": [
|
|
144
|
-
"Unset an alias:\n<%= config.bin %> <%= command.id %> my-alias",
|
|
145
|
-
"Unset multiple aliases with a single command:\n<%= config.bin %> <%= command.id %> my-alias my-other-alias",
|
|
146
|
-
"Unset all aliases:\n<%= config.bin %> <%= command.id %> --all [--no-prompt]"
|
|
147
|
-
],
|
|
148
|
-
"flags": {
|
|
149
|
-
"json": {
|
|
150
|
-
"description": "Format output as json.",
|
|
151
|
-
"helpGroup": "GLOBAL",
|
|
152
|
-
"name": "json",
|
|
153
|
-
"allowNo": false,
|
|
154
|
-
"type": "boolean"
|
|
155
|
-
},
|
|
156
|
-
"flags-dir": {
|
|
157
|
-
"helpGroup": "GLOBAL",
|
|
158
|
-
"name": "flags-dir",
|
|
159
|
-
"summary": "Import flag values from a directory.",
|
|
160
|
-
"hasDynamicHelp": false,
|
|
161
|
-
"multiple": false,
|
|
162
|
-
"type": "option"
|
|
163
|
-
},
|
|
164
|
-
"loglevel": {
|
|
165
|
-
"deprecated": {
|
|
166
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
167
|
-
},
|
|
168
|
-
"hidden": true,
|
|
169
|
-
"name": "loglevel",
|
|
170
|
-
"hasDynamicHelp": false,
|
|
171
|
-
"multiple": false,
|
|
172
|
-
"type": "option"
|
|
173
|
-
},
|
|
174
|
-
"all": {
|
|
175
|
-
"char": "a",
|
|
176
|
-
"name": "all",
|
|
177
|
-
"summary": "Unset all currently set aliases.",
|
|
178
|
-
"allowNo": false,
|
|
179
|
-
"type": "boolean"
|
|
180
|
-
},
|
|
181
|
-
"no-prompt": {
|
|
182
|
-
"char": "p",
|
|
183
|
-
"name": "no-prompt",
|
|
184
|
-
"summary": "Don't prompt the user for confirmation when unsetting all aliases.",
|
|
185
|
-
"allowNo": false,
|
|
186
|
-
"type": "boolean"
|
|
187
|
-
}
|
|
188
|
-
},
|
|
189
|
-
"hasDynamicHelp": false,
|
|
190
|
-
"hiddenAliases": [],
|
|
191
|
-
"id": "alias:unset",
|
|
192
|
-
"pluginAlias": "@salesforce/plugin-settings",
|
|
193
|
-
"pluginName": "@salesforce/plugin-settings",
|
|
194
|
-
"pluginType": "core",
|
|
195
|
-
"strict": false,
|
|
196
|
-
"summary": "Unset one or more aliases that are currently set on your local computer.",
|
|
197
|
-
"isESM": true,
|
|
198
|
-
"relativePath": [
|
|
199
|
-
"lib",
|
|
200
|
-
"commands",
|
|
201
|
-
"alias",
|
|
202
|
-
"unset.js"
|
|
203
|
-
],
|
|
204
|
-
"aliasPermutations": [
|
|
205
|
-
"force:alias:unset",
|
|
206
|
-
"alias:force:unset",
|
|
207
|
-
"alias:unset:force",
|
|
208
|
-
"force:unset:alias",
|
|
209
|
-
"unset:force:alias",
|
|
210
|
-
"unset:alias:force"
|
|
211
|
-
],
|
|
212
|
-
"permutations": [
|
|
213
|
-
"alias:unset",
|
|
214
|
-
"unset:alias"
|
|
215
|
-
]
|
|
216
|
-
},
|
|
217
3
|
"config:get": {
|
|
218
4
|
"aliases": [
|
|
219
5
|
"force:config:get"
|
|
@@ -624,7 +410,221 @@
|
|
|
624
410
|
"config:unset",
|
|
625
411
|
"unset:config"
|
|
626
412
|
]
|
|
413
|
+
},
|
|
414
|
+
"alias:list": {
|
|
415
|
+
"aliases": [
|
|
416
|
+
"force:alias:list"
|
|
417
|
+
],
|
|
418
|
+
"args": {},
|
|
419
|
+
"deprecateAliases": true,
|
|
420
|
+
"description": "Aliases are global, which means that you can use all the listed aliases in any Salesforce DX project on your computer.",
|
|
421
|
+
"examples": [
|
|
422
|
+
"List all the aliases you've set:\n<%= config.bin %> <%= command.id %>"
|
|
423
|
+
],
|
|
424
|
+
"flags": {
|
|
425
|
+
"json": {
|
|
426
|
+
"description": "Format output as json.",
|
|
427
|
+
"helpGroup": "GLOBAL",
|
|
428
|
+
"name": "json",
|
|
429
|
+
"allowNo": false,
|
|
430
|
+
"type": "boolean"
|
|
431
|
+
},
|
|
432
|
+
"flags-dir": {
|
|
433
|
+
"helpGroup": "GLOBAL",
|
|
434
|
+
"name": "flags-dir",
|
|
435
|
+
"summary": "Import flag values from a directory.",
|
|
436
|
+
"hasDynamicHelp": false,
|
|
437
|
+
"multiple": false,
|
|
438
|
+
"type": "option"
|
|
439
|
+
},
|
|
440
|
+
"loglevel": {
|
|
441
|
+
"deprecated": {
|
|
442
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
443
|
+
},
|
|
444
|
+
"hidden": true,
|
|
445
|
+
"name": "loglevel",
|
|
446
|
+
"hasDynamicHelp": false,
|
|
447
|
+
"multiple": false,
|
|
448
|
+
"type": "option"
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
"hasDynamicHelp": false,
|
|
452
|
+
"hiddenAliases": [],
|
|
453
|
+
"id": "alias:list",
|
|
454
|
+
"pluginAlias": "@salesforce/plugin-settings",
|
|
455
|
+
"pluginName": "@salesforce/plugin-settings",
|
|
456
|
+
"pluginType": "core",
|
|
457
|
+
"strict": true,
|
|
458
|
+
"summary": "List all aliases currently set on your local computer.",
|
|
459
|
+
"isESM": true,
|
|
460
|
+
"relativePath": [
|
|
461
|
+
"lib",
|
|
462
|
+
"commands",
|
|
463
|
+
"alias",
|
|
464
|
+
"list.js"
|
|
465
|
+
],
|
|
466
|
+
"aliasPermutations": [
|
|
467
|
+
"force:alias:list",
|
|
468
|
+
"alias:force:list",
|
|
469
|
+
"alias:list:force",
|
|
470
|
+
"force:list:alias",
|
|
471
|
+
"list:force:alias",
|
|
472
|
+
"list:alias:force"
|
|
473
|
+
],
|
|
474
|
+
"permutations": [
|
|
475
|
+
"alias:list",
|
|
476
|
+
"list:alias"
|
|
477
|
+
]
|
|
478
|
+
},
|
|
479
|
+
"alias:set": {
|
|
480
|
+
"aliases": [
|
|
481
|
+
"force:alias:set"
|
|
482
|
+
],
|
|
483
|
+
"args": {},
|
|
484
|
+
"deprecateAliases": true,
|
|
485
|
+
"description": "Aliases are user-defined short names that make it easier to use the CLI. For example, users often set an alias for a scratch org usernames because they're long and unintuitive. Check the --help of a CLI command to determine where you can use an alias.\n\nYou can associate an alias with only one value at a time. If you set an alias multiple times, the alias points to the most recent value. Aliases are global; after you set an alias, you can use it in any Salesforce DX project on your computer.\n\nUse quotes to specify an alias value that contains spaces. You typically use an equal sign to set your alias, although you don't need it if you're setting a single alias in a command.",
|
|
486
|
+
"examples": [
|
|
487
|
+
"Set an alias for a scratch org username:\n<%= config.bin %> <%= command.id %> my-scratch-org=test-sadbiytjsupn@example.com",
|
|
488
|
+
"Set multiple aliases with a single command:\n<%= config.bin %> <%= command.id %> my-scratch-org=test-sadbiytjsupn@example.com my-other-scratch-org=test-ss0xut7txzxf@example.com",
|
|
489
|
+
"Set an alias that contains spaces:\n<%= config.bin %> <%= command.id %> my-alias='alias with spaces'",
|
|
490
|
+
"Set a single alias without using an equal sign:\n<%= config.bin %> <%= command.id %> my-scratch-org test-ss0xut7txzxf@example.com"
|
|
491
|
+
],
|
|
492
|
+
"flags": {
|
|
493
|
+
"json": {
|
|
494
|
+
"description": "Format output as json.",
|
|
495
|
+
"helpGroup": "GLOBAL",
|
|
496
|
+
"name": "json",
|
|
497
|
+
"allowNo": false,
|
|
498
|
+
"type": "boolean"
|
|
499
|
+
},
|
|
500
|
+
"flags-dir": {
|
|
501
|
+
"helpGroup": "GLOBAL",
|
|
502
|
+
"name": "flags-dir",
|
|
503
|
+
"summary": "Import flag values from a directory.",
|
|
504
|
+
"hasDynamicHelp": false,
|
|
505
|
+
"multiple": false,
|
|
506
|
+
"type": "option"
|
|
507
|
+
},
|
|
508
|
+
"loglevel": {
|
|
509
|
+
"deprecated": {
|
|
510
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
511
|
+
},
|
|
512
|
+
"hidden": true,
|
|
513
|
+
"name": "loglevel",
|
|
514
|
+
"hasDynamicHelp": false,
|
|
515
|
+
"multiple": false,
|
|
516
|
+
"type": "option"
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
"hasDynamicHelp": false,
|
|
520
|
+
"hiddenAliases": [],
|
|
521
|
+
"id": "alias:set",
|
|
522
|
+
"pluginAlias": "@salesforce/plugin-settings",
|
|
523
|
+
"pluginName": "@salesforce/plugin-settings",
|
|
524
|
+
"pluginType": "core",
|
|
525
|
+
"strict": false,
|
|
526
|
+
"summary": "Set one or more aliases on your local computer.",
|
|
527
|
+
"isESM": true,
|
|
528
|
+
"relativePath": [
|
|
529
|
+
"lib",
|
|
530
|
+
"commands",
|
|
531
|
+
"alias",
|
|
532
|
+
"set.js"
|
|
533
|
+
],
|
|
534
|
+
"aliasPermutations": [
|
|
535
|
+
"force:alias:set",
|
|
536
|
+
"alias:force:set",
|
|
537
|
+
"alias:set:force",
|
|
538
|
+
"force:set:alias",
|
|
539
|
+
"set:force:alias",
|
|
540
|
+
"set:alias:force"
|
|
541
|
+
],
|
|
542
|
+
"permutations": [
|
|
543
|
+
"alias:set",
|
|
544
|
+
"set:alias"
|
|
545
|
+
]
|
|
546
|
+
},
|
|
547
|
+
"alias:unset": {
|
|
548
|
+
"aliases": [
|
|
549
|
+
"force:alias:unset"
|
|
550
|
+
],
|
|
551
|
+
"args": {},
|
|
552
|
+
"deprecateAliases": true,
|
|
553
|
+
"description": "Aliases are global, so when you unset one it's no longer available in any Salesforce DX project.",
|
|
554
|
+
"examples": [
|
|
555
|
+
"Unset an alias:\n<%= config.bin %> <%= command.id %> my-alias",
|
|
556
|
+
"Unset multiple aliases with a single command:\n<%= config.bin %> <%= command.id %> my-alias my-other-alias",
|
|
557
|
+
"Unset all aliases:\n<%= config.bin %> <%= command.id %> --all [--no-prompt]"
|
|
558
|
+
],
|
|
559
|
+
"flags": {
|
|
560
|
+
"json": {
|
|
561
|
+
"description": "Format output as json.",
|
|
562
|
+
"helpGroup": "GLOBAL",
|
|
563
|
+
"name": "json",
|
|
564
|
+
"allowNo": false,
|
|
565
|
+
"type": "boolean"
|
|
566
|
+
},
|
|
567
|
+
"flags-dir": {
|
|
568
|
+
"helpGroup": "GLOBAL",
|
|
569
|
+
"name": "flags-dir",
|
|
570
|
+
"summary": "Import flag values from a directory.",
|
|
571
|
+
"hasDynamicHelp": false,
|
|
572
|
+
"multiple": false,
|
|
573
|
+
"type": "option"
|
|
574
|
+
},
|
|
575
|
+
"loglevel": {
|
|
576
|
+
"deprecated": {
|
|
577
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
578
|
+
},
|
|
579
|
+
"hidden": true,
|
|
580
|
+
"name": "loglevel",
|
|
581
|
+
"hasDynamicHelp": false,
|
|
582
|
+
"multiple": false,
|
|
583
|
+
"type": "option"
|
|
584
|
+
},
|
|
585
|
+
"all": {
|
|
586
|
+
"char": "a",
|
|
587
|
+
"name": "all",
|
|
588
|
+
"summary": "Unset all currently set aliases.",
|
|
589
|
+
"allowNo": false,
|
|
590
|
+
"type": "boolean"
|
|
591
|
+
},
|
|
592
|
+
"no-prompt": {
|
|
593
|
+
"char": "p",
|
|
594
|
+
"name": "no-prompt",
|
|
595
|
+
"summary": "Don't prompt the user for confirmation when unsetting all aliases.",
|
|
596
|
+
"allowNo": false,
|
|
597
|
+
"type": "boolean"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"hasDynamicHelp": false,
|
|
601
|
+
"hiddenAliases": [],
|
|
602
|
+
"id": "alias:unset",
|
|
603
|
+
"pluginAlias": "@salesforce/plugin-settings",
|
|
604
|
+
"pluginName": "@salesforce/plugin-settings",
|
|
605
|
+
"pluginType": "core",
|
|
606
|
+
"strict": false,
|
|
607
|
+
"summary": "Unset one or more aliases that are currently set on your local computer.",
|
|
608
|
+
"isESM": true,
|
|
609
|
+
"relativePath": [
|
|
610
|
+
"lib",
|
|
611
|
+
"commands",
|
|
612
|
+
"alias",
|
|
613
|
+
"unset.js"
|
|
614
|
+
],
|
|
615
|
+
"aliasPermutations": [
|
|
616
|
+
"force:alias:unset",
|
|
617
|
+
"alias:force:unset",
|
|
618
|
+
"alias:unset:force",
|
|
619
|
+
"force:unset:alias",
|
|
620
|
+
"unset:force:alias",
|
|
621
|
+
"unset:alias:force"
|
|
622
|
+
],
|
|
623
|
+
"permutations": [
|
|
624
|
+
"alias:unset",
|
|
625
|
+
"unset:alias"
|
|
626
|
+
]
|
|
627
627
|
}
|
|
628
628
|
},
|
|
629
|
-
"version": "2.4.
|
|
629
|
+
"version": "2.4.10"
|
|
630
630
|
}
|
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": "2.4.
|
|
4
|
+
"version": "2.4.10",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
"fast-levenshtein": "^3.0.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@oclif/plugin-command-snapshot": "^5.2.
|
|
14
|
+
"@oclif/plugin-command-snapshot": "^5.2.24",
|
|
15
15
|
"@oclif/test": "^4",
|
|
16
|
-
"@salesforce/cli-plugins-testkit": "^5.3.
|
|
16
|
+
"@salesforce/cli-plugins-testkit": "^5.3.39",
|
|
17
17
|
"@salesforce/dev-scripts": "^10.2.11",
|
|
18
|
-
"@salesforce/plugin-command-reference": "^3.1.
|
|
19
|
-
"@salesforce/plugin-deploy-retrieve": "^3.
|
|
18
|
+
"@salesforce/plugin-command-reference": "^3.1.38",
|
|
19
|
+
"@salesforce/plugin-deploy-retrieve": "^3.16.6",
|
|
20
20
|
"@salesforce/ts-sinon": "^1.4.30",
|
|
21
21
|
"@types/fast-levenshtein": "^0.0.4",
|
|
22
22
|
"eslint-plugin-sf-plugin": "^1.20.13",
|
|
23
|
-
"oclif": "^4.
|
|
23
|
+
"oclif": "^4.17.7",
|
|
24
24
|
"ts-node": "^10.9.2",
|
|
25
25
|
"typescript": "^5.7.2"
|
|
26
26
|
},
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
"exports": "./lib/index.js",
|
|
213
213
|
"type": "module",
|
|
214
214
|
"sfdx": {
|
|
215
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/2.4.
|
|
216
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/2.4.
|
|
215
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/2.4.10.crt",
|
|
216
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/2.4.10.sig"
|
|
217
217
|
}
|
|
218
218
|
}
|