@salesforce/cli 2.120.3 → 2.121.1
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 +169 -128
- package/npm-shrinkwrap.json +80 -80
- package/oclif.lock +81 -81
- package/oclif.manifest.json +1 -1
- package/package.json +17 -17
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.1 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.7/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.7/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.7/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.7/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.7/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.7/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.7/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`
|
|
@@ -667,45 +666,41 @@ GLOBAL FLAGS
|
|
|
667
666
|
DESCRIPTION
|
|
668
667
|
Interact with an agent to preview how it responds to your statements, questions, and commands (utterances).
|
|
669
668
|
|
|
670
|
-
Use this command to have a natural language conversation with an agent while you code its Agent Script
|
|
671
|
-
Previewing an agent
|
|
672
|
-
you can test that the agent uses a particular topic when asked a question, and
|
|
673
|
-
action associated with that topic. This command is the CLI-equivalent of the
|
|
674
|
-
Builder UI.
|
|
669
|
+
Use this command to have a natural language conversation with an agent, either while you code its local Agent Script
|
|
670
|
+
file or when it's published to an org. Previewing an agent acts like an initial test to make sure it responds to your
|
|
671
|
+
utterances as you expect. For example, you can test that the agent uses a particular topic when asked a question, and
|
|
672
|
+
then whether it invokes the correct action associated with that topic. This command is the CLI-equivalent of the
|
|
673
|
+
Preview panel in your org's Agentforce Builder UI.
|
|
675
674
|
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
675
|
+
Run without flags, this command provides a list of agents to preview, divided into two categories: "Agent Script",
|
|
676
|
+
which are agents that have a local authoring bundle in your DX project, or "Published", which are agents that are
|
|
677
|
+
published and activated in your org. Authoring bundles contain an agent's Agent Script file. You then choose the agent
|
|
678
|
+
you want to preview from the list. Or you can use the --authoring-bundle flag to specify a local authoring bundle's
|
|
679
|
+
API name or --api-name to specify an activated published agent.
|
|
679
680
|
|
|
680
|
-
|
|
681
|
+
When previewing an agent from its Agent Script file, you can use these two modes:
|
|
681
682
|
|
|
682
683
|
- Simulated mode (Default): Uses only the Agent Script file to converse, and it simulates (mocks) all the actions. Use
|
|
683
|
-
this mode if none of the Apex classes, flows,
|
|
684
|
+
this mode if none of the Apex classes, flows, or prompt templates that implement your actions are available yet. The
|
|
684
685
|
LLM uses the information about topics in the Agent Script file to simulate what the action does or how it responds.
|
|
685
686
|
- Live mode: Uses the actual Apex classes, flows, and prompt templates in your development org in the agent preview.
|
|
686
687
|
If you've changed the Apex classe, flows, or prompt templates in your local DX project, then you must deploy them to
|
|
687
|
-
your development org if you want to use them in your live preview.
|
|
688
|
-
Apex classes when using live mode.
|
|
688
|
+
your development org if you want to use them in your live preview.
|
|
689
689
|
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
690
|
+
You can use the Apex Replay Debugger to debug your Apex classes when using live mode for Agent Script files and for
|
|
691
|
+
activated published agents; specify the --apex-debug flag.
|
|
692
|
+
|
|
693
|
+
Once connected to your agent, the preview interface is simple: in the "Start typing..." prompt, enter a statement,
|
|
694
|
+
question, or command; when you're done, enter Return. Your utterance is posted on the right along with a timestamp.
|
|
695
|
+
The agent then responds on the left. To exit the conversation, hit ESC or Control+C.
|
|
693
696
|
|
|
694
697
|
When the session concludes, the command asks if you want to save the API responses and chat transcripts. By default,
|
|
695
698
|
the files are saved to the "./temp/agent-preview" directory. Specify a new default directory with the --output-dir
|
|
696
699
|
flag.
|
|
697
700
|
|
|
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
701
|
EXAMPLES
|
|
707
|
-
Preview an agent
|
|
708
|
-
with alias "my-dev-org"
|
|
702
|
+
Preview an agent by choosing from the list of available local Agent Script or published agents. If previewing a
|
|
703
|
+
local Agent Script agent, use simulated mode. Use the org with alias "my-dev-org".
|
|
709
704
|
|
|
710
705
|
$ sf agent preview --target-org my-dev-org
|
|
711
706
|
|
|
@@ -715,7 +710,7 @@ EXAMPLES
|
|
|
715
710
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
716
711
|
```
|
|
717
712
|
|
|
718
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
713
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.7/src/commands/agent/preview.ts)_
|
|
719
714
|
|
|
720
715
|
## `sf agent publish authoring-bundle`
|
|
721
716
|
|
|
@@ -762,7 +757,7 @@ EXAMPLES
|
|
|
762
757
|
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
|
|
763
758
|
```
|
|
764
759
|
|
|
765
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
760
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.7/src/commands/agent/publish/authoring-bundle.ts)_
|
|
766
761
|
|
|
767
762
|
## `sf agent test create`
|
|
768
763
|
|
|
@@ -817,7 +812,7 @@ EXAMPLES
|
|
|
817
812
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
818
813
|
```
|
|
819
814
|
|
|
820
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
815
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.7/src/commands/agent/test/create.ts)_
|
|
821
816
|
|
|
822
817
|
## `sf agent test list`
|
|
823
818
|
|
|
@@ -852,7 +847,7 @@ EXAMPLES
|
|
|
852
847
|
$ sf agent test list --target-org my-org
|
|
853
848
|
```
|
|
854
849
|
|
|
855
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
850
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.7/src/commands/agent/test/list.ts)_
|
|
856
851
|
|
|
857
852
|
## `sf agent test results`
|
|
858
853
|
|
|
@@ -918,7 +913,7 @@ FLAG DESCRIPTIONS
|
|
|
918
913
|
expression when using custom evaluations.
|
|
919
914
|
```
|
|
920
915
|
|
|
921
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
916
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.7/src/commands/agent/test/results.ts)_
|
|
922
917
|
|
|
923
918
|
## `sf agent test resume`
|
|
924
919
|
|
|
@@ -991,7 +986,7 @@ FLAG DESCRIPTIONS
|
|
|
991
986
|
expression when using custom evaluations.
|
|
992
987
|
```
|
|
993
988
|
|
|
994
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
989
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.7/src/commands/agent/test/resume.ts)_
|
|
995
990
|
|
|
996
991
|
## `sf agent test run`
|
|
997
992
|
|
|
@@ -1065,7 +1060,7 @@ FLAG DESCRIPTIONS
|
|
|
1065
1060
|
expression when using custom evaluations.
|
|
1066
1061
|
```
|
|
1067
1062
|
|
|
1068
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
1063
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.7/src/commands/agent/test/run.ts)_
|
|
1069
1064
|
|
|
1070
1065
|
## `sf agent validate authoring-bundle`
|
|
1071
1066
|
|
|
@@ -1112,7 +1107,7 @@ EXAMPLES
|
|
|
1112
1107
|
$ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
|
|
1113
1108
|
```
|
|
1114
1109
|
|
|
1115
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.
|
|
1110
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.26.7/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1116
1111
|
|
|
1117
1112
|
## `sf alias list`
|
|
1118
1113
|
|
|
@@ -1271,7 +1266,7 @@ FLAG DESCRIPTIONS
|
|
|
1271
1266
|
directory.
|
|
1272
1267
|
```
|
|
1273
1268
|
|
|
1274
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
1269
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/analytics/generate/template.ts)_
|
|
1275
1270
|
|
|
1276
1271
|
## `sf apex generate class`
|
|
1277
1272
|
|
|
@@ -1330,7 +1325,7 @@ FLAG DESCRIPTIONS
|
|
|
1330
1325
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
1331
1326
|
```
|
|
1332
1327
|
|
|
1333
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
1328
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/apex/generate/class.ts)_
|
|
1334
1329
|
|
|
1335
1330
|
## `sf apex generate trigger`
|
|
1336
1331
|
|
|
@@ -1399,7 +1394,7 @@ FLAG DESCRIPTIONS
|
|
|
1399
1394
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
1400
1395
|
```
|
|
1401
1396
|
|
|
1402
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
1397
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/apex/generate/trigger.ts)_
|
|
1403
1398
|
|
|
1404
1399
|
## `sf apex get log`
|
|
1405
1400
|
|
|
@@ -1845,7 +1840,7 @@ EXAMPLES
|
|
|
1845
1840
|
$ sf api request graphql --body example.txt --stream-to-file output.txt --include
|
|
1846
1841
|
```
|
|
1847
1842
|
|
|
1848
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.
|
|
1843
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.8/src/commands/api/request/graphql.ts)_
|
|
1849
1844
|
|
|
1850
1845
|
## `sf api request rest [URL]`
|
|
1851
1846
|
|
|
@@ -1954,7 +1949,7 @@ FLAG DESCRIPTIONS
|
|
|
1954
1949
|
https://github.com/salesforcecli/plugin-api/tree/main/test/test-files/data-project.
|
|
1955
1950
|
```
|
|
1956
1951
|
|
|
1957
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.
|
|
1952
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.8/src/commands/api/request/rest.ts)_
|
|
1958
1953
|
|
|
1959
1954
|
## `sf autocomplete [SHELL]`
|
|
1960
1955
|
|
|
@@ -1985,7 +1980,7 @@ EXAMPLES
|
|
|
1985
1980
|
$ sf autocomplete --refresh-cache
|
|
1986
1981
|
```
|
|
1987
1982
|
|
|
1988
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.
|
|
1983
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.40/src/commands/autocomplete/index.ts)_
|
|
1989
1984
|
|
|
1990
1985
|
## `sf commands`
|
|
1991
1986
|
|
|
@@ -2014,7 +2009,7 @@ DESCRIPTION
|
|
|
2014
2009
|
List all sf commands.
|
|
2015
2010
|
```
|
|
2016
2011
|
|
|
2017
|
-
_See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/4.1.
|
|
2012
|
+
_See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/4.1.39/src/commands/commands.ts)_
|
|
2018
2013
|
|
|
2019
2014
|
## `sf config get`
|
|
2020
2015
|
|
|
@@ -3514,7 +3509,7 @@ DESCRIPTION
|
|
|
3514
3509
|
Display help for sf.
|
|
3515
3510
|
```
|
|
3516
3511
|
|
|
3517
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.
|
|
3512
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.37/src/commands/help.ts)_
|
|
3518
3513
|
|
|
3519
3514
|
## `sf info releasenotes display`
|
|
3520
3515
|
|
|
@@ -3609,7 +3604,7 @@ FLAG DESCRIPTIONS
|
|
|
3609
3604
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3610
3605
|
```
|
|
3611
3606
|
|
|
3612
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
3607
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/lightning/generate/app.ts)_
|
|
3613
3608
|
|
|
3614
3609
|
## `sf lightning generate component`
|
|
3615
3610
|
|
|
@@ -3678,7 +3673,7 @@ FLAG DESCRIPTIONS
|
|
|
3678
3673
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3679
3674
|
```
|
|
3680
3675
|
|
|
3681
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
3676
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/lightning/generate/component.ts)_
|
|
3682
3677
|
|
|
3683
3678
|
## `sf lightning generate event`
|
|
3684
3679
|
|
|
@@ -3733,7 +3728,7 @@ FLAG DESCRIPTIONS
|
|
|
3733
3728
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3734
3729
|
```
|
|
3735
3730
|
|
|
3736
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
3731
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/lightning/generate/event.ts)_
|
|
3737
3732
|
|
|
3738
3733
|
## `sf lightning generate interface`
|
|
3739
3734
|
|
|
@@ -3788,7 +3783,7 @@ FLAG DESCRIPTIONS
|
|
|
3788
3783
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3789
3784
|
```
|
|
3790
3785
|
|
|
3791
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
3786
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/lightning/generate/interface.ts)_
|
|
3792
3787
|
|
|
3793
3788
|
## `sf lightning generate test`
|
|
3794
3789
|
|
|
@@ -3843,7 +3838,7 @@ FLAG DESCRIPTIONS
|
|
|
3843
3838
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3844
3839
|
```
|
|
3845
3840
|
|
|
3846
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
3841
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/lightning/generate/test.ts)_
|
|
3847
3842
|
|
|
3848
3843
|
## `sf logic get test`
|
|
3849
3844
|
|
|
@@ -4059,7 +4054,7 @@ EXAMPLES
|
|
|
4059
4054
|
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
|
|
4060
4055
|
```
|
|
4061
4056
|
|
|
4062
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4057
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/assign/permset.ts)_
|
|
4063
4058
|
|
|
4064
4059
|
## `sf org assign permsetlicense`
|
|
4065
4060
|
|
|
@@ -4106,7 +4101,7 @@ EXAMPLES
|
|
|
4106
4101
|
user3
|
|
4107
4102
|
```
|
|
4108
4103
|
|
|
4109
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4104
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/assign/permsetlicense.ts)_
|
|
4110
4105
|
|
|
4111
4106
|
## `sf org create sandbox`
|
|
4112
4107
|
|
|
@@ -4240,7 +4235,7 @@ FLAG DESCRIPTIONS
|
|
|
4240
4235
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
4241
4236
|
```
|
|
4242
4237
|
|
|
4243
|
-
_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.60/src/commands/org/create/sandbox.ts)_
|
|
4244
4239
|
|
|
4245
4240
|
## `sf org create scratch`
|
|
4246
4241
|
|
|
@@ -4422,7 +4417,7 @@ FLAG DESCRIPTIONS
|
|
|
4422
4417
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4423
4418
|
```
|
|
4424
4419
|
|
|
4425
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4420
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/create/scratch.ts)_
|
|
4426
4421
|
|
|
4427
4422
|
## `sf org create user`
|
|
4428
4423
|
|
|
@@ -4530,7 +4525,7 @@ FLAG DESCRIPTIONS
|
|
|
4530
4525
|
might be different than what you specify in the definition file.
|
|
4531
4526
|
```
|
|
4532
4527
|
|
|
4533
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4528
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/create/user.ts)_
|
|
4534
4529
|
|
|
4535
4530
|
## `sf org delete sandbox`
|
|
4536
4531
|
|
|
@@ -4576,7 +4571,7 @@ EXAMPLES
|
|
|
4576
4571
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4577
4572
|
```
|
|
4578
4573
|
|
|
4579
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4574
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/delete/sandbox.ts)_
|
|
4580
4575
|
|
|
4581
4576
|
## `sf org delete scratch`
|
|
4582
4577
|
|
|
@@ -4620,7 +4615,7 @@ EXAMPLES
|
|
|
4620
4615
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4621
4616
|
```
|
|
4622
4617
|
|
|
4623
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4618
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/delete/scratch.ts)_
|
|
4624
4619
|
|
|
4625
4620
|
## `sf org disable tracking`
|
|
4626
4621
|
|
|
@@ -4659,7 +4654,7 @@ EXAMPLES
|
|
|
4659
4654
|
$ sf org disable tracking
|
|
4660
4655
|
```
|
|
4661
4656
|
|
|
4662
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4657
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/disable/tracking.ts)_
|
|
4663
4658
|
|
|
4664
4659
|
## `sf org display`
|
|
4665
4660
|
|
|
@@ -4704,7 +4699,7 @@ EXAMPLES
|
|
|
4704
4699
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4705
4700
|
```
|
|
4706
4701
|
|
|
4707
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4702
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/display.ts)_
|
|
4708
4703
|
|
|
4709
4704
|
## `sf org display user`
|
|
4710
4705
|
|
|
@@ -4743,7 +4738,7 @@ EXAMPLES
|
|
|
4743
4738
|
$ sf org display user --target-org me@my.org --json
|
|
4744
4739
|
```
|
|
4745
4740
|
|
|
4746
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4741
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/display/user.ts)_
|
|
4747
4742
|
|
|
4748
4743
|
## `sf org enable tracking`
|
|
4749
4744
|
|
|
@@ -4785,7 +4780,7 @@ EXAMPLES
|
|
|
4785
4780
|
$ sf org enable tracking
|
|
4786
4781
|
```
|
|
4787
4782
|
|
|
4788
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4783
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/enable/tracking.ts)_
|
|
4789
4784
|
|
|
4790
4785
|
## `sf org generate password`
|
|
4791
4786
|
|
|
@@ -4852,7 +4847,7 @@ EXAMPLES
|
|
|
4852
4847
|
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
|
|
4853
4848
|
```
|
|
4854
4849
|
|
|
4855
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4850
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/generate/password.ts)_
|
|
4856
4851
|
|
|
4857
4852
|
## `sf org list`
|
|
4858
4853
|
|
|
@@ -4891,7 +4886,7 @@ EXAMPLES
|
|
|
4891
4886
|
$ sf org list --clean
|
|
4892
4887
|
```
|
|
4893
4888
|
|
|
4894
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4889
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/list.ts)_
|
|
4895
4890
|
|
|
4896
4891
|
## `sf org list auth`
|
|
4897
4892
|
|
|
@@ -4923,7 +4918,7 @@ EXAMPLES
|
|
|
4923
4918
|
$ sf org list auth
|
|
4924
4919
|
```
|
|
4925
4920
|
|
|
4926
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
4921
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/list/auth.ts)_
|
|
4927
4922
|
|
|
4928
4923
|
## `sf org list limits`
|
|
4929
4924
|
|
|
@@ -5030,7 +5025,7 @@ FLAG DESCRIPTIONS
|
|
|
5030
5025
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
5031
5026
|
```
|
|
5032
5027
|
|
|
5033
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5028
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/list/metadata.ts)_
|
|
5034
5029
|
|
|
5035
5030
|
## `sf org list metadata-types`
|
|
5036
5031
|
|
|
@@ -5085,7 +5080,7 @@ FLAG DESCRIPTIONS
|
|
|
5085
5080
|
Override the api version used for api requests made by this command
|
|
5086
5081
|
```
|
|
5087
5082
|
|
|
5088
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5083
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/list/metadata-types.ts)_
|
|
5089
5084
|
|
|
5090
5085
|
## `sf org list sobject record-counts`
|
|
5091
5086
|
|
|
@@ -5169,7 +5164,7 @@ EXAMPLES
|
|
|
5169
5164
|
$ sf org list users --target-org me@my.org
|
|
5170
5165
|
```
|
|
5171
5166
|
|
|
5172
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
5167
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.47/src/commands/org/list/users.ts)_
|
|
5173
5168
|
|
|
5174
5169
|
## `sf org login access-token`
|
|
5175
5170
|
|
|
@@ -5223,7 +5218,7 @@ FLAG DESCRIPTIONS
|
|
|
5223
5218
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5224
5219
|
```
|
|
5225
5220
|
|
|
5226
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5221
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/login/access-token.ts)_
|
|
5227
5222
|
|
|
5228
5223
|
## `sf org login jwt`
|
|
5229
5224
|
|
|
@@ -5314,7 +5309,7 @@ FLAG DESCRIPTIONS
|
|
|
5314
5309
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5315
5310
|
```
|
|
5316
5311
|
|
|
5317
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5312
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/login/jwt.ts)_
|
|
5318
5313
|
|
|
5319
5314
|
## `sf org login sfdx-url`
|
|
5320
5315
|
|
|
@@ -5384,7 +5379,7 @@ EXAMPLES
|
|
|
5384
5379
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
5385
5380
|
```
|
|
5386
5381
|
|
|
5387
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5382
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/login/sfdx-url.ts)_
|
|
5388
5383
|
|
|
5389
5384
|
## `sf org login web`
|
|
5390
5385
|
|
|
@@ -5489,7 +5484,7 @@ FLAG DESCRIPTIONS
|
|
|
5489
5484
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5490
5485
|
```
|
|
5491
5486
|
|
|
5492
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5487
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/login/web.ts)_
|
|
5493
5488
|
|
|
5494
5489
|
## `sf org logout`
|
|
5495
5490
|
|
|
@@ -5555,7 +5550,7 @@ FLAG DESCRIPTIONS
|
|
|
5555
5550
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
5556
5551
|
```
|
|
5557
5552
|
|
|
5558
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5553
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.3/src/commands/org/logout.ts)_
|
|
5559
5554
|
|
|
5560
5555
|
## `sf org open`
|
|
5561
5556
|
|
|
@@ -5631,7 +5626,7 @@ EXAMPLES
|
|
|
5631
5626
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5632
5627
|
```
|
|
5633
5628
|
|
|
5634
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5629
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/open.ts)_
|
|
5635
5630
|
|
|
5636
5631
|
## `sf org open agent`
|
|
5637
5632
|
|
|
@@ -5682,7 +5677,53 @@ EXAMPLES
|
|
|
5682
5677
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5683
5678
|
```
|
|
5684
5679
|
|
|
5685
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5680
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/open/agent.ts)_
|
|
5681
|
+
|
|
5682
|
+
## `sf org open authoring-bundle`
|
|
5683
|
+
|
|
5684
|
+
Open your org in Agentforce Studio, specically in the list view showing the list of agents.
|
|
5685
|
+
|
|
5686
|
+
```
|
|
5687
|
+
USAGE
|
|
5688
|
+
$ sf org open authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [--private | -r | -b
|
|
5689
|
+
chrome|edge|firefox]
|
|
5690
|
+
|
|
5691
|
+
FLAGS
|
|
5692
|
+
-b, --browser=<option> Browser where the org opens.
|
|
5693
|
+
<options: chrome|edge|firefox>
|
|
5694
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
5695
|
+
configuration variable is already set.
|
|
5696
|
+
-r, --url-only Display navigation URL, but don't launch browser.
|
|
5697
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
5698
|
+
--private Open the org in the default browser using private (incognito) mode.
|
|
5699
|
+
|
|
5700
|
+
GLOBAL FLAGS
|
|
5701
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
5702
|
+
--json Format output as json.
|
|
5703
|
+
|
|
5704
|
+
DESCRIPTION
|
|
5705
|
+
Open your org in Agentforce Studio, specically in the list view showing the list of agents.
|
|
5706
|
+
|
|
5707
|
+
The list view shows the agents in your org that are implemented with Agent Script and an authoring bundle. Click on an
|
|
5708
|
+
agent name to open it in Agentforce Builder in a new browser window.
|
|
5709
|
+
|
|
5710
|
+
To generate the URL but not launch it in your browser, specify --url-only.
|
|
5711
|
+
|
|
5712
|
+
EXAMPLES
|
|
5713
|
+
Open the agents list view in your default org using your default browser:
|
|
5714
|
+
|
|
5715
|
+
$ sf org open authoring-bundle
|
|
5716
|
+
|
|
5717
|
+
Open the agents list view in an incognito window of your default browser:
|
|
5718
|
+
|
|
5719
|
+
$ sf org open authoring-bundle --private
|
|
5720
|
+
|
|
5721
|
+
Open the agents list view in an org with alias MyTestOrg1 using the Firefox browser:
|
|
5722
|
+
|
|
5723
|
+
$ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
|
|
5724
|
+
```
|
|
5725
|
+
|
|
5726
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/open/authoring-bundle.ts)_
|
|
5686
5727
|
|
|
5687
5728
|
## `sf org refresh sandbox`
|
|
5688
5729
|
|
|
@@ -5785,7 +5826,7 @@ FLAG DESCRIPTIONS
|
|
|
5785
5826
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5786
5827
|
```
|
|
5787
5828
|
|
|
5788
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5829
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/refresh/sandbox.ts)_
|
|
5789
5830
|
|
|
5790
5831
|
## `sf org resume sandbox`
|
|
5791
5832
|
|
|
@@ -5848,7 +5889,7 @@ FLAG DESCRIPTIONS
|
|
|
5848
5889
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5849
5890
|
```
|
|
5850
5891
|
|
|
5851
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5892
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/resume/sandbox.ts)_
|
|
5852
5893
|
|
|
5853
5894
|
## `sf org resume scratch`
|
|
5854
5895
|
|
|
@@ -5901,7 +5942,7 @@ FLAG DESCRIPTIONS
|
|
|
5901
5942
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5902
5943
|
```
|
|
5903
5944
|
|
|
5904
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5945
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.60/src/commands/org/resume/scratch.ts)_
|
|
5905
5946
|
|
|
5906
5947
|
## `sf package convert`
|
|
5907
5948
|
|
|
@@ -5998,7 +6039,7 @@ FLAG DESCRIPTIONS
|
|
|
5998
6039
|
--installation-key-bypass flag is required.
|
|
5999
6040
|
```
|
|
6000
6041
|
|
|
6001
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6042
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/convert.ts)_
|
|
6002
6043
|
|
|
6003
6044
|
## `sf package create`
|
|
6004
6045
|
|
|
@@ -6077,7 +6118,7 @@ FLAG DESCRIPTIONS
|
|
|
6077
6118
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
6078
6119
|
```
|
|
6079
6120
|
|
|
6080
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6121
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/create.ts)_
|
|
6081
6122
|
|
|
6082
6123
|
## `sf package delete`
|
|
6083
6124
|
|
|
@@ -6119,7 +6160,7 @@ EXAMPLES
|
|
|
6119
6160
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
6120
6161
|
```
|
|
6121
6162
|
|
|
6122
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6163
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/delete.ts)_
|
|
6123
6164
|
|
|
6124
6165
|
## `sf package install`
|
|
6125
6166
|
|
|
@@ -6218,7 +6259,7 @@ FLAG DESCRIPTIONS
|
|
|
6218
6259
|
- Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
|
|
6219
6260
|
```
|
|
6220
6261
|
|
|
6221
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6262
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/install.ts)_
|
|
6222
6263
|
|
|
6223
6264
|
## `sf package install report`
|
|
6224
6265
|
|
|
@@ -6251,7 +6292,7 @@ EXAMPLES
|
|
|
6251
6292
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
6252
6293
|
```
|
|
6253
6294
|
|
|
6254
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6295
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/install/report.ts)_
|
|
6255
6296
|
|
|
6256
6297
|
## `sf package installed list`
|
|
6257
6298
|
|
|
@@ -6283,7 +6324,7 @@ EXAMPLES
|
|
|
6283
6324
|
$ sf package installed list --target-org me@example.com
|
|
6284
6325
|
```
|
|
6285
6326
|
|
|
6286
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6327
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/installed/list.ts)_
|
|
6287
6328
|
|
|
6288
6329
|
## `sf package list`
|
|
6289
6330
|
|
|
@@ -6321,7 +6362,7 @@ EXAMPLES
|
|
|
6321
6362
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
6322
6363
|
```
|
|
6323
6364
|
|
|
6324
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6365
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/list.ts)_
|
|
6325
6366
|
|
|
6326
6367
|
## `sf package push-upgrade abort`
|
|
6327
6368
|
|
|
@@ -6360,7 +6401,7 @@ EXAMPLES
|
|
|
6360
6401
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6361
6402
|
```
|
|
6362
6403
|
|
|
6363
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6404
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/push-upgrade/abort.ts)_
|
|
6364
6405
|
|
|
6365
6406
|
## `sf package push-upgrade list`
|
|
6366
6407
|
|
|
@@ -6419,7 +6460,7 @@ EXAMPLES
|
|
|
6419
6460
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6420
6461
|
```
|
|
6421
6462
|
|
|
6422
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6463
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/push-upgrade/list.ts)_
|
|
6423
6464
|
|
|
6424
6465
|
## `sf package push-upgrade report`
|
|
6425
6466
|
|
|
@@ -6461,7 +6502,7 @@ EXAMPLES
|
|
|
6461
6502
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6462
6503
|
```
|
|
6463
6504
|
|
|
6464
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6505
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/push-upgrade/report.ts)_
|
|
6465
6506
|
|
|
6466
6507
|
## `sf package push-upgrade schedule`
|
|
6467
6508
|
|
|
@@ -6548,7 +6589,7 @@ FLAG DESCRIPTIONS
|
|
|
6548
6589
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6549
6590
|
```
|
|
6550
6591
|
|
|
6551
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6592
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/push-upgrade/schedule.ts)_
|
|
6552
6593
|
|
|
6553
6594
|
## `sf package uninstall`
|
|
6554
6595
|
|
|
@@ -6596,7 +6637,7 @@ EXAMPLES
|
|
|
6596
6637
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6597
6638
|
```
|
|
6598
6639
|
|
|
6599
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6640
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/uninstall.ts)_
|
|
6600
6641
|
|
|
6601
6642
|
## `sf package uninstall report`
|
|
6602
6643
|
|
|
@@ -6629,7 +6670,7 @@ EXAMPLES
|
|
|
6629
6670
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6630
6671
|
```
|
|
6631
6672
|
|
|
6632
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6673
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/uninstall/report.ts)_
|
|
6633
6674
|
|
|
6634
6675
|
## `sf package update`
|
|
6635
6676
|
|
|
@@ -6697,7 +6738,7 @@ FLAG DESCRIPTIONS
|
|
|
6697
6738
|
the Installed Packages page. Only released package versions can be set as the recommended version.
|
|
6698
6739
|
```
|
|
6699
6740
|
|
|
6700
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6741
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/update.ts)_
|
|
6701
6742
|
|
|
6702
6743
|
## `sf package version create`
|
|
6703
6744
|
|
|
@@ -6872,7 +6913,7 @@ FLAG DESCRIPTIONS
|
|
|
6872
6913
|
periods of no output from commands.
|
|
6873
6914
|
```
|
|
6874
6915
|
|
|
6875
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6916
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/create.ts)_
|
|
6876
6917
|
|
|
6877
6918
|
## `sf package version create list`
|
|
6878
6919
|
|
|
@@ -6933,7 +6974,7 @@ EXAMPLES
|
|
|
6933
6974
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6934
6975
|
```
|
|
6935
6976
|
|
|
6936
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
6977
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/create/list.ts)_
|
|
6937
6978
|
|
|
6938
6979
|
## `sf package version create report`
|
|
6939
6980
|
|
|
@@ -6976,7 +7017,7 @@ EXAMPLES
|
|
|
6976
7017
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6977
7018
|
```
|
|
6978
7019
|
|
|
6979
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7020
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/create/report.ts)_
|
|
6980
7021
|
|
|
6981
7022
|
## `sf package version delete`
|
|
6982
7023
|
|
|
@@ -7017,7 +7058,7 @@ EXAMPLES
|
|
|
7017
7058
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
7018
7059
|
```
|
|
7019
7060
|
|
|
7020
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7061
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/delete.ts)_
|
|
7021
7062
|
|
|
7022
7063
|
## `sf package version displayancestry`
|
|
7023
7064
|
|
|
@@ -7077,7 +7118,7 @@ FLAG DESCRIPTIONS
|
|
|
7077
7118
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
7078
7119
|
```
|
|
7079
7120
|
|
|
7080
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7121
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/displayancestry.ts)_
|
|
7081
7122
|
|
|
7082
7123
|
## `sf package version displaydependencies`
|
|
7083
7124
|
|
|
@@ -7139,7 +7180,7 @@ FLAG DESCRIPTIONS
|
|
|
7139
7180
|
package, which must be installed last.
|
|
7140
7181
|
```
|
|
7141
7182
|
|
|
7142
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7183
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/displaydependencies.ts)_
|
|
7143
7184
|
|
|
7144
7185
|
## `sf package version list`
|
|
7145
7186
|
|
|
@@ -7215,7 +7256,7 @@ EXAMPLES
|
|
|
7215
7256
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
7216
7257
|
```
|
|
7217
7258
|
|
|
7218
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7259
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/list.ts)_
|
|
7219
7260
|
|
|
7220
7261
|
## `sf package version promote`
|
|
7221
7262
|
|
|
@@ -7259,7 +7300,7 @@ EXAMPLES
|
|
|
7259
7300
|
$ sf package version promote --package "Awesome Package Alias"
|
|
7260
7301
|
```
|
|
7261
7302
|
|
|
7262
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7303
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/promote.ts)_
|
|
7263
7304
|
|
|
7264
7305
|
## `sf package version report`
|
|
7265
7306
|
|
|
@@ -7299,7 +7340,7 @@ EXAMPLES
|
|
|
7299
7340
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
7300
7341
|
```
|
|
7301
7342
|
|
|
7302
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7343
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/report.ts)_
|
|
7303
7344
|
|
|
7304
7345
|
## `sf package version retrieve`
|
|
7305
7346
|
|
|
@@ -7344,7 +7385,7 @@ EXAMPLES
|
|
|
7344
7385
|
$ sf package version retrieve --package 04tXXX --output-dir my-directory/ --target-dev-hub devhub@example.com
|
|
7345
7386
|
```
|
|
7346
7387
|
|
|
7347
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7388
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/retrieve.ts)_
|
|
7348
7389
|
|
|
7349
7390
|
## `sf package version update`
|
|
7350
7391
|
|
|
@@ -7397,7 +7438,7 @@ EXAMPLES
|
|
|
7397
7438
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
7398
7439
|
```
|
|
7399
7440
|
|
|
7400
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7441
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package/version/update.ts)_
|
|
7401
7442
|
|
|
7402
7443
|
## `sf package1 version create`
|
|
7403
7444
|
|
|
@@ -7464,7 +7505,7 @@ FLAG DESCRIPTIONS
|
|
|
7464
7505
|
subscribers.
|
|
7465
7506
|
```
|
|
7466
7507
|
|
|
7467
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7508
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package1/version/create.ts)_
|
|
7468
7509
|
|
|
7469
7510
|
## `sf package1 version create get`
|
|
7470
7511
|
|
|
@@ -7497,7 +7538,7 @@ EXAMPLES
|
|
|
7497
7538
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
7498
7539
|
```
|
|
7499
7540
|
|
|
7500
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7541
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package1/version/create/get.ts)_
|
|
7501
7542
|
|
|
7502
7543
|
## `sf package1 version display`
|
|
7503
7544
|
|
|
@@ -7531,7 +7572,7 @@ EXAMPLES
|
|
|
7531
7572
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7532
7573
|
```
|
|
7533
7574
|
|
|
7534
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7575
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package1/version/display.ts)_
|
|
7535
7576
|
|
|
7536
7577
|
## `sf package1 version list`
|
|
7537
7578
|
|
|
@@ -7569,7 +7610,7 @@ FLAG DESCRIPTIONS
|
|
|
7569
7610
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7570
7611
|
```
|
|
7571
7612
|
|
|
7572
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.
|
|
7613
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.24.8/src/commands/package1/version/list.ts)_
|
|
7573
7614
|
|
|
7574
7615
|
## `sf plugins`
|
|
7575
7616
|
|
|
@@ -7592,7 +7633,7 @@ EXAMPLES
|
|
|
7592
7633
|
$ sf plugins
|
|
7593
7634
|
```
|
|
7594
7635
|
|
|
7595
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7636
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/index.ts)_
|
|
7596
7637
|
|
|
7597
7638
|
## `sf plugins discover`
|
|
7598
7639
|
|
|
@@ -7637,7 +7678,7 @@ EXAMPLES
|
|
|
7637
7678
|
$ sf plugins inspect @salesforce/plugin-packaging
|
|
7638
7679
|
```
|
|
7639
7680
|
|
|
7640
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7681
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/inspect.ts)_
|
|
7641
7682
|
|
|
7642
7683
|
## `sf plugins install PLUGIN`
|
|
7643
7684
|
|
|
@@ -7686,7 +7727,7 @@ EXAMPLES
|
|
|
7686
7727
|
$ sf plugins install someuser/someplugin
|
|
7687
7728
|
```
|
|
7688
7729
|
|
|
7689
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7730
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/install.ts)_
|
|
7690
7731
|
|
|
7691
7732
|
## `sf plugins link PATH`
|
|
7692
7733
|
|
|
@@ -7717,7 +7758,7 @@ EXAMPLES
|
|
|
7717
7758
|
$ sf plugins link @salesforce/plugin-packaging
|
|
7718
7759
|
```
|
|
7719
7760
|
|
|
7720
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7761
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/link.ts)_
|
|
7721
7762
|
|
|
7722
7763
|
## `sf plugins reset`
|
|
7723
7764
|
|
|
@@ -7732,7 +7773,7 @@ FLAGS
|
|
|
7732
7773
|
--reinstall Reinstall all plugins after uninstalling.
|
|
7733
7774
|
```
|
|
7734
7775
|
|
|
7735
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7776
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/reset.ts)_
|
|
7736
7777
|
|
|
7737
7778
|
## `sf plugins trust verify`
|
|
7738
7779
|
|
|
@@ -7789,7 +7830,7 @@ EXAMPLES
|
|
|
7789
7830
|
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
7790
7831
|
```
|
|
7791
7832
|
|
|
7792
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7833
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/uninstall.ts)_
|
|
7793
7834
|
|
|
7794
7835
|
## `sf plugins update`
|
|
7795
7836
|
|
|
@@ -7807,7 +7848,7 @@ DESCRIPTION
|
|
|
7807
7848
|
Update installed plugins.
|
|
7808
7849
|
```
|
|
7809
7850
|
|
|
7810
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7851
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.55/src/commands/plugins/update.ts)_
|
|
7811
7852
|
|
|
7812
7853
|
## `sf project convert mdapi`
|
|
7813
7854
|
|
|
@@ -9204,7 +9245,7 @@ FLAG DESCRIPTIONS
|
|
|
9204
9245
|
Override the api version used for api requests made by this command
|
|
9205
9246
|
```
|
|
9206
9247
|
|
|
9207
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
9248
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/project/generate.ts)_
|
|
9208
9249
|
|
|
9209
9250
|
## `sf project generate manifest`
|
|
9210
9251
|
|
|
@@ -9833,7 +9874,7 @@ DESCRIPTION
|
|
|
9833
9874
|
Once you select a command, hit enter and it will show the help for that command.
|
|
9834
9875
|
```
|
|
9835
9876
|
|
|
9836
|
-
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.
|
|
9877
|
+
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.37/src/commands/search.ts)_
|
|
9837
9878
|
|
|
9838
9879
|
## `sf sobject describe`
|
|
9839
9880
|
|
|
@@ -9981,7 +10022,7 @@ FLAG DESCRIPTIONS
|
|
|
9981
10022
|
etc.
|
|
9982
10023
|
```
|
|
9983
10024
|
|
|
9984
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
10025
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/static-resource/generate.ts)_
|
|
9985
10026
|
|
|
9986
10027
|
## `sf update [CHANNEL]`
|
|
9987
10028
|
|
|
@@ -10019,7 +10060,7 @@ EXAMPLES
|
|
|
10019
10060
|
$ sf update --available
|
|
10020
10061
|
```
|
|
10021
10062
|
|
|
10022
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
10063
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.17/src/commands/update.ts)_
|
|
10023
10064
|
|
|
10024
10065
|
## `sf version`
|
|
10025
10066
|
|
|
@@ -10095,7 +10136,7 @@ FLAG DESCRIPTIONS
|
|
|
10095
10136
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10096
10137
|
```
|
|
10097
10138
|
|
|
10098
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
10139
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/visualforce/generate/component.ts)_
|
|
10099
10140
|
|
|
10100
10141
|
## `sf visualforce generate page`
|
|
10101
10142
|
|
|
@@ -10145,7 +10186,7 @@ FLAG DESCRIPTIONS
|
|
|
10145
10186
|
The name can be up to 40 characters and must start with a letter.
|
|
10146
10187
|
```
|
|
10147
10188
|
|
|
10148
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.
|
|
10189
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.4.4/src/commands/visualforce/generate/page.ts)_
|
|
10149
10190
|
|
|
10150
10191
|
## `sf which`
|
|
10151
10192
|
|
|
@@ -10179,7 +10220,7 @@ EXAMPLES
|
|
|
10179
10220
|
$ sf which "foo bar baz"
|
|
10180
10221
|
```
|
|
10181
10222
|
|
|
10182
|
-
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.
|
|
10223
|
+
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.43/src/commands/which.ts)_
|
|
10183
10224
|
|
|
10184
10225
|
<!-- commandsstop -->
|
|
10185
10226
|
|