@salesforce/cli 2.136.5 → 2.136.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -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.5 linux-x64 node-v22.22.2
28
+ @salesforce/cli/2.136.8 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)
@@ -4342,7 +4345,7 @@ EXAMPLES
4342
4345
  $ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
4343
4346
  ```
4344
4347
 
4345
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.6/src/commands/org/assign/permset.ts)_
4348
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.10.0/src/commands/org/assign/permset.ts)_
4346
4349
 
4347
4350
  ## `sf org assign permsetlicense`
4348
4351
 
@@ -4389,7 +4392,141 @@ EXAMPLES
4389
4392
  user3
4390
4393
  ```
4391
4394
 
4392
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.6/src/commands/org/assign/permsetlicense.ts)_
4395
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.10.0/src/commands/org/assign/permsetlicense.ts)_
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.1/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.1/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.1/src/commands/org/auth/show-user-password.ts)_
4393
4530
 
4394
4531
  ## `sf org create agent-user`
4395
4532
 
@@ -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.10.14/src/commands/org/create/agent-user.ts)_
4607
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/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.10.14/src/commands/org/create/sandbox.ts)_
4741
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/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.10.14/src/commands/org/create/scratch.ts)_
4923
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/create/scratch.ts)_
4787
4924
 
4788
4925
  ## `sf org create user`
4789
4926
 
@@ -4891,7 +5028,7 @@ FLAG DESCRIPTIONS
4891
5028
  might be different than what you specify in the definition file.
4892
5029
  ```
4893
5030
 
4894
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.6/src/commands/org/create/user.ts)_
5031
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.10.0/src/commands/org/create/user.ts)_
4895
5032
 
4896
5033
  ## `sf org delete sandbox`
4897
5034
 
@@ -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.10.14/src/commands/org/delete/sandbox.ts)_
5077
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/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.10.14/src/commands/org/delete/scratch.ts)_
5121
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/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.10.14/src/commands/org/disable/tracking.ts)_
5160
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/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.10.14/src/commands/org/display.ts)_
5205
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/display.ts)_
5069
5206
 
5070
5207
  ## `sf org display user`
5071
5208
 
@@ -5087,9 +5224,8 @@ GLOBAL FLAGS
5087
5224
  DESCRIPTION
5088
5225
  Display information about a Salesforce user.
5089
5226
 
5090
- Output includes the profile name, org ID, access token, instance URL, login URL, and alias if applicable. The
5091
- displayed alias is local and different from the Alias field of the User sObject record of the new user, which you set
5092
- in the Setup UI.
5227
+ Output includes the profile name, org ID, instance URL, login URL, and alias if applicable. The displayed alias is
5228
+ local and different from the Alias field of the User sObject record of the new user, which you set in the Setup UI.
5093
5229
 
5094
5230
  ALIASES
5095
5231
  $ sf force user display
@@ -5104,7 +5240,7 @@ EXAMPLES
5104
5240
  $ sf org display user --target-org me@my.org --json
5105
5241
  ```
5106
5242
 
5107
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.6/src/commands/org/display/user.ts)_
5243
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.10.0/src/commands/org/display/user.ts)_
5108
5244
 
5109
5245
  ## `sf org enable tracking`
5110
5246
 
@@ -5146,7 +5282,7 @@ EXAMPLES
5146
5282
  $ sf org enable tracking
5147
5283
  ```
5148
5284
 
5149
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/enable/tracking.ts)_
5285
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/enable/tracking.ts)_
5150
5286
 
5151
5287
  ## `sf org generate password`
5152
5288
 
@@ -5191,7 +5327,7 @@ DESCRIPTION
5191
5327
  4 - lower and upper case letters and symbols only
5192
5328
  5 - lower and upper case letters and numbers and symbols only
5193
5329
 
5194
- To see a password that was previously generated, run "org display user".
5330
+ To see a password that was previously generated, run "org auth show-user-password".
5195
5331
 
5196
5332
  EXAMPLES
5197
5333
  Generate a password for the original admin user of your default scratch org:
@@ -5213,7 +5349,7 @@ EXAMPLES
5213
5349
  $ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
5214
5350
  ```
5215
5351
 
5216
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.6/src/commands/org/generate/password.ts)_
5352
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.10.0/src/commands/org/generate/password.ts)_
5217
5353
 
5218
5354
  ## `sf org list`
5219
5355
 
@@ -5252,7 +5388,7 @@ EXAMPLES
5252
5388
  $ sf org list --clean
