@salesforce/cli 2.120.3 → 2.121.0
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 +146 -109
- package/npm-shrinkwrap.json +76 -76
- package/oclif.lock +77 -77
- package/oclif.manifest.json +1 -1
- package/package.json +16 -16
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.
|
|
28
|
+
@salesforce/cli/2.121.0 linux-x64 node-v22.22.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -137,6 +137,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
137
137
|
- [`sf org logout`](#sf-org-logout)
|
|
138
138
|
- [`sf org open`](#sf-org-open)
|
|
139
139
|
- [`sf org open agent`](#sf-org-open-agent)
|
|
140
|
+
- [`sf org open authoring-bundle`](#sf-org-open-authoring-bundle)
|
|
140
141
|
- [`sf org refresh sandbox`](#sf-org-refresh-sandbox)
|
|
141
142
|
- [`sf org resume sandbox`](#sf-org-resume-sandbox)
|
|
142
143
|
- [`sf org resume scratch`](#sf-org-resume-scratch)
|
|
@@ -247,7 +248,7 @@ EXAMPLES
|
|
|
247
248
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
248
249
|
```
|
|
249
250
|
|
|
250
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
251
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/activate.ts)_
|
|
251
252
|
|
|
252
253
|
## `sf agent create`
|
|
253
254
|
|
|
@@ -314,7 +315,7 @@ EXAMPLES
|
|
|
314
315
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
315
316
|
```
|
|
316
317
|
|
|
317
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
318
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/create.ts)_
|
|
318
319
|
|
|
319
320
|
## `sf agent deactivate`
|
|
320
321
|
|
|
@@ -354,7 +355,7 @@ EXAMPLES
|
|
|
354
355
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
355
356
|
```
|
|
356
357
|
|
|
357
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
358
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/deactivate.ts)_
|
|
358
359
|
|
|
359
360
|
## `sf agent generate agent-spec`
|
|
360
361
|
|
|
@@ -461,7 +462,7 @@ EXAMPLES
|
|
|
461
462
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
462
463
|
```
|
|
463
464
|
|
|
464
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
465
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/generate/agent-spec.ts)_
|
|
465
466
|
|
|
466
467
|
## `sf agent generate authoring-bundle`
|
|
467
468
|
|
|
@@ -527,7 +528,7 @@ EXAMPLES
|
|
|
527
528
|
other-package-dir/main/default --target-org my-dev-org
|
|
528
529
|
```
|
|
529
530
|
|
|
530
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
531
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/generate/authoring-bundle.ts)_
|
|
531
532
|
|
|
532
533
|
## `sf agent generate template`
|
|
533
534
|
|
|
@@ -575,7 +576,7 @@ EXAMPLES
|
|
|
575
576
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
576
577
|
```
|
|
577
578
|
|
|
578
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
579
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/generate/template.ts)_
|
|
579
580
|
|
|
580
581
|
## `sf agent generate test-spec`
|
|
581
582
|
|
|
@@ -636,7 +637,7 @@ EXAMPLES
|
|
|
636
637
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
637
638
|
```
|
|
638
639
|
|
|
639
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
640
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/generate/test-spec.ts)_
|
|
640
641
|
|
|
641
642
|
## `sf agent preview`
|
|
642
643
|
|
|
@@ -644,12 +645,10 @@ Interact with an agent to preview how it responds to your statements, questions,
|
|
|
644
645
|
|
|
645
646
|
```
|
|
646
647
|
USAGE
|
|
647
|
-
$ sf agent preview [--flags-dir <value>] [--api-version <value>]
|
|
648
|
-
|
|
648
|
+
$ sf agent preview -o <value> [--flags-dir <value>] [--api-version <value>] [-n <value>] [--authoring-bundle
|
|
649
|
+
<value>] [-d <value>] [-x] [--use-live-actions]
|
|
649
650
|
|
|
650
651
|
FLAGS
|
|
651
|
-
-c, --client-app=<value> Name of the linked client app to use for the connection to the published and active
|
|
652
|
-
agent.
|
|
653
652
|
-d, --output-dir=<value> Directory where conversation transcripts are saved.
|
|
654
653
|
-n, --api-name=<value> API name of the published and active agent you want to interact with.
|
|
655
654
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
@@ -695,14 +694,6 @@ DESCRIPTION
|
|
|
695
694
|
the files are saved to the "./temp/agent-preview" directory. Specify a new default directory with the --output-dir
|
|
696
695
|
flag.
|
|
697
696
|
|
|
698
|
-
NOTE: You can also use this command to connect to a published and active agent, which are labeled "(Published)" if you
|
|
699
|
-
let this command provide the list of agents to preview. That use case, however, requires additional security and
|
|
700
|
-
configuration in both your org and your DX project. The examples in this help are for previewing an agent from its
|
|
701
|
-
Agent Script file in your DX project and require only simple authorization of your org, such as with the "org login
|
|
702
|
-
web" command. The --client-app and --api-name flags are used only for previewing published and active agents, they
|
|
703
|
-
don't apply to Agent Script agents. See "Connect to a Published Agent" in the "Agentforce Developer Guide" for
|
|
704
|
-
complete documentation: https://developer.salesforce.com/docs/einstein/genai/guide/agent-dx-preview.html.
|
|
705
|
-
|
|
706
697
|
EXAMPLES
|
|
707
698
|
Preview an agent in simulated mode by choosing from a list of authoring bundles provided by the command; use the org
|
|
708
699
|
with alias "my-dev-org":
|
|
@@ -715,7 +706,7 @@ EXAMPLES
|
|
|
715
706
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
716
707
|
```
|
|
717
708
|
|
|
718
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
709
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/preview.ts)_
|
|
719
710
|
|
|
720
711
|
## `sf agent publish authoring-bundle`
|
|
721
712
|
|
|
@@ -762,7 +753,7 @@ EXAMPLES
|
|
|
762
753
|
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
|
|
763
754
|
```
|
|
764
755
|
|
|
765
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
756
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/publish/authoring-bundle.ts)_
|
|
766
757
|
|
|
767
758
|
## `sf agent test create`
|
|
768
759
|
|
|
@@ -817,7 +808,7 @@ EXAMPLES
|
|
|
817
808
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
818
809
|
```
|
|
819
810
|
|
|
820
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
811
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/test/create.ts)_
|
|
821
812
|
|
|
822
813
|
## `sf agent test list`
|
|
823
814
|
|
|
@@ -852,7 +843,7 @@ EXAMPLES
|
|
|
852
843
|
$ sf agent test list --target-org my-org
|
|
853
844
|
```
|
|
854
845
|
|
|
855
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
846
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/test/list.ts)_
|
|
856
847
|
|
|
857
848
|
## `sf agent test results`
|
|
858
849
|
|
|
@@ -918,7 +909,7 @@ FLAG DESCRIPTIONS
|
|
|
918
909
|
expression when using custom evaluations.
|
|
919
910
|
```
|
|
920
911
|
|
|
921
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
912
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/test/results.ts)_
|
|
922
913
|
|
|
923
914
|
## `sf agent test resume`
|
|
924
915
|
|
|
@@ -991,7 +982,7 @@ FLAG DESCRIPTIONS
|
|
|
991
982
|
expression when using custom evaluations.
|
|
992
983
|
```
|
|
993
984
|
|
|
994
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
985
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/test/resume.ts)_
|
|
995
986
|
|
|
996
987
|
## `sf agent test run`
|
|
997
988
|
|
|
@@ -1065,7 +1056,7 @@ FLAG DESCRIPTIONS
|
|
|
1065
1056
|
expression when using custom evaluations.
|
|
1066
1057
|
```
|
|
1067
1058
|
|
|
1068
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
1059
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/test/run.ts)_
|
|
1069
1060
|
|
|
1070
1061
|
## `sf agent validate authoring-bundle`
|
|
1071
1062
|
|
|
@@ -1112,7 +1103,7 @@ EXAMPLES
|
|
|
1112
1103
|
$ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
|
|
1113
1104
|
```
|
|
1114
1105
|
|
|
1115
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
1106
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.6/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1116
1107
|
|
|
1117
1108
|
## `sf alias list`
|
|
1118
1109
|
|
|
@@ -1271,7 +1262,7 @@ FLAG DESCRIPTIONS
|
|
|
1271
1262
|
directory.
|
|
1272
1263
|
```
|
|
1273
1264
|
|
|
1274
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
1265
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/analytics/generate/template.ts)_
|
|
1275
1266
|
|
|
1276
1267
|
## `sf apex generate class`
|
|
1277
1268
|
|
|
@@ -1330,7 +1321,7 @@ FLAG DESCRIPTIONS
|
|
|
1330
1321
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
1331
1322
|
```
|
|
1332
1323
|
|
|
1333
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
1324
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/apex/generate/class.ts)_
|
|
1334
1325
|
|
|
1335
1326
|
## `sf apex generate trigger`
|
|
1336
1327
|
|
|
@@ -1399,7 +1390,7 @@ FLAG DESCRIPTIONS
|
|
|
1399
1390
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
1400
1391
|
```
|
|
1401
1392
|
|
|
1402
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
1393
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/apex/generate/trigger.ts)_
|
|
1403
1394
|
|
|
1404
1395
|
## `sf apex get log`
|
|
1405
1396
|
|
|
@@ -1985,7 +1976,7 @@ EXAMPLES
|
|
|
1985
1976
|
$ sf autocomplete --refresh-cache
|
|
1986
1977
|
```
|
|
1987
1978
|
|
|
1988
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.
|
|
1979
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.40/src/commands/autocomplete/index.ts)_
|
|
1989
1980
|
|
|
1990
1981
|
## `sf commands`
|
|
1991
1982
|
|
|
@@ -2014,7 +2005,7 @@ DESCRIPTION
|
|
|
2014
2005
|
List all sf commands.
|
|
2015
2006
|
```
|
|
2016
2007
|
|
|
2017
|
-
_See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/4.1.
|
|
2008
|
+
_See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/4.1.39/src/commands/commands.ts)_
|
|
2018
2009
|
|
|
2019
2010
|
## `sf config get`
|
|
2020
2011
|
|
|
@@ -3514,7 +3505,7 @@ DESCRIPTION
|
|
|
3514
3505
|
Display help for sf.
|
|
3515
3506
|
```
|
|
3516
3507
|
|
|
3517
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.
|
|
3508
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.37/src/commands/help.ts)_
|
|
3518
3509
|
|
|
3519
3510
|
## `sf info releasenotes display`
|
|
3520
3511
|
|
|
@@ -3609,7 +3600,7 @@ FLAG DESCRIPTIONS
|
|
|
3609
3600
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3610
3601
|
```
|
|
3611
3602
|
|
|
3612
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
3603
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/lightning/generate/app.ts)_
|
|
3613
3604
|
|
|
3614
3605
|
## `sf lightning generate component`
|
|
3615
3606
|
|
|
@@ -3678,7 +3669,7 @@ FLAG DESCRIPTIONS
|
|
|
3678
3669
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3679
3670
|
```
|
|
3680
3671
|
|
|
3681
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
3672
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/lightning/generate/component.ts)_
|
|
3682
3673
|
|
|
3683
3674
|
## `sf lightning generate event`
|
|
3684
3675
|
|
|
@@ -3733,7 +3724,7 @@ FLAG DESCRIPTIONS
|
|
|
3733
3724
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3734
3725
|
```
|
|
3735
3726
|
|
|
3736
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
3727
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/lightning/generate/event.ts)_
|
|
3737
3728
|
|
|
3738
3729
|
## `sf lightning generate interface`
|
|
3739
3730
|
|
|
@@ -3788,7 +3779,7 @@ FLAG DESCRIPTIONS
|
|
|
3788
3779
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3789
3780
|
```
|
|
3790
3781
|
|
|
3791
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
3782
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/lightning/generate/interface.ts)_
|
|
3792
3783
|
|
|
3793
3784
|
## `sf lightning generate test`
|
|
3794
3785
|
|
|
@@ -3843,7 +3834,7 @@ FLAG DESCRIPTIONS
|
|
|
3843
3834
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3844
3835
|
```
|
|
3845
3836
|
|
|
3846
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
3837
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/lightning/generate/test.ts)_
|
|
3847
3838
|
|
|
3848
3839
|
## `sf logic get test`
|
|
3849
3840
|
|
|
@@ -4059,7 +4050,7 @@ EXAMPLES
|
|
|
4059
4050
|
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
|
|
4060
4051
|
```
|
|
4061
4052
|
|
|
4062
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4053
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/assign/permset.ts)_
|
|
4063
4054
|
|
|
4064
4055
|
## `sf org assign permsetlicense`
|
|
4065
4056
|
|
|
@@ -4106,7 +4097,7 @@ EXAMPLES
|
|
|
4106
4097
|
user3
|
|
4107
4098
|
```
|
|
4108
4099
|
|
|
4109
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4100
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/assign/permsetlicense.ts)_
|
|
4110
4101
|
|
|
4111
4102
|
## `sf org create sandbox`
|
|
4112
4103
|
|
|
@@ -4240,7 +4231,7 @@ FLAG DESCRIPTIONS
|
|
|
4240
4231
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
4241
4232
|
```
|
|
4242
4233
|
|
|
4243
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4234
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/create/sandbox.ts)_
|
|
4244
4235
|
|
|
4245
4236
|
## `sf org create scratch`
|
|
4246
4237
|
|
|
@@ -4422,7 +4413,7 @@ FLAG DESCRIPTIONS
|
|
|
4422
4413
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4423
4414
|
```
|
|
4424
4415
|
|
|
4425
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4416
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/create/scratch.ts)_
|
|
4426
4417
|
|
|
4427
4418
|
## `sf org create user`
|
|
4428
4419
|
|
|
@@ -4530,7 +4521,7 @@ FLAG DESCRIPTIONS
|
|
|
4530
4521
|
might be different than what you specify in the definition file.
|
|
4531
4522
|
```
|
|
4532
4523
|
|
|
4533
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4524
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/create/user.ts)_
|
|
4534
4525
|
|
|
4535
4526
|
## `sf org delete sandbox`
|
|
4536
4527
|
|
|
@@ -4576,7 +4567,7 @@ EXAMPLES
|
|
|
4576
4567
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4577
4568
|
```
|
|
4578
4569
|
|
|
4579
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4570
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/delete/sandbox.ts)_
|
|
4580
4571
|
|
|
4581
4572
|
## `sf org delete scratch`
|
|
4582
4573
|
|
|
@@ -4620,7 +4611,7 @@ EXAMPLES
|
|
|
4620
4611
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4621
4612
|
```
|
|
4622
4613
|
|
|
4623
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4614
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/delete/scratch.ts)_
|
|
4624
4615
|
|
|
4625
4616
|
## `sf org disable tracking`
|
|
4626
4617
|
|
|
@@ -4659,7 +4650,7 @@ EXAMPLES
|
|
|
4659
4650
|
$ sf org disable tracking
|
|
4660
4651
|
```
|
|
4661
4652
|
|
|
4662
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4653
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/disable/tracking.ts)_
|
|
4663
4654
|
|
|
4664
4655
|
## `sf org display`
|
|
4665
4656
|
|
|
@@ -4704,7 +4695,7 @@ EXAMPLES
|
|
|
4704
4695
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4705
4696
|
```
|
|
4706
4697
|
|
|
4707
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4698
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/display.ts)_
|
|
4708
4699
|
|
|
4709
4700
|
## `sf org display user`
|
|
4710
4701
|
|
|
@@ -4743,7 +4734,7 @@ EXAMPLES
|
|
|
4743
4734
|
$ sf org display user --target-org me@my.org --json
|
|
4744
4735
|
```
|
|
4745
4736
|
|
|
4746
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4737
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/display/user.ts)_
|
|
4747
4738
|
|
|
4748
4739
|
## `sf org enable tracking`
|
|
4749
4740
|
|
|
@@ -4785,7 +4776,7 @@ EXAMPLES
|
|
|
4785
4776
|
$ sf org enable tracking
|
|
4786
4777
|
```
|
|
4787
4778
|
|
|
4788
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4779
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/enable/tracking.ts)_
|
|
4789
4780
|
|
|
4790
4781
|
## `sf org generate password`
|
|
4791
4782
|
|
|
@@ -4852,7 +4843,7 @@ EXAMPLES
|
|
|
4852
4843
|
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
|
|
4853
4844
|
```
|
|
4854
4845
|
|
|
4855
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4846
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/generate/password.ts)_
|
|
4856
4847
|
|
|
4857
4848
|
## `sf org list`
|
|
4858
4849
|
|
|
@@ -4891,7 +4882,7 @@ EXAMPLES
|
|
|
4891
4882
|
$ sf org list --clean
|
|
4892
4883
|
```
|
|
4893
4884
|
|
|
4894
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4885
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/list.ts)_
|
|
4895
4886
|
|
|
4896
4887
|
## `sf org list auth`
|
|
4897
4888
|
|
|
@@ -4923,7 +4914,7 @@ EXAMPLES
|
|
|
4923
4914
|
$ sf org list auth
|
|
4924
4915
|
```
|
|
4925
4916
|
|
|
4926
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
4917
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/list/auth.ts)_
|
|
4927
4918
|
|
|
4928
4919
|
## `sf org list limits`
|
|
4929
4920
|
|
|
@@ -5030,7 +5021,7 @@ FLAG DESCRIPTIONS
|
|
|
5030
5021
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
5031
5022
|
```
|
|
5032
5023
|
|
|
5033
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5024
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/list/metadata.ts)_
|
|
5034
5025
|
|
|
5035
5026
|
## `sf org list metadata-types`
|
|
5036
5027
|
|
|
@@ -5085,7 +5076,7 @@ FLAG DESCRIPTIONS
|
|
|
5085
5076
|
Override the api version used for api requests made by this command
|
|
5086
5077
|
```
|
|
5087
5078
|
|
|
5088
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5079
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/list/metadata-types.ts)_
|
|
5089
5080
|
|
|
5090
5081
|
## `sf org list sobject record-counts`
|
|
5091
5082
|
|
|
@@ -5169,7 +5160,7 @@ EXAMPLES
|
|
|
5169
5160
|
$ sf org list users --target-org me@my.org
|
|
5170
5161
|
```
|
|
5171
5162
|
|
|
5172
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
5163
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/list/users.ts)_
|
|
5173
5164
|
|
|
5174
5165
|
## `sf org login access-token`
|
|
5175
5166
|
|
|
@@ -5223,7 +5214,7 @@ FLAG DESCRIPTIONS
|
|
|
5223
5214
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5224
5215
|
```
|
|
5225
5216
|
|
|
5226
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5217
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/login/access-token.ts)_
|
|
5227
5218
|
|
|
5228
5219
|
## `sf org login jwt`
|
|
5229
5220
|
|
|
@@ -5314,7 +5305,7 @@ FLAG DESCRIPTIONS
|
|
|
5314
5305
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5315
5306
|
```
|
|
5316
5307
|
|
|
5317
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5308
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/login/jwt.ts)_
|
|
5318
5309
|
|
|
5319
5310
|
## `sf org login sfdx-url`
|
|
5320
5311
|
|
|
@@ -5384,7 +5375,7 @@ EXAMPLES
|
|
|
5384
5375
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
5385
5376
|
```
|
|
5386
5377
|
|
|
5387
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5378
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/login/sfdx-url.ts)_
|
|
5388
5379
|
|
|
5389
5380
|
## `sf org login web`
|
|
5390
5381
|
|
|
@@ -5489,7 +5480,7 @@ FLAG DESCRIPTIONS
|
|
|
5489
5480
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5490
5481
|
```
|
|
5491
5482
|
|
|
5492
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5483
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/login/web.ts)_
|
|
5493
5484
|
|
|
5494
5485
|
## `sf org logout`
|
|
5495
5486
|
|
|
@@ -5555,7 +5546,7 @@ FLAG DESCRIPTIONS
|
|
|
5555
5546
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
5556
5547
|
```
|
|
5557
5548
|
|
|
5558
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5549
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/logout.ts)_
|
|
5559
5550
|
|
|
5560
5551
|
## `sf org open`
|
|
5561
5552
|
|
|
@@ -5631,7 +5622,7 @@ EXAMPLES
|
|
|
5631
5622
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5632
5623
|
```
|
|
5633
5624
|
|
|
5634
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5625
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/open.ts)_
|
|
5635
5626
|
|
|
5636
5627
|
## `sf org open agent`
|
|
5637
5628
|
|
|
@@ -5682,7 +5673,53 @@ EXAMPLES
|
|
|
5682
5673
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5683
5674
|
```
|
|
5684
5675
|
|
|
5685
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5676
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/open/agent.ts)_
|
|
5677
|
+
|
|
5678
|
+
## `sf org open authoring-bundle`
|
|
5679
|
+
|
|
5680
|
+
Open your org in Agentforce Studio, specically in the list view showing the list of agents.
|
|
5681
|
+
|
|
5682
|
+
```
|
|
5683
|
+
USAGE
|
|
5684
|
+
$ sf org open authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [--private | -r | -b
|
|
5685
|
+
chrome|edge|firefox]
|
|
5686
|
+
|
|
5687
|
+
FLAGS
|
|
5688
|
+
-b, --browser=<option> Browser where the org opens.
|
|
5689
|
+
<options: chrome|edge|firefox>
|
|
5690
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
5691
|
+
configuration variable is already set.
|
|
5692
|
+
-r, --url-only Display navigation URL, but don't launch browser.
|
|
5693
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
5694
|
+
--private Open the org in the default browser using private (incognito) mode.
|
|
5695
|
+
|
|
5696
|
+
GLOBAL FLAGS
|
|
5697
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
5698
|
+
--json Format output as json.
|
|
5699
|
+
|
|
5700
|
+
DESCRIPTION
|
|
5701
|
+
Open your org in Agentforce Studio, specically in the list view showing the list of agents.
|
|
5702
|
+
|
|
5703
|
+
The list view shows the agents in your org that are implemented with Agent Script and an authoring bundle. Click on an
|
|
5704
|
+
agent name to open it in Agentforce Builder in a new browser window.
|
|
5705
|
+
|
|
5706
|
+
To generate the URL but not launch it in your browser, specify --url-only.
|
|
5707
|
+
|
|
5708
|
+
EXAMPLES
|
|
5709
|
+
Open the agents list view in your default org using your default browser:
|
|
5710
|
+
|
|
5711
|
+
$ sf org open authoring-bundle
|
|
5712
|
+
|
|
5713
|
+
Open the agents list view in an incognito window of your default browser:
|
|
5714
|
+
|
|
5715
|
+
$ sf org open authoring-bundle --private
|
|
5716
|
+
|
|
5717
|
+
Open the agents list view in an org with alias MyTestOrg1 using the Firefox browser:
|
|
5718
|
+
|
|
5719
|
+
$ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
|
|
5720
|
+
```
|
|
5721
|
+
|
|
5722
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/open/authoring-bundle.ts)_
|
|
5686
5723
|
|
|
5687
5724
|
## `sf org refresh sandbox`
|
|
5688
5725
|
|
|
@@ -5785,7 +5822,7 @@ FLAG DESCRIPTIONS
|
|
|
5785
5822
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5786
5823
|
```
|
|
5787
5824
|
|
|
5788
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5825
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/refresh/sandbox.ts)_
|
|
5789
5826
|
|
|
5790
5827
|
## `sf org resume sandbox`
|
|
5791
5828
|
|
|
@@ -5848,7 +5885,7 @@ FLAG DESCRIPTIONS
|
|
|
5848
5885
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5849
5886
|
```
|
|
5850
5887
|
|
|
5851
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5888
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/resume/sandbox.ts)_
|
|
5852
5889
|
|
|
5853
5890
|
## `sf org resume scratch`
|
|
5854
5891
|
|
|
@@ -5901,7 +5938,7 @@ FLAG DESCRIPTIONS
|
|
|
5901
5938
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5902
5939
|
```
|
|
5903
5940
|
|
|
5904
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5941
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/resume/scratch.ts)_
|
|
5905
5942
|
|
|
5906
5943
|
## `sf package convert`
|
|
5907
5944
|
|
|
@@ -5998,7 +6035,7 @@ FLAG DESCRIPTIONS
|
|
|
5998
6035
|
--installation-key-bypass flag is required.
|
|
5999
6036
|
```
|
|
6000
6037
|
|
|
6001
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6038
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/convert.ts)_
|
|
6002
6039
|
|
|
6003
6040
|
## `sf package create`
|
|
6004
6041
|
|
|
@@ -6077,7 +6114,7 @@ FLAG DESCRIPTIONS
|
|
|
6077
6114
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
6078
6115
|
```
|
|
6079
6116
|
|
|
6080
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6117
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/create.ts)_
|
|
6081
6118
|
|
|
6082
6119
|
## `sf package delete`
|
|
6083
6120
|
|
|
@@ -6119,7 +6156,7 @@ EXAMPLES
|
|
|
6119
6156
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
6120
6157
|
```
|
|
6121
6158
|
|
|
6122
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6159
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/delete.ts)_
|
|
6123
6160
|
|
|
6124
6161
|
## `sf package install`
|
|
6125
6162
|
|
|
@@ -6218,7 +6255,7 @@ FLAG DESCRIPTIONS
|
|
|
6218
6255
|
- Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
|
|
6219
6256
|
```
|
|
6220
6257
|
|
|
6221
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6258
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/install.ts)_
|
|
6222
6259
|
|
|
6223
6260
|
## `sf package install report`
|
|
6224
6261
|
|
|
@@ -6251,7 +6288,7 @@ EXAMPLES
|
|
|
6251
6288
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
6252
6289
|
```
|
|
6253
6290
|
|
|
6254
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6291
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/install/report.ts)_
|
|
6255
6292
|
|
|
6256
6293
|
## `sf package installed list`
|
|
6257
6294
|
|
|
@@ -6283,7 +6320,7 @@ EXAMPLES
|
|
|
6283
6320
|
$ sf package installed list --target-org me@example.com
|
|
6284
6321
|
```
|
|
6285
6322
|
|
|
6286
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6323
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/installed/list.ts)_
|
|
6287
6324
|
|
|
6288
6325
|
## `sf package list`
|
|
6289
6326
|
|
|
@@ -6321,7 +6358,7 @@ EXAMPLES
|
|
|
6321
6358
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
6322
6359
|
```
|
|
6323
6360
|
|
|
6324
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6361
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/list.ts)_
|
|
6325
6362
|
|
|
6326
6363
|
## `sf package push-upgrade abort`
|
|
6327
6364
|
|
|
@@ -6360,7 +6397,7 @@ EXAMPLES
|
|
|
6360
6397
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6361
6398
|
```
|
|
6362
6399
|
|
|
6363
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6400
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/push-upgrade/abort.ts)_
|
|
6364
6401
|
|
|
6365
6402
|
## `sf package push-upgrade list`
|
|
6366
6403
|
|
|
@@ -6419,7 +6456,7 @@ EXAMPLES
|
|
|
6419
6456
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6420
6457
|
```
|
|
6421
6458
|
|
|
6422
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6459
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/push-upgrade/list.ts)_
|
|
6423
6460
|
|
|
6424
6461
|
## `sf package push-upgrade report`
|
|
6425
6462
|
|
|
@@ -6461,7 +6498,7 @@ EXAMPLES
|
|
|
6461
6498
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6462
6499
|
```
|
|
6463
6500
|
|
|
6464
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6501
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/push-upgrade/report.ts)_
|
|
6465
6502
|
|
|
6466
6503
|
## `sf package push-upgrade schedule`
|
|
6467
6504
|
|
|
@@ -6548,7 +6585,7 @@ FLAG DESCRIPTIONS
|
|
|
6548
6585
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6549
6586
|
```
|
|
6550
6587
|
|
|
6551
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6588
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/push-upgrade/schedule.ts)_
|
|
6552
6589
|
|
|
6553
6590
|
## `sf package uninstall`
|
|
6554
6591
|
|
|
@@ -6596,7 +6633,7 @@ EXAMPLES
|
|
|
6596
6633
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6597
6634
|
```
|
|
6598
6635
|
|
|
6599
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6636
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/uninstall.ts)_
|
|
6600
6637
|
|
|
6601
6638
|
## `sf package uninstall report`
|
|
6602
6639
|
|
|
@@ -6629,7 +6666,7 @@ EXAMPLES
|
|
|
6629
6666
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6630
6667
|
```
|
|
6631
6668
|
|
|
6632
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6669
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/uninstall/report.ts)_
|
|
6633
6670
|
|
|
6634
6671
|
## `sf package update`
|
|
6635
6672
|
|
|
@@ -6697,7 +6734,7 @@ FLAG DESCRIPTIONS
|
|
|
6697
6734
|
the Installed Packages page. Only released package versions can be set as the recommended version.
|
|
6698
6735
|
```
|
|
6699
6736
|
|
|
6700
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6737
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/update.ts)_
|
|
6701
6738
|
|
|
6702
6739
|
## `sf package version create`
|
|
6703
6740
|
|
|
@@ -6872,7 +6909,7 @@ FLAG DESCRIPTIONS
|
|
|
6872
6909
|
periods of no output from commands.
|
|
6873
6910
|
```
|
|
6874
6911
|
|
|
6875
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6912
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/create.ts)_
|
|
6876
6913
|
|
|
6877
6914
|
## `sf package version create list`
|
|
6878
6915
|
|
|
@@ -6933,7 +6970,7 @@ EXAMPLES
|
|
|
6933
6970
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6934
6971
|
```
|
|
6935
6972
|
|
|
6936
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6973
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/create/list.ts)_
|
|
6937
6974
|
|
|
6938
6975
|
## `sf package version create report`
|
|
6939
6976
|
|
|
@@ -6976,7 +7013,7 @@ EXAMPLES
|
|
|
6976
7013
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6977
7014
|
```
|
|
6978
7015
|
|
|
6979
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7016
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/create/report.ts)_
|
|
6980
7017
|
|
|
6981
7018
|
## `sf package version delete`
|
|
6982
7019
|
|
|
@@ -7017,7 +7054,7 @@ EXAMPLES
|
|
|
7017
7054
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
7018
7055
|
```
|
|
7019
7056
|
|
|
7020
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7057
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/delete.ts)_
|
|
7021
7058
|
|
|
7022
7059
|
## `sf package version displayancestry`
|
|
7023
7060
|
|
|
@@ -7077,7 +7114,7 @@ FLAG DESCRIPTIONS
|
|
|
7077
7114
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
7078
7115
|
```
|
|
7079
7116
|
|
|
7080
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7117
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/displayancestry.ts)_
|
|
7081
7118
|
|
|
7082
7119
|
## `sf package version displaydependencies`
|
|
7083
7120
|
|
|
@@ -7139,7 +7176,7 @@ FLAG DESCRIPTIONS
|
|
|
7139
7176
|
package, which must be installed last.
|
|
7140
7177
|
```
|
|
7141
7178
|
|
|
7142
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7179
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/displaydependencies.ts)_
|
|
7143
7180
|
|
|
7144
7181
|
## `sf package version list`
|
|
7145
7182
|
|
|
@@ -7215,7 +7252,7 @@ EXAMPLES
|
|
|
7215
7252
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
7216
7253
|
```
|
|
7217
7254
|
|
|
7218
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7255
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/list.ts)_
|
|
7219
7256
|
|
|
7220
7257
|
## `sf package version promote`
|
|
7221
7258
|
|
|
@@ -7259,7 +7296,7 @@ EXAMPLES
|
|
|
7259
7296
|
$ sf package version promote --package "Awesome Package Alias"
|
|
7260
7297
|
```
|
|
7261
7298
|
|
|
7262
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7299
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/promote.ts)_
|
|
7263
7300
|
|
|
7264
7301
|
## `sf package version report`
|
|
7265
7302
|
|
|
@@ -7299,7 +7336,7 @@ EXAMPLES
|
|
|
7299
7336
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
7300
7337
|
```
|
|
7301
7338
|
|
|
7302
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7339
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/report.ts)_
|
|
7303
7340
|
|
|
7304
7341
|
## `sf package version retrieve`
|
|
7305
7342
|
|
|
@@ -7344,7 +7381,7 @@ EXAMPLES
|
|
|
7344
7381
|
$ sf package version retrieve --package 04tXXX --output-dir my-directory/ --target-dev-hub devhub@example.com
|
|
7345
7382
|
```
|
|
7346
7383
|
|
|
7347
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7384
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/retrieve.ts)_
|
|
7348
7385
|
|
|
7349
7386
|
## `sf package version update`
|
|
7350
7387
|
|
|
@@ -7397,7 +7434,7 @@ EXAMPLES
|
|
|
7397
7434
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
7398
7435
|
```
|
|
7399
7436
|
|
|
7400
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7437
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/update.ts)_
|
|
7401
7438
|
|
|
7402
7439
|
## `sf package1 version create`
|
|
7403
7440
|
|
|
@@ -7464,7 +7501,7 @@ FLAG DESCRIPTIONS
|
|
|
7464
7501
|
subscribers.
|
|
7465
7502
|
```
|
|
7466
7503
|
|
|
7467
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7504
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package1/version/create.ts)_
|
|
7468
7505
|
|
|
7469
7506
|
## `sf package1 version create get`
|
|
7470
7507
|
|
|
@@ -7497,7 +7534,7 @@ EXAMPLES
|
|
|
7497
7534
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
7498
7535
|
```
|
|
7499
7536
|
|
|
7500
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7537
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package1/version/create/get.ts)_
|
|
7501
7538
|
|
|
7502
7539
|
## `sf package1 version display`
|
|
7503
7540
|
|
|
@@ -7531,7 +7568,7 @@ EXAMPLES
|
|
|
7531
7568
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7532
7569
|
```
|
|
7533
7570
|
|
|
7534
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7571
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package1/version/display.ts)_
|
|
7535
7572
|
|
|
7536
7573
|
## `sf package1 version list`
|
|
7537
7574
|
|
|
@@ -7569,7 +7606,7 @@ FLAG DESCRIPTIONS
|
|
|
7569
7606
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7570
7607
|
```
|
|
7571
7608
|
|
|
7572
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7609
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package1/version/list.ts)_
|
|
7573
7610
|
|
|
7574
7611
|
## `sf plugins`
|
|
7575
7612
|
|
|
@@ -7592,7 +7629,7 @@ EXAMPLES
|
|
|
7592
7629
|
$ sf plugins
|
|
7593
7630
|
```
|
|
7594
7631
|
|
|
7595
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7632
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/index.ts)_
|
|
7596
7633
|
|
|
7597
7634
|
## `sf plugins discover`
|
|
7598
7635
|
|
|
@@ -7637,7 +7674,7 @@ EXAMPLES
|
|
|
7637
7674
|
$ sf plugins inspect @salesforce/plugin-packaging
|
|
7638
7675
|
```
|
|
7639
7676
|
|
|
7640
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7677
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/inspect.ts)_
|
|
7641
7678
|
|
|
7642
7679
|
## `sf plugins install PLUGIN`
|
|
7643
7680
|
|
|
@@ -7686,7 +7723,7 @@ EXAMPLES
|
|
|
7686
7723
|
$ sf plugins install someuser/someplugin
|
|
7687
7724
|
```
|
|
7688
7725
|
|
|
7689
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7726
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/install.ts)_
|
|
7690
7727
|
|
|
7691
7728
|
## `sf plugins link PATH`
|
|
7692
7729
|
|
|
@@ -7717,7 +7754,7 @@ EXAMPLES
|
|
|
7717
7754
|
$ sf plugins link @salesforce/plugin-packaging
|
|
7718
7755
|
```
|
|
7719
7756
|
|
|
7720
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7757
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/link.ts)_
|
|
7721
7758
|
|
|
7722
7759
|
## `sf plugins reset`
|
|
7723
7760
|
|
|
@@ -7732,7 +7769,7 @@ FLAGS
|
|
|
7732
7769
|
--reinstall Reinstall all plugins after uninstalling.
|
|
7733
7770
|
```
|
|
7734
7771
|
|
|
7735
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7772
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/reset.ts)_
|
|
7736
7773
|
|
|
7737
7774
|
## `sf plugins trust verify`
|
|
7738
7775
|
|
|
@@ -7789,7 +7826,7 @@ EXAMPLES
|
|
|
7789
7826
|
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
7790
7827
|
```
|
|
7791
7828
|
|
|
7792
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7829
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/uninstall.ts)_
|
|
7793
7830
|
|
|
7794
7831
|
## `sf plugins update`
|
|
7795
7832
|
|
|
@@ -7807,7 +7844,7 @@ DESCRIPTION
|
|
|
7807
7844
|
Update installed plugins.
|
|
7808
7845
|
```
|
|
7809
7846
|
|
|
7810
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7847
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/update.ts)_
|
|
7811
7848
|
|
|
7812
7849
|
## `sf project convert mdapi`
|
|
7813
7850
|
|
|
@@ -9204,7 +9241,7 @@ FLAG DESCRIPTIONS
|
|
|
9204
9241
|
Override the api version used for api requests made by this command
|
|
9205
9242
|
```
|
|
9206
9243
|
|
|
9207
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
9244
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/project/generate.ts)_
|
|
9208
9245
|
|
|
9209
9246
|
## `sf project generate manifest`
|
|
9210
9247
|
|
|
@@ -9833,7 +9870,7 @@ DESCRIPTION
|
|
|
9833
9870
|
Once you select a command, hit enter and it will show the help for that command.
|
|
9834
9871
|
```
|
|
9835
9872
|
|
|
9836
|
-
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.
|
|
9873
|
+
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.37/src/commands/search.ts)_
|
|
9837
9874
|
|
|
9838
9875
|
## `sf sobject describe`
|
|
9839
9876
|
|
|
@@ -9981,7 +10018,7 @@ FLAG DESCRIPTIONS
|
|
|
9981
10018
|
etc.
|
|
9982
10019
|
```
|
|
9983
10020
|
|
|
9984
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
10021
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/static-resource/generate.ts)_
|
|
9985
10022
|
|
|
9986
10023
|
## `sf update [CHANNEL]`
|
|
9987
10024
|
|
|
@@ -10019,7 +10056,7 @@ EXAMPLES
|
|
|
10019
10056
|
$ sf update --available
|
|
10020
10057
|
```
|
|
10021
10058
|
|
|
10022
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
10059
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.17/src/commands/update.ts)_
|
|
10023
10060
|
|
|
10024
10061
|
## `sf version`
|
|
10025
10062
|
|
|
@@ -10095,7 +10132,7 @@ FLAG DESCRIPTIONS
|
|
|
10095
10132
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10096
10133
|
```
|
|
10097
10134
|
|
|
10098
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
10135
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/visualforce/generate/component.ts)_
|
|
10099
10136
|
|
|
10100
10137
|
## `sf visualforce generate page`
|
|
10101
10138
|
|
|
@@ -10145,7 +10182,7 @@ FLAG DESCRIPTIONS
|
|
|
10145
10182
|
The name can be up to 40 characters and must start with a letter.
|
|
10146
10183
|
```
|
|
10147
10184
|
|
|
10148
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
10185
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/visualforce/generate/page.ts)_
|
|
10149
10186
|
|
|
10150
10187
|
## `sf which`
|
|
10151
10188
|
|
|
@@ -10179,7 +10216,7 @@ EXAMPLES
|
|
|
10179
10216
|
$ sf which "foo bar baz"
|
|
10180
10217
|
```
|
|
10181
10218
|
|
|
10182
|
-
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.
|
|
10219
|
+
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.43/src/commands/which.ts)_
|
|
10183
10220
|
|
|
10184
10221
|
<!-- commandsstop -->
|
|
10185
10222
|
|