@salesforce/cli 2.27.4 → 2.27.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 +67 -60
- package/npm-shrinkwrap.json +1264 -346
- package/oclif.manifest.json +1 -1
- package/package.json +9 -9
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.27.
|
|
27
|
+
@salesforce/cli/2.27.6 linux-x64 node-v20.11.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -2275,7 +2275,7 @@ EXAMPLES
|
|
|
2275
2275
|
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
|
|
2276
2276
|
```
|
|
2277
2277
|
|
|
2278
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.
|
|
2278
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.6/src/commands/org/assign/permset.ts)_
|
|
2279
2279
|
|
|
2280
2280
|
## `sf org assign permsetlicense`
|
|
2281
2281
|
|
|
@@ -2319,7 +2319,7 @@ EXAMPLES
|
|
|
2319
2319
|
user3
|
|
2320
2320
|
```
|
|
2321
2321
|
|
|
2322
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.
|
|
2322
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.6/src/commands/org/assign/permsetlicense.ts)_
|
|
2323
2323
|
|
|
2324
2324
|
## `sf org create sandbox`
|
|
2325
2325
|
|
|
@@ -2626,6 +2626,13 @@ DESCRIPTION
|
|
|
2626
2626
|
When this command completes, it displays the new username and user ID. Run the "org display user" command to get more
|
|
2627
2627
|
information about the new user.
|
|
2628
2628
|
|
|
2629
|
+
After the new user has been created, Salesforce CLI automatically authenticates it to the scratch org so the new user
|
|
2630
|
+
can immediately start using the scratch org. The CLI uses the same authentication method that was used on the
|
|
2631
|
+
associated Dev Hub org. Due to Hyperforce limitations, the scratch org user creation fails if the Dev Hub
|
|
2632
|
+
authentication used the JWT flow and the scratch org is on Hyperforce. For this reason, if you plan to create scratch
|
|
2633
|
+
org users, authenticate to the Dev Hub org with either the "org login web" or "org login sfdx-url" command, and not
|
|
2634
|
+
"org login jwt".
|
|
2635
|
+
|
|
2629
2636
|
For more information about user limits, defaults, and other considerations when creating a new scratch org user, see
|
|
2630
2637
|
https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_scratch_orgs_users.htm.
|
|
2631
2638
|
|
|
@@ -2676,7 +2683,7 @@ FLAG DESCRIPTIONS
|
|
|
2676
2683
|
might be different than what you specify in the definition file.
|
|
2677
2684
|
```
|
|
2678
2685
|
|
|
2679
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.
|
|
2686
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.6/src/commands/org/create/user.ts)_
|
|
2680
2687
|
|
|
2681
2688
|
## `sf org delete sandbox`
|
|
2682
2689
|
|
|
@@ -2882,7 +2889,7 @@ EXAMPLES
|
|
|
2882
2889
|
$ sf org display user --target-org me@my.org --json
|
|
2883
2890
|
```
|
|
2884
2891
|
|
|
2885
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.
|
|
2892
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.6/src/commands/org/display/user.ts)_
|
|
2886
2893
|
|
|
2887
2894
|
## `sf org enable tracking`
|
|
2888
2895
|
|
|
@@ -2988,7 +2995,7 @@ EXAMPLES
|
|
|
2988
2995
|
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
|
|
2989
2996
|
```
|
|
2990
2997
|
|
|
2991
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.
|
|
2998
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.6/src/commands/org/generate/password.ts)_
|
|
2992
2999
|
|
|
2993
3000
|
## `sf org list`
|
|
2994
3001
|
|
|
@@ -3057,7 +3064,7 @@ EXAMPLES
|
|
|
3057
3064
|
$ sf org list auth
|
|
3058
3065
|
```
|
|
3059
3066
|
|
|
3060
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3067
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.6/src/commands/org/list/auth.ts)_
|
|
3061
3068
|
|
|
3062
3069
|
## `sf org list limits`
|
|
3063
3070
|
|
|
@@ -3297,7 +3304,7 @@ EXAMPLES
|
|
|
3297
3304
|
$ sf org list users --target-org me@my.org
|
|
3298
3305
|
```
|
|
3299
3306
|
|
|
3300
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.
|
|
3307
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.2.6/src/commands/org/list/users.ts)_
|
|
3301
3308
|
|
|
3302
3309
|
## `sf org login access-token`
|
|
3303
3310
|
|
|
@@ -3350,7 +3357,7 @@ FLAG DESCRIPTIONS
|
|
|
3350
3357
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
3351
3358
|
```
|
|
3352
3359
|
|
|
3353
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3360
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.6/src/commands/org/login/access-token.ts)_
|
|
3354
3361
|
|
|
3355
3362
|
## `sf org login device`
|
|
3356
3363
|
|
|
@@ -3409,7 +3416,7 @@ FLAG DESCRIPTIONS
|
|
|
3409
3416
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
3410
3417
|
```
|
|
3411
3418
|
|
|
3412
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3419
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.6/src/commands/org/login/device.ts)_
|
|
3413
3420
|
|
|
3414
3421
|
## `sf org login jwt`
|
|
3415
3422
|
|
|
@@ -3498,7 +3505,7 @@ FLAG DESCRIPTIONS
|
|
|
3498
3505
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
3499
3506
|
```
|
|
3500
3507
|
|
|
3501
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3508
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.6/src/commands/org/login/jwt.ts)_
|
|
3502
3509
|
|
|
3503
3510
|
## `sf org login sfdx-url`
|
|
3504
3511
|
|
|
@@ -3565,7 +3572,7 @@ EXAMPLES
|
|
|
3565
3572
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin -
|
|
3566
3573
|
```
|
|
3567
3574
|
|
|
3568
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3575
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.6/src/commands/org/login/sfdx-url.ts)_
|
|
3569
3576
|
|
|
3570
3577
|
## `sf org login web`
|
|
3571
3578
|
|
|
@@ -3650,7 +3657,7 @@ FLAG DESCRIPTIONS
|
|
|
3650
3657
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
3651
3658
|
```
|
|
3652
3659
|
|
|
3653
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3660
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.6/src/commands/org/login/web.ts)_
|
|
3654
3661
|
|
|
3655
3662
|
## `sf org logout`
|
|
3656
3663
|
|
|
@@ -3710,7 +3717,7 @@ FLAG DESCRIPTIONS
|
|
|
3710
3717
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
3711
3718
|
```
|
|
3712
3719
|
|
|
3713
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.
|
|
3720
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.3.6/src/commands/org/logout.ts)_
|
|
3714
3721
|
|
|
3715
3722
|
## `sf org open`
|
|
3716
3723
|
|
|
@@ -3955,7 +3962,7 @@ FLAG DESCRIPTIONS
|
|
|
3955
3962
|
subscribers.
|
|
3956
3963
|
```
|
|
3957
3964
|
|
|
3958
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
3965
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package1/version/create.ts)_
|
|
3959
3966
|
|
|
3960
3967
|
## `sf package1 version create get`
|
|
3961
3968
|
|
|
@@ -3987,7 +3994,7 @@ EXAMPLES
|
|
|
3987
3994
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
3988
3995
|
```
|
|
3989
3996
|
|
|
3990
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
3997
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package1/version/create/get.ts)_
|
|
3991
3998
|
|
|
3992
3999
|
## `sf package1 version display`
|
|
3993
4000
|
|
|
@@ -4020,7 +4027,7 @@ EXAMPLES
|
|
|
4020
4027
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
4021
4028
|
```
|
|
4022
4029
|
|
|
4023
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4030
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package1/version/display.ts)_
|
|
4024
4031
|
|
|
4025
4032
|
## `sf package1 version list`
|
|
4026
4033
|
|
|
@@ -4057,7 +4064,7 @@ FLAG DESCRIPTIONS
|
|
|
4057
4064
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
4058
4065
|
```
|
|
4059
4066
|
|
|
4060
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4067
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package1/version/list.ts)_
|
|
4061
4068
|
|
|
4062
4069
|
## `sf package create`
|
|
4063
4070
|
|
|
@@ -4135,7 +4142,7 @@ FLAG DESCRIPTIONS
|
|
|
4135
4142
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
4136
4143
|
```
|
|
4137
4144
|
|
|
4138
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4145
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/create.ts)_
|
|
4139
4146
|
|
|
4140
4147
|
## `sf package delete`
|
|
4141
4148
|
|
|
@@ -4176,7 +4183,7 @@ EXAMPLES
|
|
|
4176
4183
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
4177
4184
|
```
|
|
4178
4185
|
|
|
4179
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4186
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/delete.ts)_
|
|
4180
4187
|
|
|
4181
4188
|
## `sf package install`
|
|
4182
4189
|
|
|
@@ -4274,7 +4281,7 @@ FLAG DESCRIPTIONS
|
|
|
4274
4281
|
specify DeprecateOnly or Delete only for unlocked package upgrades.
|
|
4275
4282
|
```
|
|
4276
4283
|
|
|
4277
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4284
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/install.ts)_
|
|
4278
4285
|
|
|
4279
4286
|
## `sf package install report`
|
|
4280
4287
|
|
|
@@ -4306,7 +4313,7 @@ EXAMPLES
|
|
|
4306
4313
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
4307
4314
|
```
|
|
4308
4315
|
|
|
4309
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4316
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/install/report.ts)_
|
|
4310
4317
|
|
|
4311
4318
|
## `sf package installed list`
|
|
4312
4319
|
|
|
@@ -4337,7 +4344,7 @@ EXAMPLES
|
|
|
4337
4344
|
$ sf package installed list --target-org me@example.com
|
|
4338
4345
|
```
|
|
4339
4346
|
|
|
4340
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4347
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/installed/list.ts)_
|
|
4341
4348
|
|
|
4342
4349
|
## `sf package list`
|
|
4343
4350
|
|
|
@@ -4374,7 +4381,7 @@ EXAMPLES
|
|
|
4374
4381
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
4375
4382
|
```
|
|
4376
4383
|
|
|
4377
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4384
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/list.ts)_
|
|
4378
4385
|
|
|
4379
4386
|
## `sf package uninstall`
|
|
4380
4387
|
|
|
@@ -4421,7 +4428,7 @@ EXAMPLES
|
|
|
4421
4428
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
4422
4429
|
```
|
|
4423
4430
|
|
|
4424
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4431
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/uninstall.ts)_
|
|
4425
4432
|
|
|
4426
4433
|
## `sf package uninstall report`
|
|
4427
4434
|
|
|
@@ -4453,7 +4460,7 @@ EXAMPLES
|
|
|
4453
4460
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
4454
4461
|
```
|
|
4455
4462
|
|
|
4456
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4463
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/uninstall/report.ts)_
|
|
4457
4464
|
|
|
4458
4465
|
## `sf package update`
|
|
4459
4466
|
|
|
@@ -4507,7 +4514,7 @@ FLAG DESCRIPTIONS
|
|
|
4507
4514
|
associated with your package.
|
|
4508
4515
|
```
|
|
4509
4516
|
|
|
4510
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4517
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/update.ts)_
|
|
4511
4518
|
|
|
4512
4519
|
## `sf package version create`
|
|
4513
4520
|
|
|
@@ -4662,7 +4669,7 @@ FLAG DESCRIPTIONS
|
|
|
4662
4669
|
periods of no output from commands.
|
|
4663
4670
|
```
|
|
4664
4671
|
|
|
4665
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4672
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/version/create.ts)_
|
|
4666
4673
|
|
|
4667
4674
|
## `sf package version create list`
|
|
4668
4675
|
|
|
@@ -4722,7 +4729,7 @@ EXAMPLES
|
|
|
4722
4729
|
$ sf package version create list --created-last-days 0 --status Success
|
|
4723
4730
|
```
|
|
4724
4731
|
|
|
4725
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4732
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/version/create/list.ts)_
|
|
4726
4733
|
|
|
4727
4734
|
## `sf package version create report`
|
|
4728
4735
|
|
|
@@ -4764,7 +4771,7 @@ EXAMPLES
|
|
|
4764
4771
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
4765
4772
|
```
|
|
4766
4773
|
|
|
4767
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4774
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/version/create/report.ts)_
|
|
4768
4775
|
|
|
4769
4776
|
## `sf package version delete`
|
|
4770
4777
|
|
|
@@ -4802,7 +4809,7 @@ EXAMPLES
|
|
|
4802
4809
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
4803
4810
|
```
|
|
4804
4811
|
|
|
4805
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4812
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/version/delete.ts)_
|
|
4806
4813
|
|
|
4807
4814
|
## `sf package version displayancestry`
|
|
4808
4815
|
|
|
@@ -4860,7 +4867,7 @@ FLAG DESCRIPTIONS
|
|
|
4860
4867
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
4861
4868
|
```
|
|
4862
4869
|
|
|
4863
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4870
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/version/displayancestry.ts)_
|
|
4864
4871
|
|
|
4865
4872
|
## `sf package version list`
|
|
4866
4873
|
|
|
@@ -4928,7 +4935,7 @@ EXAMPLES
|
|
|
4928
4935
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
4929
4936
|
```
|
|
4930
4937
|
|
|
4931
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4938
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/version/list.ts)_
|
|
4932
4939
|
|
|
4933
4940
|
## `sf package version promote`
|
|
4934
4941
|
|
|
@@ -4971,7 +4978,7 @@ EXAMPLES
|
|
|
4971
4978
|
$ sf package version promote --package "Awesome Package Alias"
|
|
4972
4979
|
```
|
|
4973
4980
|
|
|
4974
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
4981
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/version/promote.ts)_
|
|
4975
4982
|
|
|
4976
4983
|
## `sf package version report`
|
|
4977
4984
|
|
|
@@ -5010,7 +5017,7 @@ EXAMPLES
|
|
|
5010
5017
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
5011
5018
|
```
|
|
5012
5019
|
|
|
5013
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
5020
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/version/report.ts)_
|
|
5014
5021
|
|
|
5015
5022
|
## `sf package version update`
|
|
5016
5023
|
|
|
@@ -5062,7 +5069,7 @@ EXAMPLES
|
|
|
5062
5069
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
5063
5070
|
```
|
|
5064
5071
|
|
|
5065
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.
|
|
5072
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.1.4/src/commands/package/version/update.ts)_
|
|
5066
5073
|
|
|
5067
5074
|
## `sf plugins`
|
|
5068
5075
|
|
|
@@ -5085,7 +5092,7 @@ EXAMPLES
|
|
|
5085
5092
|
$ sf plugins
|
|
5086
5093
|
```
|
|
5087
5094
|
|
|
5088
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5095
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.23/src/commands/plugins/index.ts)_
|
|
5089
5096
|
|
|
5090
5097
|
## `sf plugins discover`
|
|
5091
5098
|
|
|
@@ -5129,7 +5136,7 @@ EXAMPLES
|
|
|
5129
5136
|
$ sf plugins inspect myplugin
|
|
5130
5137
|
```
|
|
5131
5138
|
|
|
5132
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5139
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.23/src/commands/plugins/inspect.ts)_
|
|
5133
5140
|
|
|
5134
5141
|
## `sf plugins:install PLUGIN...`
|
|
5135
5142
|
|
|
@@ -5173,7 +5180,7 @@ EXAMPLES
|
|
|
5173
5180
|
$ sf plugins install someuser/someplugin
|
|
5174
5181
|
```
|
|
5175
5182
|
|
|
5176
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5183
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.23/src/commands/plugins/install.ts)_
|
|
5177
5184
|
|
|
5178
5185
|
## `sf plugins:link PLUGIN`
|
|
5179
5186
|
|
|
@@ -5203,7 +5210,7 @@ EXAMPLES
|
|
|
5203
5210
|
$ sf plugins link myplugin
|
|
5204
5211
|
```
|
|
5205
5212
|
|
|
5206
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5213
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.23/src/commands/plugins/link.ts)_
|
|
5207
5214
|
|
|
5208
5215
|
## `sf plugins reset`
|
|
5209
5216
|
|
|
@@ -5214,7 +5221,7 @@ USAGE
|
|
|
5214
5221
|
$ sf plugins reset
|
|
5215
5222
|
```
|
|
5216
5223
|
|
|
5217
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5224
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.23/src/commands/plugins/reset.ts)_
|
|
5218
5225
|
|
|
5219
5226
|
## `sf plugins trust verify`
|
|
5220
5227
|
|
|
@@ -5270,7 +5277,7 @@ EXAMPLES
|
|
|
5270
5277
|
$ sf plugins uninstall myplugin
|
|
5271
5278
|
```
|
|
5272
5279
|
|
|
5273
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5280
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.23/src/commands/plugins/uninstall.ts)_
|
|
5274
5281
|
|
|
5275
5282
|
## `sf plugins update`
|
|
5276
5283
|
|
|
@@ -5288,7 +5295,7 @@ DESCRIPTION
|
|
|
5288
5295
|
Update installed plugins.
|
|
5289
5296
|
```
|
|
5290
5297
|
|
|
5291
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.
|
|
5298
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1.23/src/commands/plugins/update.ts)_
|
|
5292
5299
|
|
|
5293
5300
|
## `sf project convert mdapi`
|
|
5294
5301
|
|
|
@@ -5350,7 +5357,7 @@ FLAG DESCRIPTIONS
|
|
|
5350
5357
|
If you specify this parameter, don’t specify --metadata or --source-dir.
|
|
5351
5358
|
```
|
|
5352
5359
|
|
|
5353
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5360
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/convert/mdapi.ts)_
|
|
5354
5361
|
|
|
5355
5362
|
## `sf project convert source`
|
|
5356
5363
|
|
|
@@ -5362,7 +5369,7 @@ USAGE
|
|
|
5362
5369
|
<value> | -m <value>]
|
|
5363
5370
|
|
|
5364
5371
|
FLAGS
|
|
5365
|
-
-d, --output-dir=<value> [default:
|
|
5372
|
+
-d, --output-dir=<value> [default: metadataPackage_1706639901301] Output directory to store the Metadata
|
|
5366
5373
|
API–formatted files in.
|
|
5367
5374
|
-m, --metadata=<value>... Metadata component names to convert.
|
|
5368
5375
|
-n, --package-name=<value> Name of the package to associate with the metadata-formatted files.
|
|
@@ -5422,7 +5429,7 @@ FLAG DESCRIPTIONS
|
|
|
5422
5429
|
Override the api version used for api requests made by this command
|
|
5423
5430
|
```
|
|
5424
5431
|
|
|
5425
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5432
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/convert/source.ts)_
|
|
5426
5433
|
|
|
5427
5434
|
## `sf project delete source`
|
|
5428
5435
|
|
|
@@ -5561,7 +5568,7 @@ FLAG DESCRIPTIONS
|
|
|
5561
5568
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
5562
5569
|
```
|
|
5563
5570
|
|
|
5564
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5571
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/delete/source.ts)_
|
|
5565
5572
|
|
|
5566
5573
|
## `sf project delete tracking`
|
|
5567
5574
|
|
|
@@ -5597,7 +5604,7 @@ EXAMPLES
|
|
|
5597
5604
|
$ sf project delete tracking --target-org my-scratch
|
|
5598
5605
|
```
|
|
5599
5606
|
|
|
5600
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5607
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/delete/tracking.ts)_
|
|
5601
5608
|
|
|
5602
5609
|
## `sf project deploy cancel`
|
|
5603
5610
|
|
|
@@ -5667,7 +5674,7 @@ FLAG DESCRIPTIONS
|
|
|
5667
5674
|
project deploy report".
|
|
5668
5675
|
```
|
|
5669
5676
|
|
|
5670
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5677
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/deploy/cancel.ts)_
|
|
5671
5678
|
|
|
5672
5679
|
## `sf project deploy preview`
|
|
5673
5680
|
|
|
@@ -5751,7 +5758,7 @@ FLAG DESCRIPTIONS
|
|
|
5751
5758
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
5752
5759
|
```
|
|
5753
5760
|
|
|
5754
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5761
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/deploy/preview.ts)_
|
|
5755
5762
|
|
|
5756
5763
|
## `sf project deploy quick`
|
|
5757
5764
|
|
|
@@ -5844,7 +5851,7 @@ ERROR CODES
|
|
|
5844
5851
|
Canceling (69) The deploy is being canceled.
|
|
5845
5852
|
```
|
|
5846
5853
|
|
|
5847
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5854
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/deploy/quick.ts)_
|
|
5848
5855
|
|
|
5849
5856
|
## `sf project deploy report`
|
|
5850
5857
|
|
|
@@ -5939,7 +5946,7 @@ FLAG DESCRIPTIONS
|
|
|
5939
5946
|
--coverage-formatters lcov --coverage-formatters clover
|
|
5940
5947
|
```
|
|
5941
5948
|
|
|
5942
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
5949
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/deploy/report.ts)_
|
|
5943
5950
|
|
|
5944
5951
|
## `sf project deploy resume`
|
|
5945
5952
|
|
|
@@ -6035,7 +6042,7 @@ ERROR CODES
|
|
|
6035
6042
|
Canceling (69) The deploy is being canceled.
|
|
6036
6043
|
```
|
|
6037
6044
|
|
|
6038
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6045
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/deploy/resume.ts)_
|
|
6039
6046
|
|
|
6040
6047
|
## `sf project deploy start`
|
|
6041
6048
|
|
|
@@ -6264,7 +6271,7 @@ ERROR CODES
|
|
|
6264
6271
|
Canceling (69) The deploy is being canceled.
|
|
6265
6272
|
```
|
|
6266
6273
|
|
|
6267
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6274
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/deploy/start.ts)_
|
|
6268
6275
|
|
|
6269
6276
|
## `sf project deploy validate`
|
|
6270
6277
|
|
|
@@ -6443,7 +6450,7 @@ ERROR CODES
|
|
|
6443
6450
|
Canceling (69) The deploy is being canceled.
|
|
6444
6451
|
```
|
|
6445
6452
|
|
|
6446
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6453
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/deploy/validate.ts)_
|
|
6447
6454
|
|
|
6448
6455
|
## `sf project generate`
|
|
6449
6456
|
|
|
@@ -6622,7 +6629,7 @@ EXAMPLES
|
|
|
6622
6629
|
$ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
|
|
6623
6630
|
```
|
|
6624
6631
|
|
|
6625
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6632
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/generate/manifest.ts)_
|
|
6626
6633
|
|
|
6627
6634
|
## `sf project list ignored`
|
|
6628
6635
|
|
|
@@ -6663,7 +6670,7 @@ EXAMPLES
|
|
|
6663
6670
|
$ sf project list ignored --source-dir package.xml
|
|
6664
6671
|
```
|
|
6665
6672
|
|
|
6666
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6673
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/list/ignored.ts)_
|
|
6667
6674
|
|
|
6668
6675
|
## `sf project reset tracking`
|
|
6669
6676
|
|
|
@@ -6711,7 +6718,7 @@ EXAMPLES
|
|
|
6711
6718
|
$ sf project reset tracking --revision 30
|
|
6712
6719
|
```
|
|
6713
6720
|
|
|
6714
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6721
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/reset/tracking.ts)_
|
|
6715
6722
|
|
|
6716
6723
|
## `sf project retrieve preview`
|
|
6717
6724
|
|
|
@@ -6767,7 +6774,7 @@ FLAG DESCRIPTIONS
|
|
|
6767
6774
|
Overrides your default org.
|
|
6768
6775
|
```
|
|
6769
6776
|
|
|
6770
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6777
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/retrieve/preview.ts)_
|
|
6771
6778
|
|
|
6772
6779
|
## `sf project retrieve start`
|
|
6773
6780
|
|
|
@@ -6921,7 +6928,7 @@ ENVIRONMENT VARIABLES
|
|
|
6921
6928
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
6922
6929
|
```
|
|
6923
6930
|
|
|
6924
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.
|
|
6931
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.2.9/src/commands/project/retrieve/start.ts)_
|
|
6925
6932
|
|
|
6926
6933
|
## `sf schema generate field`
|
|
6927
6934
|
|