5253
5389
  ```
5254
5390
 
5255
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/list.ts)_
5391
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/list.ts)_
5256
5392
 
5257
5393
  ## `sf org list auth`
5258
5394
 
@@ -5284,7 +5420,7 @@ EXAMPLES
5284
5420
  $ sf org list auth
5285
5421
  ```
5286
5422
 
5287
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/list/auth.ts)_
5423
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/list/auth.ts)_
5288
5424
 
5289
5425
  ## `sf org list limits`
5290
5426
 
@@ -5391,7 +5527,7 @@ FLAG DESCRIPTIONS
5391
5527
  Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
5392
5528
  ```
5393
5529
 
5394
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/list/metadata.ts)_
5530
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/list/metadata.ts)_
5395
5531
 
5396
5532
  ## `sf org list metadata-types`
5397
5533
 
@@ -5446,7 +5582,7 @@ FLAG DESCRIPTIONS
5446
5582
  Override the api version used for api requests made by this command
5447
5583
  ```
5448
5584
 
5449
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/list/metadata-types.ts)_
5585
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/list/metadata-types.ts)_
5450
5586
 
5451
5587
  ## `sf org list sobject record-counts`
5452
5588
 
@@ -5530,7 +5666,7 @@ EXAMPLES
5530
5666
  $ sf org list users --target-org me@my.org
5531
5667
  ```
5532
5668
 
5533
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.6/src/commands/org/list/users.ts)_
5669
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.10.0/src/commands/org/list/users.ts)_
5534
5670
 
5535
5671
  ## `sf org login access-token`
5536
5672
 
@@ -5584,7 +5720,7 @@ FLAG DESCRIPTIONS
5584
5720
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5585
5721
  ```
5586
5722
 
5587
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/login/access-token.ts)_
5723
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/login/access-token.ts)_
5588
5724
 
5589
5725
  ## `sf org login jwt`
5590
5726
 
@@ -5675,7 +5811,7 @@ FLAG DESCRIPTIONS
5675
5811
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5676
5812
  ```
5677
5813
 
5678
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/login/jwt.ts)_
5814
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/login/jwt.ts)_
5679
5815
 
5680
5816
  ## `sf org login sfdx-url`
5681
5817
 
@@ -5707,21 +5843,21 @@ DESCRIPTION
5707
5843
  "https://"). Note that although the SFDX authorization URL starts with "force://", it has nothing to do with the
5708
5844
  actual authorization. Salesforce CLI always communicates with your org using HTTPS.
5709
5845
 
5710
- To see an example of an SFDX authorization URL, run "org display --verbose" on an org.
5846
+ To see the SFDX authorization URL for an org, run "org auth show-sfdx-auth-url".
5711
5847
 
5712
5848
  You have three options when creating the authorization file. The easiest option is to redirect the output of the "sf
5713
- org display --verbose --json" command into a file. For example, using an org with alias my-org that you've already
5714
- authorized:
5849
+ org auth show-sfdx-auth-url --json" command into a file. For example, using an org with alias my-org that you've
5850
+ already authorized:
5715
5851
 
5716
- $ sf org display --target-org my-org --verbose --json > authFile.json
5852
+ $ sf org auth show-sfdx-auth-url --target-org my-org --json > authFile.json
5717
5853
 
5718
5854
  The resulting JSON file contains the URL in the "sfdxAuthUrl" property of the "result" object. You can then reference
5719
5855
  the file when running this command:
5720
5856
 
5721
5857
  $ sf org login sfdx-url --sfdx-url-file authFile.json
5722
5858
 
5723
- NOTE: The "sf org display --verbose" command displays the refresh token only for orgs authorized with the web server
5724
- flow, and not the JWT bearer flow.
5859
+ NOTE: The SFDX auth URL is only available for orgs authorized with a web-based OAuth flow, and not the JWT bearer
5860
+ flow.
5725
5861
 
5726
5862
  You can also create a JSON file that has a top-level property named sfdxAuthUrl whose value is the authorization URL.
5727
5863
  Finally, you can create a normal text file that includes just the URL and nothing else.
@@ -5745,7 +5881,7 @@ EXAMPLES
5745
5881
  $ echo url | sf org login sfdx-url --sfdx-url-stdin
5746
5882
  ```
5747
5883
 
5748
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/login/sfdx-url.ts)_
5884
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/login/sfdx-url.ts)_
5749
5885
 
5750
5886
  ## `sf org login web`
