@salesforce/cli 2.136.5 → 2.136.6
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 +157 -20
- package/npm-shrinkwrap.json +174 -188
- package/oclif.lock +202 -216
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
|
|
|
25
25
|
$ sf COMMAND
|
|
26
26
|
running command...
|
|
27
27
|
$ sf (--version|-v)
|
|
28
|
-
@salesforce/cli/2.136.
|
|
28
|
+
@salesforce/cli/2.136.6 linux-x64 node-v22.22.2
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -113,6 +113,9 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
113
113
|
- [`sf logic run test`](#sf-logic-run-test)
|
|
114
114
|
- [`sf org assign permset`](#sf-org-assign-permset)
|
|
115
115
|
- [`sf org assign permsetlicense`](#sf-org-assign-permsetlicense)
|
|
116
|
+
- [`sf org auth show-access-token`](#sf-org-auth-show-access-token)
|
|
117
|
+
- [`sf org auth show-sfdx-auth-url`](#sf-org-auth-show-sfdx-auth-url)
|
|
118
|
+
- [`sf org auth show-user-password`](#sf-org-auth-show-user-password)
|
|
116
119
|
- [`sf org create agent-user`](#sf-org-create-agent-user)
|
|
117
120
|
- [`sf org create sandbox`](#sf-org-create-sandbox)
|
|
118
121
|
- [`sf org create scratch`](#sf-org-create-scratch)
|
|
@@ -4391,6 +4394,140 @@ EXAMPLES
|
|
|
4391
4394
|
|
|
4392
4395
|
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.6/src/commands/org/assign/permsetlicense.ts)_
|
|
4393
4396
|
|
|
4397
|
+
## `sf org auth show-access-token`
|
|
4398
|
+
|
|
4399
|
+
Show the current access token for an org.
|
|
4400
|
+
|
|
4401
|
+
```
|
|
4402
|
+
USAGE
|
|
4403
|
+
$ sf org auth show-access-token -o <value> [--json] [--flags-dir <value>] [-p]
|
|
4404
|
+
|
|
4405
|
+
FLAGS
|
|
4406
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
4407
|
+
configuration variable is already set.
|
|
4408
|
+
-p, --no-prompt Skip the security warning and reveal the access token without confirmation.
|
|
4409
|
+
|
|
4410
|
+
GLOBAL FLAGS
|
|
4411
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
4412
|
+
--json Format output as json.
|
|
4413
|
+
|
|
4414
|
+
DESCRIPTION
|
|
4415
|
+
Show the current access token for an org.
|
|
4416
|
+
|
|
4417
|
+
Because access tokens are sensitive credentials that grant full access to an org, this command prompts for
|
|
4418
|
+
confirmation before revealing the token. Skip confirmation by specifying either the --no-prompt or --json flag.
|
|
4419
|
+
|
|
4420
|
+
EXAMPLES
|
|
4421
|
+
Show the access token for the default org:
|
|
4422
|
+
|
|
4423
|
+
$ sf org auth show-access-token
|
|
4424
|
+
|
|
4425
|
+
Show the access token for an org with alias "my-org":
|
|
4426
|
+
|
|
4427
|
+
$ sf org auth show-access-token --target-org my-org
|
|
4428
|
+
|
|
4429
|
+
Show the access token without the confirmation prompt:
|
|
4430
|
+
|
|
4431
|
+
$ sf org auth show-access-token --target-org my-org --no-prompt
|
|
4432
|
+
|
|
4433
|
+
Get the access token as JSON for use in scripts:
|
|
4434
|
+
|
|
4435
|
+
$ sf org auth show-access-token --target-org my-org --json
|
|
4436
|
+
```
|
|
4437
|
+
|
|
4438
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/auth/show-access-token.ts)_
|
|
4439
|
+
|
|
4440
|
+
## `sf org auth show-sfdx-auth-url`
|
|
4441
|
+
|
|
4442
|
+
Show the SFDX Auth URL for an org.
|
|
4443
|
+
|
|
4444
|
+
```
|
|
4445
|
+
USAGE
|
|
4446
|
+
$ sf org auth show-sfdx-auth-url -o <value> [--json] [--flags-dir <value>] [-p]
|
|
4447
|
+
|
|
4448
|
+
FLAGS
|
|
4449
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
4450
|
+
configuration variable is already set.
|
|
4451
|
+
-p, --no-prompt Skip the security warning and reveal the SFDX Auth URL without confirmation.
|
|
4452
|
+
|
|
4453
|
+
GLOBAL FLAGS
|
|
4454
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
4455
|
+
--json Format output as json.
|
|
4456
|
+
|
|
4457
|
+
DESCRIPTION
|
|
4458
|
+
Show the SFDX Auth URL for an org.
|
|
4459
|
+
|
|
4460
|
+
Shows the SFDX Auth URL for an org. This URL is only available for orgs authenticated via a web-based OAuth flow. This
|
|
4461
|
+
command prompts for confirmation before revealing it. Skip confirmation by specifying either the --no-prompt or --json
|
|
4462
|
+
flag.
|
|
4463
|
+
|
|
4464
|
+
EXAMPLES
|
|
4465
|
+
Show the SFDX Auth URL for the default org:
|
|
4466
|
+
|
|
4467
|
+
$ sf org auth show-sfdx-auth-url
|
|
4468
|
+
|
|
4469
|
+
Show the SFDX Auth URL for an org with alias "my-org":
|
|
4470
|
+
|
|
4471
|
+
$ sf org auth show-sfdx-auth-url --target-org my-org
|
|
4472
|
+
|
|
4473
|
+
Show the SFDX Auth URL without the confirmation prompt:
|
|
4474
|
+
|
|
4475
|
+
$ sf org auth show-sfdx-auth-url --target-org my-org --no-prompt
|
|
4476
|
+
|
|
4477
|
+
Get the SFDX Auth URL as JSON for use in scripts:
|
|
4478
|
+
|
|
4479
|
+
$ sf org auth show-sfdx-auth-url --target-org my-org --json
|
|
4480
|
+
```
|
|
4481
|
+
|
|
4482
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/auth/show-sfdx-auth-url.ts)_
|
|
4483
|
+
|
|
4484
|
+
## `sf org auth show-user-password`
|
|
4485
|
+
|
|
4486
|
+
Show the stored password for an org's user.
|
|
4487
|
+
|
|
4488
|
+
```
|
|
4489
|
+
USAGE
|
|
4490
|
+
$ sf org auth show-user-password -o <value> [--json] [--flags-dir <value>] [-p]
|
|
4491
|
+
|
|
4492
|
+
FLAGS
|
|
4493
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
4494
|
+
configuration variable is already set.
|
|
4495
|
+
-p, --no-prompt Skip the security warning and reveal the password without confirmation.
|
|
4496
|
+
|
|
4497
|
+
GLOBAL FLAGS
|
|
4498
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
4499
|
+
--json Format output as json.
|
|
4500
|
+
|
|
4501
|
+
DESCRIPTION
|
|
4502
|
+
Show the stored password for an org's user.
|
|
4503
|
+
|
|
4504
|
+
This command shows only passwords that were generated locally in your DX project with either the "org generate
|
|
4505
|
+
password" or "org create user" CLI command. If you generated a password for a user in Setup in your org, you can't
|
|
4506
|
+
show it with this command.
|
|
4507
|
+
|
|
4508
|
+
Because passwords are sensitive credentials, this command prompts for confirmation before revealing it. Skip
|
|
4509
|
+
confirmation by specifying either the --no-prompt or --json flag.
|
|
4510
|
+
|
|
4511
|
+
EXAMPLES
|
|
4512
|
+
Show the password for the default org's user:
|
|
4513
|
+
|
|
4514
|
+
$ sf org auth show-user-password
|
|
4515
|
+
|
|
4516
|
+
Show the password for an org with alias "my-org":
|
|
4517
|
+
|
|
4518
|
+
$ sf org auth show-user-password --target-org my-org
|
|
4519
|
+
|
|
4520
|
+
Show the password without the confirmation prompt:
|
|
4521
|
+
|
|
4522
|
+
$ sf org auth show-user-password --target-org my-org --no-prompt
|
|
4523
|
+
|
|
4524
|
+
Get the password as JSON for use in scripts:
|
|
4525
|
+
|
|
4526
|
+
$ sf org auth show-user-password --target-org my-org --json
|
|
4527
|
+
```
|
|
4528
|
+
|
|
4529
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/auth/show-user-password.ts)_
|
|
4530
|
+
|
|
4394
4531
|
## `sf org create agent-user`
|
|
4395
4532
|
|
|
4396
4533
|
Create the default Salesforce user that is used to run an agent.
|
|
@@ -4467,7 +4604,7 @@ FLAG DESCRIPTIONS
|
|
|
4467
4604
|
"agent.user.<GUID>@your-org-domain.com".
|
|
4468
4605
|
```
|
|
4469
4606
|
|
|
4470
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4607
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/create/agent-user.ts)_
|
|
4471
4608
|
|
|
4472
4609
|
## `sf org create sandbox`
|
|
4473
4610
|
|
|
@@ -4601,7 +4738,7 @@ FLAG DESCRIPTIONS
|
|
|
4601
4738
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
4602
4739
|
```
|
|
4603
4740
|
|
|
4604
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4741
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/create/sandbox.ts)_
|
|
4605
4742
|
|
|
4606
4743
|
## `sf org create scratch`
|
|
4607
4744
|
|
|
@@ -4783,7 +4920,7 @@ FLAG DESCRIPTIONS
|
|
|
4783
4920
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4784
4921
|
```
|
|
4785
4922
|
|
|
4786
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
4923
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/create/scratch.ts)_
|
|
4787
4924
|
|
|
4788
4925
|
## `sf org create user`
|
|
4789
4926
|
|
|
@@ -4937,7 +5074,7 @@ EXAMPLES
|
|
|
4937
5074
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4938
5075
|
```
|
|
4939
5076
|
|
|
4940
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5077
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/delete/sandbox.ts)_
|
|
4941
5078
|
|
|
4942
5079
|
## `sf org delete scratch`
|
|
4943
5080
|
|
|
@@ -4981,7 +5118,7 @@ EXAMPLES
|
|
|
4981
5118
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4982
5119
|
```
|
|
4983
5120
|
|
|
4984
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5121
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/delete/scratch.ts)_
|
|
4985
5122
|
|
|
4986
5123
|
## `sf org disable tracking`
|
|
4987
5124
|
|
|
@@ -5020,7 +5157,7 @@ EXAMPLES
|
|
|
5020
5157
|
$ sf org disable tracking
|
|
5021
5158
|
```
|
|
5022
5159
|
|
|
5023
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5160
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/disable/tracking.ts)_
|
|
5024
5161
|
|
|
5025
5162
|
## `sf org display`
|
|
5026
5163
|
|
|
@@ -5065,7 +5202,7 @@ EXAMPLES
|
|
|
5065
5202
|
$ sf org display --target-org TestOrg1 --verbose
|
|
5066
5203
|
```
|
|
5067
5204
|
|
|
5068
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5205
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/display.ts)_
|
|
5069
5206
|
|
|
5070
5207
|
## `sf org display user`
|
|
5071
5208
|
|
|
@@ -5146,7 +5283,7 @@ EXAMPLES
|
|
|
5146
5283
|
$ sf org enable tracking
|
|
5147
5284
|
```
|
|
5148
5285
|
|
|
5149
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5286
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/enable/tracking.ts)_
|
|
5150
5287
|
|
|
5151
5288
|
## `sf org generate password`
|
|
5152
5289
|
|
|
@@ -5252,7 +5389,7 @@ EXAMPLES
|
|
|
5252
5389
|
$ sf org list --clean
|
|
5253
5390
|
```
|
|
5254
5391
|
|
|
5255
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5392
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/list.ts)_
|
|
5256
5393
|
|
|
5257
5394
|
## `sf org list auth`
|
|
5258
5395
|
|
|
@@ -5391,7 +5528,7 @@ FLAG DESCRIPTIONS
|
|
|
5391
5528
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
5392
5529
|
```
|
|
5393
5530
|
|
|
5394
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5531
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/list/metadata.ts)_
|
|
5395
5532
|
|
|
5396
5533
|
## `sf org list metadata-types`
|
|
5397
5534
|
|
|
@@ -5446,7 +5583,7 @@ FLAG DESCRIPTIONS
|
|
|
5446
5583
|
Override the api version used for api requests made by this command
|
|
5447
5584
|
```
|
|
5448
5585
|
|
|
5449
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
5586
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/list/metadata-types.ts)_
|
|
5450
5587
|
|
|
5451
5588
|
## `sf org list sobject record-counts`
|
|
5452
5589
|
|
|
@@ -5992,7 +6129,7 @@ EXAMPLES
|
|
|
5992
6129
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5993
6130
|
```
|
|
5994
6131
|
|
|
5995
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
6132
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/open.ts)_
|
|
5996
6133
|
|
|
5997
6134
|
## `sf org open agent`
|
|
5998
6135
|
|
|
@@ -6067,7 +6204,7 @@ FLAG DESCRIPTIONS
|
|
|
6067
6204
|
flag.
|
|
6068
6205
|
```
|
|
6069
6206
|
|
|
6070
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
6207
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/open/agent.ts)_
|
|
6071
6208
|
|
|
6072
6209
|
## `sf org open authoring-bundle`
|
|
6073
6210
|
|
|
@@ -6113,7 +6250,7 @@ EXAMPLES
|
|
|
6113
6250
|
$ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
|
|
6114
6251
|
```
|
|
6115
6252
|
|
|
6116
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
6253
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/open/authoring-bundle.ts)_
|
|
6117
6254
|
|
|
6118
6255
|
## `sf org refresh sandbox`
|
|
6119
6256
|
|
|
@@ -6216,7 +6353,7 @@ FLAG DESCRIPTIONS
|
|
|
6216
6353
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
6217
6354
|
```
|
|
6218
6355
|
|
|
6219
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
6356
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/refresh/sandbox.ts)_
|
|
6220
6357
|
|
|
6221
6358
|
## `sf org resume sandbox`
|
|
6222
6359
|
|
|
@@ -6279,7 +6416,7 @@ FLAG DESCRIPTIONS
|
|
|
6279
6416
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
6280
6417
|
```
|
|
6281
6418
|
|
|
6282
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
6419
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/resume/sandbox.ts)_
|
|
6283
6420
|
|
|
6284
6421
|
## `sf org resume scratch`
|
|
6285
6422
|
|
|
@@ -6332,7 +6469,7 @@ FLAG DESCRIPTIONS
|
|
|
6332
6469
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
6333
6470
|
```
|
|
6334
6471
|
|
|
6335
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.
|
|
6472
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.0/src/commands/org/resume/scratch.ts)_
|
|
6336
6473
|
|
|
6337
6474
|
## `sf package convert`
|
|
6338
6475
|
|
|
@@ -10310,7 +10447,7 @@ EXAMPLES
|
|
|
10310
10447
|
$ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
|
|
10311
10448
|
```
|
|
10312
10449
|
|
|
10313
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
10450
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.114/src/commands/sobject/describe.ts)_
|
|
10314
10451
|
|
|
10315
10452
|
## `sf sobject list`
|
|
10316
10453
|
|
|
@@ -10349,7 +10486,7 @@ EXAMPLES
|
|
|
10349
10486
|
$ sf sobject list --sobject custom --target-org my-scratch-org
|
|
10350
10487
|
```
|
|
10351
10488
|
|
|
10352
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
10489
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.114/src/commands/sobject/list.ts)_
|
|
10353
10490
|
|
|
10354
10491
|
## `sf template generate analytics template`
|
|
10355
10492
|
|