@salesforce/cli 2.111.3 → 2.111.5
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 +97 -97
- package/npm-shrinkwrap.json +807 -1309
- package/oclif.lock +782 -1070
- package/oclif.manifest.json +35 -14
- package/package.json +21 -21
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.111.
|
|
28
|
+
@salesforce/cli/2.111.5 linux-x64 node-v22.20.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -243,7 +243,7 @@ EXAMPLES
|
|
|
243
243
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
244
244
|
```
|
|
245
245
|
|
|
246
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
246
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/activate.ts)_
|
|
247
247
|
|
|
248
248
|
## `sf agent create`
|
|
249
249
|
|
|
@@ -305,7 +305,7 @@ EXAMPLES
|
|
|
305
305
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
306
306
|
```
|
|
307
307
|
|
|
308
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
308
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/create.ts)_
|
|
309
309
|
|
|
310
310
|
## `sf agent deactivate`
|
|
311
311
|
|
|
@@ -345,7 +345,7 @@ EXAMPLES
|
|
|
345
345
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
346
346
|
```
|
|
347
347
|
|
|
348
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
348
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/deactivate.ts)_
|
|
349
349
|
|
|
350
350
|
## `sf agent generate agent-spec`
|
|
351
351
|
|
|
@@ -450,7 +450,7 @@ EXAMPLES
|
|
|
450
450
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
451
451
|
```
|
|
452
452
|
|
|
453
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
453
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/generate/agent-spec.ts)_
|
|
454
454
|
|
|
455
455
|
## `sf agent generate template`
|
|
456
456
|
|
|
@@ -498,7 +498,7 @@ EXAMPLES
|
|
|
498
498
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
499
499
|
```
|
|
500
500
|
|
|
501
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
501
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/generate/template.ts)_
|
|
502
502
|
|
|
503
503
|
## `sf agent generate test-spec`
|
|
504
504
|
|
|
@@ -559,7 +559,7 @@ EXAMPLES
|
|
|
559
559
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
560
560
|
```
|
|
561
561
|
|
|
562
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
562
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/generate/test-spec.ts)_
|
|
563
563
|
|
|
564
564
|
## `sf agent preview`
|
|
565
565
|
|
|
@@ -623,7 +623,7 @@ EXAMPLES
|
|
|
623
623
|
transcripts/my-preview
|
|
624
624
|
```
|
|
625
625
|
|
|
626
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
626
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/preview.ts)_
|
|
627
627
|
|
|
628
628
|
## `sf agent test create`
|
|
629
629
|
|
|
@@ -678,7 +678,7 @@ EXAMPLES
|
|
|
678
678
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
679
679
|
```
|
|
680
680
|
|
|
681
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
681
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/test/create.ts)_
|
|
682
682
|
|
|
683
683
|
## `sf agent test list`
|
|
684
684
|
|
|
@@ -713,7 +713,7 @@ EXAMPLES
|
|
|
713
713
|
$ sf agent test list --target-org my-org
|
|
714
714
|
```
|
|
715
715
|
|
|
716
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
716
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/test/list.ts)_
|
|
717
717
|
|
|
718
718
|
## `sf agent test results`
|
|
719
719
|
|
|
@@ -779,7 +779,7 @@ FLAG DESCRIPTIONS
|
|
|
779
779
|
expression when using custom evaluations.
|
|
780
780
|
```
|
|
781
781
|
|
|
782
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
782
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/test/results.ts)_
|
|
783
783
|
|
|
784
784
|
## `sf agent test resume`
|
|
785
785
|
|
|
@@ -852,7 +852,7 @@ FLAG DESCRIPTIONS
|
|
|
852
852
|
expression when using custom evaluations.
|
|
853
853
|
```
|
|
854
854
|
|
|
855
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
855
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/test/resume.ts)_
|
|
856
856
|
|
|
857
857
|
## `sf agent test run`
|
|
858
858
|
|
|
@@ -926,7 +926,7 @@ FLAG DESCRIPTIONS
|
|
|
926
926
|
expression when using custom evaluations.
|
|
927
927
|
```
|
|
928
928
|
|
|
929
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
929
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.21/src/commands/agent/test/run.ts)_
|
|
930
930
|
|
|
931
931
|
## `sf alias list`
|
|
932
932
|
|
|
@@ -1085,7 +1085,7 @@ FLAG DESCRIPTIONS
|
|
|
1085
1085
|
directory.
|
|
1086
1086
|
```
|
|
1087
1087
|
|
|
1088
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
1088
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/analytics/generate/template.ts)_
|
|
1089
1089
|
|
|
1090
1090
|
## `sf apex generate class`
|
|
1091
1091
|
|
|
@@ -1144,7 +1144,7 @@ FLAG DESCRIPTIONS
|
|
|
1144
1144
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
1145
1145
|
```
|
|
1146
1146
|
|
|
1147
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
1147
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/apex/generate/class.ts)_
|
|
1148
1148
|
|
|
1149
1149
|
## `sf apex generate trigger`
|
|
1150
1150
|
|
|
@@ -1213,7 +1213,7 @@ FLAG DESCRIPTIONS
|
|
|
1213
1213
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
1214
1214
|
```
|
|
1215
1215
|
|
|
1216
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
1216
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/apex/generate/trigger.ts)_
|
|
1217
1217
|
|
|
1218
1218
|
## `sf apex get log`
|
|
1219
1219
|
|
|
@@ -1269,7 +1269,7 @@ FLAG DESCRIPTIONS
|
|
|
1269
1269
|
directory.
|
|
1270
1270
|
```
|
|
1271
1271
|
|
|
1272
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1272
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.5/src/commands/apex/get/log.ts)_
|
|
1273
1273
|
|
|
1274
1274
|
## `sf apex get test`
|
|
1275
1275
|
|
|
@@ -1329,7 +1329,7 @@ EXAMPLES
|
|
|
1329
1329
|
me@myorg'
|
|
1330
1330
|
```
|
|
1331
1331
|
|
|
1332
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1332
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.5/src/commands/apex/get/test.ts)_
|
|
1333
1333
|
|
|
1334
1334
|
## `sf apex list log`
|
|
1335
1335
|
|
|
@@ -1369,7 +1369,7 @@ EXAMPLES
|
|
|
1369
1369
|
$ sf apex list log --target-org me@my.org
|
|
1370
1370
|
```
|
|
1371
1371
|
|
|
1372
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1372
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.5/src/commands/apex/list/log.ts)_
|
|
1373
1373
|
|
|
1374
1374
|
## `sf apex run`
|
|
1375
1375
|
|
|
@@ -1416,7 +1416,7 @@ EXAMPLES
|
|
|
1416
1416
|
$ sf apex run
|
|
1417
1417
|
```
|
|
1418
1418
|
|
|
1419
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1419
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.5/src/commands/apex/run.ts)_
|
|
1420
1420
|
|
|
1421
1421
|
## `sf apex run test`
|
|
1422
1422
|
|
|
@@ -1562,7 +1562,7 @@ FLAG DESCRIPTIONS
|
|
|
1562
1562
|
--tests Test1 --tests Test2
|
|
1563
1563
|
```
|
|
1564
1564
|
|
|
1565
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1565
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.5/src/commands/apex/run/test.ts)_
|
|
1566
1566
|
|
|
1567
1567
|
## `sf apex tail log`
|
|
1568
1568
|
|
|
@@ -1605,7 +1605,7 @@ EXAMPLES
|
|
|
1605
1605
|
$ sf apex tail log --color --skip-trace-flag
|
|
1606
1606
|
```
|
|
1607
1607
|
|
|
1608
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1608
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.5/src/commands/apex/tail/log.ts)_
|
|
1609
1609
|
|
|
1610
1610
|
## `sf api request graphql`
|
|
1611
1611
|
|
|
@@ -1798,7 +1798,7 @@ EXAMPLES
|
|
|
1798
1798
|
$ sf autocomplete --refresh-cache
|
|
1799
1799
|
```
|
|
1800
1800
|
|
|
1801
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.
|
|
1801
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.38/src/commands/autocomplete/index.ts)_
|
|
1802
1802
|
|
|
1803
1803
|
## `sf commands`
|
|
1804
1804
|
|
|
@@ -3165,7 +3165,7 @@ EXAMPLES
|
|
|
3165
3165
|
$ sf doctor --plugin @salesforce/plugin-source
|
|
3166
3166
|
```
|
|
3167
3167
|
|
|
3168
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3168
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.95/src/commands/doctor.ts)_
|
|
3169
3169
|
|
|
3170
3170
|
## `sf force data bulk delete`
|
|
3171
3171
|
|
|
@@ -3367,7 +3367,7 @@ EXAMPLES
|
|
|
3367
3367
|
$ sf info releasenotes display --version latest
|
|
3368
3368
|
```
|
|
3369
3369
|
|
|
3370
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3370
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.95/src/commands/info/releasenotes/display.ts)_
|
|
3371
3371
|
|
|
3372
3372
|
## `sf lightning generate app`
|
|
3373
3373
|
|
|
@@ -3422,7 +3422,7 @@ FLAG DESCRIPTIONS
|
|
|
3422
3422
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3423
3423
|
```
|
|
3424
3424
|
|
|
3425
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
3425
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/lightning/generate/app.ts)_
|
|
3426
3426
|
|
|
3427
3427
|
## `sf lightning generate component`
|
|
3428
3428
|
|
|
@@ -3491,7 +3491,7 @@ FLAG DESCRIPTIONS
|
|
|
3491
3491
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3492
3492
|
```
|
|
3493
3493
|
|
|
3494
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
3494
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/lightning/generate/component.ts)_
|
|
3495
3495
|
|
|
3496
3496
|
## `sf lightning generate event`
|
|
3497
3497
|
|
|
@@ -3546,7 +3546,7 @@ FLAG DESCRIPTIONS
|
|
|
3546
3546
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3547
3547
|
```
|
|
3548
3548
|
|
|
3549
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
3549
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/lightning/generate/event.ts)_
|
|
3550
3550
|
|
|
3551
3551
|
## `sf lightning generate interface`
|
|
3552
3552
|
|
|
@@ -3601,7 +3601,7 @@ FLAG DESCRIPTIONS
|
|
|
3601
3601
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3602
3602
|
```
|
|
3603
3603
|
|
|
3604
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
3604
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/lightning/generate/interface.ts)_
|
|
3605
3605
|
|
|
3606
3606
|
## `sf lightning generate test`
|
|
3607
3607
|
|
|
@@ -3656,7 +3656,7 @@ FLAG DESCRIPTIONS
|
|
|
3656
3656
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3657
3657
|
```
|
|
3658
3658
|
|
|
3659
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
3659
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/lightning/generate/test.ts)_
|
|
3660
3660
|
|
|
3661
3661
|
## `sf logic get test`
|
|
3662
3662
|
|
|
@@ -3704,7 +3704,7 @@ EXAMPLES
|
|
|
3704
3704
|
$ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
|
|
3705
3705
|
```
|
|
3706
3706
|
|
|
3707
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
3707
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.5/src/commands/logic/get/test.ts)_
|
|
3708
3708
|
|
|
3709
3709
|
## `sf logic run test`
|
|
3710
3710
|
|
|
@@ -3826,7 +3826,7 @@ FLAG DESCRIPTIONS
|
|
|
3826
3826
|
--tests Test1 --tests Test2
|
|
3827
3827
|
```
|
|
3828
3828
|
|
|
3829
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
3829
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.5/src/commands/logic/run/test.ts)_
|
|
3830
3830
|
|
|
3831
3831
|
## `sf org assign permset`
|
|
3832
3832
|
|
|
@@ -4053,7 +4053,7 @@ FLAG DESCRIPTIONS
|
|
|
4053
4053
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
4054
4054
|
```
|
|
4055
4055
|
|
|
4056
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4056
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/create/sandbox.ts)_
|
|
4057
4057
|
|
|
4058
4058
|
## `sf org create scratch`
|
|
4059
4059
|
|
|
@@ -4235,7 +4235,7 @@ FLAG DESCRIPTIONS
|
|
|
4235
4235
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4236
4236
|
```
|
|
4237
4237
|
|
|
4238
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4238
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/create/scratch.ts)_
|
|
4239
4239
|
|
|
4240
4240
|
## `sf org create user`
|
|
4241
4241
|
|
|
@@ -4389,7 +4389,7 @@ EXAMPLES
|
|
|
4389
4389
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4390
4390
|
```
|
|
4391
4391
|
|
|
4392
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4392
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/delete/sandbox.ts)_
|
|
4393
4393
|
|
|
4394
4394
|
## `sf org delete scratch`
|
|
4395
4395
|
|
|
@@ -4433,7 +4433,7 @@ EXAMPLES
|
|
|
4433
4433
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4434
4434
|
```
|
|
4435
4435
|
|
|
4436
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4436
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/delete/scratch.ts)_
|
|
4437
4437
|
|
|
4438
4438
|
## `sf org disable tracking`
|
|
4439
4439
|
|
|
@@ -4472,7 +4472,7 @@ EXAMPLES
|
|
|
4472
4472
|
$ sf org disable tracking
|
|
4473
4473
|
```
|
|
4474
4474
|
|
|
4475
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4475
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/disable/tracking.ts)_
|
|
4476
4476
|
|
|
4477
4477
|
## `sf org display`
|
|
4478
4478
|
|
|
@@ -4517,7 +4517,7 @@ EXAMPLES
|
|
|
4517
4517
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4518
4518
|
```
|
|
4519
4519
|
|
|
4520
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4520
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/display.ts)_
|
|
4521
4521
|
|
|
4522
4522
|
## `sf org display user`
|
|
4523
4523
|
|
|
@@ -4598,7 +4598,7 @@ EXAMPLES
|
|
|
4598
4598
|
$ sf org enable tracking
|
|
4599
4599
|
```
|
|
4600
4600
|
|
|
4601
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4601
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/enable/tracking.ts)_
|
|
4602
4602
|
|
|
4603
4603
|
## `sf org generate password`
|
|
4604
4604
|
|
|
@@ -4704,7 +4704,7 @@ EXAMPLES
|
|
|
4704
4704
|
$ sf org list --clean
|
|
4705
4705
|
```
|
|
4706
4706
|
|
|
4707
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4707
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/list.ts)_
|
|
4708
4708
|
|
|
4709
4709
|
## `sf org list auth`
|
|
4710
4710
|
|
|
@@ -4736,7 +4736,7 @@ EXAMPLES
|
|
|
4736
4736
|
$ sf org list auth
|
|
4737
4737
|
```
|
|
4738
4738
|
|
|
4739
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
4739
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.17/src/commands/org/list/auth.ts)_
|
|
4740
4740
|
|
|
4741
4741
|
## `sf org list limits`
|
|
4742
4742
|
|
|
@@ -4776,7 +4776,7 @@ EXAMPLES
|
|
|
4776
4776
|
$ sf org list limits --target-org my-scratch-org
|
|
4777
4777
|
```
|
|
4778
4778
|
|
|
4779
|
-
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.
|
|
4779
|
+
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.70/src/commands/org/list/limits.ts)_
|
|
4780
4780
|
|
|
4781
4781
|
## `sf org list metadata`
|
|
4782
4782
|
|
|
@@ -4843,7 +4843,7 @@ FLAG DESCRIPTIONS
|
|
|
4843
4843
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4844
4844
|
```
|
|
4845
4845
|
|
|
4846
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4846
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/list/metadata.ts)_
|
|
4847
4847
|
|
|
4848
4848
|
## `sf org list metadata-types`
|
|
4849
4849
|
|
|
@@ -4898,7 +4898,7 @@ FLAG DESCRIPTIONS
|
|
|
4898
4898
|
Override the api version used for api requests made by this command
|
|
4899
4899
|
```
|
|
4900
4900
|
|
|
4901
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4901
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/list/metadata-types.ts)_
|
|
4902
4902
|
|
|
4903
4903
|
## `sf org list sobject record-counts`
|
|
4904
4904
|
|
|
@@ -4944,7 +4944,7 @@ EXAMPLES
|
|
|
4944
4944
|
$ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org
|
|
4945
4945
|
```
|
|
4946
4946
|
|
|
4947
|
-
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.
|
|
4947
|
+
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.70/src/commands/org/list/sobject/record-counts.ts)_
|
|
4948
4948
|
|
|
4949
4949
|
## `sf org list users`
|
|
4950
4950
|
|
|
@@ -5036,7 +5036,7 @@ FLAG DESCRIPTIONS
|
|
|
5036
5036
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5037
5037
|
```
|
|
5038
5038
|
|
|
5039
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5039
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.17/src/commands/org/login/access-token.ts)_
|
|
5040
5040
|
|
|
5041
5041
|
## `sf org login jwt`
|
|
5042
5042
|
|
|
@@ -5127,7 +5127,7 @@ FLAG DESCRIPTIONS
|
|
|
5127
5127
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5128
5128
|
```
|
|
5129
5129
|
|
|
5130
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5130
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.17/src/commands/org/login/jwt.ts)_
|
|
5131
5131
|
|
|
5132
5132
|
## `sf org login sfdx-url`
|
|
5133
5133
|
|
|
@@ -5197,7 +5197,7 @@ EXAMPLES
|
|
|
5197
5197
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
5198
5198
|
```
|
|
5199
5199
|
|
|
5200
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5200
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.17/src/commands/org/login/sfdx-url.ts)_
|
|
5201
5201
|
|
|
5202
5202
|
## `sf org login web`
|
|
5203
5203
|
|
|
@@ -5302,7 +5302,7 @@ FLAG DESCRIPTIONS
|
|
|
5302
5302
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5303
5303
|
```
|
|
5304
5304
|
|
|
5305
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5305
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.17/src/commands/org/login/web.ts)_
|
|
5306
5306
|
|
|
5307
5307
|
## `sf org logout`
|
|
5308
5308
|
|
|
@@ -5368,7 +5368,7 @@ FLAG DESCRIPTIONS
|
|
|
5368
5368
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
5369
5369
|
```
|
|
5370
5370
|
|
|
5371
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5371
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.17/src/commands/org/logout.ts)_
|
|
5372
5372
|
|
|
5373
5373
|
## `sf org open`
|
|
5374
5374
|
|
|
@@ -5385,7 +5385,7 @@ FLAGS
|
|
|
5385
5385
|
-f, --source-file=<value> Path to ApexPage, FlexiPage, Flow, or Agent metadata to open in the associated Builder.
|
|
5386
5386
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
5387
5387
|
configuration variable is already set.
|
|
5388
|
-
-p, --path=<value> Navigation URL path to open a specific page.
|
|
5388
|
+
-p, --path=<value> [env: FORCE_OPEN_URL] Navigation URL path to open a specific page.
|
|
5389
5389
|
-r, --url-only Display navigation URL, but don’t launch browser.
|
|
5390
5390
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
5391
5391
|
--private Open the org in the default browser using private (incognito) mode.
|
|
@@ -5444,7 +5444,7 @@ EXAMPLES
|
|
|
5444
5444
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5445
5445
|
```
|
|
5446
5446
|
|
|
5447
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5447
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/open.ts)_
|
|
5448
5448
|
|
|
5449
5449
|
## `sf org open agent`
|
|
5450
5450
|
|
|
@@ -5495,7 +5495,7 @@ EXAMPLES
|
|
|
5495
5495
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5496
5496
|
```
|
|
5497
5497
|
|
|
5498
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5498
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/open/agent.ts)_
|
|
5499
5499
|
|
|
5500
5500
|
## `sf org refresh sandbox`
|
|
5501
5501
|
|
|
@@ -5598,7 +5598,7 @@ FLAG DESCRIPTIONS
|
|
|
5598
5598
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5599
5599
|
```
|
|
5600
5600
|
|
|
5601
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5601
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/refresh/sandbox.ts)_
|
|
5602
5602
|
|
|
5603
5603
|
## `sf org resume sandbox`
|
|
5604
5604
|
|
|
@@ -5661,7 +5661,7 @@ FLAG DESCRIPTIONS
|
|
|
5661
5661
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5662
5662
|
```
|
|
5663
5663
|
|
|
5664
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5664
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/resume/sandbox.ts)_
|
|
5665
5665
|
|
|
5666
5666
|
## `sf org resume scratch`
|
|
5667
5667
|
|
|
@@ -5714,7 +5714,7 @@ FLAG DESCRIPTIONS
|
|
|
5714
5714
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5715
5715
|
```
|
|
5716
5716
|
|
|
5717
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5717
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.41/src/commands/org/resume/scratch.ts)_
|
|
5718
5718
|
|
|
5719
5719
|
## `sf package convert`
|
|
5720
5720
|
|
|
@@ -5811,7 +5811,7 @@ FLAG DESCRIPTIONS
|
|
|
5811
5811
|
--installation-key-bypass flag is required.
|
|
5812
5812
|
```
|
|
5813
5813
|
|
|
5814
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
5814
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/convert.ts)_
|
|
5815
5815
|
|
|
5816
5816
|
## `sf package create`
|
|
5817
5817
|
|
|
@@ -5890,7 +5890,7 @@ FLAG DESCRIPTIONS
|
|
|
5890
5890
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5891
5891
|
```
|
|
5892
5892
|
|
|
5893
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
5893
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/create.ts)_
|
|
5894
5894
|
|
|
5895
5895
|
## `sf package delete`
|
|
5896
5896
|
|
|
@@ -5932,7 +5932,7 @@ EXAMPLES
|
|
|
5932
5932
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5933
5933
|
```
|
|
5934
5934
|
|
|
5935
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
5935
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/delete.ts)_
|
|
5936
5936
|
|
|
5937
5937
|
## `sf package install`
|
|
5938
5938
|
|
|
@@ -6031,7 +6031,7 @@ FLAG DESCRIPTIONS
|
|
|
6031
6031
|
- Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
|
|
6032
6032
|
```
|
|
6033
6033
|
|
|
6034
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6034
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/install.ts)_
|
|
6035
6035
|
|
|
6036
6036
|
## `sf package install report`
|
|
6037
6037
|
|
|
@@ -6064,7 +6064,7 @@ EXAMPLES
|
|
|
6064
6064
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
6065
6065
|
```
|
|
6066
6066
|
|
|
6067
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6067
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/install/report.ts)_
|
|
6068
6068
|
|
|
6069
6069
|
## `sf package installed list`
|
|
6070
6070
|
|
|
@@ -6096,7 +6096,7 @@ EXAMPLES
|
|
|
6096
6096
|
$ sf package installed list --target-org me@example.com
|
|
6097
6097
|
```
|
|
6098
6098
|
|
|
6099
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6099
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/installed/list.ts)_
|
|
6100
6100
|
|
|
6101
6101
|
## `sf package list`
|
|
6102
6102
|
|
|
@@ -6134,7 +6134,7 @@ EXAMPLES
|
|
|
6134
6134
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
6135
6135
|
```
|
|
6136
6136
|
|
|
6137
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6137
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/list.ts)_
|
|
6138
6138
|
|
|
6139
6139
|
## `sf package push-upgrade abort`
|
|
6140
6140
|
|
|
@@ -6173,7 +6173,7 @@ EXAMPLES
|
|
|
6173
6173
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6174
6174
|
```
|
|
6175
6175
|
|
|
6176
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6176
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/push-upgrade/abort.ts)_
|
|
6177
6177
|
|
|
6178
6178
|
## `sf package push-upgrade list`
|
|
6179
6179
|
|
|
@@ -6232,7 +6232,7 @@ EXAMPLES
|
|
|
6232
6232
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6233
6233
|
```
|
|
6234
6234
|
|
|
6235
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6235
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/push-upgrade/list.ts)_
|
|
6236
6236
|
|
|
6237
6237
|
## `sf package push-upgrade report`
|
|
6238
6238
|
|
|
@@ -6274,7 +6274,7 @@ EXAMPLES
|
|
|
6274
6274
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6275
6275
|
```
|
|
6276
6276
|
|
|
6277
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6277
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/push-upgrade/report.ts)_
|
|
6278
6278
|
|
|
6279
6279
|
## `sf package push-upgrade schedule`
|
|
6280
6280
|
|
|
@@ -6361,7 +6361,7 @@ FLAG DESCRIPTIONS
|
|
|
6361
6361
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6362
6362
|
```
|
|
6363
6363
|
|
|
6364
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6364
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/push-upgrade/schedule.ts)_
|
|
6365
6365
|
|
|
6366
6366
|
## `sf package uninstall`
|
|
6367
6367
|
|
|
@@ -6409,7 +6409,7 @@ EXAMPLES
|
|
|
6409
6409
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6410
6410
|
```
|
|
6411
6411
|
|
|
6412
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6412
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/uninstall.ts)_
|
|
6413
6413
|
|
|
6414
6414
|
## `sf package uninstall report`
|
|
6415
6415
|
|
|
@@ -6442,7 +6442,7 @@ EXAMPLES
|
|
|
6442
6442
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6443
6443
|
```
|
|
6444
6444
|
|
|
6445
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6445
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/uninstall/report.ts)_
|
|
6446
6446
|
|
|
6447
6447
|
## `sf package update`
|
|
6448
6448
|
|
|
@@ -6505,7 +6505,7 @@ FLAG DESCRIPTIONS
|
|
|
6505
6505
|
notified to upgrade to the recommended version.
|
|
6506
6506
|
```
|
|
6507
6507
|
|
|
6508
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6508
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/update.ts)_
|
|
6509
6509
|
|
|
6510
6510
|
## `sf package version create`
|
|
6511
6511
|
|
|
@@ -6680,7 +6680,7 @@ FLAG DESCRIPTIONS
|
|
|
6680
6680
|
periods of no output from commands.
|
|
6681
6681
|
```
|
|
6682
6682
|
|
|
6683
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6683
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/version/create.ts)_
|
|
6684
6684
|
|
|
6685
6685
|
## `sf package version create list`
|
|
6686
6686
|
|
|
@@ -6741,7 +6741,7 @@ EXAMPLES
|
|
|
6741
6741
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6742
6742
|
```
|
|
6743
6743
|
|
|
6744
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6744
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/version/create/list.ts)_
|
|
6745
6745
|
|
|
6746
6746
|
## `sf package version create report`
|
|
6747
6747
|
|
|
@@ -6784,7 +6784,7 @@ EXAMPLES
|
|
|
6784
6784
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6785
6785
|
```
|
|
6786
6786
|
|
|
6787
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6787
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/version/create/report.ts)_
|
|
6788
6788
|
|
|
6789
6789
|
## `sf package version delete`
|
|
6790
6790
|
|
|
@@ -6825,7 +6825,7 @@ EXAMPLES
|
|
|
6825
6825
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6826
6826
|
```
|
|
6827
6827
|
|
|
6828
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6828
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/version/delete.ts)_
|
|
6829
6829
|
|
|
6830
6830
|
## `sf package version displayancestry`
|
|
6831
6831
|
|
|
@@ -6885,7 +6885,7 @@ FLAG DESCRIPTIONS
|
|
|
6885
6885
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6886
6886
|
```
|
|
6887
6887
|
|
|
6888
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6888
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/version/displayancestry.ts)_
|
|
6889
6889
|
|
|
6890
6890
|
## `sf package version displaydependencies`
|
|
6891
6891
|
|
|
@@ -6947,7 +6947,7 @@ FLAG DESCRIPTIONS
|
|
|
6947
6947
|
package, which must be installed last.
|
|
6948
6948
|
```
|
|
6949
6949
|
|
|
6950
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
6950
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/version/displaydependencies.ts)_
|
|
6951
6951
|
|
|
6952
6952
|
## `sf package version list`
|
|
6953
6953
|
|
|
@@ -7023,7 +7023,7 @@ EXAMPLES
|
|
|
7023
7023
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
7024
7024
|
```
|
|
7025
7025
|
|
|
7026
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
7026
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/version/list.ts)_
|
|
7027
7027
|
|
|
7028
7028
|
## `sf package version promote`
|
|
7029
7029
|
|
|
@@ -7067,7 +7067,7 @@ EXAMPLES
|
|
|
7067
7067
|
$ sf package version promote --package "Awesome Package Alias"
|
|
7068
7068
|
```
|
|
7069
7069
|
|
|
7070
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
7070
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/version/promote.ts)_
|
|
7071
7071
|
|
|
7072
7072
|
## `sf package version report`
|
|
7073
7073
|
|
|
@@ -7107,7 +7107,7 @@ EXAMPLES
|
|
|
7107
7107
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
7108
7108
|
```
|
|
7109
7109
|
|
|
7110
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
7110
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/version/report.ts)_
|
|
7111
7111
|
|
|
7112
7112
|
## `sf package version update`
|
|
7113
7113
|
|
|
@@ -7160,7 +7160,7 @@ EXAMPLES
|
|
|
7160
7160
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
7161
7161
|
```
|
|
7162
7162
|
|
|
7163
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
7163
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package/version/update.ts)_
|
|
7164
7164
|
|
|
7165
7165
|
## `sf package1 version create`
|
|
7166
7166
|
|
|
@@ -7227,7 +7227,7 @@ FLAG DESCRIPTIONS
|
|
|
7227
7227
|
subscribers.
|
|
7228
7228
|
```
|
|
7229
7229
|
|
|
7230
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
7230
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package1/version/create.ts)_
|
|
7231
7231
|
|
|
7232
7232
|
## `sf package1 version create get`
|
|
7233
7233
|
|
|
@@ -7260,7 +7260,7 @@ EXAMPLES
|
|
|
7260
7260
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
7261
7261
|
```
|
|
7262
7262
|
|
|
7263
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
7263
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package1/version/create/get.ts)_
|
|
7264
7264
|
|
|
7265
7265
|
## `sf package1 version display`
|
|
7266
7266
|
|
|
@@ -7294,7 +7294,7 @@ EXAMPLES
|
|
|
7294
7294
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7295
7295
|
```
|
|
7296
7296
|
|
|
7297
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
7297
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package1/version/display.ts)_
|
|
7298
7298
|
|
|
7299
7299
|
## `sf package1 version list`
|
|
7300
7300
|
|
|
@@ -7332,7 +7332,7 @@ FLAG DESCRIPTIONS
|
|
|
7332
7332
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7333
7333
|
```
|
|
7334
7334
|
|
|
7335
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.
|
|
7335
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.22.4/src/commands/package1/version/list.ts)_
|
|
7336
7336
|
|
|
7337
7337
|
## `sf plugins`
|
|
7338
7338
|
|
|
@@ -8927,7 +8927,7 @@ FLAG DESCRIPTIONS
|
|
|
8927
8927
|
Override the api version used for api requests made by this command
|
|
8928
8928
|
```
|
|
8929
8929
|
|
|
8930
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
8930
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/project/generate.ts)_
|
|
8931
8931
|
|
|
8932
8932
|
## `sf project generate manifest`
|
|
8933
8933
|
|
|
@@ -9403,7 +9403,7 @@ FLAG DESCRIPTIONS
|
|
|
9403
9403
|
If you don't specify this flag, the command prompts you to choose from your local objects.
|
|
9404
9404
|
```
|
|
9405
9405
|
|
|
9406
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9406
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.77/src/commands/schema/generate/field.ts)_
|
|
9407
9407
|
|
|
9408
9408
|
## `sf schema generate platformevent`
|
|
9409
9409
|
|
|
@@ -9435,7 +9435,7 @@ EXAMPLES
|
|
|
9435
9435
|
$ sf schema generate platformevent --label "My Platform Event"
|
|
9436
9436
|
```
|
|
9437
9437
|
|
|
9438
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9438
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.77/src/commands/schema/generate/platformevent.ts)_
|
|
9439
9439
|
|
|
9440
9440
|
## `sf schema generate sobject`
|
|
9441
9441
|
|
|
@@ -9492,7 +9492,7 @@ FLAG DESCRIPTIONS
|
|
|
9492
9492
|
- Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
|
|
9493
9493
|
```
|
|
9494
9494
|
|
|
9495
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9495
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.77/src/commands/schema/generate/sobject.ts)_
|
|
9496
9496
|
|
|
9497
9497
|
## `sf schema generate tab`
|
|
9498
9498
|
|
|
@@ -9540,7 +9540,7 @@ FLAG DESCRIPTIONS
|
|
|
9540
9540
|
The API name for a custom object always ends in `__c`, such as `MyObject__c`.
|
|
9541
9541
|
```
|
|
9542
9542
|
|
|
9543
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9543
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.77/src/commands/schema/generate/tab.ts)_
|
|
9544
9544
|
|
|
9545
9545
|
## `sf search`
|
|
9546
9546
|
|
|
@@ -9556,7 +9556,7 @@ DESCRIPTION
|
|
|
9556
9556
|
Once you select a command, hit enter and it will show the help for that command.
|
|
9557
9557
|
```
|
|
9558
9558
|
|
|
9559
|
-
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.
|
|
9559
|
+
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.34/src/commands/search.ts)_
|
|
9560
9560
|
|
|
9561
9561
|
## `sf sobject describe`
|
|
9562
9562
|
|
|
@@ -9603,7 +9603,7 @@ EXAMPLES
|
|
|
9603
9603
|
$ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
|
|
9604
9604
|
```
|
|
9605
9605
|
|
|
9606
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
9606
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.86/src/commands/sobject/describe.ts)_
|
|
9607
9607
|
|
|
9608
9608
|
## `sf sobject list`
|
|
9609
9609
|
|
|
@@ -9642,7 +9642,7 @@ EXAMPLES
|
|
|
9642
9642
|
$ sf sobject list --sobject custom --target-org my-scratch-org
|
|
9643
9643
|
```
|
|
9644
9644
|
|
|
9645
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
9645
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.86/src/commands/sobject/list.ts)_
|
|
9646
9646
|
|
|
9647
9647
|
## `sf static-resource generate`
|
|
9648
9648
|
|
|
@@ -9704,7 +9704,7 @@ FLAG DESCRIPTIONS
|
|
|
9704
9704
|
etc.
|
|
9705
9705
|
```
|
|
9706
9706
|
|
|
9707
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
9707
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/static-resource/generate.ts)_
|
|
9708
9708
|
|
|
9709
9709
|
## `sf update [CHANNEL]`
|
|
9710
9710
|
|
|
@@ -9742,7 +9742,7 @@ EXAMPLES
|
|
|
9742
9742
|
$ sf update --available
|
|
9743
9743
|
```
|
|
9744
9744
|
|
|
9745
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
9745
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.13/src/commands/update.ts)_
|
|
9746
9746
|
|
|
9747
9747
|
## `sf version`
|
|
9748
9748
|
|
|
@@ -9818,7 +9818,7 @@ FLAG DESCRIPTIONS
|
|
|
9818
9818
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9819
9819
|
```
|
|
9820
9820
|
|
|
9821
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
9821
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/visualforce/generate/component.ts)_
|
|
9822
9822
|
|
|
9823
9823
|
## `sf visualforce generate page`
|
|
9824
9824
|
|
|
@@ -9868,7 +9868,7 @@ FLAG DESCRIPTIONS
|
|
|
9868
9868
|
The name can be up to 40 characters and must start with a letter.
|
|
9869
9869
|
```
|
|
9870
9870
|
|
|
9871
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
9871
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.69/src/commands/visualforce/generate/page.ts)_
|
|
9872
9872
|
|
|
9873
9873
|
## `sf which`
|
|
9874
9874
|
|
|
@@ -9902,7 +9902,7 @@ EXAMPLES
|
|
|
9902
9902
|
$ sf which "foo bar baz"
|
|
9903
9903
|
```
|
|
9904
9904
|
|
|
9905
|
-
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.
|
|
9905
|
+
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.42/src/commands/which.ts)_
|
|
9906
9906
|
|
|
9907
9907
|
<!-- commandsstop -->
|
|
9908
9908
|
|