5751
5887
 
@@ -5850,7 +5986,7 @@ FLAG DESCRIPTIONS
5850
5986
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5851
5987
  ```
5852
5988
 
5853
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/login/web.ts)_
5989
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/login/web.ts)_
5854
5990
 
5855
5991
  ## `sf org logout`
5856
5992
 
@@ -5916,7 +6052,7 @@ FLAG DESCRIPTIONS
5916
6052
  All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
5917
6053
  ```
5918
6054
 
5919
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.13/src/commands/org/logout.ts)_
6055
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.4.0/src/commands/org/logout.ts)_
5920
6056
 
5921
6057
  ## `sf org open`
5922
6058
 
@@ -5992,7 +6128,7 @@ EXAMPLES
5992
6128
  $ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
5993
6129
  ```
5994
6130
 
5995
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/open.ts)_
6131
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/open.ts)_
5996
6132
 
5997
6133
  ## `sf org open agent`
5998
6134
 
@@ -6067,7 +6203,7 @@ FLAG DESCRIPTIONS
6067
6203
  flag.
6068
6204
  ```
6069
6205
 
6070
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/open/agent.ts)_
6206
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/open/agent.ts)_
6071
6207
 
6072
6208
  ## `sf org open authoring-bundle`
6073
6209
 
@@ -6113,7 +6249,7 @@ EXAMPLES
6113
6249
  $ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
6114
6250
  ```
6115
6251
 
6116
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/open/authoring-bundle.ts)_
6252
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/open/authoring-bundle.ts)_
6117
6253
 
6118
6254
  ## `sf org refresh sandbox`
6119
6255
 
@@ -6216,7 +6352,7 @@ FLAG DESCRIPTIONS
6216
6352
  You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
6217
6353
  ```
6218
6354
 
6219
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/refresh/sandbox.ts)_
6355
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/refresh/sandbox.ts)_
6220
6356
 
6221
6357
  ## `sf org resume sandbox`
6222
6358
 
@@ -6279,7 +6415,7 @@ FLAG DESCRIPTIONS
6279
6415
  returns the job ID. To resume checking the sandbox creation, rerun this command.
6280
6416
  ```
6281
6417
 
6282
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/resume/sandbox.ts)_
6418
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/resume/sandbox.ts)_
6283
6419
 
6284
6420
  ## `sf org resume scratch`
6285
6421
 
@@ -6332,7 +6468,7 @@ FLAG DESCRIPTIONS
6332
6468
  returns the job ID. To resume checking the scratch creation, rerun this command.
6333
6469
  ```
6334
6470
 
6335
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.14/src/commands/org/resume/scratch.ts)_
6471
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.11.1/src/commands/org/resume/scratch.ts)_
6336
6472
 
6337
6473
  ## `sf package convert`
6338
6474
 
@@ -6429,7 +6565,7 @@ FLAG DESCRIPTIONS
6429
6565
  --installation-key-bypass flag is required.
6430
6566
  ```
6431
6567
 
6432
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/convert.ts)_
6568
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/convert.ts)_
6433
6569
 
6434
6570
  ## `sf package create`
6435
6571
 
@@ -6508,7 +6644,7 @@ FLAG DESCRIPTIONS
6508
6644
  Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
6509
6645
  ```
6510
6646
 
6511
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/create.ts)_
6647
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/create.ts)_
6512
6648
 
6513
6649
  ## `sf package delete`
6514
6650
 
@@ -6550,7 +6686,7 @@ EXAMPLES
6550
6686
  $ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
6551
6687
  ```
6552
6688
 
6553
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/delete.ts)_
6689
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/delete.ts)_
6554
6690
 
6555
6691
  ## `sf package install`
6556
6692
 
@@ -6649,7 +6785,7 @@ FLAG DESCRIPTIONS
6649
6785
  - Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
6650
6786
  ```
6651
6787
 
6652
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/install.ts)_
6788
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/install.ts)_
6653
6789
 
6654
6790
  ## `sf package install report`
6655
6791
 
@@ -6682,7 +6818,7 @@ EXAMPLES
6682
6818
  $ sf package install report --request-id 0Hf... --target-org me@example.com
6683
6819
  ```
6684
6820
 
6685
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/install/report.ts)_
6821
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/install/report.ts)_
6686
6822
 
6687
6823
  ## `sf package installed list`
6688
6824
 
@@ -6714,7 +6850,7 @@ EXAMPLES
6714
6850
  $ sf package installed list --target-org me@example.com
6715
6851
  ```
