@salesforce/cli 2.125.0 → 2.125.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 +121 -117
- package/npm-shrinkwrap.json +395 -325
- package/oclif.lock +369 -351
- package/oclif.manifest.json +1 -1
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
|
|
|
25
25
|
$ sf COMMAND
|
|
26
26
|
running command...
|
|
27
27
|
$ sf (--version|-v)
|
|
28
|
-
@salesforce/cli/2.125.
|
|
28
|
+
@salesforce/cli/2.125.1 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.30.
|
|
257
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/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.30.
|
|
324
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/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.30.
|
|
364
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/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.30.
|
|
471
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/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.30.
|
|
548
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/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.30.
|
|
596
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/generate/template.ts)_
|
|
597
597
|
|
|
598
598
|
## `sf agent generate test-spec`
|
|
599
599
|
|
|
@@ -654,7 +654,7 @@ EXAMPLES
|
|
|
654
654
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
655
655
|
```
|
|
656
656
|
|
|
657
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
657
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/generate/test-spec.ts)_
|
|
658
658
|
|
|
659
659
|
## `sf agent preview`
|
|
660
660
|
|
|
@@ -727,7 +727,7 @@ EXAMPLES
|
|
|
727
727
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
728
728
|
```
|
|
729
729
|
|
|
730
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
730
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/preview.ts)_
|
|
731
731
|
|
|
732
732
|
## `sf agent preview end`
|
|
733
733
|
|
|
@@ -782,7 +782,7 @@ EXAMPLES
|
|
|
782
782
|
$ sf agent preview end --authoring-bundle My_Local_Agent
|
|
783
783
|
```
|
|
784
784
|
|
|
785
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
785
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/preview/end.ts)_
|
|
786
786
|
|
|
787
787
|
## `sf agent preview send`
|
|
788
788
|
|
|
@@ -840,7 +840,7 @@ EXAMPLES
|
|
|
840
840
|
$ sf agent preview send --utterance "what can you help me with?" --authoring-bundle My_Local_Agent
|
|
841
841
|
```
|
|
842
842
|
|
|
843
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
843
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/preview/send.ts)_
|
|
844
844
|
|
|
845
845
|
## `sf agent preview sessions`
|
|
846
846
|
|
|
@@ -873,7 +873,7 @@ EXAMPLES
|
|
|
873
873
|
$ sf agent preview sessions
|
|
874
874
|
```
|
|
875
875
|
|
|
876
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
876
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/preview/sessions.ts)_
|
|
877
877
|
|
|
878
878
|
## `sf agent preview start`
|
|
879
879
|
|
|
@@ -930,7 +930,7 @@ EXAMPLES
|
|
|
930
930
|
$ sf agent preview start --api-name My_Published_Agent
|
|
931
931
|
```
|
|
932
932
|
|
|
933
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
933
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/preview/start.ts)_
|
|
934
934
|
|
|
935
935
|
## `sf agent publish authoring-bundle`
|
|
936
936
|
|
|
@@ -979,7 +979,7 @@ EXAMPLES
|
|
|
979
979
|
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
|
|
980
980
|
```
|
|
981
981
|
|
|
982
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
982
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/publish/authoring-bundle.ts)_
|
|
983
983
|
|
|
984
984
|
## `sf agent test create`
|
|
985
985
|
|
|
@@ -1034,7 +1034,7 @@ EXAMPLES
|
|
|
1034
1034
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
1035
1035
|
```
|
|
1036
1036
|
|
|
1037
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
1037
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/test/create.ts)_
|
|
1038
1038
|
|
|
1039
1039
|
## `sf agent test list`
|
|
1040
1040
|
|
|
@@ -1069,7 +1069,7 @@ EXAMPLES
|
|
|
1069
1069
|
$ sf agent test list --target-org my-org
|
|
1070
1070
|
```
|
|
1071
1071
|
|
|
1072
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
1072
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/test/list.ts)_
|
|
1073
1073
|
|
|
1074
1074
|
## `sf agent test results`
|
|
1075
1075
|
|
|
@@ -1135,7 +1135,7 @@ FLAG DESCRIPTIONS
|
|
|
1135
1135
|
expression when using custom evaluations.
|
|
1136
1136
|
```
|
|
1137
1137
|
|
|
1138
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
1138
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/test/results.ts)_
|
|
1139
1139
|
|
|
1140
1140
|
## `sf agent test resume`
|
|
1141
1141
|
|
|
@@ -1208,7 +1208,7 @@ FLAG DESCRIPTIONS
|
|
|
1208
1208
|
expression when using custom evaluations.
|
|
1209
1209
|
```
|
|
1210
1210
|
|
|
1211
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
1211
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/test/resume.ts)_
|
|
1212
1212
|
|
|
1213
1213
|
## `sf agent test run`
|
|
1214
1214
|
|
|
@@ -1282,7 +1282,7 @@ FLAG DESCRIPTIONS
|
|
|
1282
1282
|
expression when using custom evaluations.
|
|
1283
1283
|
```
|
|
1284
1284
|
|
|
1285
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
1285
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/test/run.ts)_
|
|
1286
1286
|
|
|
1287
1287
|
## `sf agent validate authoring-bundle`
|
|
1288
1288
|
|
|
@@ -1329,7 +1329,7 @@ EXAMPLES
|
|
|
1329
1329
|
$ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
|
|
1330
1330
|
```
|
|
1331
1331
|
|
|
1332
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.
|
|
1332
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.4/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1333
1333
|
|
|
1334
1334
|
## `sf alias list`
|
|
1335
1335
|
|
|
@@ -1357,7 +1357,7 @@ EXAMPLES
|
|
|
1357
1357
|
$ sf alias list
|
|
1358
1358
|
```
|
|
1359
1359
|
|
|
1360
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
1360
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.57/src/commands/alias/list.ts)_
|
|
1361
1361
|
|
|
1362
1362
|
## `sf alias set`
|
|
1363
1363
|
|
|
@@ -1406,7 +1406,7 @@ EXAMPLES
|
|
|
1406
1406
|
$ sf alias set my-scratch-org test-ss0xut7txzxf@example.com
|
|
1407
1407
|
```
|
|
1408
1408
|
|
|
1409
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
1409
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.57/src/commands/alias/set.ts)_
|
|
1410
1410
|
|
|
1411
1411
|
## `sf alias unset`
|
|
1412
1412
|
|
|
@@ -1446,7 +1446,7 @@ EXAMPLES
|
|
|
1446
1446
|
$ sf alias unset --all [--no-prompt]
|
|
1447
1447
|
```
|
|
1448
1448
|
|
|
1449
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
1449
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.57/src/commands/alias/unset.ts)_
|
|
1450
1450
|
|
|
1451
1451
|
## `sf apex get log`
|
|
1452
1452
|
|
|
@@ -1502,7 +1502,7 @@ FLAG DESCRIPTIONS
|
|
|
1502
1502
|
directory.
|
|
1503
1503
|
```
|
|
1504
1504
|
|
|
1505
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1505
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.10/src/commands/apex/get/log.ts)_
|
|
1506
1506
|
|
|
1507
1507
|
## `sf apex get test`
|
|
1508
1508
|
|
|
@@ -1562,7 +1562,7 @@ EXAMPLES
|
|
|
1562
1562
|
me@myorg'
|
|
1563
1563
|
```
|
|
1564
1564
|
|
|
1565
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1565
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.10/src/commands/apex/get/test.ts)_
|
|
1566
1566
|
|
|
1567
1567
|
## `sf apex list log`
|
|
1568
1568
|
|
|
@@ -1602,7 +1602,7 @@ EXAMPLES
|
|
|
1602
1602
|
$ sf apex list log --target-org me@my.org
|
|
1603
1603
|
```
|
|
1604
1604
|
|
|
1605
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1605
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.10/src/commands/apex/list/log.ts)_
|
|
1606
1606
|
|
|
1607
1607
|
## `sf apex run`
|
|
1608
1608
|
|
|
@@ -1649,7 +1649,7 @@ EXAMPLES
|
|
|
1649
1649
|
$ sf apex run
|
|
1650
1650
|
```
|
|
1651
1651
|
|
|
1652
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1652
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.10/src/commands/apex/run.ts)_
|
|
1653
1653
|
|
|
1654
1654
|
## `sf apex run test`
|
|
1655
1655
|
|
|
@@ -1796,7 +1796,7 @@ FLAG DESCRIPTIONS
|
|
|
1796
1796
|
--tests Test1 --tests Test2
|
|
1797
1797
|
```
|
|
1798
1798
|
|
|
1799
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1799
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.10/src/commands/apex/run/test.ts)_
|
|
1800
1800
|
|
|
1801
1801
|
## `sf apex tail log`
|
|
1802
1802
|
|
|
@@ -1839,7 +1839,7 @@ EXAMPLES
|
|
|
1839
1839
|
$ sf apex tail log --color --skip-trace-flag
|
|
1840
1840
|
```
|
|
1841
1841
|
|
|
1842
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
1842
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.10/src/commands/apex/tail/log.ts)_
|
|
1843
1843
|
|
|
1844
1844
|
## `sf api request graphql`
|
|
1845
1845
|
|
|
@@ -2110,7 +2110,7 @@ CONFIGURATION VARIABLES
|
|
|
2110
2110
|
org-capitalize-record-types Whether record types are capitalized on scratch org creation.
|
|
2111
2111
|
```
|
|
2112
2112
|
|
|
2113
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
2113
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.57/src/commands/config/get.ts)_
|
|
2114
2114
|
|
|
2115
2115
|
## `sf config list`
|
|
2116
2116
|
|
|
@@ -2150,7 +2150,7 @@ EXAMPLES
|
|
|
2150
2150
|
$ sf config list
|
|
2151
2151
|
```
|
|
2152
2152
|
|
|
2153
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
2153
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.57/src/commands/config/list.ts)_
|
|
2154
2154
|
|
|
2155
2155
|
## `sf config set`
|
|
2156
2156
|
|
|
@@ -2219,7 +2219,7 @@ CONFIGURATION VARIABLES
|
|
|
2219
2219
|
org-capitalize-record-types Whether record types are capitalized on scratch org creation.
|
|
2220
2220
|
```
|
|
2221
2221
|
|
|
2222
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
2222
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.57/src/commands/config/set.ts)_
|
|
2223
2223
|
|
|
2224
2224
|
## `sf config unset`
|
|
2225
2225
|
|
|
@@ -2269,7 +2269,7 @@ CONFIGURATION VARIABLES
|
|
|
2269
2269
|
org-capitalize-record-types Whether record types are capitalized on scratch org creation.
|
|
2270
2270
|
```
|
|
2271
2271
|
|
|
2272
|
-
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.
|
|
2272
|
+
_See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.57/src/commands/config/unset.ts)_
|
|
2273
2273
|
|
|
2274
2274
|
## `sf data bulk results`
|
|
2275
2275
|
|
|
@@ -3399,7 +3399,7 @@ EXAMPLES
|
|
|
3399
3399
|
$ sf doctor --plugin @salesforce/plugin-source
|
|
3400
3400
|
```
|
|
3401
3401
|
|
|
3402
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3402
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.105/src/commands/doctor.ts)_
|
|
3403
3403
|
|
|
3404
3404
|
## `sf force data bulk delete`
|
|
3405
3405
|
|
|
@@ -3601,7 +3601,7 @@ EXAMPLES
|
|
|
3601
3601
|
$ sf info releasenotes display --version latest
|
|
3602
3602
|
```
|
|
3603
3603
|
|
|
3604
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3604
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.105/src/commands/info/releasenotes/display.ts)_
|
|
3605
3605
|
|
|
3606
3606
|
## `sf logic get test`
|
|
3607
3607
|
|
|
@@ -3649,7 +3649,7 @@ EXAMPLES
|
|
|
3649
3649
|
$ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
|
|
3650
3650
|
```
|
|
3651
3651
|
|
|
3652
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
3652
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.10/src/commands/logic/get/test.ts)_
|
|
3653
3653
|
|
|
3654
3654
|
## `sf logic run test`
|
|
3655
3655
|
|
|
@@ -3771,7 +3771,7 @@ FLAG DESCRIPTIONS
|
|
|
3771
3771
|
--tests Test1 --tests Test2
|
|
3772
3772
|
```
|
|
3773
3773
|
|
|
3774
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.
|
|
3774
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.10/src/commands/logic/run/test.ts)_
|
|
3775
3775
|
|
|
3776
3776
|
## `sf org assign permset`
|
|
3777
3777
|
|
|
@@ -3817,7 +3817,7 @@ EXAMPLES
|
|
|
3817
3817
|
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
|
|
3818
3818
|
```
|
|
3819
3819
|
|
|
3820
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
3820
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.52/src/commands/org/assign/permset.ts)_
|
|
3821
3821
|
|
|
3822
3822
|
## `sf org assign permsetlicense`
|
|
3823
3823
|
|
|
@@ -3864,7 +3864,7 @@ EXAMPLES
|
|
|
3864
3864
|
user3
|
|
3865
3865
|
```
|
|
3866
3866
|
|
|
3867
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
3867
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.52/src/commands/org/assign/permsetlicense.ts)_
|
|
3868
3868
|
|
|
3869
3869
|
## `sf org create sandbox`
|
|
3870
3870
|
|
|
@@ -3998,7 +3998,7 @@ FLAG DESCRIPTIONS
|
|
|
3998
3998
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
3999
3999
|
```
|
|
4000
4000
|
|
|
4001
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4001
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/create/sandbox.ts)_
|
|
4002
4002
|
|
|
4003
4003
|
## `sf org create scratch`
|
|
4004
4004
|
|
|
@@ -4180,7 +4180,7 @@ FLAG DESCRIPTIONS
|
|
|
4180
4180
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4181
4181
|
```
|
|
4182
4182
|
|
|
4183
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4183
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/create/scratch.ts)_
|
|
4184
4184
|
|
|
4185
4185
|
## `sf org create user`
|
|
4186
4186
|
|
|
@@ -4288,7 +4288,7 @@ FLAG DESCRIPTIONS
|
|
|
4288
4288
|
might be different than what you specify in the definition file.
|
|
4289
4289
|
```
|
|
4290
4290
|
|
|
4291
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4291
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.52/src/commands/org/create/user.ts)_
|
|
4292
4292
|
|
|
4293
4293
|
## `sf org delete sandbox`
|
|
4294
4294
|
|
|
@@ -4334,7 +4334,7 @@ EXAMPLES
|
|
|
4334
4334
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4335
4335
|
```
|
|
4336
4336
|
|
|
4337
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4337
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/delete/sandbox.ts)_
|
|
4338
4338
|
|
|
4339
4339
|
## `sf org delete scratch`
|
|
4340
4340
|
|
|
@@ -4378,7 +4378,7 @@ EXAMPLES
|
|
|
4378
4378
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4379
4379
|
```
|
|
4380
4380
|
|
|
4381
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4381
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/delete/scratch.ts)_
|
|
4382
4382
|
|
|
4383
4383
|
## `sf org disable tracking`
|
|
4384
4384
|
|
|
@@ -4417,7 +4417,7 @@ EXAMPLES
|
|
|
4417
4417
|
$ sf org disable tracking
|
|
4418
4418
|
```
|
|
4419
4419
|
|
|
4420
|
-
_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.69/src/commands/org/disable/tracking.ts)_
|
|
4421
4421
|
|
|
4422
4422
|
## `sf org display`
|
|
4423
4423
|
|
|
@@ -4462,7 +4462,7 @@ EXAMPLES
|
|
|
4462
4462
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4463
4463
|
```
|
|
4464
4464
|
|
|
4465
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4465
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/display.ts)_
|
|
4466
4466
|
|
|
4467
4467
|
## `sf org display user`
|
|
4468
4468
|
|
|
@@ -4501,7 +4501,7 @@ EXAMPLES
|
|
|
4501
4501
|
$ sf org display user --target-org me@my.org --json
|
|
4502
4502
|
```
|
|
4503
4503
|
|
|
4504
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4504
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.52/src/commands/org/display/user.ts)_
|
|
4505
4505
|
|
|
4506
4506
|
## `sf org enable tracking`
|
|
4507
4507
|
|
|
@@ -4543,7 +4543,7 @@ EXAMPLES
|
|
|
4543
4543
|
$ sf org enable tracking
|
|
4544
4544
|
```
|
|
4545
4545
|
|
|
4546
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4546
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/enable/tracking.ts)_
|
|
4547
4547
|
|
|
4548
4548
|
## `sf org generate password`
|
|
4549
4549
|
|
|
@@ -4610,7 +4610,7 @@ EXAMPLES
|
|
|
4610
4610
|
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
|
|
4611
4611
|
```
|
|
4612
4612
|
|
|
4613
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4613
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.52/src/commands/org/generate/password.ts)_
|
|
4614
4614
|
|
|
4615
4615
|
## `sf org list`
|
|
4616
4616
|
|
|
@@ -4649,7 +4649,7 @@ EXAMPLES
|
|
|
4649
4649
|
$ sf org list --clean
|
|
4650
4650
|
```
|
|
4651
4651
|
|
|
4652
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4652
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/list.ts)_
|
|
4653
4653
|
|
|
4654
4654
|
## `sf org list auth`
|
|
4655
4655
|
|
|
@@ -4721,7 +4721,7 @@ EXAMPLES
|
|
|
4721
4721
|
$ sf org list limits --target-org my-scratch-org
|
|
4722
4722
|
```
|
|
4723
4723
|
|
|
4724
|
-
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.
|
|
4724
|
+
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.78/src/commands/org/list/limits.ts)_
|
|
4725
4725
|
|
|
4726
4726
|
## `sf org list metadata`
|
|
4727
4727
|
|
|
@@ -4788,7 +4788,7 @@ FLAG DESCRIPTIONS
|
|
|
4788
4788
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4789
4789
|
```
|
|
4790
4790
|
|
|
4791
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4791
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/list/metadata.ts)_
|
|
4792
4792
|
|
|
4793
4793
|
## `sf org list metadata-types`
|
|
4794
4794
|
|
|
@@ -4843,7 +4843,7 @@ FLAG DESCRIPTIONS
|
|
|
4843
4843
|
Override the api version used for api requests made by this command
|
|
4844
4844
|
```
|
|
4845
4845
|
|
|
4846
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4846
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/list/metadata-types.ts)_
|
|
4847
4847
|
|
|
4848
4848
|
## `sf org list sobject record-counts`
|
|
4849
4849
|
|
|
@@ -4889,7 +4889,7 @@ EXAMPLES
|
|
|
4889
4889
|
$ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org
|
|
4890
4890
|
```
|
|
4891
4891
|
|
|
4892
|
-
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.
|
|
4892
|
+
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.78/src/commands/org/list/sobject/record-counts.ts)_
|
|
4893
4893
|
|
|
4894
4894
|
## `sf org list users`
|
|
4895
4895
|
|
|
@@ -4927,7 +4927,7 @@ EXAMPLES
|
|
|
4927
4927
|
$ sf org list users --target-org me@my.org
|
|
4928
4928
|
```
|
|
4929
4929
|
|
|
4930
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4930
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.52/src/commands/org/list/users.ts)_
|
|
4931
4931
|
|
|
4932
4932
|
## `sf org login access-token`
|
|
4933
4933
|
|
|
@@ -5389,7 +5389,7 @@ EXAMPLES
|
|
|
5389
5389
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5390
5390
|
```
|
|
5391
5391
|
|
|
5392
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5392
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/open.ts)_
|
|
5393
5393
|
|
|
5394
5394
|
## `sf org open agent`
|
|
5395
5395
|
|
|
@@ -5440,7 +5440,7 @@ EXAMPLES
|
|
|
5440
5440
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5441
5441
|
```
|
|
5442
5442
|
|
|
5443
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5443
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/open/agent.ts)_
|
|
5444
5444
|
|
|
5445
5445
|
## `sf org open authoring-bundle`
|
|
5446
5446
|
|
|
@@ -5486,7 +5486,7 @@ EXAMPLES
|
|
|
5486
5486
|
$ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
|
|
5487
5487
|
```
|
|
5488
5488
|
|
|
5489
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5489
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/open/authoring-bundle.ts)_
|
|
5490
5490
|
|
|
5491
5491
|
## `sf org refresh sandbox`
|
|
5492
5492
|
|
|
@@ -5589,7 +5589,7 @@ FLAG DESCRIPTIONS
|
|
|
5589
5589
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5590
5590
|
```
|
|
5591
5591
|
|
|
5592
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5592
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/refresh/sandbox.ts)_
|
|
5593
5593
|
|
|
5594
5594
|
## `sf org resume sandbox`
|
|
5595
5595
|
|
|
@@ -5652,7 +5652,7 @@ FLAG DESCRIPTIONS
|
|
|
5652
5652
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5653
5653
|
```
|
|
5654
5654
|
|
|
5655
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5655
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/resume/sandbox.ts)_
|
|
5656
5656
|
|
|
5657
5657
|
## `sf org resume scratch`
|
|
5658
5658
|
|
|
@@ -5705,7 +5705,7 @@ FLAG DESCRIPTIONS
|
|
|
5705
5705
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5706
5706
|
```
|
|
5707
5707
|
|
|
5708
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5708
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.69/src/commands/org/resume/scratch.ts)_
|
|
5709
5709
|
|
|
5710
5710
|
## `sf package convert`
|
|
5711
5711
|
|
|
@@ -5802,7 +5802,7 @@ FLAG DESCRIPTIONS
|
|
|
5802
5802
|
--installation-key-bypass flag is required.
|
|
5803
5803
|
```
|
|
5804
5804
|
|
|
5805
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
5805
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/convert.ts)_
|
|
5806
5806
|
|
|
5807
5807
|
## `sf package create`
|
|
5808
5808
|
|
|
@@ -5881,7 +5881,7 @@ FLAG DESCRIPTIONS
|
|
|
5881
5881
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5882
5882
|
```
|
|
5883
5883
|
|
|
5884
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
5884
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/create.ts)_
|
|
5885
5885
|
|
|
5886
5886
|
## `sf package delete`
|
|
5887
5887
|
|
|
@@ -5923,7 +5923,7 @@ EXAMPLES
|
|
|
5923
5923
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5924
5924
|
```
|
|
5925
5925
|
|
|
5926
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
5926
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/delete.ts)_
|
|
5927
5927
|
|
|
5928
5928
|
## `sf package install`
|
|
5929
5929
|
|
|
@@ -6022,7 +6022,7 @@ FLAG DESCRIPTIONS
|
|
|
6022
6022
|
- Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
|
|
6023
6023
|
```
|
|
6024
6024
|
|
|
6025
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6025
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/install.ts)_
|
|
6026
6026
|
|
|
6027
6027
|
## `sf package install report`
|
|
6028
6028
|
|
|
@@ -6055,7 +6055,7 @@ EXAMPLES
|
|
|
6055
6055
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
6056
6056
|
```
|
|
6057
6057
|
|
|
6058
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6058
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/install/report.ts)_
|
|
6059
6059
|
|
|
6060
6060
|
## `sf package installed list`
|
|
6061
6061
|
|
|
@@ -6087,7 +6087,7 @@ EXAMPLES
|
|
|
6087
6087
|
$ sf package installed list --target-org me@example.com
|
|
6088
6088
|
```
|
|
6089
6089
|
|
|
6090
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6090
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/installed/list.ts)_
|
|
6091
6091
|
|
|
6092
6092
|
## `sf package list`
|
|
6093
6093
|
|
|
@@ -6125,7 +6125,7 @@ EXAMPLES
|
|
|
6125
6125
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
6126
6126
|
```
|
|
6127
6127
|
|
|
6128
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6128
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/list.ts)_
|
|
6129
6129
|
|
|
6130
6130
|
## `sf package push-upgrade abort`
|
|
6131
6131
|
|
|
@@ -6164,7 +6164,7 @@ EXAMPLES
|
|
|
6164
6164
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6165
6165
|
```
|
|
6166
6166
|
|
|
6167
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6167
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/push-upgrade/abort.ts)_
|
|
6168
6168
|
|
|
6169
6169
|
## `sf package push-upgrade list`
|
|
6170
6170
|
|
|
@@ -6223,7 +6223,7 @@ EXAMPLES
|
|
|
6223
6223
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6224
6224
|
```
|
|
6225
6225
|
|
|
6226
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6226
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/push-upgrade/list.ts)_
|
|
6227
6227
|
|
|
6228
6228
|
## `sf package push-upgrade report`
|
|
6229
6229
|
|
|
@@ -6265,7 +6265,7 @@ EXAMPLES
|
|
|
6265
6265
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6266
6266
|
```
|
|
6267
6267
|
|
|
6268
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6268
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/push-upgrade/report.ts)_
|
|
6269
6269
|
|
|
6270
6270
|
## `sf package push-upgrade schedule`
|
|
6271
6271
|
|
|
@@ -6352,7 +6352,7 @@ FLAG DESCRIPTIONS
|
|
|
6352
6352
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6353
6353
|
```
|
|
6354
6354
|
|
|
6355
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6355
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/push-upgrade/schedule.ts)_
|
|
6356
6356
|
|
|
6357
6357
|
## `sf package uninstall`
|
|
6358
6358
|
|
|
@@ -6400,7 +6400,7 @@ EXAMPLES
|
|
|
6400
6400
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6401
6401
|
```
|
|
6402
6402
|
|
|
6403
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6403
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/uninstall.ts)_
|
|
6404
6404
|
|
|
6405
6405
|
## `sf package uninstall report`
|
|
6406
6406
|
|
|
@@ -6433,7 +6433,7 @@ EXAMPLES
|
|
|
6433
6433
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6434
6434
|
```
|
|
6435
6435
|
|
|
6436
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6436
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/uninstall/report.ts)_
|
|
6437
6437
|
|
|
6438
6438
|
## `sf package update`
|
|
6439
6439
|
|
|
@@ -6501,7 +6501,7 @@ FLAG DESCRIPTIONS
|
|
|
6501
6501
|
the Installed Packages page. Only released package versions can be set as the recommended version.
|
|
6502
6502
|
```
|
|
6503
6503
|
|
|
6504
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6504
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/update.ts)_
|
|
6505
6505
|
|
|
6506
6506
|
## `sf package version create`
|
|
6507
6507
|
|
|
@@ -6678,7 +6678,7 @@ FLAG DESCRIPTIONS
|
|
|
6678
6678
|
periods of no output from commands.
|
|
6679
6679
|
```
|
|
6680
6680
|
|
|
6681
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6681
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/create.ts)_
|
|
6682
6682
|
|
|
6683
6683
|
## `sf package version create list`
|
|
6684
6684
|
|
|
@@ -6739,7 +6739,7 @@ EXAMPLES
|
|
|
6739
6739
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6740
6740
|
```
|
|
6741
6741
|
|
|
6742
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6742
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/create/list.ts)_
|
|
6743
6743
|
|
|
6744
6744
|
## `sf package version create report`
|
|
6745
6745
|
|
|
@@ -6782,7 +6782,7 @@ EXAMPLES
|
|
|
6782
6782
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6783
6783
|
```
|
|
6784
6784
|
|
|
6785
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6785
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/create/report.ts)_
|
|
6786
6786
|
|
|
6787
6787
|
## `sf package version delete`
|
|
6788
6788
|
|
|
@@ -6823,7 +6823,7 @@ EXAMPLES
|
|
|
6823
6823
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6824
6824
|
```
|
|
6825
6825
|
|
|
6826
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6826
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/delete.ts)_
|
|
6827
6827
|
|
|
6828
6828
|
## `sf package version displayancestry`
|
|
6829
6829
|
|
|
@@ -6883,7 +6883,7 @@ FLAG DESCRIPTIONS
|
|
|
6883
6883
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6884
6884
|
```
|
|
6885
6885
|
|
|
6886
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6886
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/displayancestry.ts)_
|
|
6887
6887
|
|
|
6888
6888
|
## `sf package version displaydependencies`
|
|
6889
6889
|
|
|
@@ -6945,7 +6945,7 @@ FLAG DESCRIPTIONS
|
|
|
6945
6945
|
package, which must be installed last.
|
|
6946
6946
|
```
|
|
6947
6947
|
|
|
6948
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
6948
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/displaydependencies.ts)_
|
|
6949
6949
|
|
|
6950
6950
|
## `sf package version list`
|
|
6951
6951
|
|
|
@@ -7021,7 +7021,7 @@ EXAMPLES
|
|
|
7021
7021
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
7022
7022
|
```
|
|
7023
7023
|
|
|
7024
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7024
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/list.ts)_
|
|
7025
7025
|
|
|
7026
7026
|
## `sf package version promote`
|
|
7027
7027
|
|
|
@@ -7065,7 +7065,7 @@ EXAMPLES
|
|
|
7065
7065
|
$ sf package version promote --package "Awesome Package Alias"
|
|
7066
7066
|
```
|
|
7067
7067
|
|
|
7068
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7068
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/promote.ts)_
|
|
7069
7069
|
|
|
7070
7070
|
## `sf package version report`
|
|
7071
7071
|
|
|
@@ -7105,7 +7105,7 @@ EXAMPLES
|
|
|
7105
7105
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
7106
7106
|
```
|
|
7107
7107
|
|
|
7108
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7108
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/report.ts)_
|
|
7109
7109
|
|
|
7110
7110
|
## `sf package version retrieve`
|
|
7111
7111
|
|
|
@@ -7150,7 +7150,7 @@ EXAMPLES
|
|
|
7150
7150
|
$ sf package version retrieve --package 04tXXX --output-dir my-directory/ --target-dev-hub devhub@example.com
|
|
7151
7151
|
```
|
|
7152
7152
|
|
|
7153
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7153
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/retrieve.ts)_
|
|
7154
7154
|
|
|
7155
7155
|
## `sf package version update`
|
|
7156
7156
|
|
|
@@ -7203,7 +7203,7 @@ EXAMPLES
|
|
|
7203
7203
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
7204
7204
|
```
|
|
7205
7205
|
|
|
7206
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7206
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package/version/update.ts)_
|
|
7207
7207
|
|
|
7208
7208
|
## `sf package1 version create`
|
|
7209
7209
|
|
|
@@ -7270,7 +7270,7 @@ FLAG DESCRIPTIONS
|
|
|
7270
7270
|
subscribers.
|
|
7271
7271
|
```
|
|
7272
7272
|
|
|
7273
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7273
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package1/version/create.ts)_
|
|
7274
7274
|
|
|
7275
7275
|
## `sf package1 version create get`
|
|
7276
7276
|
|
|
@@ -7303,7 +7303,7 @@ EXAMPLES
|
|
|
7303
7303
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
7304
7304
|
```
|
|
7305
7305
|
|
|
7306
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7306
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package1/version/create/get.ts)_
|
|
7307
7307
|
|
|
7308
7308
|
## `sf package1 version display`
|
|
7309
7309
|
|
|
@@ -7337,7 +7337,7 @@ EXAMPLES
|
|
|
7337
7337
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7338
7338
|
```
|
|
7339
7339
|
|
|
7340
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7340
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package1/version/display.ts)_
|
|
7341
7341
|
|
|
7342
7342
|
## `sf package1 version list`
|
|
7343
7343
|
|
|
@@ -7375,7 +7375,7 @@ FLAG DESCRIPTIONS
|
|
|
7375
7375
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7376
7376
|
```
|
|
7377
7377
|
|
|
7378
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.
|
|
7378
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.5/src/commands/package1/version/list.ts)_
|
|
7379
7379
|
|
|
7380
7380
|
## `sf plugins`
|
|
7381
7381
|
|
|
@@ -9581,7 +9581,7 @@ EXAMPLES
|
|
|
9581
9581
|
$ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
|
|
9582
9582
|
```
|
|
9583
9583
|
|
|
9584
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
9584
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.94/src/commands/sobject/describe.ts)_
|
|
9585
9585
|
|
|
9586
9586
|
## `sf sobject list`
|
|
9587
9587
|
|
|
@@ -9620,7 +9620,7 @@ EXAMPLES
|
|
|
9620
9620
|
$ sf sobject list --sobject custom --target-org my-scratch-org
|
|
9621
9621
|
```
|
|
9622
9622
|
|
|
9623
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
9623
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.94/src/commands/sobject/list.ts)_
|
|
9624
9624
|
|
|
9625
9625
|
## `sf template generate analytics template`
|
|
9626
9626
|
|
|
@@ -9664,7 +9664,7 @@ FLAG DESCRIPTIONS
|
|
|
9664
9664
|
directory.
|
|
9665
9665
|
```
|
|
9666
9666
|
|
|
9667
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9667
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/analytics/template.ts)_
|
|
9668
9668
|
|
|
9669
9669
|
## `sf template generate apex class`
|
|
9670
9670
|
|
|
@@ -9724,7 +9724,7 @@ FLAG DESCRIPTIONS
|
|
|
9724
9724
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9725
9725
|
```
|
|
9726
9726
|
|
|
9727
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9727
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/apex/class.ts)_
|
|
9728
9728
|
|
|
9729
9729
|
## `sf template generate apex trigger`
|
|
9730
9730
|
|
|
@@ -9794,7 +9794,7 @@ FLAG DESCRIPTIONS
|
|
|
9794
9794
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9795
9795
|
```
|
|
9796
9796
|
|
|
9797
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9797
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/apex/trigger.ts)_
|
|
9798
9798
|
|
|
9799
9799
|
## `sf template generate digital-experience site`
|
|
9800
9800
|
|
|
@@ -9802,8 +9802,8 @@ Generate an Experience Cloud site.
|
|
|
9802
9802
|
|
|
9803
9803
|
```
|
|
9804
9804
|
USAGE
|
|
9805
|
-
$ sf template generate digital-experience site -n <value> -t
|
|
9806
|
-
<value>] [-d <value>]
|
|
9805
|
+
$ sf template generate digital-experience site -n <value> -t Build Your Own (LWR) [--json] [--flags-dir <value>] [-o <value>] [-p <value>]
|
|
9806
|
+
[-e <value>] [-d <value>]
|
|
9807
9807
|
|
|
9808
9808
|
FLAGS
|
|
9809
9809
|
-d, --output-dir=<value> Directory to generate the site files in.
|
|
@@ -9812,8 +9812,8 @@ FLAGS
|
|
|
9812
9812
|
-n, --name=<value> (required) Name of the Experience Cloud site to generate.
|
|
9813
9813
|
-o, --target-org=<value> Username or alias of the target org.
|
|
9814
9814
|
-p, --url-path-prefix=<value> URL path prefix for the site; must contain only alphanumeric characters.
|
|
9815
|
-
-t, --template=<option>
|
|
9816
|
-
<options:
|
|
9815
|
+
-t, --template-name=<option> (required) Template to use when generating the site.
|
|
9816
|
+
<options: Build Your Own (LWR)>
|
|
9817
9817
|
|
|
9818
9818
|
GLOBAL FLAGS
|
|
9819
9819
|
--flags-dir=<value> Import flag values from a directory.
|
|
@@ -9822,19 +9822,23 @@ GLOBAL FLAGS
|
|
|
9822
9822
|
DESCRIPTION
|
|
9823
9823
|
Generate an Experience Cloud site.
|
|
9824
9824
|
|
|
9825
|
-
Creates an Experience Cloud site with the specified template, name, and URL path prefix. The
|
|
9826
|
-
necessary metadata files, including DigitalExperienceConfig, DigitalExperienceBundle, Network, and
|
|
9825
|
+
Creates the metadata of an Experience Cloud site with the specified template, name, and URL path prefix. The output
|
|
9826
|
+
includes all the necessary metadata files, including DigitalExperienceConfig, DigitalExperienceBundle, Network, and
|
|
9827
|
+
CustomSite.
|
|
9828
|
+
Unlike `sf community create`, which builds the site directly in the org, this command generates only the local
|
|
9829
|
+
metadata.
|
|
9827
9830
|
|
|
9828
9831
|
EXAMPLES
|
|
9829
|
-
Generate an Experience Cloud site using the
|
|
9830
|
-
path prefix "mysite":
|
|
9832
|
+
Generate an Experience Cloud site using the Build Your Own (LWR) template. The site is called "mysite" and has the
|
|
9833
|
+
URL path prefix "mysite":
|
|
9831
9834
|
|
|
9832
|
-
$ sf template generate digital-experience site --template
|
|
9835
|
+
$ sf template generate digital-experience site --template-name "Build Your Own (LWR)" --name mysite \
|
|
9836
|
+
--url-path-prefix mysite
|
|
9833
9837
|
|
|
9834
9838
|
Generate an Experience Cloud site like the last example, but generate the files into the specified output directory:
|
|
9835
9839
|
|
|
9836
|
-
$ sf template generate digital-experience site --template
|
|
9837
|
-
--output-dir force-app/main/default
|
|
9840
|
+
$ sf template generate digital-experience site --template-name "Build Your Own (LWR)" --name mysite \
|
|
9841
|
+
--url-path-prefix mysite --output-dir force-app/main/default
|
|
9838
9842
|
|
|
9839
9843
|
FLAG DESCRIPTIONS
|
|
9840
9844
|
-d, --output-dir=<value> Directory to generate the site files in.
|
|
@@ -9844,7 +9848,7 @@ FLAG DESCRIPTIONS
|
|
|
9844
9848
|
project, defaults to the current directory.
|
|
9845
9849
|
```
|
|
9846
9850
|
|
|
9847
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9851
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/digital-experience/site.ts)_
|
|
9848
9852
|
|
|
9849
9853
|
## `sf template generate flexipage`
|
|
9850
9854
|
|
|
@@ -9926,7 +9930,7 @@ FLAG DESCRIPTIONS
|
|
|
9926
9930
|
'Custom_Object__c'. This sets the `sobjectType` field in the FlexiPage metadata.
|
|
9927
9931
|
```
|
|
9928
9932
|
|
|
9929
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9933
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/flexipage/index.ts)_
|
|
9930
9934
|
|
|
9931
9935
|
## `sf template generate lightning app`
|
|
9932
9936
|
|
|
@@ -9982,7 +9986,7 @@ FLAG DESCRIPTIONS
|
|
|
9982
9986
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9983
9987
|
```
|
|
9984
9988
|
|
|
9985
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9989
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/lightning/app.ts)_
|
|
9986
9990
|
|
|
9987
9991
|
## `sf template generate lightning component`
|
|
9988
9992
|
|
|
@@ -10052,7 +10056,7 @@ FLAG DESCRIPTIONS
|
|
|
10052
10056
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10053
10057
|
```
|
|
10054
10058
|
|
|
10055
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10059
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/lightning/component.ts)_
|
|
10056
10060
|
|
|
10057
10061
|
## `sf template generate lightning event`
|
|
10058
10062
|
|
|
@@ -10108,7 +10112,7 @@ FLAG DESCRIPTIONS
|
|
|
10108
10112
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10109
10113
|
```
|
|
10110
10114
|
|
|
10111
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10115
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/lightning/event.ts)_
|
|
10112
10116
|
|
|
10113
10117
|
## `sf template generate lightning interface`
|
|
10114
10118
|
|
|
@@ -10164,7 +10168,7 @@ FLAG DESCRIPTIONS
|
|
|
10164
10168
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10165
10169
|
```
|
|
10166
10170
|
|
|
10167
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10171
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/lightning/interface.ts)_
|
|
10168
10172
|
|
|
10169
10173
|
## `sf template generate lightning test`
|
|
10170
10174
|
|
|
@@ -10220,7 +10224,7 @@ FLAG DESCRIPTIONS
|
|
|
10220
10224
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10221
10225
|
```
|
|
10222
10226
|
|
|
10223
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10227
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/lightning/test.ts)_
|
|
10224
10228
|
|
|
10225
10229
|
## `sf template generate project`
|
|
10226
10230
|
|
|
@@ -10326,7 +10330,7 @@ FLAG DESCRIPTIONS
|
|
|
10326
10330
|
Override the api version used for api requests made by this command
|
|
10327
10331
|
```
|
|
10328
10332
|
|
|
10329
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10333
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/project/index.ts)_
|
|
10330
10334
|
|
|
10331
10335
|
## `sf template generate static-resource`
|
|
10332
10336
|
|
|
@@ -10389,7 +10393,7 @@ FLAG DESCRIPTIONS
|
|
|
10389
10393
|
etc.
|
|
10390
10394
|
```
|
|
10391
10395
|
|
|
10392
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10396
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/static-resource/index.ts)_
|
|
10393
10397
|
|
|
10394
10398
|
## `sf template generate visualforce component`
|
|
10395
10399
|
|
|
@@ -10446,7 +10450,7 @@ FLAG DESCRIPTIONS
|
|
|
10446
10450
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10447
10451
|
```
|
|
10448
10452
|
|
|
10449
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10453
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/visualforce/component.ts)_
|
|
10450
10454
|
|
|
10451
10455
|
## `sf template generate visualforce page`
|
|
10452
10456
|
|
|
@@ -10497,7 +10501,7 @@ FLAG DESCRIPTIONS
|
|
|
10497
10501
|
The name can be up to 40 characters and must start with a letter.
|
|
10498
10502
|
```
|
|
10499
10503
|
|
|
10500
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10504
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.9.3/src/commands/template/generate/visualforce/page.ts)_
|
|
10501
10505
|
|
|
10502
10506
|
## `sf update [CHANNEL]`
|
|
10503
10507
|
|