@salesforce/cli 2.126.2 → 2.127.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 +117 -110
- package/npm-shrinkwrap.json +955 -883
- package/oclif.lock +932 -945
- package/oclif.manifest.json +1 -1
- package/package.json +18 -19
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.127.0 linux-x64 node-v22.22.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -254,7 +254,7 @@ EXAMPLES
|
|
|
254
254
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
255
255
|
```
|
|
256
256
|
|
|
257
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
257
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/activate.ts)_
|
|
258
258
|
|
|
259
259
|
## `sf agent create`
|
|
260
260
|
|
|
@@ -321,7 +321,7 @@ EXAMPLES
|
|
|
321
321
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
322
322
|
```
|
|
323
323
|
|
|
324
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
324
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/create.ts)_
|
|
325
325
|
|
|
326
326
|
## `sf agent deactivate`
|
|
327
327
|
|
|
@@ -361,7 +361,7 @@ EXAMPLES
|
|
|
361
361
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
362
362
|
```
|
|
363
363
|
|
|
364
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
364
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/deactivate.ts)_
|
|
365
365
|
|
|
366
366
|
## `sf agent generate agent-spec`
|
|
367
367
|
|
|
@@ -468,7 +468,7 @@ EXAMPLES
|
|
|
468
468
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
469
469
|
```
|
|
470
470
|
|
|
471
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
471
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/generate/agent-spec.ts)_
|
|
472
472
|
|
|
473
473
|
## `sf agent generate authoring-bundle`
|
|
474
474
|
|
|
@@ -545,7 +545,7 @@ EXAMPLES
|
|
|
545
545
|
other-package-dir/main/default --target-org my-dev-org
|
|
546
546
|
```
|
|
547
547
|
|
|
548
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
548
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/generate/authoring-bundle.ts)_
|
|
549
549
|
|
|
550
550
|
## `sf agent generate template`
|
|
551
551
|
|
|
@@ -593,7 +593,7 @@ EXAMPLES
|
|
|
593
593
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
594
594
|
```
|
|
595
595
|
|
|
596
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
596
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/generate/template.ts)_
|
|
597
597
|
|
|
598
598
|
## `sf agent generate test-spec`
|
|
599
599
|
|
|
@@ -632,6 +632,10 @@ DESCRIPTION
|
|
|
632
632
|
- (Optional) Conversation history: Boilerplate for additional context you can add to the test in the form of a
|
|
633
633
|
conversation history.
|
|
634
634
|
|
|
635
|
+
You can manually add contextVariables to test cases in the generated YAML file to inject contextual data (such as
|
|
636
|
+
CaseId or RoutableId) into agent sessions. This is useful for testing agent behavior with different contextual
|
|
637
|
+
information.
|
|
638
|
+
|
|
635
639
|
When your test spec is ready, you then run the "agent test create" command to actually create the test in your org and
|
|
636
640
|
synchronize the metadata with your DX project. The metadata type for an agent test is AiEvaluationDefinition.
|
|
637
641
|
|
|
@@ -654,7 +658,7 @@ EXAMPLES
|
|
|
654
658
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
655
659
|
```
|
|
656
660
|
|
|
657
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
661
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/generate/test-spec.ts)_
|
|
658
662
|
|
|
659
663
|
## `sf agent preview`
|
|
660
664
|
|
|
@@ -727,7 +731,7 @@ EXAMPLES
|
|
|
727
731
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
728
732
|
```
|
|
729
733
|
|
|
730
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
734
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/preview.ts)_
|
|
731
735
|
|
|
732
736
|
## `sf agent preview end`
|
|
733
737
|
|
|
@@ -782,7 +786,7 @@ EXAMPLES
|
|
|
782
786
|
$ sf agent preview end --authoring-bundle My_Local_Agent
|
|
783
787
|
```
|
|
784
788
|
|
|
785
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
789
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/preview/end.ts)_
|
|
786
790
|
|
|
787
791
|
## `sf agent preview send`
|
|
788
792
|
|
|
@@ -840,7 +844,7 @@ EXAMPLES
|
|
|
840
844
|
$ sf agent preview send --utterance "what can you help me with?" --authoring-bundle My_Local_Agent
|
|
841
845
|
```
|
|
842
846
|
|
|
843
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
847
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/preview/send.ts)_
|
|
844
848
|
|
|
845
849
|
## `sf agent preview sessions`
|
|
846
850
|
|
|
@@ -873,7 +877,7 @@ EXAMPLES
|
|
|
873
877
|
$ sf agent preview sessions
|
|
874
878
|
```
|
|
875
879
|
|
|
876
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
880
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/preview/sessions.ts)_
|
|
877
881
|
|
|
878
882
|
## `sf agent preview start`
|
|
879
883
|
|
|
@@ -930,7 +934,7 @@ EXAMPLES
|
|
|
930
934
|
$ sf agent preview start --api-name My_Published_Agent
|
|
931
935
|
```
|
|
932
936
|
|
|
933
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
937
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/preview/start.ts)_
|
|
934
938
|
|
|
935
939
|
## `sf agent publish authoring-bundle`
|
|
936
940
|
|
|
@@ -979,7 +983,7 @@ EXAMPLES
|
|
|
979
983
|
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
|
|
980
984
|
```
|
|
981
985
|
|
|
982
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
986
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/publish/authoring-bundle.ts)_
|
|
983
987
|
|
|
984
988
|
## `sf agent test create`
|
|
985
989
|
|
|
@@ -1034,7 +1038,7 @@ EXAMPLES
|
|
|
1034
1038
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
1035
1039
|
```
|
|
1036
1040
|
|
|
1037
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1041
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/test/create.ts)_
|
|
1038
1042
|
|
|
1039
1043
|
## `sf agent test list`
|
|
1040
1044
|
|
|
@@ -1069,7 +1073,7 @@ EXAMPLES
|
|
|
1069
1073
|
$ sf agent test list --target-org my-org
|
|
1070
1074
|
```
|
|
1071
1075
|
|
|
1072
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1076
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/test/list.ts)_
|
|
1073
1077
|
|
|
1074
1078
|
## `sf agent test results`
|
|
1075
1079
|
|
|
@@ -1135,7 +1139,7 @@ FLAG DESCRIPTIONS
|
|
|
1135
1139
|
expression when using custom evaluations.
|
|
1136
1140
|
```
|
|
1137
1141
|
|
|
1138
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1142
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/test/results.ts)_
|
|
1139
1143
|
|
|
1140
1144
|
## `sf agent test resume`
|
|
1141
1145
|
|
|
@@ -1208,7 +1212,7 @@ FLAG DESCRIPTIONS
|
|
|
1208
1212
|
expression when using custom evaluations.
|
|
1209
1213
|
```
|
|
1210
1214
|
|
|
1211
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1215
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/test/resume.ts)_
|
|
1212
1216
|
|
|
1213
1217
|
## `sf agent test run`
|
|
1214
1218
|
|
|
@@ -1282,7 +1286,7 @@ FLAG DESCRIPTIONS
|
|
|
1282
1286
|
expression when using custom evaluations.
|
|
1283
1287
|
```
|
|
1284
1288
|
|
|
1285
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1289
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/test/run.ts)_
|
|
1286
1290
|
|
|
1287
1291
|
## `sf agent validate authoring-bundle`
|
|
1288
1292
|
|
|
@@ -1329,7 +1333,7 @@ EXAMPLES
|
|
|
1329
1333
|
$ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
|
|
1330
1334
|
```
|
|
1331
1335
|
|
|
1332
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1336
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.0/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1333
1337
|
|
|
1334
1338
|
## `sf alias list`
|
|
1335
1339
|
|
|
@@ -1502,7 +1506,7 @@ FLAG DESCRIPTIONS
|
|
|
1502
1506
|
directory.
|
|
1503
1507
|
```
|
|
1504
1508
|
|
|
1505
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1509
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.12/src/commands/apex/get/log.ts)_
|
|
1506
1510
|
|
|
1507
1511
|
## `sf apex get test`
|
|
1508
1512
|
|
|
@@ -1562,7 +1566,7 @@ EXAMPLES
|
|
|
1562
1566
|
me@myorg'
|
|
1563
1567
|
```
|
|
1564
1568
|
|
|
1565
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1569
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.12/src/commands/apex/get/test.ts)_
|
|
1566
1570
|
|
|
1567
1571
|
## `sf apex list log`
|
|
1568
1572
|
|
|
@@ -1602,7 +1606,7 @@ EXAMPLES
|
|
|
1602
1606
|
$ sf apex list log --target-org me@my.org
|
|
1603
1607
|
```
|
|
1604
1608
|
|
|
1605
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1609
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.12/src/commands/apex/list/log.ts)_
|
|
1606
1610
|
|
|
1607
1611
|
## `sf apex run`
|
|
1608
1612
|
|
|
@@ -1649,7 +1653,7 @@ EXAMPLES
|
|
|
1649
1653
|
$ sf apex run
|
|
1650
1654
|
```
|
|
1651
1655
|
|
|
1652
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1656
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.12/src/commands/apex/run.ts)_
|
|
1653
1657
|
|
|
1654
1658
|
## `sf apex run test`
|
|
1655
1659
|
|
|
@@ -1796,7 +1800,7 @@ FLAG DESCRIPTIONS
|
|
|
1796
1800
|
--tests Test1 --tests Test2
|
|
1797
1801
|
```
|
|
1798
1802
|
|
|
1799
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1803
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.12/src/commands/apex/run/test.ts)_
|
|
1800
1804
|
|
|
1801
1805
|
## `sf apex tail log`
|
|
1802
1806
|
|
|
@@ -1839,7 +1843,7 @@ EXAMPLES
|
|
|
1839
1843
|
$ sf apex tail log --color --skip-trace-flag
|
|
1840
1844
|
```
|
|
1841
1845
|
|
|
1842
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1846
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.12/src/commands/apex/tail/log.ts)_
|
|
1843
1847
|
|
|
1844
1848
|
## `sf api request graphql`
|
|
1845
1849
|
|
|
@@ -3399,7 +3403,7 @@ EXAMPLES
|
|
|
3399
3403
|
$ sf doctor --plugin @salesforce/plugin-source
|
|
3400
3404
|
```
|
|
3401
3405
|
|
|
3402
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3406
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.109/src/commands/doctor.ts)_
|
|
3403
3407
|
|
|
3404
3408
|
## `sf force data bulk delete`
|
|
3405
3409
|
|
|
@@ -3601,7 +3605,7 @@ EXAMPLES
|
|
|
3601
3605
|
$ sf info releasenotes display --version latest
|
|
3602
3606
|
```
|
|
3603
3607
|
|
|
3604
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3608
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.109/src/commands/info/releasenotes/display.ts)_
|
|
3605
3609
|
|
|
3606
3610
|
## `sf logic get test`
|
|
3607
3611
|
|
|
@@ -3649,7 +3653,7 @@ EXAMPLES
|
|
|
3649
3653
|
$ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
|
|
3650
3654
|
```
|
|
3651
3655
|
|
|
3652
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
3656
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.12/src/commands/logic/get/test.ts)_
|
|
3653
3657
|
|
|
3654
3658
|
## `sf logic run test`
|
|
3655
3659
|
|
|
@@ -3771,7 +3775,7 @@ FLAG DESCRIPTIONS
|
|
|
3771
3775
|
--tests Test1 --tests Test2
|
|
3772
3776
|
```
|
|
3773
3777
|
|
|
3774
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
3778
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.12/src/commands/logic/run/test.ts)_
|
|
3775
3779
|
|
|
3776
3780
|
## `sf org assign permset`
|
|
3777
3781
|
|
|
@@ -4681,7 +4685,7 @@ EXAMPLES
|
|
|
4681
4685
|
$ sf org list auth
|
|
4682
4686
|
```
|
|
4683
4687
|
|
|
4684
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.
|
|
4688
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.0/src/commands/org/list/auth.ts)_
|
|
4685
4689
|
|
|
4686
4690
|
## `sf org list limits`
|
|
4687
4691
|
|
|
@@ -4981,7 +4985,7 @@ FLAG DESCRIPTIONS
|
|
|
4981
4985
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
4982
4986
|
```
|
|
4983
4987
|
|
|
4984
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.
|
|
4988
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.0/src/commands/org/login/access-token.ts)_
|
|
4985
4989
|
|
|
4986
4990
|
## `sf org login jwt`
|
|
4987
4991
|
|
|
@@ -5072,7 +5076,7 @@ FLAG DESCRIPTIONS
|
|
|
5072
5076
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5073
5077
|
```
|
|
5074
5078
|
|
|
5075
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.
|
|
5079
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.0/src/commands/org/login/jwt.ts)_
|
|
5076
5080
|
|
|
5077
5081
|
## `sf org login sfdx-url`
|
|
5078
5082
|
|
|
@@ -5142,7 +5146,7 @@ EXAMPLES
|
|
|
5142
5146
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
5143
5147
|
```
|
|
5144
5148
|
|
|
5145
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.
|
|
5149
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.0/src/commands/org/login/sfdx-url.ts)_
|
|
5146
5150
|
|
|
5147
5151
|
## `sf org login web`
|
|
5148
5152
|
|
|
@@ -5247,7 +5251,7 @@ FLAG DESCRIPTIONS
|
|
|
5247
5251
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5248
5252
|
```
|
|
5249
5253
|
|
|
5250
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.
|
|
5254
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.0/src/commands/org/login/web.ts)_
|
|
5251
5255
|
|
|
5252
5256
|
## `sf org logout`
|
|
5253
5257
|
|
|
@@ -5313,7 +5317,7 @@ FLAG DESCRIPTIONS
|
|
|
5313
5317
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
5314
5318
|
```
|
|
5315
5319
|
|
|
5316
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.
|
|
5320
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.0/src/commands/org/logout.ts)_
|
|
5317
5321
|
|
|
5318
5322
|
## `sf org open`
|
|
5319
5323
|
|
|
@@ -5802,7 +5806,7 @@ FLAG DESCRIPTIONS
|
|
|
5802
5806
|
--installation-key-bypass flag is required.
|
|
5803
5807
|
```
|
|
5804
5808
|
|
|
5805
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
5809
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/convert.ts)_
|
|
5806
5810
|
|
|
5807
5811
|
## `sf package create`
|
|
5808
5812
|
|
|
@@ -5881,7 +5885,7 @@ FLAG DESCRIPTIONS
|
|
|
5881
5885
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5882
5886
|
```
|
|
5883
5887
|
|
|
5884
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
5888
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/create.ts)_
|
|
5885
5889
|
|
|
5886
5890
|
## `sf package delete`
|
|
5887
5891
|
|
|
@@ -5923,7 +5927,7 @@ EXAMPLES
|
|
|
5923
5927
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5924
5928
|
```
|
|
5925
5929
|
|
|
5926
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
5930
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/delete.ts)_
|
|
5927
5931
|
|
|
5928
5932
|
## `sf package install`
|
|
5929
5933
|
|
|
@@ -6022,7 +6026,7 @@ FLAG DESCRIPTIONS
|
|
|
6022
6026
|
- Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
|
|
6023
6027
|
```
|
|
6024
6028
|
|
|
6025
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6029
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/install.ts)_
|
|
6026
6030
|
|
|
6027
6031
|
## `sf package install report`
|
|
6028
6032
|
|
|
@@ -6055,7 +6059,7 @@ EXAMPLES
|
|
|
6055
6059
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
6056
6060
|
```
|
|
6057
6061
|
|
|
6058
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6062
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/install/report.ts)_
|
|
6059
6063
|
|
|
6060
6064
|
## `sf package installed list`
|
|
6061
6065
|
|
|
@@ -6087,7 +6091,7 @@ EXAMPLES
|
|
|
6087
6091
|
$ sf package installed list --target-org me@example.com
|
|
6088
6092
|
```
|
|
6089
6093
|
|
|
6090
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6094
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/installed/list.ts)_
|
|
6091
6095
|
|
|
6092
6096
|
## `sf package list`
|
|
6093
6097
|
|
|
@@ -6125,7 +6129,7 @@ EXAMPLES
|
|
|
6125
6129
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
6126
6130
|
```
|
|
6127
6131
|
|
|
6128
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6132
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/list.ts)_
|
|
6129
6133
|
|
|
6130
6134
|
## `sf package push-upgrade abort`
|
|
6131
6135
|
|
|
@@ -6164,7 +6168,7 @@ EXAMPLES
|
|
|
6164
6168
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6165
6169
|
```
|
|
6166
6170
|
|
|
6167
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6171
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/push-upgrade/abort.ts)_
|
|
6168
6172
|
|
|
6169
6173
|
## `sf package push-upgrade list`
|
|
6170
6174
|
|
|
@@ -6223,7 +6227,7 @@ EXAMPLES
|
|
|
6223
6227
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6224
6228
|
```
|
|
6225
6229
|
|
|
6226
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6230
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/push-upgrade/list.ts)_
|
|
6227
6231
|
|
|
6228
6232
|
## `sf package push-upgrade report`
|
|
6229
6233
|
|
|
@@ -6265,7 +6269,7 @@ EXAMPLES
|
|
|
6265
6269
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6266
6270
|
```
|
|
6267
6271
|
|
|
6268
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6272
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/push-upgrade/report.ts)_
|
|
6269
6273
|
|
|
6270
6274
|
## `sf package push-upgrade schedule`
|
|
6271
6275
|
|
|
@@ -6352,7 +6356,7 @@ FLAG DESCRIPTIONS
|
|
|
6352
6356
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6353
6357
|
```
|
|
6354
6358
|
|
|
6355
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6359
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/push-upgrade/schedule.ts)_
|
|
6356
6360
|
|
|
6357
6361
|
## `sf package uninstall`
|
|
6358
6362
|
|
|
@@ -6400,7 +6404,7 @@ EXAMPLES
|
|
|
6400
6404
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6401
6405
|
```
|
|
6402
6406
|
|
|
6403
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6407
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/uninstall.ts)_
|
|
6404
6408
|
|
|
6405
6409
|
## `sf package uninstall report`
|
|
6406
6410
|
|
|
@@ -6433,7 +6437,7 @@ EXAMPLES
|
|
|
6433
6437
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6434
6438
|
```
|
|
6435
6439
|
|
|
6436
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6440
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/uninstall/report.ts)_
|
|
6437
6441
|
|
|
6438
6442
|
## `sf package update`
|
|
6439
6443
|
|
|
@@ -6501,7 +6505,7 @@ FLAG DESCRIPTIONS
|
|
|
6501
6505
|
the Installed Packages page. Only released package versions can be set as the recommended version.
|
|
6502
6506
|
```
|
|
6503
6507
|
|
|
6504
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6508
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/update.ts)_
|
|
6505
6509
|
|
|
6506
6510
|
## `sf package version create`
|
|
6507
6511
|
|
|
@@ -6678,7 +6682,7 @@ FLAG DESCRIPTIONS
|
|
|
6678
6682
|
periods of no output from commands.
|
|
6679
6683
|
```
|
|
6680
6684
|
|
|
6681
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6685
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/create.ts)_
|
|
6682
6686
|
|
|
6683
6687
|
## `sf package version create list`
|
|
6684
6688
|
|
|
@@ -6739,7 +6743,7 @@ EXAMPLES
|
|
|
6739
6743
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6740
6744
|
```
|
|
6741
6745
|
|
|
6742
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6746
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/create/list.ts)_
|
|
6743
6747
|
|
|
6744
6748
|
## `sf package version create report`
|
|
6745
6749
|
|
|
@@ -6782,7 +6786,7 @@ EXAMPLES
|
|
|
6782
6786
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6783
6787
|
```
|
|
6784
6788
|
|
|
6785
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6789
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/create/report.ts)_
|
|
6786
6790
|
|
|
6787
6791
|
## `sf package version delete`
|
|
6788
6792
|
|
|
@@ -6823,7 +6827,7 @@ EXAMPLES
|
|
|
6823
6827
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6824
6828
|
```
|
|
6825
6829
|
|
|
6826
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6830
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/delete.ts)_
|
|
6827
6831
|
|
|
6828
6832
|
## `sf package version displayancestry`
|
|
6829
6833
|
|
|
@@ -6883,7 +6887,7 @@ FLAG DESCRIPTIONS
|
|
|
6883
6887
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6884
6888
|
```
|
|
6885
6889
|
|
|
6886
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6890
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/displayancestry.ts)_
|
|
6887
6891
|
|
|
6888
6892
|
## `sf package version displaydependencies`
|
|
6889
6893
|
|
|
@@ -6945,7 +6949,7 @@ FLAG DESCRIPTIONS
|
|
|
6945
6949
|
package, which must be installed last.
|
|
6946
6950
|
```
|
|
6947
6951
|
|
|
6948
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6952
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/displaydependencies.ts)_
|
|
6949
6953
|
|
|
6950
6954
|
## `sf package version list`
|
|
6951
6955
|
|
|
@@ -7021,7 +7025,7 @@ EXAMPLES
|
|
|
7021
7025
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
7022
7026
|
```
|
|
7023
7027
|
|
|
7024
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7028
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/list.ts)_
|
|
7025
7029
|
|
|
7026
7030
|
## `sf package version promote`
|
|
7027
7031
|
|
|
@@ -7065,7 +7069,7 @@ EXAMPLES
|
|
|
7065
7069
|
$ sf package version promote --package "Awesome Package Alias"
|
|
7066
7070
|
```
|
|
7067
7071
|
|
|
7068
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7072
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/promote.ts)_
|
|
7069
7073
|
|
|
7070
7074
|
## `sf package version report`
|
|
7071
7075
|
|
|
@@ -7105,7 +7109,7 @@ EXAMPLES
|
|
|
7105
7109
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
7106
7110
|
```
|
|
7107
7111
|
|
|
7108
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7112
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/report.ts)_
|
|
7109
7113
|
|
|
7110
7114
|
## `sf package version retrieve`
|
|
7111
7115
|
|
|
@@ -7150,7 +7154,7 @@ EXAMPLES
|
|
|
7150
7154
|
$ sf package version retrieve --package 04tXXX --output-dir my-directory/ --target-dev-hub devhub@example.com
|
|
7151
7155
|
```
|
|
7152
7156
|
|
|
7153
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7157
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/retrieve.ts)_
|
|
7154
7158
|
|
|
7155
7159
|
## `sf package version update`
|
|
7156
7160
|
|
|
@@ -7203,7 +7207,7 @@ EXAMPLES
|
|
|
7203
7207
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
7204
7208
|
```
|
|
7205
7209
|
|
|
7206
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7210
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package/version/update.ts)_
|
|
7207
7211
|
|
|
7208
7212
|
## `sf package1 version create`
|
|
7209
7213
|
|
|
@@ -7270,7 +7274,7 @@ FLAG DESCRIPTIONS
|
|
|
7270
7274
|
subscribers.
|
|
7271
7275
|
```
|
|
7272
7276
|
|
|
7273
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7277
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package1/version/create.ts)_
|
|
7274
7278
|
|
|
7275
7279
|
## `sf package1 version create get`
|
|
7276
7280
|
|
|
@@ -7303,7 +7307,7 @@ EXAMPLES
|
|
|
7303
7307
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
7304
7308
|
```
|
|
7305
7309
|
|
|
7306
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7310
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package1/version/create/get.ts)_
|
|
7307
7311
|
|
|
7308
7312
|
## `sf package1 version display`
|
|
7309
7313
|
|
|
@@ -7337,7 +7341,7 @@ EXAMPLES
|
|
|
7337
7341
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7338
7342
|
```
|
|
7339
7343
|
|
|
7340
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7344
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package1/version/display.ts)_
|
|
7341
7345
|
|
|
7342
7346
|
## `sf package1 version list`
|
|
7343
7347
|
|
|
@@ -7375,7 +7379,7 @@ FLAG DESCRIPTIONS
|
|
|
7375
7379
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7376
7380
|
```
|
|
7377
7381
|
|
|
7378
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7382
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.7/src/commands/package1/version/list.ts)_
|
|
7379
7383
|
|
|
7380
7384
|
## `sf plugins`
|
|
7381
7385
|
|
|
@@ -7398,7 +7402,7 @@ EXAMPLES
|
|
|
7398
7402
|
$ sf plugins
|
|
7399
7403
|
```
|
|
7400
7404
|
|
|
7401
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7405
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.58/src/commands/plugins/index.ts)_
|
|
7402
7406
|
|
|
7403
7407
|
## `sf plugins discover`
|
|
7404
7408
|
|
|
@@ -7443,7 +7447,7 @@ EXAMPLES
|
|
|
7443
7447
|
$ sf plugins inspect @salesforce/plugin-packaging
|
|
7444
7448
|
```
|
|
7445
7449
|
|
|
7446
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7450
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.58/src/commands/plugins/inspect.ts)_
|
|
7447
7451
|
|
|
7448
7452
|
## `sf plugins install PLUGIN`
|
|
7449
7453
|
|
|
@@ -7492,7 +7496,7 @@ EXAMPLES
|
|
|
7492
7496
|
$ sf plugins install someuser/someplugin
|
|
7493
7497
|
```
|
|
7494
7498
|
|
|
7495
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7499
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.58/src/commands/plugins/install.ts)_
|
|
7496
7500
|
|
|
7497
7501
|
## `sf plugins link PATH`
|
|
7498
7502
|
|
|
@@ -7523,7 +7527,7 @@ EXAMPLES
|
|
|
7523
7527
|
$ sf plugins link @salesforce/plugin-packaging
|
|
7524
7528
|
```
|
|
7525
7529
|
|
|
7526
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7530
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.58/src/commands/plugins/link.ts)_
|
|
7527
7531
|
|
|
7528
7532
|
## `sf plugins reset`
|
|
7529
7533
|
|
|
@@ -7538,7 +7542,7 @@ FLAGS
|
|
|
7538
7542
|
--reinstall Reinstall all plugins after uninstalling.
|
|
7539
7543
|
```
|
|
7540
7544
|
|
|
7541
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7545
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.58/src/commands/plugins/reset.ts)_
|
|
7542
7546
|
|
|
7543
7547
|
## `sf plugins trust verify`
|
|
7544
7548
|
|
|
@@ -7595,7 +7599,7 @@ EXAMPLES
|
|
|
7595
7599
|
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
7596
7600
|
```
|
|
7597
7601
|
|
|
7598
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7602
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.58/src/commands/plugins/uninstall.ts)_
|
|
7599
7603
|
|
|
7600
7604
|
## `sf plugins update`
|
|
7601
7605
|
|
|
@@ -7613,7 +7617,7 @@ DESCRIPTION
|
|
|
7613
7617
|
Update installed plugins.
|
|
7614
7618
|
```
|
|
7615
7619
|
|
|
7616
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7620
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.58/src/commands/plugins/update.ts)_
|
|
7617
7621
|
|
|
7618
7622
|
## `sf project convert mdapi`
|
|
7619
7623
|
|
|
@@ -7676,7 +7680,7 @@ FLAG DESCRIPTIONS
|
|
|
7676
7680
|
If you specify this flag, don’t specify --metadata or --source-dir.
|
|
7677
7681
|
```
|
|
7678
7682
|
|
|
7679
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7683
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/convert/mdapi.ts)_
|
|
7680
7684
|
|
|
7681
7685
|
## `sf project convert source`
|
|
7682
7686
|
|
|
@@ -7749,7 +7753,7 @@ FLAG DESCRIPTIONS
|
|
|
7749
7753
|
Override the api version used for api requests made by this command
|
|
7750
7754
|
```
|
|
7751
7755
|
|
|
7752
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7756
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/convert/source.ts)_
|
|
7753
7757
|
|
|
7754
7758
|
## `sf project convert source-behavior`
|
|
7755
7759
|
|
|
@@ -7808,7 +7812,7 @@ EXAMPLES
|
|
|
7808
7812
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
7809
7813
|
```
|
|
7810
7814
|
|
|
7811
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7815
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/convert/source-behavior.ts)_
|
|
7812
7816
|
|
|
7813
7817
|
## `sf project delete source`
|
|
7814
7818
|
|
|
@@ -7961,7 +7965,7 @@ FLAG DESCRIPTIONS
|
|
|
7961
7965
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
7962
7966
|
```
|
|
7963
7967
|
|
|
7964
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7968
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/delete/source.ts)_
|
|
7965
7969
|
|
|
7966
7970
|
## `sf project delete tracking`
|
|
7967
7971
|
|
|
@@ -7998,7 +8002,7 @@ EXAMPLES
|
|
|
7998
8002
|
$ sf project delete tracking --target-org my-scratch
|
|
7999
8003
|
```
|
|
8000
8004
|
|
|
8001
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8005
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/delete/tracking.ts)_
|
|
8002
8006
|
|
|
8003
8007
|
## `sf project deploy cancel`
|
|
8004
8008
|
|
|
@@ -8070,7 +8074,7 @@ FLAG DESCRIPTIONS
|
|
|
8070
8074
|
project deploy report".
|
|
8071
8075
|
```
|
|
8072
8076
|
|
|
8073
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8077
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/deploy/cancel.ts)_
|
|
8074
8078
|
|
|
8075
8079
|
## `sf project deploy preview`
|
|
8076
8080
|
|
|
@@ -8153,7 +8157,7 @@ FLAG DESCRIPTIONS
|
|
|
8153
8157
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8154
8158
|
```
|
|
8155
8159
|
|
|
8156
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8160
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/deploy/preview.ts)_
|
|
8157
8161
|
|
|
8158
8162
|
## `sf project deploy quick`
|
|
8159
8163
|
|
|
@@ -8246,7 +8250,7 @@ ERROR CODES
|
|
|
8246
8250
|
Canceling (69) The deploy is being canceled.
|
|
8247
8251
|
```
|
|
8248
8252
|
|
|
8249
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8253
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/deploy/quick.ts)_
|
|
8250
8254
|
|
|
8251
8255
|
## `sf project deploy report`
|
|
8252
8256
|
|
|
@@ -8338,7 +8342,7 @@ FLAG DESCRIPTIONS
|
|
|
8338
8342
|
--coverage-formatters lcov --coverage-formatters clover
|
|
8339
8343
|
```
|
|
8340
8344
|
|
|
8341
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8345
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/deploy/report.ts)_
|
|
8342
8346
|
|
|
8343
8347
|
## `sf project deploy resume`
|
|
8344
8348
|
|
|
@@ -8435,7 +8439,7 @@ ERROR CODES
|
|
|
8435
8439
|
Canceling (69) The deploy is being canceled.
|
|
8436
8440
|
```
|
|
8437
8441
|
|
|
8438
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8442
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/deploy/resume.ts)_
|
|
8439
8443
|
|
|
8440
8444
|
## `sf project deploy start`
|
|
8441
8445
|
|
|
@@ -8701,7 +8705,7 @@ ERROR CODES
|
|
|
8701
8705
|
Canceling (69) The deploy is being canceled.
|
|
8702
8706
|
```
|
|
8703
8707
|
|
|
8704
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8708
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/deploy/start.ts)_
|
|
8705
8709
|
|
|
8706
8710
|
## `sf project deploy validate`
|
|
8707
8711
|
|
|
@@ -8905,7 +8909,7 @@ ERROR CODES
|
|
|
8905
8909
|
Canceling (69) The deploy is being canceled.
|
|
8906
8910
|
```
|
|
8907
8911
|
|
|
8908
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8912
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/deploy/validate.ts)_
|
|
8909
8913
|
|
|
8910
8914
|
## `sf project generate manifest`
|
|
8911
8915
|
|
|
@@ -9001,7 +9005,7 @@ EXAMPLES
|
|
|
9001
9005
|
$ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
|
|
9002
9006
|
```
|
|
9003
9007
|
|
|
9004
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9008
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/generate/manifest.ts)_
|
|
9005
9009
|
|
|
9006
9010
|
## `sf project list ignored`
|
|
9007
9011
|
|
|
@@ -9043,7 +9047,7 @@ EXAMPLES
|
|
|
9043
9047
|
$ sf project list ignored --source-dir package.xml
|
|
9044
9048
|
```
|
|
9045
9049
|
|
|
9046
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9050
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/list/ignored.ts)_
|
|
9047
9051
|
|
|
9048
9052
|
## `sf project reset tracking`
|
|
9049
9053
|
|
|
@@ -9092,7 +9096,7 @@ EXAMPLES
|
|
|
9092
9096
|
$ sf project reset tracking --revision 30
|
|
9093
9097
|
```
|
|
9094
9098
|
|
|
9095
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9099
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/reset/tracking.ts)_
|
|
9096
9100
|
|
|
9097
9101
|
## `sf project retrieve preview`
|
|
9098
9102
|
|
|
@@ -9146,7 +9150,7 @@ FLAG DESCRIPTIONS
|
|
|
9146
9150
|
production orgs.
|
|
9147
9151
|
```
|
|
9148
9152
|
|
|
9149
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9153
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/retrieve/preview.ts)_
|
|
9150
9154
|
|
|
9151
9155
|
## `sf project retrieve start`
|
|
9152
9156
|
|
|
@@ -9327,7 +9331,7 @@ ENVIRONMENT VARIABLES
|
|
|
9327
9331
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
9328
9332
|
```
|
|
9329
9333
|
|
|
9330
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9334
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.14/src/commands/project/retrieve/start.ts)_
|
|
9331
9335
|
|
|
9332
9336
|
## `sf schema generate field`
|
|
9333
9337
|
|
|
@@ -9664,7 +9668,7 @@ FLAG DESCRIPTIONS
|
|
|
9664
9668
|
directory.
|
|
9665
9669
|
```
|
|
9666
9670
|
|
|
9667
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9671
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/analytics/template.ts)_
|
|
9668
9672
|
|
|
9669
9673
|
## `sf template generate apex class`
|
|
9670
9674
|
|
|
@@ -9724,7 +9728,7 @@ FLAG DESCRIPTIONS
|
|
|
9724
9728
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9725
9729
|
```
|
|
9726
9730
|
|
|
9727
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9731
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/apex/class.ts)_
|
|
9728
9732
|
|
|
9729
9733
|
## `sf template generate apex trigger`
|
|
9730
9734
|
|
|
@@ -9794,7 +9798,7 @@ FLAG DESCRIPTIONS
|
|
|
9794
9798
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9795
9799
|
```
|
|
9796
9800
|
|
|
9797
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9801
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/apex/trigger.ts)_
|
|
9798
9802
|
|
|
9799
9803
|
## `sf template generate digital-experience site`
|
|
9800
9804
|
|
|
@@ -9848,7 +9852,7 @@ FLAG DESCRIPTIONS
|
|
|
9848
9852
|
project, defaults to the current directory.
|
|
9849
9853
|
```
|
|
9850
9854
|
|
|
9851
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9855
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/digital-experience/site.ts)_
|
|
9852
9856
|
|
|
9853
9857
|
## `sf template generate flexipage`
|
|
9854
9858
|
|
|
@@ -9930,7 +9934,7 @@ FLAG DESCRIPTIONS
|
|
|
9930
9934
|
'Custom_Object__c'. This sets the `sobjectType` field in the FlexiPage metadata.
|
|
9931
9935
|
```
|
|
9932
9936
|
|
|
9933
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9937
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/flexipage/index.ts)_
|
|
9934
9938
|
|
|
9935
9939
|
## `sf template generate lightning app`
|
|
9936
9940
|
|
|
@@ -9986,7 +9990,7 @@ FLAG DESCRIPTIONS
|
|
|
9986
9990
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9987
9991
|
```
|
|
9988
9992
|
|
|
9989
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9993
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/lightning/app.ts)_
|
|
9990
9994
|
|
|
9991
9995
|
## `sf template generate lightning component`
|
|
9992
9996
|
|
|
@@ -10056,7 +10060,7 @@ FLAG DESCRIPTIONS
|
|
|
10056
10060
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10057
10061
|
```
|
|
10058
10062
|
|
|
10059
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10063
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/lightning/component.ts)_
|
|
10060
10064
|
|
|
10061
10065
|
## `sf template generate lightning event`
|
|
10062
10066
|
|
|
@@ -10112,7 +10116,7 @@ FLAG DESCRIPTIONS
|
|
|
10112
10116
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10113
10117
|
```
|
|
10114
10118
|
|
|
10115
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10119
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/lightning/event.ts)_
|
|
10116
10120
|
|
|
10117
10121
|
## `sf template generate lightning interface`
|
|
10118
10122
|
|
|
@@ -10168,7 +10172,7 @@ FLAG DESCRIPTIONS
|
|
|
10168
10172
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10169
10173
|
```
|
|
10170
10174
|
|
|
10171
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10175
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/lightning/interface.ts)_
|
|
10172
10176
|
|
|
10173
10177
|
## `sf template generate lightning test`
|
|
10174
10178
|
|
|
@@ -10224,7 +10228,7 @@ FLAG DESCRIPTIONS
|
|
|
10224
10228
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10225
10229
|
```
|
|
10226
10230
|
|
|
10227
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10231
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/lightning/test.ts)_
|
|
10228
10232
|
|
|
10229
10233
|
## `sf template generate project`
|
|
10230
10234
|
|
|
@@ -10232,8 +10236,8 @@ Generate a Salesforce DX project.
|
|
|
10232
10236
|
|
|
10233
10237
|
```
|
|
10234
10238
|
USAGE
|
|
10235
|
-
$ sf template generate project -n <value> [--json] [--flags-dir <value>] [-t standard|empty|analytics] [-d
|
|
10236
|
-
<value>] [-p <value>] [-x] [--api-version <value>]
|
|
10239
|
+
$ sf template generate project -n <value> [--json] [--flags-dir <value>] [-t standard|empty|analytics|reactb2e|reactb2x] [-d
|
|
10240
|
+
<value>] [-s <value>] [-p <value>] [-x] [--api-version <value>]
|
|
10237
10241
|
|
|
10238
10242
|
FLAGS
|
|
10239
10243
|
-d, --output-dir=<value> [default: .] Directory for saving the created files.
|
|
@@ -10241,7 +10245,7 @@ FLAGS
|
|
|
10241
10245
|
-p, --default-package-dir=<value> [default: force-app] Default package directory name.
|
|
10242
10246
|
-s, --namespace=<value> Namespace associated with this project and any connected scratch orgs.
|
|
10243
10247
|
-t, --template=<option> [default: standard] Template to use for project creation.
|
|
10244
|
-
<options: standard|empty|analytics>
|
|
10248
|
+
<options: standard|empty|analytics|reactb2e|reactb2x>
|
|
10245
10249
|
-x, --manifest Generate a manifest (package.xml) for change-set based development.
|
|
10246
10250
|
--api-version=<value> Will set this version as sourceApiVersion in the sfdx-project.json file
|
|
10247
10251
|
|
|
@@ -10296,7 +10300,7 @@ FLAG DESCRIPTIONS
|
|
|
10296
10300
|
|
|
10297
10301
|
Metadata items such as classes and Lightning bundles are placed inside this folder.
|
|
10298
10302
|
|
|
10299
|
-
-t, --template=standard|empty|analytics Template to use for project creation.
|
|
10303
|
+
-t, --template=standard|empty|analytics|reactb2e|reactb2x Template to use for project creation.
|
|
10300
10304
|
|
|
10301
10305
|
The template determines the sample configuration files and directories that this command generates. For example, the
|
|
10302
10306
|
empty template provides these files and directory to get you started.
|
|
@@ -10320,6 +10324,9 @@ FLAG DESCRIPTIONS
|
|
|
10320
10324
|
|
|
10321
10325
|
The analytics template provides similar files and the force-app/main/default/waveTemplates directory.
|
|
10322
10326
|
|
|
10327
|
+
The reactb2e and reactb2x templates provide React-based project scaffolding for B2E and B2X web application use
|
|
10328
|
+
cases.
|
|
10329
|
+
|
|
10323
10330
|
-x, --manifest Generate a manifest (package.xml) for change-set based development.
|
|
10324
10331
|
|
|
10325
10332
|
Generates a default manifest (package.xml) for fetching Apex, Visualforce, Lightning components, and static
|
|
@@ -10330,7 +10337,7 @@ FLAG DESCRIPTIONS
|
|
|
10330
10337
|
Override the api version used for api requests made by this command
|
|
10331
10338
|
```
|
|
10332
10339
|
|
|
10333
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10340
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/project/index.ts)_
|
|
10334
10341
|
|
|
10335
10342
|
## `sf template generate static-resource`
|
|
10336
10343
|
|
|
@@ -10393,7 +10400,7 @@ FLAG DESCRIPTIONS
|
|
|
10393
10400
|
etc.
|
|
10394
10401
|
```
|
|
10395
10402
|
|
|
10396
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10403
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/static-resource/index.ts)_
|
|
10397
10404
|
|
|
10398
10405
|
## `sf template generate visualforce component`
|
|
10399
10406
|
|
|
@@ -10450,7 +10457,7 @@ FLAG DESCRIPTIONS
|
|
|
10450
10457
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10451
10458
|
```
|
|
10452
10459
|
|
|
10453
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10460
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/visualforce/component.ts)_
|
|
10454
10461
|
|
|
10455
10462
|
## `sf template generate visualforce page`
|
|
10456
10463
|
|
|
@@ -10501,7 +10508,7 @@ FLAG DESCRIPTIONS
|
|
|
10501
10508
|
The name can be up to 40 characters and must start with a letter.
|
|
10502
10509
|
```
|
|
10503
10510
|
|
|
10504
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10511
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.10.4/src/commands/template/generate/visualforce/page.ts)_
|
|
10505
10512
|
|
|
10506
10513
|
## `sf update [CHANNEL]`
|
|
10507
10514
|
|
|
@@ -10539,7 +10546,7 @@ EXAMPLES
|
|
|
10539
10546
|
$ sf update --available
|
|
10540
10547
|
```
|
|
10541
10548
|
|
|
10542
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
10549
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.22/src/commands/update.ts)_
|
|
10543
10550
|
|
|
10544
10551
|
## `sf version`
|
|
10545
10552
|
|
|
@@ -10559,7 +10566,7 @@ FLAG DESCRIPTIONS
|
|
|
10559
10566
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
10560
10567
|
```
|
|
10561
10568
|
|
|
10562
|
-
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/2.2.
|
|
10569
|
+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/2.2.37/src/commands/version.ts)_
|
|
10563
10570
|
|
|
10564
10571
|
## `sf which`
|
|
10565
10572
|
|
|
@@ -10593,7 +10600,7 @@ EXAMPLES
|
|
|
10593
10600
|
$ sf which "foo bar baz"
|
|
10594
10601
|
```
|
|
10595
10602
|
|
|
10596
|
-
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.
|
|
10603
|
+
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.44/src/commands/which.ts)_
|
|
10597
10604
|
|
|
10598
10605
|
<!-- commandsstop -->
|
|
10599
10606
|
|