@salesforce/cli 2.21.1 → 2.21.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.
- package/README.md +135 -69
- package/npm-shrinkwrap.json +52 -110
- package/oclif.manifest.json +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
|
|
|
24
24
|
$ sf COMMAND
|
|
25
25
|
running command...
|
|
26
26
|
$ sf (--version|-v)
|
|
27
|
-
@salesforce/cli/2.21.
|
|
27
|
+
@salesforce/cli/2.21.3 linux-x64 node-v20.10.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -2380,7 +2380,7 @@ FLAG DESCRIPTIONS
|
|
|
2380
2380
|
for a number of minutes, the client exits. Specify a longer wait time if timeouts occur frequently.
|
|
2381
2381
|
```
|
|
2382
2382
|
|
|
2383
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
2383
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/force/org/clone.ts)_
|
|
2384
2384
|
|
|
2385
2385
|
## `sf force org create`
|
|
2386
2386
|
|
|
@@ -2429,7 +2429,7 @@ EXAMPLES
|
|
|
2429
2429
|
$ sf force org create -t sandbox -f config/dev-sandbox-def.json -a MyDevSandbox -u prodOrg
|
|
2430
2430
|
```
|
|
2431
2431
|
|
|
2432
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
2432
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/force/org/create.ts)_
|
|
2433
2433
|
|
|
2434
2434
|
## `sf force org delete`
|
|
2435
2435
|
|
|
@@ -2461,7 +2461,7 @@ EXAMPLES
|
|
|
2461
2461
|
$ sf force org delete -u MyOrgAlias -p
|
|
2462
2462
|
```
|
|
2463
2463
|
|
|
2464
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
2464
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/force/org/delete.ts)_
|
|
2465
2465
|
|
|
2466
2466
|
## `sf force org status`
|
|
2467
2467
|
|
|
@@ -2500,7 +2500,7 @@ EXAMPLES
|
|
|
2500
2500
|
$ sf force org status --sandboxname DevSbx1 --wait 45 --setdefaultusername -u prodOrg
|
|
2501
2501
|
```
|
|
2502
2502
|
|
|
2503
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
2503
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/force/org/status.ts)_
|
|
2504
2504
|
|
|
2505
2505
|
## `sf force source deploy`
|
|
2506
2506
|
|
|
@@ -3713,7 +3713,7 @@ FLAG DESCRIPTIONS
|
|
|
3713
3713
|
sandbox.
|
|
3714
3714
|
```
|
|
3715
3715
|
|
|
3716
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
3716
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/create/sandbox.ts)_
|
|
3717
3717
|
|
|
3718
3718
|
## `sf org create scratch`
|
|
3719
3719
|
|
|
@@ -3866,7 +3866,7 @@ FLAG DESCRIPTIONS
|
|
|
3866
3866
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
3867
3867
|
```
|
|
3868
3868
|
|
|
3869
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
3869
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/create/scratch.ts)_
|
|
3870
3870
|
|
|
3871
3871
|
## `sf org create user`
|
|
3872
3872
|
|
|
@@ -4008,7 +4008,7 @@ EXAMPLES
|
|
|
4008
4008
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4009
4009
|
```
|
|
4010
4010
|
|
|
4011
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
4011
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/delete/sandbox.ts)_
|
|
4012
4012
|
|
|
4013
4013
|
## `sf org delete scratch`
|
|
4014
4014
|
|
|
@@ -4050,7 +4050,7 @@ EXAMPLES
|
|
|
4050
4050
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4051
4051
|
```
|
|
4052
4052
|
|
|
4053
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
4053
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/delete/scratch.ts)_
|
|
4054
4054
|
|
|
4055
4055
|
## `sf org disable tracking`
|
|
4056
4056
|
|
|
@@ -4088,7 +4088,7 @@ EXAMPLES
|
|
|
4088
4088
|
$ sf org disable tracking
|
|
4089
4089
|
```
|
|
4090
4090
|
|
|
4091
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
4091
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/disable/tracking.ts)_
|
|
4092
4092
|
|
|
4093
4093
|
## `sf org display`
|
|
4094
4094
|
|
|
@@ -4132,7 +4132,7 @@ EXAMPLES
|
|
|
4132
4132
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4133
4133
|
```
|
|
4134
4134
|
|
|
4135
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
4135
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/display.ts)_
|
|
4136
4136
|
|
|
4137
4137
|
## `sf org display user`
|
|
4138
4138
|
|
|
@@ -4210,7 +4210,7 @@ EXAMPLES
|
|
|
4210
4210
|
$ sf org enable tracking
|
|
4211
4211
|
```
|
|
4212
4212
|
|
|
4213
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
4213
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/enable/tracking.ts)_
|
|
4214
4214
|
|
|
4215
4215
|
## `sf org generate password`
|
|
4216
4216
|
|
|
@@ -4312,7 +4312,7 @@ EXAMPLES
|
|
|
4312
4312
|
$ sf org list --clean
|
|
4313
4313
|
```
|
|
4314
4314
|
|
|
4315
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
4315
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/list.ts)_
|
|
4316
4316
|
|
|
4317
4317
|
## `sf org list auth`
|
|
4318
4318
|
|
|
@@ -4447,7 +4447,7 @@ FLAG DESCRIPTIONS
|
|
|
4447
4447
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4448
4448
|
```
|
|
4449
4449
|
|
|
4450
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
4450
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/list/metadata.ts)_
|
|
4451
4451
|
|
|
4452
4452
|
## `sf org list metadata-types`
|
|
4453
4453
|
|
|
@@ -4501,7 +4501,7 @@ FLAG DESCRIPTIONS
|
|
|
4501
4501
|
Override the api version used for api requests made by this command
|
|
4502
4502
|
```
|
|
4503
4503
|
|
|
4504
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
4504
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/list/metadata-types.ts)_
|
|
4505
4505
|
|
|
4506
4506
|
## `sf org list sobject record-counts`
|
|
4507
4507
|
|
|
@@ -5052,7 +5052,7 @@ EXAMPLES
|
|
|
5052
5052
|
$ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
|
|
5053
5053
|
```
|
|
5054
5054
|
|
|
5055
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
5055
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/open.ts)_
|
|
5056
5056
|
|
|
5057
5057
|
## `sf org resume sandbox`
|
|
5058
5058
|
|
|
@@ -5114,7 +5114,7 @@ FLAG DESCRIPTIONS
|
|
|
5114
5114
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5115
5115
|
```
|
|
5116
5116
|
|
|
5117
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
5117
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/resume/sandbox.ts)_
|
|
5118
5118
|
|
|
5119
5119
|
## `sf org resume scratch`
|
|
5120
5120
|
|
|
@@ -5160,7 +5160,7 @@ FLAG DESCRIPTIONS
|
|
|
5160
5160
|
The job ID is valid for 24 hours after you start the scratch org creation.
|
|
5161
5161
|
```
|
|
5162
5162
|
|
|
5163
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0
|
|
5163
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.1.0/src/commands/org/resume/scratch.ts)_
|
|
5164
5164
|
|
|
5165
5165
|
## `sf package1 version create`
|
|
5166
5166
|
|
|
@@ -5168,8 +5168,8 @@ Create a first-generation package version in the release org.
|
|
|
5168
5168
|
|
|
5169
5169
|
```
|
|
5170
5170
|
USAGE
|
|
5171
|
-
$ sf package1 version create -o <value> -i <value> -n <value> [--api-version <value>] [-d <value>] [-v <value>]
|
|
5172
|
-
<value>] [-p <value>] [-k <value>] [-w <value>]
|
|
5171
|
+
$ sf package1 version create -o <value> -i <value> -n <value> [--json] [--api-version <value>] [-d <value>] [-v <value>]
|
|
5172
|
+
[-m] [-r <value>] [-p <value>] [-k <value>] [-w <value>]
|
|
5173
5173
|
|
|
5174
5174
|
FLAGS
|
|
5175
5175
|
-d, --description=<value> Package version description.
|
|
@@ -5186,6 +5186,9 @@ FLAGS
|
|
|
5186
5186
|
-w, --wait=<value> Minutes to wait for the package version to be created (default: 2 minutes).
|
|
5187
5187
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5188
5188
|
|
|
5189
|
+
GLOBAL FLAGS
|
|
5190
|
+
--json Format output as json.
|
|
5191
|
+
|
|
5189
5192
|
DESCRIPTION
|
|
5190
5193
|
Create a first-generation package version in the release org.
|
|
5191
5194
|
|
|
@@ -5223,7 +5226,7 @@ FLAG DESCRIPTIONS
|
|
|
5223
5226
|
subscribers.
|
|
5224
5227
|
```
|
|
5225
5228
|
|
|
5226
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5229
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package1/version/create.ts)_
|
|
5227
5230
|
|
|
5228
5231
|
## `sf package1 version create get`
|
|
5229
5232
|
|
|
@@ -5231,7 +5234,7 @@ Retrieve the status of a package version creation request.
|
|
|
5231
5234
|
|
|
5232
5235
|
```
|
|
5233
5236
|
USAGE
|
|
5234
|
-
$ sf package1 version create get -o <value> -i <value> [--api-version <value>]
|
|
5237
|
+
$ sf package1 version create get -o <value> -i <value> [--json] [--api-version <value>]
|
|
5235
5238
|
|
|
5236
5239
|
FLAGS
|
|
5237
5240
|
-i, --request-id=<value> (required) ID of the PackageUploadRequest (starts with 0HD).
|
|
@@ -5239,6 +5242,9 @@ FLAGS
|
|
|
5239
5242
|
configuration variable is already set.
|
|
5240
5243
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5241
5244
|
|
|
5245
|
+
GLOBAL FLAGS
|
|
5246
|
+
--json Format output as json.
|
|
5247
|
+
|
|
5242
5248
|
ALIASES
|
|
5243
5249
|
$ sf force package1 version create get
|
|
5244
5250
|
|
|
@@ -5252,7 +5258,7 @@ EXAMPLES
|
|
|
5252
5258
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
5253
5259
|
```
|
|
5254
5260
|
|
|
5255
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5261
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package1/version/create/get.ts)_
|
|
5256
5262
|
|
|
5257
5263
|
## `sf package1 version display`
|
|
5258
5264
|
|
|
@@ -5260,7 +5266,7 @@ Display details about a first-generation package version.
|
|
|
5260
5266
|
|
|
5261
5267
|
```
|
|
5262
5268
|
USAGE
|
|
5263
|
-
$ sf package1 version display -o <value> -i <value> [--api-version <value>]
|
|
5269
|
+
$ sf package1 version display -o <value> -i <value> [--json] [--api-version <value>]
|
|
5264
5270
|
|
|
5265
5271
|
FLAGS
|
|
5266
5272
|
-i, --package-version-id=<value> (required) ID (starts with 04t) of the metadata package version whose details you
|
|
@@ -5269,6 +5275,9 @@ FLAGS
|
|
|
5269
5275
|
configuration variable is already set.
|
|
5270
5276
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5271
5277
|
|
|
5278
|
+
GLOBAL FLAGS
|
|
5279
|
+
--json Format output as json.
|
|
5280
|
+
|
|
5272
5281
|
ALIASES
|
|
5273
5282
|
$ sf force package1 version display
|
|
5274
5283
|
|
|
@@ -5282,7 +5291,7 @@ EXAMPLES
|
|
|
5282
5291
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
5283
5292
|
```
|
|
5284
5293
|
|
|
5285
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5294
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package1/version/display.ts)_
|
|
5286
5295
|
|
|
5287
5296
|
## `sf package1 version list`
|
|
5288
5297
|
|
|
@@ -5290,7 +5299,7 @@ List package versions for the specified first-generation package or for the org.
|
|
|
5290
5299
|
|
|
5291
5300
|
```
|
|
5292
5301
|
USAGE
|
|
5293
|
-
$ sf package1 version list -o <value> [--api-version <value>] [-i <value>]
|
|
5302
|
+
$ sf package1 version list -o <value> [--json] [--api-version <value>] [-i <value>]
|
|
5294
5303
|
|
|
5295
5304
|
FLAGS
|
|
5296
5305
|
-i, --package-id=<value> Metadata package ID (starts with 033) whose package versions you want to list.
|
|
@@ -5298,6 +5307,9 @@ FLAGS
|
|
|
5298
5307
|
configuration variable is already set.
|
|
5299
5308
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5300
5309
|
|
|
5310
|
+
GLOBAL FLAGS
|
|
5311
|
+
--json Format output as json.
|
|
5312
|
+
|
|
5301
5313
|
ALIASES
|
|
5302
5314
|
$ sf force package1 version list
|
|
5303
5315
|
|
|
@@ -5316,7 +5328,7 @@ FLAG DESCRIPTIONS
|
|
|
5316
5328
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
5317
5329
|
```
|
|
5318
5330
|
|
|
5319
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5331
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package1/version/list.ts)_
|
|
5320
5332
|
|
|
5321
5333
|
## `sf package create`
|
|
5322
5334
|
|
|
@@ -5324,8 +5336,8 @@ Create a package.
|
|
|
5324
5336
|
|
|
5325
5337
|
```
|
|
5326
5338
|
USAGE
|
|
5327
|
-
$ sf package create -v <value> -n <value> -t Managed|Unlocked -r <value> [--api-version <value>] [-d
|
|
5328
|
-
[--org-dependent] [-o <value>]
|
|
5339
|
+
$ sf package create -v <value> -n <value> -t Managed|Unlocked -r <value> [--json] [--api-version <value>] [-d
|
|
5340
|
+
<value>] [-e] [--org-dependent] [-o <value>]
|
|
5329
5341
|
|
|
5330
5342
|
FLAGS
|
|
5331
5343
|
-d, --description=<value> Description of the package.
|
|
@@ -5342,6 +5354,9 @@ FLAGS
|
|
|
5342
5354
|
--org-dependent Depends on unpackaged metadata in the installation org; applies to unlocked
|
|
5343
5355
|
packages only.
|
|
5344
5356
|
|
|
5357
|
+
GLOBAL FLAGS
|
|
5358
|
+
--json Format output as json.
|
|
5359
|
+
|
|
5345
5360
|
DESCRIPTION
|
|
5346
5361
|
Create a package.
|
|
5347
5362
|
|
|
@@ -5391,7 +5406,7 @@ FLAG DESCRIPTIONS
|
|
|
5391
5406
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5392
5407
|
```
|
|
5393
5408
|
|
|
5394
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5409
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/create.ts)_
|
|
5395
5410
|
|
|
5396
5411
|
## `sf package delete`
|
|
5397
5412
|
|
|
@@ -5399,7 +5414,7 @@ Delete a package.
|
|
|
5399
5414
|
|
|
5400
5415
|
```
|
|
5401
5416
|
USAGE
|
|
5402
|
-
$ sf package delete -v <value> -p <value> [--api-version <value>] [-n]
|
|
5417
|
+
$ sf package delete -v <value> -p <value> [--json] [--api-version <value>] [-n]
|
|
5403
5418
|
|
|
5404
5419
|
FLAGS
|
|
5405
5420
|
-n, --no-prompt Don’t prompt before deleting the package.
|
|
@@ -5408,6 +5423,9 @@ FLAGS
|
|
|
5408
5423
|
configuration variable is already set.
|
|
5409
5424
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5410
5425
|
|
|
5426
|
+
GLOBAL FLAGS
|
|
5427
|
+
--json Format output as json.
|
|
5428
|
+
|
|
5411
5429
|
DESCRIPTION
|
|
5412
5430
|
Delete a package.
|
|
5413
5431
|
|
|
@@ -5429,7 +5447,7 @@ EXAMPLES
|
|
|
5429
5447
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5430
5448
|
```
|
|
5431
5449
|
|
|
5432
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5450
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/delete.ts)_
|
|
5433
5451
|
|
|
5434
5452
|
## `sf package install`
|
|
5435
5453
|
|
|
@@ -5437,8 +5455,8 @@ Install a version of a package in the target org.
|
|
|
5437
5455
|
|
|
5438
5456
|
```
|
|
5439
5457
|
USAGE
|
|
5440
|
-
$ sf package install -o <value> -p <value> [--api-version <value>] [-w <value>] [-k <value>] [-b <value>]
|
|
5441
|
-
all|package] [-s AllUsers|AdminsOnly] [-t DeprecateOnly|Mixed|Delete]
|
|
5458
|
+
$ sf package install -o <value> -p <value> [--json] [--api-version <value>] [-w <value>] [-k <value>] [-b <value>]
|
|
5459
|
+
[-r] [-a all|package] [-s AllUsers|AdminsOnly] [-t DeprecateOnly|Mixed|Delete]
|
|
5442
5460
|
|
|
5443
5461
|
FLAGS
|
|
5444
5462
|
-a, --apex-compile=<option> [default: all] Compile all Apex in the org and package, or only Apex in the package;
|
|
@@ -5462,6 +5480,9 @@ FLAGS
|
|
|
5462
5480
|
-w, --wait=<value> [default: [object Object]] Number of minutes to wait for installation status.
|
|
5463
5481
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5464
5482
|
|
|
5483
|
+
GLOBAL FLAGS
|
|
5484
|
+
--json Format output as json.
|
|
5485
|
+
|
|
5465
5486
|
DESCRIPTION
|
|
5466
5487
|
Install a version of a package in the target org.
|
|
5467
5488
|
|
|
@@ -5524,7 +5545,7 @@ FLAG DESCRIPTIONS
|
|
|
5524
5545
|
specify DeprecateOnly or Delete only for unlocked package upgrades.
|
|
5525
5546
|
```
|
|
5526
5547
|
|
|
5527
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5548
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/install.ts)_
|
|
5528
5549
|
|
|
5529
5550
|
## `sf package install report`
|
|
5530
5551
|
|
|
@@ -5532,7 +5553,7 @@ Retrieve the status of a package installation request.
|
|
|
5532
5553
|
|
|
5533
5554
|
```
|
|
5534
5555
|
USAGE
|
|
5535
|
-
$ sf package install report -o <value> -i <value> [--api-version <value>]
|
|
5556
|
+
$ sf package install report -o <value> -i <value> [--json] [--api-version <value>]
|
|
5536
5557
|
|
|
5537
5558
|
FLAGS
|
|
5538
5559
|
-i, --request-id=<value> (required) ID of the package install request you want to check; starts with 0Hf.
|
|
@@ -5540,6 +5561,9 @@ FLAGS
|
|
|
5540
5561
|
configuration variable is already set.
|
|
5541
5562
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5542
5563
|
|
|
5564
|
+
GLOBAL FLAGS
|
|
5565
|
+
--json Format output as json.
|
|
5566
|
+
|
|
5543
5567
|
ALIASES
|
|
5544
5568
|
$ sf force package install report
|
|
5545
5569
|
|
|
@@ -5553,7 +5577,7 @@ EXAMPLES
|
|
|
5553
5577
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
5554
5578
|
```
|
|
5555
5579
|
|
|
5556
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5580
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/install/report.ts)_
|
|
5557
5581
|
|
|
5558
5582
|
## `sf package installed list`
|
|
5559
5583
|
|
|
@@ -5561,13 +5585,16 @@ List the org’s installed packages.
|
|
|
5561
5585
|
|
|
5562
5586
|
```
|
|
5563
5587
|
USAGE
|
|
5564
|
-
$ sf package installed list -o <value> [--api-version <value>]
|
|
5588
|
+
$ sf package installed list -o <value> [--json] [--api-version <value>]
|
|
5565
5589
|
|
|
5566
5590
|
FLAGS
|
|
5567
5591
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
5568
5592
|
configuration variable is already set.
|
|
5569
5593
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5570
5594
|
|
|
5595
|
+
GLOBAL FLAGS
|
|
5596
|
+
--json Format output as json.
|
|
5597
|
+
|
|
5571
5598
|
ALIASES
|
|
5572
5599
|
$ sf force package installed list
|
|
5573
5600
|
|
|
@@ -5581,7 +5608,7 @@ EXAMPLES
|
|
|
5581
5608
|
$ sf package installed list --target-org me@example.com
|
|
5582
5609
|
```
|
|
5583
5610
|
|
|
5584
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5611
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/installed/list.ts)_
|
|
5585
5612
|
|
|
5586
5613
|
## `sf package list`
|
|
5587
5614
|
|
|
@@ -5589,7 +5616,7 @@ List all packages in the Dev Hub org.
|
|
|
5589
5616
|
|
|
5590
5617
|
```
|
|
5591
5618
|
USAGE
|
|
5592
|
-
$ sf package list -v <value> [--api-version <value>] [--verbose]
|
|
5619
|
+
$ sf package list -v <value> [--json] [--api-version <value>] [--verbose]
|
|
5593
5620
|
|
|
5594
5621
|
FLAGS
|
|
5595
5622
|
-v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org. Not required if the `target-dev-hub`
|
|
@@ -5597,6 +5624,9 @@ FLAGS
|
|
|
5597
5624
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5598
5625
|
--verbose Display extended package detail.
|
|
5599
5626
|
|
|
5627
|
+
GLOBAL FLAGS
|
|
5628
|
+
--json Format output as json.
|
|
5629
|
+
|
|
5600
5630
|
DESCRIPTION
|
|
5601
5631
|
List all packages in the Dev Hub org.
|
|
5602
5632
|
|
|
@@ -5615,7 +5645,7 @@ EXAMPLES
|
|
|
5615
5645
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
5616
5646
|
```
|
|
5617
5647
|
|
|
5618
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5648
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/list.ts)_
|
|
5619
5649
|
|
|
5620
5650
|
## `sf package uninstall`
|
|
5621
5651
|
|
|
@@ -5623,7 +5653,7 @@ Uninstall a second-generation package from the target org.
|
|
|
5623
5653
|
|
|
5624
5654
|
```
|
|
5625
5655
|
USAGE
|
|
5626
|
-
$ sf package uninstall -o <value> -p <value> [--api-version <value>] [-w <value>]
|
|
5656
|
+
$ sf package uninstall -o <value> -p <value> [--json] [--api-version <value>] [-w <value>]
|
|
5627
5657
|
|
|
5628
5658
|
FLAGS
|
|
5629
5659
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
@@ -5632,6 +5662,9 @@ FLAGS
|
|
|
5632
5662
|
-w, --wait=<value> [default: [object Object]] Number of minutes to wait for uninstall status.
|
|
5633
5663
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5634
5664
|
|
|
5665
|
+
GLOBAL FLAGS
|
|
5666
|
+
--json Format output as json.
|
|
5667
|
+
|
|
5635
5668
|
DESCRIPTION
|
|
5636
5669
|
Uninstall a second-generation package from the target org.
|
|
5637
5670
|
|
|
@@ -5659,7 +5692,7 @@ EXAMPLES
|
|
|
5659
5692
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
5660
5693
|
```
|
|
5661
5694
|
|
|
5662
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5695
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/uninstall.ts)_
|
|
5663
5696
|
|
|
5664
5697
|
## `sf package uninstall report`
|
|
5665
5698
|
|
|
@@ -5667,7 +5700,7 @@ Retrieve the status of a package uninstall request.
|
|
|
5667
5700
|
|
|
5668
5701
|
```
|
|
5669
5702
|
USAGE
|
|
5670
|
-
$ sf package uninstall report -o <value> -i <value> [--api-version <value>]
|
|
5703
|
+
$ sf package uninstall report -o <value> -i <value> [--json] [--api-version <value>]
|
|
5671
5704
|
|
|
5672
5705
|
FLAGS
|
|
5673
5706
|
-i, --request-id=<value> (required) ID of the package uninstall request you want to check; starts with 06y.
|
|
@@ -5675,6 +5708,9 @@ FLAGS
|
|
|
5675
5708
|
configuration variable is already set.
|
|
5676
5709
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5677
5710
|
|
|
5711
|
+
GLOBAL FLAGS
|
|
5712
|
+
--json Format output as json.
|
|
5713
|
+
|
|
5678
5714
|
ALIASES
|
|
5679
5715
|
$ sf force package uninstall report
|
|
5680
5716
|
|
|
@@ -5688,7 +5724,7 @@ EXAMPLES
|
|
|
5688
5724
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
5689
5725
|
```
|
|
5690
5726
|
|
|
5691
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5727
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/uninstall/report.ts)_
|
|
5692
5728
|
|
|
5693
5729
|
## `sf package update`
|
|
5694
5730
|
|
|
@@ -5696,7 +5732,7 @@ Update package details.
|
|
|
5696
5732
|
|
|
5697
5733
|
```
|
|
5698
5734
|
USAGE
|
|
5699
|
-
$ sf package update -v <value> -p <value> [--api-version <value>] [-n <value>] [-d <value>] [-o <value>]
|
|
5735
|
+
$ sf package update -v <value> -p <value> [--json] [--api-version <value>] [-n <value>] [-d <value>] [-o <value>]
|
|
5700
5736
|
[--enable-app-analytics]
|
|
5701
5737
|
|
|
5702
5738
|
FLAGS
|
|
@@ -5711,6 +5747,9 @@ FLAGS
|
|
|
5711
5747
|
--[no-]enable-app-analytics Enable AppExchange App Analytics usage data collection on this managed
|
|
5712
5748
|
package and its components.
|
|
5713
5749
|
|
|
5750
|
+
GLOBAL FLAGS
|
|
5751
|
+
--json Format output as json.
|
|
5752
|
+
|
|
5714
5753
|
DESCRIPTION
|
|
5715
5754
|
Update package details.
|
|
5716
5755
|
|
|
@@ -5739,7 +5778,7 @@ FLAG DESCRIPTIONS
|
|
|
5739
5778
|
associated with your package.
|
|
5740
5779
|
```
|
|
5741
5780
|
|
|
5742
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5781
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/update.ts)_
|
|
5743
5782
|
|
|
5744
5783
|
## `sf package version create`
|
|
5745
5784
|
|
|
@@ -5747,8 +5786,8 @@ Create a package version in the Dev Hub org.
|
|
|
5747
5786
|
|
|
5748
5787
|
```
|
|
5749
5788
|
USAGE
|
|
5750
|
-
$ sf package version create -v <value> [--api-version <value>] [-b <value>] [-c | --skip-validation] [-f <value>]
|
|
5751
|
-
<value>] [-x] [-p <value>] [-d <value>] [--post-install-script <value>] [--post-install-url <value>]
|
|
5789
|
+
$ sf package version create -v <value> [--json] [--api-version <value>] [-b <value>] [-c | --skip-validation] [-f <value>]
|
|
5790
|
+
[-k <value>] [-x] [-p <value>] [-d <value>] [--post-install-script <value>] [--post-install-url <value>]
|
|
5752
5791
|
[--releasenotes-url <value>] [--skip-ancestor-check] [-t <value>] [--uninstall-script <value>] [-e <value>] [-a
|
|
5753
5792
|
<value>] [-n <value>] [-w <value>] [--language <value>] [--verbose]
|
|
5754
5793
|
|
|
@@ -5788,6 +5827,9 @@ FLAGS
|
|
|
5788
5827
|
--uninstall-script=<value> Uninstall script name; applies to managed packages only.
|
|
5789
5828
|
--verbose Display verbose command output.
|
|
5790
5829
|
|
|
5830
|
+
GLOBAL FLAGS
|
|
5831
|
+
--json Format output as json.
|
|
5832
|
+
|
|
5791
5833
|
DESCRIPTION
|
|
5792
5834
|
Create a package version in the Dev Hub org.
|
|
5793
5835
|
|
|
@@ -5891,7 +5933,7 @@ FLAG DESCRIPTIONS
|
|
|
5891
5933
|
periods of no output from commands.
|
|
5892
5934
|
```
|
|
5893
5935
|
|
|
5894
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5936
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/version/create.ts)_
|
|
5895
5937
|
|
|
5896
5938
|
## `sf package version create list`
|
|
5897
5939
|
|
|
@@ -5899,7 +5941,7 @@ List package version creation requests.
|
|
|
5899
5941
|
|
|
5900
5942
|
```
|
|
5901
5943
|
USAGE
|
|
5902
|
-
$ sf package version create list -v <value> [--api-version <value>] [-c <value>] [-s Queued|InProgress|Success|Error]
|
|
5944
|
+
$ sf package version create list -v <value> [--json] [--api-version <value>] [-c <value>] [-s Queued|InProgress|Success|Error]
|
|
5903
5945
|
[--show-conversions-only] [--verbose]
|
|
5904
5946
|
|
|
5905
5947
|
FLAGS
|
|
@@ -5914,6 +5956,9 @@ FLAGS
|
|
|
5914
5956
|
--verbose Displays additional information at a slight performance cost, such as the version
|
|
5915
5957
|
name and number for each package version create request.
|
|
5916
5958
|
|
|
5959
|
+
GLOBAL FLAGS
|
|
5960
|
+
--json Format output as json.
|
|
5961
|
+
|
|
5917
5962
|
DESCRIPTION
|
|
5918
5963
|
List package version creation requests.
|
|
5919
5964
|
|
|
@@ -5948,7 +5993,7 @@ EXAMPLES
|
|
|
5948
5993
|
$ sf package version create list --created-last-days 0 --status Success
|
|
5949
5994
|
```
|
|
5950
5995
|
|
|
5951
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5996
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/version/create/list.ts)_
|
|
5952
5997
|
|
|
5953
5998
|
## `sf package version create report`
|
|
5954
5999
|
|
|
@@ -5956,7 +6001,7 @@ Retrieve details about a package version creation request.
|
|
|
5956
6001
|
|
|
5957
6002
|
```
|
|
5958
6003
|
USAGE
|
|
5959
|
-
$ sf package version create report -v <value> -i <value> [--api-version <value>]
|
|
6004
|
+
$ sf package version create report -v <value> -i <value> [--json] [--api-version <value>]
|
|
5960
6005
|
|
|
5961
6006
|
FLAGS
|
|
5962
6007
|
-i, --package-create-request-id=<value> (required) ID (starts with 08c) of the package version creation request you
|
|
@@ -5965,6 +6010,9 @@ FLAGS
|
|
|
5965
6010
|
`target-dev-hub` configuration variable is already set.
|
|
5966
6011
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5967
6012
|
|
|
6013
|
+
GLOBAL FLAGS
|
|
6014
|
+
--json Format output as json.
|
|
6015
|
+
|
|
5968
6016
|
DESCRIPTION
|
|
5969
6017
|
Retrieve details about a package version creation request.
|
|
5970
6018
|
|
|
@@ -5987,7 +6035,7 @@ EXAMPLES
|
|
|
5987
6035
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
5988
6036
|
```
|
|
5989
6037
|
|
|
5990
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6038
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/version/create/report.ts)_
|
|
5991
6039
|
|
|
5992
6040
|
## `sf package version delete`
|
|
5993
6041
|
|
|
@@ -5995,7 +6043,7 @@ Delete a package version.
|
|
|
5995
6043
|
|
|
5996
6044
|
```
|
|
5997
6045
|
USAGE
|
|
5998
|
-
$ sf package version delete -v <value> -p <value> [--api-version <value>] [-n]
|
|
6046
|
+
$ sf package version delete -v <value> -p <value> [--json] [--api-version <value>] [-n]
|
|
5999
6047
|
|
|
6000
6048
|
FLAGS
|
|
6001
6049
|
-n, --no-prompt Don’t prompt before deleting the package version.
|
|
@@ -6004,6 +6052,9 @@ FLAGS
|
|
|
6004
6052
|
configuration variable is already set.
|
|
6005
6053
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
6006
6054
|
|
|
6055
|
+
GLOBAL FLAGS
|
|
6056
|
+
--json Format output as json.
|
|
6057
|
+
|
|
6007
6058
|
DESCRIPTION
|
|
6008
6059
|
Delete a package version.
|
|
6009
6060
|
|
|
@@ -6022,7 +6073,7 @@ EXAMPLES
|
|
|
6022
6073
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6023
6074
|
```
|
|
6024
6075
|
|
|
6025
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6076
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/version/delete.ts)_
|
|
6026
6077
|
|
|
6027
6078
|
## `sf package version displayancestry`
|
|
6028
6079
|
|
|
@@ -6030,7 +6081,7 @@ Display the ancestry tree for a 2GP managed package version.
|
|
|
6030
6081
|
|
|
6031
6082
|
```
|
|
6032
6083
|
USAGE
|
|
6033
|
-
$ sf package version displayancestry -v <value> -p <value> [--api-version <value>] [--dot-code] [--verbose]
|
|
6084
|
+
$ sf package version displayancestry -v <value> -p <value> [--json] [--api-version <value>] [--dot-code] [--verbose]
|
|
6034
6085
|
|
|
6035
6086
|
FLAGS
|
|
6036
6087
|
-p, --package=<value> (required) ID or alias of the package (starts with 0Ho) or package version (starts with
|
|
@@ -6042,6 +6093,9 @@ FLAGS
|
|
|
6042
6093
|
--verbose Display both the package version ID (starts with 04t) and the version number
|
|
6043
6094
|
(major.minor.patch.build) in the ancestry tree.
|
|
6044
6095
|
|
|
6096
|
+
GLOBAL FLAGS
|
|
6097
|
+
--json Format output as json.
|
|
6098
|
+
|
|
6045
6099
|
ALIASES
|
|
6046
6100
|
$ sf force package version displayancestry
|
|
6047
6101
|
|
|
@@ -6077,7 +6131,7 @@ FLAG DESCRIPTIONS
|
|
|
6077
6131
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6078
6132
|
```
|
|
6079
6133
|
|
|
6080
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6134
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/version/displayancestry.ts)_
|
|
6081
6135
|
|
|
6082
6136
|
## `sf package version list`
|
|
6083
6137
|
|
|
@@ -6085,8 +6139,8 @@ List all package versions in the Dev Hub org.
|
|
|
6085
6139
|
|
|
6086
6140
|
```
|
|
6087
6141
|
USAGE
|
|
6088
|
-
$ sf package version list -v <value> [--api-version <value>] [-c <value>] [--concise] [--show-conversions-only]
|
|
6089
|
-
<value>] [-p <value>] [-r] [-o <value>] [--verbose]
|
|
6142
|
+
$ sf package version list -v <value> [--json] [--api-version <value>] [-c <value>] [--concise] [--show-conversions-only]
|
|
6143
|
+
[-m <value>] [-p <value>] [-r] [-o <value>] [--verbose]
|
|
6090
6144
|
|
|
6091
6145
|
FLAGS
|
|
6092
6146
|
-c, --created-last-days=<value> Number of days since the request was created, starting at 00:00:00 of first day to
|
|
@@ -6103,6 +6157,9 @@ FLAGS
|
|
|
6103
6157
|
--show-conversions-only Filter the list output to display only converted package version.
|
|
6104
6158
|
--verbose Display extended package version details.
|
|
6105
6159
|
|
|
6160
|
+
GLOBAL FLAGS
|
|
6161
|
+
--json Format output as json.
|
|
6162
|
+
|
|
6106
6163
|
DESCRIPTION
|
|
6107
6164
|
List all package versions in the Dev Hub org.
|
|
6108
6165
|
|
|
@@ -6142,7 +6199,7 @@ EXAMPLES
|
|
|
6142
6199
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
6143
6200
|
```
|
|
6144
6201
|
|
|
6145
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6202
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/version/list.ts)_
|
|
6146
6203
|
|
|
6147
6204
|
## `sf package version promote`
|
|
6148
6205
|
|
|
@@ -6150,7 +6207,7 @@ Promote a package version to released.
|
|
|
6150
6207
|
|
|
6151
6208
|
```
|
|
6152
6209
|
USAGE
|
|
6153
|
-
$ sf package version promote -v <value> -p <value> [--api-version <value>] [-n]
|
|
6210
|
+
$ sf package version promote -v <value> -p <value> [--json] [--api-version <value>] [-n]
|
|
6154
6211
|
|
|
6155
6212
|
FLAGS
|
|
6156
6213
|
-n, --no-prompt Don't prompt to confirm setting the package version as released.
|
|
@@ -6159,6 +6216,9 @@ FLAGS
|
|
|
6159
6216
|
configuration variable is already set.
|
|
6160
6217
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
6161
6218
|
|
|
6219
|
+
GLOBAL FLAGS
|
|
6220
|
+
--json Format output as json.
|
|
6221
|
+
|
|
6162
6222
|
DESCRIPTION
|
|
6163
6223
|
Promote a package version to released.
|
|
6164
6224
|
|
|
@@ -6182,7 +6242,7 @@ EXAMPLES
|
|
|
6182
6242
|
$ sf package version promote --package "Awesome Package Alias"
|
|
6183
6243
|
```
|
|
6184
6244
|
|
|
6185
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6245
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/version/promote.ts)_
|
|
6186
6246
|
|
|
6187
6247
|
## `sf package version report`
|
|
6188
6248
|
|
|
@@ -6190,7 +6250,7 @@ Retrieve details about a package version in the Dev Hub org.
|
|
|
6190
6250
|
|
|
6191
6251
|
```
|
|
6192
6252
|
USAGE
|
|
6193
|
-
$ sf package version report -v <value> -p <value> [--api-version <value>] [--verbose]
|
|
6253
|
+
$ sf package version report -v <value> -p <value> [--json] [--api-version <value>] [--verbose]
|
|
6194
6254
|
|
|
6195
6255
|
FLAGS
|
|
6196
6256
|
-p, --package=<value> (required) ID (starts with 04t) or alias of the package to retrieve details for.
|
|
@@ -6199,6 +6259,9 @@ FLAGS
|
|
|
6199
6259
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
6200
6260
|
--verbose Display extended package version details.
|
|
6201
6261
|
|
|
6262
|
+
GLOBAL FLAGS
|
|
6263
|
+
--json Format output as json.
|
|
6264
|
+
|
|
6202
6265
|
DESCRIPTION
|
|
6203
6266
|
Retrieve details about a package version in the Dev Hub org.
|
|
6204
6267
|
|
|
@@ -6218,7 +6281,7 @@ EXAMPLES
|
|
|
6218
6281
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
6219
6282
|
```
|
|
6220
6283
|
|
|
6221
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6284
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/version/report.ts)_
|
|
6222
6285
|
|
|
6223
6286
|
## `sf package version update`
|
|
6224
6287
|
|
|
@@ -6226,8 +6289,8 @@ Update a package version.
|
|
|
6226
6289
|
|
|
6227
6290
|
```
|
|
6228
6291
|
USAGE
|
|
6229
|
-
$ sf package version update -v <value> -p <value> [--api-version <value>] [-a <value>] [-e <value>] [-b <value>]
|
|
6230
|
-
<value>] [-k <value>]
|
|
6292
|
+
$ sf package version update -v <value> -p <value> [--json] [--api-version <value>] [-a <value>] [-e <value>] [-b <value>]
|
|
6293
|
+
[-t <value>] [-k <value>]
|
|
6231
6294
|
|
|
6232
6295
|
FLAGS
|
|
6233
6296
|
-a, --version-name=<value> New package version name.
|
|
@@ -6240,6 +6303,9 @@ FLAGS
|
|
|
6240
6303
|
`target-dev-hub` configuration variable is already set.
|
|
6241
6304
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
6242
6305
|
|
|
6306
|
+
GLOBAL FLAGS
|
|
6307
|
+
--json Format output as json.
|
|
6308
|
+
|
|
6243
6309
|
DESCRIPTION
|
|
6244
6310
|
Update a package version.
|
|
6245
6311
|
|
|
@@ -6267,7 +6333,7 @@ EXAMPLES
|
|
|
6267
6333
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
6268
6334
|
```
|
|
6269
6335
|
|
|
6270
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6336
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.6/src/commands/package/version/update.ts)_
|
|
6271
6337
|
|
|
6272
6338
|
## `sf plugins`
|
|
6273
6339
|
|
|
@@ -6447,7 +6513,7 @@ EXAMPLES
|
|
|
6447
6513
|
$ sf plugins trust verify --npm @scope/npmName
|
|
6448
6514
|
```
|
|
6449
6515
|
|
|
6450
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.0
|
|
6516
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.1.0/src/commands/plugins/trust/verify.ts)_
|
|
6451
6517
|
|
|
6452
6518
|
## `sf plugins:uninstall PLUGIN...`
|
|
6453
6519
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.21.
|
|
3
|
+
"version": "2.21.3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.21.
|
|
9
|
+
"version": "2.21.3",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@oclif/core": "3.
|
|
13
|
+
"@oclif/core": "3.13.1",
|
|
14
14
|
"@oclif/plugin-autocomplete": "3.0.2",
|
|
15
15
|
"@oclif/plugin-commands": "3.0.7",
|
|
16
16
|
"@oclif/plugin-help": "6.0.7",
|
|
@@ -29,17 +29,17 @@
|
|
|
29
29
|
"@salesforce/plugin-info": "3.0.5",
|
|
30
30
|
"@salesforce/plugin-limits": "3.0.4",
|
|
31
31
|
"@salesforce/plugin-marketplace": "1.0.7",
|
|
32
|
-
"@salesforce/plugin-org": "3.0
|
|
33
|
-
"@salesforce/plugin-packaging": "1.27.
|
|
32
|
+
"@salesforce/plugin-org": "3.1.0",
|
|
33
|
+
"@salesforce/plugin-packaging": "1.27.6",
|
|
34
34
|
"@salesforce/plugin-schema": "3.0.6",
|
|
35
35
|
"@salesforce/plugin-settings": "2.0.9",
|
|
36
36
|
"@salesforce/plugin-sobject": "1.0.2",
|
|
37
37
|
"@salesforce/plugin-source": "3.0.1",
|
|
38
|
-
"@salesforce/plugin-telemetry": "3.1.
|
|
38
|
+
"@salesforce/plugin-telemetry": "3.1.4",
|
|
39
39
|
"@salesforce/plugin-templates": "56.0.3",
|
|
40
|
-
"@salesforce/plugin-trust": "3.0
|
|
40
|
+
"@salesforce/plugin-trust": "3.1.0",
|
|
41
41
|
"@salesforce/plugin-user": "3.0.6",
|
|
42
|
-
"@salesforce/sf-plugins-core": "5.0.
|
|
42
|
+
"@salesforce/sf-plugins-core": "5.0.5",
|
|
43
43
|
"debug": "^4.3.4"
|
|
44
44
|
},
|
|
45
45
|
"bin": {
|
|
@@ -1117,6 +1117,7 @@
|
|
|
1117
1117
|
"version": "0.8.1",
|
|
1118
1118
|
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
|
|
1119
1119
|
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
|
|
1120
|
+
"dev": true,
|
|
1120
1121
|
"license": "MIT",
|
|
1121
1122
|
"dependencies": {
|
|
1122
1123
|
"@jridgewell/trace-mapping": "0.3.9"
|
|
@@ -1129,6 +1130,7 @@
|
|
|
1129
1130
|
"version": "3.1.1",
|
|
1130
1131
|
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
|
|
1131
1132
|
"integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
|
|
1133
|
+
"dev": true,
|
|
1132
1134
|
"license": "MIT",
|
|
1133
1135
|
"engines": {
|
|
1134
1136
|
"node": ">=6.0.0"
|
|
@@ -1138,6 +1140,7 @@
|
|
|
1138
1140
|
"version": "0.3.9",
|
|
1139
1141
|
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
|
|
1140
1142
|
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
|
|
1143
|
+
"dev": true,
|
|
1141
1144
|
"license": "MIT",
|
|
1142
1145
|
"dependencies": {
|
|
1143
1146
|
"@jridgewell/resolve-uri": "^3.0.3",
|
|
@@ -1588,6 +1591,7 @@
|
|
|
1588
1591
|
"version": "1.4.15",
|
|
1589
1592
|
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
|
|
1590
1593
|
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
|
|
1594
|
+
"dev": true,
|
|
1591
1595
|
"license": "MIT"
|
|
1592
1596
|
},
|
|
1593
1597
|
"node_modules/@jridgewell/trace-mapping": {
|
|
@@ -2187,9 +2191,9 @@
|
|
|
2187
2191
|
}
|
|
2188
2192
|
},
|
|
2189
2193
|
"node_modules/@oclif/core": {
|
|
2190
|
-
"version": "3.
|
|
2191
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
2192
|
-
"integrity": "sha512-
|
|
2194
|
+
"version": "3.13.1",
|
|
2195
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.13.1.tgz",
|
|
2196
|
+
"integrity": "sha512-bpnF6BL+j7D0k0T+dZ4g7LwcZzctCoKjIYm8zcSNgrItS2pgIlvsRf8SdkGNu6djzRD7vzM657ZO9fWU6goz0g==",
|
|
2193
2197
|
"license": "MIT",
|
|
2194
2198
|
"dependencies": {
|
|
2195
2199
|
"ansi-escapes": "^4.3.2",
|
|
@@ -3535,16 +3539,16 @@
|
|
|
3535
3539
|
}
|
|
3536
3540
|
},
|
|
3537
3541
|
"node_modules/@salesforce/packaging": {
|
|
3538
|
-
"version": "3.0.
|
|
3539
|
-
"resolved": "https://registry.npmjs.org/@salesforce/packaging/-/packaging-3.0.
|
|
3540
|
-
"integrity": "sha512-
|
|
3542
|
+
"version": "3.0.4",
|
|
3543
|
+
"resolved": "https://registry.npmjs.org/@salesforce/packaging/-/packaging-3.0.4.tgz",
|
|
3544
|
+
"integrity": "sha512-7AnBhS17MABCxCR9nyv2BmOfLtBXhOJbhnfKMS5FXZkBCNR4UzmiFMem5bCHBOghkcHyk34p6CESMLBBFGtojQ==",
|
|
3541
3545
|
"license": "BSD-3-Clause",
|
|
3542
3546
|
"dependencies": {
|
|
3543
|
-
"@oclif/core": "^
|
|
3544
|
-
"@salesforce/core": "^6.
|
|
3547
|
+
"@oclif/core": "^3",
|
|
3548
|
+
"@salesforce/core": "^6.2.0",
|
|
3545
3549
|
"@salesforce/kit": "^3.0.15",
|
|
3546
3550
|
"@salesforce/schemas": "^1.6.1",
|
|
3547
|
-
"@salesforce/source-deploy-retrieve": "^10.0.
|
|
3551
|
+
"@salesforce/source-deploy-retrieve": "^10.0.2",
|
|
3548
3552
|
"@salesforce/ts-types": "^2.0.9",
|
|
3549
3553
|
"fast-xml-parser": "^4.3.1",
|
|
3550
3554
|
"globby": "^11",
|
|
@@ -3558,82 +3562,6 @@
|
|
|
3558
3562
|
"node": ">=18.0.0"
|
|
3559
3563
|
}
|
|
3560
3564
|
},
|
|
3561
|
-
"node_modules/@salesforce/packaging/node_modules/@oclif/core": {
|
|
3562
|
-
"version": "2.15.0",
|
|
3563
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-2.15.0.tgz",
|
|
3564
|
-
"integrity": "sha512-fNEMG5DzJHhYmI3MgpByTvltBOMyFcnRIUMxbiz2ai8rhaYgaTHMG3Q38HcosfIvtw9nCjxpcQtC8MN8QtVCcA==",
|
|
3565
|
-
"license": "MIT",
|
|
3566
|
-
"dependencies": {
|
|
3567
|
-
"@types/cli-progress": "^3.11.0",
|
|
3568
|
-
"ansi-escapes": "^4.3.2",
|
|
3569
|
-
"ansi-styles": "^4.3.0",
|
|
3570
|
-
"cardinal": "^2.1.1",
|
|
3571
|
-
"chalk": "^4.1.2",
|
|
3572
|
-
"clean-stack": "^3.0.1",
|
|
3573
|
-
"cli-progress": "^3.12.0",
|
|
3574
|
-
"debug": "^4.3.4",
|
|
3575
|
-
"ejs": "^3.1.8",
|
|
3576
|
-
"get-package-type": "^0.1.0",
|
|
3577
|
-
"globby": "^11.1.0",
|
|
3578
|
-
"hyperlinker": "^1.0.0",
|
|
3579
|
-
"indent-string": "^4.0.0",
|
|
3580
|
-
"is-wsl": "^2.2.0",
|
|
3581
|
-
"js-yaml": "^3.14.1",
|
|
3582
|
-
"natural-orderby": "^2.0.3",
|
|
3583
|
-
"object-treeify": "^1.1.33",
|
|
3584
|
-
"password-prompt": "^1.1.2",
|
|
3585
|
-
"slice-ansi": "^4.0.0",
|
|
3586
|
-
"string-width": "^4.2.3",
|
|
3587
|
-
"strip-ansi": "^6.0.1",
|
|
3588
|
-
"supports-color": "^8.1.1",
|
|
3589
|
-
"supports-hyperlinks": "^2.2.0",
|
|
3590
|
-
"ts-node": "^10.9.1",
|
|
3591
|
-
"tslib": "^2.5.0",
|
|
3592
|
-
"widest-line": "^3.1.0",
|
|
3593
|
-
"wordwrap": "^1.0.0",
|
|
3594
|
-
"wrap-ansi": "^7.0.0"
|
|
3595
|
-
},
|
|
3596
|
-
"engines": {
|
|
3597
|
-
"node": ">=14.0.0"
|
|
3598
|
-
}
|
|
3599
|
-
},
|
|
3600
|
-
"node_modules/@salesforce/packaging/node_modules/argparse": {
|
|
3601
|
-
"version": "1.0.10",
|
|
3602
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
3603
|
-
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
3604
|
-
"license": "MIT",
|
|
3605
|
-
"dependencies": {
|
|
3606
|
-
"sprintf-js": "~1.0.2"
|
|
3607
|
-
}
|
|
3608
|
-
},
|
|
3609
|
-
"node_modules/@salesforce/packaging/node_modules/js-yaml": {
|
|
3610
|
-
"version": "3.14.1",
|
|
3611
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
3612
|
-
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
3613
|
-
"license": "MIT",
|
|
3614
|
-
"dependencies": {
|
|
3615
|
-
"argparse": "^1.0.7",
|
|
3616
|
-
"esprima": "^4.0.0"
|
|
3617
|
-
},
|
|
3618
|
-
"bin": {
|
|
3619
|
-
"js-yaml": "bin/js-yaml.js"
|
|
3620
|
-
}
|
|
3621
|
-
},
|
|
3622
|
-
"node_modules/@salesforce/packaging/node_modules/supports-color": {
|
|
3623
|
-
"version": "8.1.1",
|
|
3624
|
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
|
3625
|
-
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
|
3626
|
-
"license": "MIT",
|
|
3627
|
-
"dependencies": {
|
|
3628
|
-
"has-flag": "^4.0.0"
|
|
3629
|
-
},
|
|
3630
|
-
"engines": {
|
|
3631
|
-
"node": ">=10"
|
|
3632
|
-
},
|
|
3633
|
-
"funding": {
|
|
3634
|
-
"url": "https://github.com/chalk/supports-color?sponsor=1"
|
|
3635
|
-
}
|
|
3636
|
-
},
|
|
3637
3565
|
"node_modules/@salesforce/plugin-apex": {
|
|
3638
3566
|
"version": "3.0.8",
|
|
3639
3567
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.0.8.tgz",
|
|
@@ -4336,9 +4264,9 @@
|
|
|
4336
4264
|
}
|
|
4337
4265
|
},
|
|
4338
4266
|
"node_modules/@salesforce/plugin-org": {
|
|
4339
|
-
"version": "3.0
|
|
4340
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-3.0.
|
|
4341
|
-
"integrity": "sha512-
|
|
4267
|
+
"version": "3.1.0",
|
|
4268
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-3.1.0.tgz",
|
|
4269
|
+
"integrity": "sha512-Vg7puJBlr2VVJtOwKtKHnOG/kVPOoLQrPOCGiQPCY/9nJt/1JU4FTjNrWnwB8o+JedoDm2d0G7s1OQzwjeYllw==",
|
|
4342
4270
|
"license": "BSD-3-Clause",
|
|
4343
4271
|
"dependencies": {
|
|
4344
4272
|
"@oclif/core": "^3.10.8",
|
|
@@ -4353,15 +4281,15 @@
|
|
|
4353
4281
|
}
|
|
4354
4282
|
},
|
|
4355
4283
|
"node_modules/@salesforce/plugin-packaging": {
|
|
4356
|
-
"version": "1.27.
|
|
4357
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-1.27.
|
|
4358
|
-
"integrity": "sha512-
|
|
4284
|
+
"version": "1.27.6",
|
|
4285
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-1.27.6.tgz",
|
|
4286
|
+
"integrity": "sha512-fVYuWQzZbOF1okRLCIrLdjYMNRGIsWmfHyapJz+bmu/+parIPx4BtdEhaUKDC38e3vyS4DDMyZGJsl8au1sCZw==",
|
|
4359
4287
|
"license": "BSD-3-Clause",
|
|
4360
4288
|
"dependencies": {
|
|
4361
4289
|
"@oclif/core": "^3.11.0",
|
|
4362
4290
|
"@salesforce/core": "^6.1.3",
|
|
4363
4291
|
"@salesforce/kit": "^3.0.15",
|
|
4364
|
-
"@salesforce/packaging": "^3.0.
|
|
4292
|
+
"@salesforce/packaging": "^3.0.4",
|
|
4365
4293
|
"@salesforce/sf-plugins-core": "^5.0.3",
|
|
4366
4294
|
"chalk": "^4.1.2",
|
|
4367
4295
|
"tslib": "^2"
|
|
@@ -8751,9 +8679,9 @@
|
|
|
8751
8679
|
}
|
|
8752
8680
|
},
|
|
8753
8681
|
"node_modules/@salesforce/plugin-telemetry": {
|
|
8754
|
-
"version": "3.1.
|
|
8755
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.1.
|
|
8756
|
-
"integrity": "sha512
|
|
8682
|
+
"version": "3.1.4",
|
|
8683
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.1.4.tgz",
|
|
8684
|
+
"integrity": "sha512-RZ4tf2NhWX/wLsN5+NigwgOX87gwrdK0VtkrLN8fFOvsfwqj2cTofNZDvlI0VXJ6+nKAjvLlwGgjCn9+2kf+7w==",
|
|
8757
8685
|
"license": "BSD-3-Clause",
|
|
8758
8686
|
"dependencies": {
|
|
8759
8687
|
"@oclif/core": "^3.8.0",
|
|
@@ -8784,9 +8712,9 @@
|
|
|
8784
8712
|
}
|
|
8785
8713
|
},
|
|
8786
8714
|
"node_modules/@salesforce/plugin-trust": {
|
|
8787
|
-
"version": "3.0
|
|
8788
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.0.
|
|
8789
|
-
"integrity": "sha512-
|
|
8715
|
+
"version": "3.1.0",
|
|
8716
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.1.0.tgz",
|
|
8717
|
+
"integrity": "sha512-aYo/aeB7rfzfb6eXsjMGnwr00BctsmGu2Hpg1cg7P9/A4clghEIsy6PlnqTtKm0waoux3bxhaV2MeqU+6XbXqQ==",
|
|
8790
8718
|
"license": "BSD-3-Clause",
|
|
8791
8719
|
"dependencies": {
|
|
8792
8720
|
"@oclif/core": "^3.12.0",
|
|
@@ -8984,12 +8912,12 @@
|
|
|
8984
8912
|
"license": "ISC"
|
|
8985
8913
|
},
|
|
8986
8914
|
"node_modules/@salesforce/sf-plugins-core": {
|
|
8987
|
-
"version": "5.0.
|
|
8988
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.
|
|
8989
|
-
"integrity": "sha512-
|
|
8915
|
+
"version": "5.0.5",
|
|
8916
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.5.tgz",
|
|
8917
|
+
"integrity": "sha512-IlxDYH8ihznGwPclKyo/teKo4eutuIIzA3hq2d9AuFlGH4N6e7rN3IgTfhp7yV/K7RA70Ub/+dl7etIAO7FmMQ==",
|
|
8990
8918
|
"license": "BSD-3-Clause",
|
|
8991
8919
|
"dependencies": {
|
|
8992
|
-
"@oclif/core": "^3.
|
|
8920
|
+
"@oclif/core": "^3.12.0",
|
|
8993
8921
|
"@salesforce/core": "^6.2.0",
|
|
8994
8922
|
"@salesforce/kit": "^3.0.15",
|
|
8995
8923
|
"@salesforce/ts-types": "^2.0.9",
|
|
@@ -9402,24 +9330,28 @@
|
|
|
9402
9330
|
"version": "1.0.9",
|
|
9403
9331
|
"resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz",
|
|
9404
9332
|
"integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==",
|
|
9333
|
+
"dev": true,
|
|
9405
9334
|
"license": "MIT"
|
|
9406
9335
|
},
|
|
9407
9336
|
"node_modules/@tsconfig/node12": {
|
|
9408
9337
|
"version": "1.0.11",
|
|
9409
9338
|
"resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
|
|
9410
9339
|
"integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
|
|
9340
|
+
"dev": true,
|
|
9411
9341
|
"license": "MIT"
|
|
9412
9342
|
},
|
|
9413
9343
|
"node_modules/@tsconfig/node14": {
|
|
9414
9344
|
"version": "1.0.3",
|
|
9415
9345
|
"resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
|
|
9416
9346
|
"integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
|
|
9347
|
+
"dev": true,
|
|
9417
9348
|
"license": "MIT"
|
|
9418
9349
|
},
|
|
9419
9350
|
"node_modules/@tsconfig/node16": {
|
|
9420
9351
|
"version": "1.0.4",
|
|
9421
9352
|
"resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz",
|
|
9422
9353
|
"integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==",
|
|
9354
|
+
"dev": true,
|
|
9423
9355
|
"license": "MIT"
|
|
9424
9356
|
},
|
|
9425
9357
|
"node_modules/@tufjs/canonical-json": {
|
|
@@ -9482,6 +9414,7 @@
|
|
|
9482
9414
|
"version": "3.11.0",
|
|
9483
9415
|
"resolved": "https://registry.npmjs.org/@types/cli-progress/-/cli-progress-3.11.0.tgz",
|
|
9484
9416
|
"integrity": "sha512-XhXhBv1R/q2ahF3BM7qT5HLzJNlIL0wbcGyZVjqOTqAybAnsLisd7gy1UCyIqpL+5Iv6XhlSyzjLCnI2sIdbCg==",
|
|
9417
|
+
"dev": true,
|
|
9485
9418
|
"license": "MIT",
|
|
9486
9419
|
"dependencies": {
|
|
9487
9420
|
"@types/node": "*"
|
|
@@ -10040,6 +9973,7 @@
|
|
|
10040
9973
|
"version": "8.2.0",
|
|
10041
9974
|
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz",
|
|
10042
9975
|
"integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==",
|
|
9976
|
+
"dev": true,
|
|
10043
9977
|
"license": "MIT",
|
|
10044
9978
|
"engines": {
|
|
10045
9979
|
"node": ">=0.4.0"
|
|
@@ -10295,6 +10229,7 @@
|
|
|
10295
10229
|
"version": "4.1.3",
|
|
10296
10230
|
"resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
|
|
10297
10231
|
"integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
|
|
10232
|
+
"dev": true,
|
|
10298
10233
|
"license": "MIT"
|
|
10299
10234
|
},
|
|
10300
10235
|
"node_modules/argparse": {
|
|
@@ -12331,6 +12266,7 @@
|
|
|
12331
12266
|
"version": "1.1.1",
|
|
12332
12267
|
"resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
|
|
12333
12268
|
"integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
|
|
12269
|
+
"dev": true,
|
|
12334
12270
|
"license": "MIT"
|
|
12335
12271
|
},
|
|
12336
12272
|
"node_modules/cross-spawn": {
|
|
@@ -17825,6 +17761,7 @@
|
|
|
17825
17761
|
"version": "1.3.6",
|
|
17826
17762
|
"resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
|
|
17827
17763
|
"integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
|
|
17764
|
+
"dev": true,
|
|
17828
17765
|
"license": "ISC"
|
|
17829
17766
|
},
|
|
17830
17767
|
"node_modules/make-fetch-happen": {
|
|
@@ -26461,6 +26398,7 @@
|
|
|
26461
26398
|
"version": "10.9.1",
|
|
26462
26399
|
"resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz",
|
|
26463
26400
|
"integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==",
|
|
26401
|
+
"dev": true,
|
|
26464
26402
|
"license": "MIT",
|
|
26465
26403
|
"dependencies": {
|
|
26466
26404
|
"@cspotcode/source-map-support": "^0.8.0",
|
|
@@ -26504,6 +26442,7 @@
|
|
|
26504
26442
|
"version": "4.0.2",
|
|
26505
26443
|
"resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
|
|
26506
26444
|
"integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
|
|
26445
|
+
"dev": true,
|
|
26507
26446
|
"license": "BSD-3-Clause",
|
|
26508
26447
|
"engines": {
|
|
26509
26448
|
"node": ">=0.3.1"
|
|
@@ -26788,6 +26727,7 @@
|
|
|
26788
26727
|
"version": "5.2.2",
|
|
26789
26728
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz",
|
|
26790
26729
|
"integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==",
|
|
26730
|
+
"devOptional": true,
|
|
26791
26731
|
"license": "Apache-2.0",
|
|
26792
26732
|
"bin": {
|
|
26793
26733
|
"tsc": "bin/tsc",
|
|
@@ -27001,6 +26941,7 @@
|
|
|
27001
26941
|
"version": "3.0.1",
|
|
27002
26942
|
"resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz",
|
|
27003
26943
|
"integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==",
|
|
26944
|
+
"dev": true,
|
|
27004
26945
|
"license": "MIT"
|
|
27005
26946
|
},
|
|
27006
26947
|
"node_modules/validate-npm-package-license": {
|
|
@@ -28555,6 +28496,7 @@
|
|
|
28555
28496
|
"version": "3.1.1",
|
|
28556
28497
|
"resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
|
|
28557
28498
|
"integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
|
|
28499
|
+
"dev": true,
|
|
28558
28500
|
"license": "MIT",
|
|
28559
28501
|
"engines": {
|
|
28560
28502
|
"node": ">=6"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.21.
|
|
4
|
+
"version": "2.21.3",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
}
|
|
125
125
|
},
|
|
126
126
|
"dependencies": {
|
|
127
|
-
"@oclif/core": "3.
|
|
127
|
+
"@oclif/core": "3.13.1",
|
|
128
128
|
"@oclif/plugin-autocomplete": "3.0.2",
|
|
129
129
|
"@oclif/plugin-commands": "3.0.7",
|
|
130
130
|
"@oclif/plugin-help": "6.0.7",
|
|
@@ -143,17 +143,17 @@
|
|
|
143
143
|
"@salesforce/plugin-info": "3.0.5",
|
|
144
144
|
"@salesforce/plugin-limits": "3.0.4",
|
|
145
145
|
"@salesforce/plugin-marketplace": "1.0.7",
|
|
146
|
-
"@salesforce/plugin-org": "3.0
|
|
147
|
-
"@salesforce/plugin-packaging": "1.27.
|
|
146
|
+
"@salesforce/plugin-org": "3.1.0",
|
|
147
|
+
"@salesforce/plugin-packaging": "1.27.6",
|
|
148
148
|
"@salesforce/plugin-schema": "3.0.6",
|
|
149
149
|
"@salesforce/plugin-settings": "2.0.9",
|
|
150
150
|
"@salesforce/plugin-sobject": "1.0.2",
|
|
151
151
|
"@salesforce/plugin-source": "3.0.1",
|
|
152
|
-
"@salesforce/plugin-telemetry": "3.1.
|
|
152
|
+
"@salesforce/plugin-telemetry": "3.1.4",
|
|
153
153
|
"@salesforce/plugin-templates": "56.0.3",
|
|
154
|
-
"@salesforce/plugin-trust": "3.0
|
|
154
|
+
"@salesforce/plugin-trust": "3.1.0",
|
|
155
155
|
"@salesforce/plugin-user": "3.0.6",
|
|
156
|
-
"@salesforce/sf-plugins-core": "5.0.
|
|
156
|
+
"@salesforce/sf-plugins-core": "5.0.5",
|
|
157
157
|
"debug": "^4.3.4"
|
|
158
158
|
},
|
|
159
159
|
"pinnedDependencies": [
|