6716
6852
 
6717
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/installed/list.ts)_
6853
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/installed/list.ts)_
6718
6854
 
6719
6855
  ## `sf package list`
6720
6856
 
@@ -6752,7 +6888,7 @@ EXAMPLES
6752
6888
  $ sf package list --target-dev-hub devhub@example.com --verbose
6753
6889
  ```
6754
6890
 
6755
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/list.ts)_
6891
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/list.ts)_
6756
6892
 
6757
6893
  ## `sf package push-upgrade abort`
6758
6894
 
@@ -6791,7 +6927,7 @@ EXAMPLES
6791
6927
  $ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
6792
6928
  ```
6793
6929
 
6794
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/push-upgrade/abort.ts)_
6930
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/push-upgrade/abort.ts)_
6795
6931
 
6796
6932
  ## `sf package push-upgrade list`
6797
6933
 
@@ -6850,7 +6986,7 @@ EXAMPLES
6850
6986
  $ sf package push-upgrade list --package 033xyz –-status Failed
6851
6987
  ```
6852
6988
 
6853
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/push-upgrade/list.ts)_
6989
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/push-upgrade/list.ts)_
6854
6990
 
6855
6991
  ## `sf package push-upgrade report`
6856
6992
 
@@ -6892,7 +7028,7 @@ EXAMPLES
6892
7028
  $ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
6893
7029
  ```
6894
7030
 
6895
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/push-upgrade/report.ts)_
7031
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/push-upgrade/report.ts)_
6896
7032
 
6897
7033
  ## `sf package push-upgrade schedule`
6898
7034
 
@@ -6979,7 +7115,7 @@ FLAG DESCRIPTIONS
6979
7115
  Overrides the value of the target-dev-hub configuration variable, if set.
6980
7116
  ```
6981
7117
 
6982
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/push-upgrade/schedule.ts)_
7118
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/push-upgrade/schedule.ts)_
6983
7119
 
6984
7120
  ## `sf package uninstall`
6985
7121
 
@@ -7027,7 +7163,7 @@ EXAMPLES
7027
7163
  $ sf package uninstall --package "Undesirable Package Alias"
7028
7164
  ```
7029
7165
 
7030
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/uninstall.ts)_
7166
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/uninstall.ts)_
7031
7167
 
7032
7168
  ## `sf package uninstall report`
7033
7169
 
@@ -7060,7 +7196,7 @@ EXAMPLES
7060
7196
  $ sf package uninstall report --request-id 06y... --target-org me@example.com
7061
7197
  ```
7062
7198
 
7063
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/uninstall/report.ts)_
7199
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/uninstall/report.ts)_
7064
7200
 
7065
7201
  ## `sf package update`
7066
7202
 
@@ -7128,7 +7264,7 @@ FLAG DESCRIPTIONS
7128
7264
  the Installed Packages page. Only released package versions can be set as the recommended version.
7129
7265
  ```
7130
7266
 
7131
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/update.ts)_
7267
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/update.ts)_
7132
7268
 
7133
7269
  ## `sf package version create`
7134
7270
 
@@ -7305,7 +7441,7 @@ FLAG DESCRIPTIONS
7305
7441
  periods of no output from commands.
7306
7442
  ```
7307
7443
 
7308
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/create.ts)_
7444
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/create.ts)_
7309
7445
 
7310
7446
  ## `sf package version create list`
7311
7447
 
@@ -7366,7 +7502,7 @@ EXAMPLES
7366
7502
  $ sf package version create list --created-last-days 0 --status Success
7367
7503
  ```
7368
7504
 
7369
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/create/list.ts)_
7505
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/create/list.ts)_
7370
7506
 
7371
7507
  ## `sf package version create report`
7372
7508
 
@@ -7409,7 +7545,7 @@ EXAMPLES
7409
7545
  $ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
7410
7546
  ```
7411
7547
 
7412
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/create/report.ts)_
7548
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/create/report.ts)_
7413
7549
 
7414
7550
  ## `sf package version delete`
7415
7551
 
@@ -7450,7 +7586,7 @@ EXAMPLES
7450
7586
  $ sf package version delete --package 04t... --target-org devhub@example.com
7451
7587
  ```
7452
7588
 
7453
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/delete.ts)_
7589
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/delete.ts)_
7454
7590
 
7455
7591
  ## `sf package version displayancestry`
7456
7592
 
@@ -7510,7 +7646,7 @@ FLAG DESCRIPTIONS
7510
7646
  You can use the DOT code output in graph visualization software to create tree visualizations.
7511
7647
  ```
7512
7648
 
7513
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/displayancestry.ts)_
7649
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/displayancestry.ts)_
7514
7650
 
7515
7651
  ## `sf package version displaydependencies`
7516
7652
 
@@ -7572,7 +7708,7 @@ FLAG DESCRIPTIONS
7572
7708
  package, which must be installed last.
7573
7709
  ```
7574
7710
 
7575
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/displaydependencies.ts)_
7711
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/displaydependencies.ts)_
7576
7712
 
7577
7713
  ## `sf package version list`
7578
7714
 
@@ -7648,7 +7784,7 @@ EXAMPLES
7648
7784
  $ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
7649
7785
  ```
7650
7786
 
7651
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/list.ts)_
7787
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/list.ts)_
7652
7788
 
7653
7789
  ## `sf package version promote`
7654
7790
 
@@ -7692,7 +7828,7 @@ EXAMPLES
7692
7828
  $ sf package version promote --package "Awesome Package Alias"
7693
7829
  ```
7694
7830
 
7695
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/promote.ts)_
7831
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/promote.ts)_
7696
7832
 
7697
7833
  ## `sf package version report`
7698
7834
 
@@ -7732,7 +7868,7 @@ EXAMPLES
7732
7868
  $ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
7733
7869
  ```
7734
7870
 
7735
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/report.ts)_
7871
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/report.ts)_
7736
7872
 
7737
7873
  ## `sf package version retrieve`
7738
7874
 
@@ -7777,7 +7913,7 @@ EXAMPLES
7777
7913
  $ sf package version retrieve --package 04tXXX --output-dir my-directory/ --target-dev-hub devhub@example.com
7778
7914
  ```
7779
7915
 
7780
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/retrieve.ts)_
7916
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/retrieve.ts)_
7781
7917
 
7782
7918
  ## `sf package version update`
7783
7919
 
@@ -7830,7 +7966,7 @@ EXAMPLES
7830
7966
  $ sf package version update --package 04t... --version-description "New Package Version Description"
7831
7967
  ```
7832
7968
 
7833
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package/version/update.ts)_
7969
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package/version/update.ts)_
7834
7970
 
7835
7971
  ## `sf package1 version create`
7836
7972
 
@@ -7897,7 +8033,7 @@ FLAG DESCRIPTIONS
7897
8033
  subscribers.
7898
8034
  ```
7899
8035
 
7900
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package1/version/create.ts)_
8036
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package1/version/create.ts)_
7901
8037
 
7902
8038
  ## `sf package1 version create get`
7903
8039
 
@@ -7930,7 +8066,7 @@ EXAMPLES
7930
8066
  $ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
7931
8067
  ```
7932
8068
 
7933
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package1/version/create/get.ts)_
8069
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package1/version/create/get.ts)_
7934
8070
 
7935
8071
  ## `sf package1 version display`
7936
8072
 
@@ -7964,7 +8100,7 @@ EXAMPLES
7964
8100
  $ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
7965
8101
  ```
7966
8102
 
7967
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package1/version/display.ts)_
8103
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package1/version/display.ts)_
7968
8104
 
7969
8105
  ## `sf package1 version list`
7970
8106
 
@@ -8002,7 +8138,7 @@ FLAG DESCRIPTIONS
8002
8138
  If not specified, shows all versions for all packages (managed and unmanaged) in the org.
8003
8139
  ```
8004
8140
 
8005
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.17/src/commands/package1/version/list.ts)_
8141
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.28.2/src/commands/package1/version/list.ts)_
8006
8142
 
8007
8143
  ## `sf plugins`
8008
8144
 
@@ -10310,7 +10446,7 @@ EXAMPLES
10310
10446
  $ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
10311
10447
  ```
10312
10448
 
10313
- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.113/src/commands/sobject/describe.ts)_
10449
+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.114/src/commands/sobject/describe.ts)_
10314
10450
 
10315
10451
  ## `sf sobject list`
10316
10452
 
@@ -10349,7 +10485,7 @@ EXAMPLES
10349
10485
  $ sf sobject list --sobject custom --target-org my-scratch-org
10350
10486
  ```
10351
10487
 
10352
- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.113/src/commands/sobject/list.ts)_
10488
+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.114/src/commands/sobject/list.ts)_
10353
10489
 
10354
10490
  ## `sf template generate analytics template`
10355
10491