@salesforce/cli 2.124.4 → 2.124.6
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 +102 -100
- package/npm-shrinkwrap.json +268 -250
- package/oclif.lock +292 -281
- package/oclif.manifest.json +1 -1
- package/package.json +10 -10
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.124.
|
|
28
|
+
@salesforce/cli/2.124.6 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.30.1/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.30.1/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.30.1/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.30.1/src/commands/agent/generate/agent-spec.ts)_
|
|
472
472
|
|
|
473
473
|
## `sf agent generate authoring-bundle`
|
|
474
474
|
|
|
@@ -477,7 +477,7 @@ Generate an authoring bundle from an existing agent spec YAML file.
|
|
|
477
477
|
```
|
|
478
478
|
USAGE
|
|
479
479
|
$ sf agent generate authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-name <value>] [--api-version <value>] [-f
|
|
480
|
-
<value>] [--no-spec] [-d <value>] [-n <value>]
|
|
480
|
+
<value>] [--no-spec] [-d <value>] [-n <value>] [--force-overwrite]
|
|
481
481
|
|
|
482
482
|
FLAGS
|
|
483
483
|
-d, --output-dir=<value> Directory where the authoring bundle files are generated.
|
|
@@ -489,6 +489,8 @@ FLAGS
|
|
|
489
489
|
--api-name=<value> API name of the new authoring bundle; if not specified, the API name is derived from the
|
|
490
490
|
authoring bundle name (label); the API name can't exist in the org.
|
|
491
491
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
492
|
+
--force-overwrite Overwrite the existing authoring bundle if one with the same API name already exists
|
|
493
|
+
locally.
|
|
492
494
|
--no-spec Skip prompting for an agent spec and use the default Agent Script boilerplate in the
|
|
493
495
|
generated authoring bundle.
|
|
494
496
|
|
|
@@ -543,7 +545,7 @@ EXAMPLES
|
|
|
543
545
|
other-package-dir/main/default --target-org my-dev-org
|
|
544
546
|
```
|
|
545
547
|
|
|
546
|
-
_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.30.1/src/commands/agent/generate/authoring-bundle.ts)_
|
|
547
549
|
|
|
548
550
|
## `sf agent generate template`
|
|
549
551
|
|
|
@@ -591,7 +593,7 @@ EXAMPLES
|
|
|
591
593
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
592
594
|
```
|
|
593
595
|
|
|
594
|
-
_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.30.1/src/commands/agent/generate/template.ts)_
|
|
595
597
|
|
|
596
598
|
## `sf agent generate test-spec`
|
|
597
599
|
|
|
@@ -652,7 +654,7 @@ EXAMPLES
|
|
|
652
654
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
653
655
|
```
|
|
654
656
|
|
|
655
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
657
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/generate/test-spec.ts)_
|
|
656
658
|
|
|
657
659
|
## `sf agent preview`
|
|
658
660
|
|
|
@@ -725,7 +727,7 @@ EXAMPLES
|
|
|
725
727
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
726
728
|
```
|
|
727
729
|
|
|
728
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
730
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/preview.ts)_
|
|
729
731
|
|
|
730
732
|
## `sf agent preview end`
|
|
731
733
|
|
|
@@ -780,7 +782,7 @@ EXAMPLES
|
|
|
780
782
|
$ sf agent preview end --authoring-bundle My_Local_Agent
|
|
781
783
|
```
|
|
782
784
|
|
|
783
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
785
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/preview/end.ts)_
|
|
784
786
|
|
|
785
787
|
## `sf agent preview send`
|
|
786
788
|
|
|
@@ -838,7 +840,7 @@ EXAMPLES
|
|
|
838
840
|
$ sf agent preview send --utterance "what can you help me with?" --authoring-bundle My_Local_Agent
|
|
839
841
|
```
|
|
840
842
|
|
|
841
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
843
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/preview/send.ts)_
|
|
842
844
|
|
|
843
845
|
## `sf agent preview sessions`
|
|
844
846
|
|
|
@@ -871,7 +873,7 @@ EXAMPLES
|
|
|
871
873
|
$ sf agent preview sessions
|
|
872
874
|
```
|
|
873
875
|
|
|
874
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
876
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/preview/sessions.ts)_
|
|
875
877
|
|
|
876
878
|
## `sf agent preview start`
|
|
877
879
|
|
|
@@ -928,7 +930,7 @@ EXAMPLES
|
|
|
928
930
|
$ sf agent preview start --api-name My_Published_Agent
|
|
929
931
|
```
|
|
930
932
|
|
|
931
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
933
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/preview/start.ts)_
|
|
932
934
|
|
|
933
935
|
## `sf agent publish authoring-bundle`
|
|
934
936
|
|
|
@@ -977,7 +979,7 @@ EXAMPLES
|
|
|
977
979
|
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
|
|
978
980
|
```
|
|
979
981
|
|
|
980
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
982
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/publish/authoring-bundle.ts)_
|
|
981
983
|
|
|
982
984
|
## `sf agent test create`
|
|
983
985
|
|
|
@@ -1032,7 +1034,7 @@ EXAMPLES
|
|
|
1032
1034
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
1033
1035
|
```
|
|
1034
1036
|
|
|
1035
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1037
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/test/create.ts)_
|
|
1036
1038
|
|
|
1037
1039
|
## `sf agent test list`
|
|
1038
1040
|
|
|
@@ -1067,7 +1069,7 @@ EXAMPLES
|
|
|
1067
1069
|
$ sf agent test list --target-org my-org
|
|
1068
1070
|
```
|
|
1069
1071
|
|
|
1070
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1072
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/test/list.ts)_
|
|
1071
1073
|
|
|
1072
1074
|
## `sf agent test results`
|
|
1073
1075
|
|
|
@@ -1133,7 +1135,7 @@ FLAG DESCRIPTIONS
|
|
|
1133
1135
|
expression when using custom evaluations.
|
|
1134
1136
|
```
|
|
1135
1137
|
|
|
1136
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1138
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/test/results.ts)_
|
|
1137
1139
|
|
|
1138
1140
|
## `sf agent test resume`
|
|
1139
1141
|
|
|
@@ -1206,7 +1208,7 @@ FLAG DESCRIPTIONS
|
|
|
1206
1208
|
expression when using custom evaluations.
|
|
1207
1209
|
```
|
|
1208
1210
|
|
|
1209
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1211
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/test/resume.ts)_
|
|
1210
1212
|
|
|
1211
1213
|
## `sf agent test run`
|
|
1212
1214
|
|
|
@@ -1280,7 +1282,7 @@ FLAG DESCRIPTIONS
|
|
|
1280
1282
|
expression when using custom evaluations.
|
|
1281
1283
|
```
|
|
1282
1284
|
|
|
1283
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1285
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/test/run.ts)_
|
|
1284
1286
|
|
|
1285
1287
|
## `sf agent validate authoring-bundle`
|
|
1286
1288
|
|
|
@@ -1327,7 +1329,7 @@ EXAMPLES
|
|
|
1327
1329
|
$ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
|
|
1328
1330
|
```
|
|
1329
1331
|
|
|
1330
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1332
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.30.1/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1331
1333
|
|
|
1332
1334
|
## `sf alias list`
|
|
1333
1335
|
|
|
@@ -3815,7 +3817,7 @@ EXAMPLES
|
|
|
3815
3817
|
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
|
|
3816
3818
|
```
|
|
3817
3819
|
|
|
3818
|
-
_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.51/src/commands/org/assign/permset.ts)_
|
|
3819
3821
|
|
|
3820
3822
|
## `sf org assign permsetlicense`
|
|
3821
3823
|
|
|
@@ -3862,7 +3864,7 @@ EXAMPLES
|
|
|
3862
3864
|
user3
|
|
3863
3865
|
```
|
|
3864
3866
|
|
|
3865
|
-
_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.51/src/commands/org/assign/permsetlicense.ts)_
|
|
3866
3868
|
|
|
3867
3869
|
## `sf org create sandbox`
|
|
3868
3870
|
|
|
@@ -3996,7 +3998,7 @@ FLAG DESCRIPTIONS
|
|
|
3996
3998
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
3997
3999
|
```
|
|
3998
4000
|
|
|
3999
|
-
_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.68/src/commands/org/create/sandbox.ts)_
|
|
4000
4002
|
|
|
4001
4003
|
## `sf org create scratch`
|
|
4002
4004
|
|
|
@@ -4178,7 +4180,7 @@ FLAG DESCRIPTIONS
|
|
|
4178
4180
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4179
4181
|
```
|
|
4180
4182
|
|
|
4181
|
-
_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.68/src/commands/org/create/scratch.ts)_
|
|
4182
4184
|
|
|
4183
4185
|
## `sf org create user`
|
|
4184
4186
|
|
|
@@ -4286,7 +4288,7 @@ FLAG DESCRIPTIONS
|
|
|
4286
4288
|
might be different than what you specify in the definition file.
|
|
4287
4289
|
```
|
|
4288
4290
|
|
|
4289
|
-
_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.51/src/commands/org/create/user.ts)_
|
|
4290
4292
|
|
|
4291
4293
|
## `sf org delete sandbox`
|
|
4292
4294
|
|
|
@@ -4332,7 +4334,7 @@ EXAMPLES
|
|
|
4332
4334
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4333
4335
|
```
|
|
4334
4336
|
|
|
4335
|
-
_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.68/src/commands/org/delete/sandbox.ts)_
|
|
4336
4338
|
|
|
4337
4339
|
## `sf org delete scratch`
|
|
4338
4340
|
|
|
@@ -4376,7 +4378,7 @@ EXAMPLES
|
|
|
4376
4378
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4377
4379
|
```
|
|
4378
4380
|
|
|
4379
|
-
_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.68/src/commands/org/delete/scratch.ts)_
|
|
4380
4382
|
|
|
4381
4383
|
## `sf org disable tracking`
|
|
4382
4384
|
|
|
@@ -4415,7 +4417,7 @@ EXAMPLES
|
|
|
4415
4417
|
$ sf org disable tracking
|
|
4416
4418
|
```
|
|
4417
4419
|
|
|
4418
|
-
_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.68/src/commands/org/disable/tracking.ts)_
|
|
4419
4421
|
|
|
4420
4422
|
## `sf org display`
|
|
4421
4423
|
|
|
@@ -4460,7 +4462,7 @@ EXAMPLES
|
|
|
4460
4462
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4461
4463
|
```
|
|
4462
4464
|
|
|
4463
|
-
_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.68/src/commands/org/display.ts)_
|
|
4464
4466
|
|
|
4465
4467
|
## `sf org display user`
|
|
4466
4468
|
|
|
@@ -4499,7 +4501,7 @@ EXAMPLES
|
|
|
4499
4501
|
$ sf org display user --target-org me@my.org --json
|
|
4500
4502
|
```
|
|
4501
4503
|
|
|
4502
|
-
_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.51/src/commands/org/display/user.ts)_
|
|
4503
4505
|
|
|
4504
4506
|
## `sf org enable tracking`
|
|
4505
4507
|
|
|
@@ -4541,7 +4543,7 @@ EXAMPLES
|
|
|
4541
4543
|
$ sf org enable tracking
|
|
4542
4544
|
```
|
|
4543
4545
|
|
|
4544
|
-
_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.68/src/commands/org/enable/tracking.ts)_
|
|
4545
4547
|
|
|
4546
4548
|
## `sf org generate password`
|
|
4547
4549
|
|
|
@@ -4608,7 +4610,7 @@ EXAMPLES
|
|
|
4608
4610
|
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
|
|
4609
4611
|
```
|
|
4610
4612
|
|
|
4611
|
-
_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.51/src/commands/org/generate/password.ts)_
|
|
4612
4614
|
|
|
4613
4615
|
## `sf org list`
|
|
4614
4616
|
|
|
@@ -4647,7 +4649,7 @@ EXAMPLES
|
|
|
4647
4649
|
$ sf org list --clean
|
|
4648
4650
|
```
|
|
4649
4651
|
|
|
4650
|
-
_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.68/src/commands/org/list.ts)_
|
|
4651
4653
|
|
|
4652
4654
|
## `sf org list auth`
|
|
4653
4655
|
|
|
@@ -4679,7 +4681,7 @@ EXAMPLES
|
|
|
4679
4681
|
$ sf org list auth
|
|
4680
4682
|
```
|
|
4681
4683
|
|
|
4682
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
4684
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.6/src/commands/org/list/auth.ts)_
|
|
4683
4685
|
|
|
4684
4686
|
## `sf org list limits`
|
|
4685
4687
|
|
|
@@ -4786,7 +4788,7 @@ FLAG DESCRIPTIONS
|
|
|
4786
4788
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4787
4789
|
```
|
|
4788
4790
|
|
|
4789
|
-
_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.68/src/commands/org/list/metadata.ts)_
|
|
4790
4792
|
|
|
4791
4793
|
## `sf org list metadata-types`
|
|
4792
4794
|
|
|
@@ -4841,7 +4843,7 @@ FLAG DESCRIPTIONS
|
|
|
4841
4843
|
Override the api version used for api requests made by this command
|
|
4842
4844
|
```
|
|
4843
4845
|
|
|
4844
|
-
_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.68/src/commands/org/list/metadata-types.ts)_
|
|
4845
4847
|
|
|
4846
4848
|
## `sf org list sobject record-counts`
|
|
4847
4849
|
|
|
@@ -4925,7 +4927,7 @@ EXAMPLES
|
|
|
4925
4927
|
$ sf org list users --target-org me@my.org
|
|
4926
4928
|
```
|
|
4927
4929
|
|
|
4928
|
-
_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.51/src/commands/org/list/users.ts)_
|
|
4929
4931
|
|
|
4930
4932
|
## `sf org login access-token`
|
|
4931
4933
|
|
|
@@ -4979,7 +4981,7 @@ FLAG DESCRIPTIONS
|
|
|
4979
4981
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
4980
4982
|
```
|
|
4981
4983
|
|
|
4982
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
4984
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.6/src/commands/org/login/access-token.ts)_
|
|
4983
4985
|
|
|
4984
4986
|
## `sf org login jwt`
|
|
4985
4987
|
|
|
@@ -5070,7 +5072,7 @@ FLAG DESCRIPTIONS
|
|
|
5070
5072
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5071
5073
|
```
|
|
5072
5074
|
|
|
5073
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5075
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.6/src/commands/org/login/jwt.ts)_
|
|
5074
5076
|
|
|
5075
5077
|
## `sf org login sfdx-url`
|
|
5076
5078
|
|
|
@@ -5140,7 +5142,7 @@ EXAMPLES
|
|
|
5140
5142
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
5141
5143
|
```
|
|
5142
5144
|
|
|
5143
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5145
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.6/src/commands/org/login/sfdx-url.ts)_
|
|
5144
5146
|
|
|
5145
5147
|
## `sf org login web`
|
|
5146
5148
|
|
|
@@ -5245,7 +5247,7 @@ FLAG DESCRIPTIONS
|
|
|
5245
5247
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5246
5248
|
```
|
|
5247
5249
|
|
|
5248
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5250
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.6/src/commands/org/login/web.ts)_
|
|
5249
5251
|
|
|
5250
5252
|
## `sf org logout`
|
|
5251
5253
|
|
|
@@ -5311,7 +5313,7 @@ FLAG DESCRIPTIONS
|
|
|
5311
5313
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
5312
5314
|
```
|
|
5313
5315
|
|
|
5314
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.
|
|
5316
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.1.6/src/commands/org/logout.ts)_
|
|
5315
5317
|
|
|
5316
5318
|
## `sf org open`
|
|
5317
5319
|
|
|
@@ -5387,7 +5389,7 @@ EXAMPLES
|
|
|
5387
5389
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5388
5390
|
```
|
|
5389
5391
|
|
|
5390
|
-
_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.68/src/commands/org/open.ts)_
|
|
5391
5393
|
|
|
5392
5394
|
## `sf org open agent`
|
|
5393
5395
|
|
|
@@ -5438,7 +5440,7 @@ EXAMPLES
|
|
|
5438
5440
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5439
5441
|
```
|
|
5440
5442
|
|
|
5441
|
-
_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.68/src/commands/org/open/agent.ts)_
|
|
5442
5444
|
|
|
5443
5445
|
## `sf org open authoring-bundle`
|
|
5444
5446
|
|
|
@@ -5484,7 +5486,7 @@ EXAMPLES
|
|
|
5484
5486
|
$ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
|
|
5485
5487
|
```
|
|
5486
5488
|
|
|
5487
|
-
_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.68/src/commands/org/open/authoring-bundle.ts)_
|
|
5488
5490
|
|
|
5489
5491
|
## `sf org refresh sandbox`
|
|
5490
5492
|
|
|
@@ -5587,7 +5589,7 @@ FLAG DESCRIPTIONS
|
|
|
5587
5589
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5588
5590
|
```
|
|
5589
5591
|
|
|
5590
|
-
_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.68/src/commands/org/refresh/sandbox.ts)_
|
|
5591
5593
|
|
|
5592
5594
|
## `sf org resume sandbox`
|
|
5593
5595
|
|
|
@@ -5650,7 +5652,7 @@ FLAG DESCRIPTIONS
|
|
|
5650
5652
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5651
5653
|
```
|
|
5652
5654
|
|
|
5653
|
-
_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.68/src/commands/org/resume/sandbox.ts)_
|
|
5654
5656
|
|
|
5655
5657
|
## `sf org resume scratch`
|
|
5656
5658
|
|
|
@@ -5703,7 +5705,7 @@ FLAG DESCRIPTIONS
|
|
|
5703
5705
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5704
5706
|
```
|
|
5705
5707
|
|
|
5706
|
-
_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.68/src/commands/org/resume/scratch.ts)_
|
|
5707
5709
|
|
|
5708
5710
|
## `sf package convert`
|
|
5709
5711
|
|
|
@@ -5800,7 +5802,7 @@ FLAG DESCRIPTIONS
|
|
|
5800
5802
|
--installation-key-bypass flag is required.
|
|
5801
5803
|
```
|
|
5802
5804
|
|
|
5803
|
-
_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.4/src/commands/package/convert.ts)_
|
|
5804
5806
|
|
|
5805
5807
|
## `sf package create`
|
|
5806
5808
|
|
|
@@ -5879,7 +5881,7 @@ FLAG DESCRIPTIONS
|
|
|
5879
5881
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5880
5882
|
```
|
|
5881
5883
|
|
|
5882
|
-
_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.4/src/commands/package/create.ts)_
|
|
5883
5885
|
|
|
5884
5886
|
## `sf package delete`
|
|
5885
5887
|
|
|
@@ -5921,7 +5923,7 @@ EXAMPLES
|
|
|
5921
5923
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5922
5924
|
```
|
|
5923
5925
|
|
|
5924
|
-
_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.4/src/commands/package/delete.ts)_
|
|
5925
5927
|
|
|
5926
5928
|
## `sf package install`
|
|
5927
5929
|
|
|
@@ -6020,7 +6022,7 @@ FLAG DESCRIPTIONS
|
|
|
6020
6022
|
- Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
|
|
6021
6023
|
```
|
|
6022
6024
|
|
|
6023
|
-
_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.4/src/commands/package/install.ts)_
|
|
6024
6026
|
|
|
6025
6027
|
## `sf package install report`
|
|
6026
6028
|
|
|
@@ -6053,7 +6055,7 @@ EXAMPLES
|
|
|
6053
6055
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
6054
6056
|
```
|
|
6055
6057
|
|
|
6056
|
-
_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.4/src/commands/package/install/report.ts)_
|
|
6057
6059
|
|
|
6058
6060
|
## `sf package installed list`
|
|
6059
6061
|
|
|
@@ -6085,7 +6087,7 @@ EXAMPLES
|
|
|
6085
6087
|
$ sf package installed list --target-org me@example.com
|
|
6086
6088
|
```
|
|
6087
6089
|
|
|
6088
|
-
_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.4/src/commands/package/installed/list.ts)_
|
|
6089
6091
|
|
|
6090
6092
|
## `sf package list`
|
|
6091
6093
|
|
|
@@ -6123,7 +6125,7 @@ EXAMPLES
|
|
|
6123
6125
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
6124
6126
|
```
|
|
6125
6127
|
|
|
6126
|
-
_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.4/src/commands/package/list.ts)_
|
|
6127
6129
|
|
|
6128
6130
|
## `sf package push-upgrade abort`
|
|
6129
6131
|
|
|
@@ -6162,7 +6164,7 @@ EXAMPLES
|
|
|
6162
6164
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6163
6165
|
```
|
|
6164
6166
|
|
|
6165
|
-
_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.4/src/commands/package/push-upgrade/abort.ts)_
|
|
6166
6168
|
|
|
6167
6169
|
## `sf package push-upgrade list`
|
|
6168
6170
|
|
|
@@ -6221,7 +6223,7 @@ EXAMPLES
|
|
|
6221
6223
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6222
6224
|
```
|
|
6223
6225
|
|
|
6224
|
-
_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.4/src/commands/package/push-upgrade/list.ts)_
|
|
6225
6227
|
|
|
6226
6228
|
## `sf package push-upgrade report`
|
|
6227
6229
|
|
|
@@ -6263,7 +6265,7 @@ EXAMPLES
|
|
|
6263
6265
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6264
6266
|
```
|
|
6265
6267
|
|
|
6266
|
-
_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.4/src/commands/package/push-upgrade/report.ts)_
|
|
6267
6269
|
|
|
6268
6270
|
## `sf package push-upgrade schedule`
|
|
6269
6271
|
|
|
@@ -6350,7 +6352,7 @@ FLAG DESCRIPTIONS
|
|
|
6350
6352
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6351
6353
|
```
|
|
6352
6354
|
|
|
6353
|
-
_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.4/src/commands/package/push-upgrade/schedule.ts)_
|
|
6354
6356
|
|
|
6355
6357
|
## `sf package uninstall`
|
|
6356
6358
|
|
|
@@ -6398,7 +6400,7 @@ EXAMPLES
|
|
|
6398
6400
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6399
6401
|
```
|
|
6400
6402
|
|
|
6401
|
-
_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.4/src/commands/package/uninstall.ts)_
|
|
6402
6404
|
|
|
6403
6405
|
## `sf package uninstall report`
|
|
6404
6406
|
|
|
@@ -6431,7 +6433,7 @@ EXAMPLES
|
|
|
6431
6433
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6432
6434
|
```
|
|
6433
6435
|
|
|
6434
|
-
_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.4/src/commands/package/uninstall/report.ts)_
|
|
6435
6437
|
|
|
6436
6438
|
## `sf package update`
|
|
6437
6439
|
|
|
@@ -6499,7 +6501,7 @@ FLAG DESCRIPTIONS
|
|
|
6499
6501
|
the Installed Packages page. Only released package versions can be set as the recommended version.
|
|
6500
6502
|
```
|
|
6501
6503
|
|
|
6502
|
-
_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.4/src/commands/package/update.ts)_
|
|
6503
6505
|
|
|
6504
6506
|
## `sf package version create`
|
|
6505
6507
|
|
|
@@ -6676,7 +6678,7 @@ FLAG DESCRIPTIONS
|
|
|
6676
6678
|
periods of no output from commands.
|
|
6677
6679
|
```
|
|
6678
6680
|
|
|
6679
|
-
_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.4/src/commands/package/version/create.ts)_
|
|
6680
6682
|
|
|
6681
6683
|
## `sf package version create list`
|
|
6682
6684
|
|
|
@@ -6737,7 +6739,7 @@ EXAMPLES
|
|
|
6737
6739
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6738
6740
|
```
|
|
6739
6741
|
|
|
6740
|
-
_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.4/src/commands/package/version/create/list.ts)_
|
|
6741
6743
|
|
|
6742
6744
|
## `sf package version create report`
|
|
6743
6745
|
|
|
@@ -6780,7 +6782,7 @@ EXAMPLES
|
|
|
6780
6782
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6781
6783
|
```
|
|
6782
6784
|
|
|
6783
|
-
_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.4/src/commands/package/version/create/report.ts)_
|
|
6784
6786
|
|
|
6785
6787
|
## `sf package version delete`
|
|
6786
6788
|
|
|
@@ -6821,7 +6823,7 @@ EXAMPLES
|
|
|
6821
6823
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6822
6824
|
```
|
|
6823
6825
|
|
|
6824
|
-
_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.4/src/commands/package/version/delete.ts)_
|
|
6825
6827
|
|
|
6826
6828
|
## `sf package version displayancestry`
|
|
6827
6829
|
|
|
@@ -6881,7 +6883,7 @@ FLAG DESCRIPTIONS
|
|
|
6881
6883
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6882
6884
|
```
|
|
6883
6885
|
|
|
6884
|
-
_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.4/src/commands/package/version/displayancestry.ts)_
|
|
6885
6887
|
|
|
6886
6888
|
## `sf package version displaydependencies`
|
|
6887
6889
|
|
|
@@ -6943,7 +6945,7 @@ FLAG DESCRIPTIONS
|
|
|
6943
6945
|
package, which must be installed last.
|
|
6944
6946
|
```
|
|
6945
6947
|
|
|
6946
|
-
_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.4/src/commands/package/version/displaydependencies.ts)_
|
|
6947
6949
|
|
|
6948
6950
|
## `sf package version list`
|
|
6949
6951
|
|
|
@@ -7019,7 +7021,7 @@ EXAMPLES
|
|
|
7019
7021
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
7020
7022
|
```
|
|
7021
7023
|
|
|
7022
|
-
_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.4/src/commands/package/version/list.ts)_
|
|
7023
7025
|
|
|
7024
7026
|
## `sf package version promote`
|
|
7025
7027
|
|
|
@@ -7063,7 +7065,7 @@ EXAMPLES
|
|
|
7063
7065
|
$ sf package version promote --package "Awesome Package Alias"
|
|
7064
7066
|
```
|
|
7065
7067
|
|
|
7066
|
-
_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.4/src/commands/package/version/promote.ts)_
|
|
7067
7069
|
|
|
7068
7070
|
## `sf package version report`
|
|
7069
7071
|
|
|
@@ -7103,7 +7105,7 @@ EXAMPLES
|
|
|
7103
7105
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
7104
7106
|
```
|
|
7105
7107
|
|
|
7106
|
-
_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.4/src/commands/package/version/report.ts)_
|
|
7107
7109
|
|
|
7108
7110
|
## `sf package version retrieve`
|
|
7109
7111
|
|
|
@@ -7148,7 +7150,7 @@ EXAMPLES
|
|
|
7148
7150
|
$ sf package version retrieve --package 04tXXX --output-dir my-directory/ --target-dev-hub devhub@example.com
|
|
7149
7151
|
```
|
|
7150
7152
|
|
|
7151
|
-
_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.4/src/commands/package/version/retrieve.ts)_
|
|
7152
7154
|
|
|
7153
7155
|
## `sf package version update`
|
|
7154
7156
|
|
|
@@ -7201,7 +7203,7 @@ EXAMPLES
|
|
|
7201
7203
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
7202
7204
|
```
|
|
7203
7205
|
|
|
7204
|
-
_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.4/src/commands/package/version/update.ts)_
|
|
7205
7207
|
|
|
7206
7208
|
## `sf package1 version create`
|
|
7207
7209
|
|
|
@@ -7268,7 +7270,7 @@ FLAG DESCRIPTIONS
|
|
|
7268
7270
|
subscribers.
|
|
7269
7271
|
```
|
|
7270
7272
|
|
|
7271
|
-
_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.4/src/commands/package1/version/create.ts)_
|
|
7272
7274
|
|
|
7273
7275
|
## `sf package1 version create get`
|
|
7274
7276
|
|
|
@@ -7301,7 +7303,7 @@ EXAMPLES
|
|
|
7301
7303
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
7302
7304
|
```
|
|
7303
7305
|
|
|
7304
|
-
_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.4/src/commands/package1/version/create/get.ts)_
|
|
7305
7307
|
|
|
7306
7308
|
## `sf package1 version display`
|
|
7307
7309
|
|
|
@@ -7335,7 +7337,7 @@ EXAMPLES
|
|
|
7335
7337
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7336
7338
|
```
|
|
7337
7339
|
|
|
7338
|
-
_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.4/src/commands/package1/version/display.ts)_
|
|
7339
7341
|
|
|
7340
7342
|
## `sf package1 version list`
|
|
7341
7343
|
|
|
@@ -7373,7 +7375,7 @@ FLAG DESCRIPTIONS
|
|
|
7373
7375
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7374
7376
|
```
|
|
7375
7377
|
|
|
7376
|
-
_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.4/src/commands/package1/version/list.ts)_
|
|
7377
7379
|
|
|
7378
7380
|
## `sf plugins`
|
|
7379
7381
|
|
|
@@ -7565,7 +7567,7 @@ EXAMPLES
|
|
|
7565
7567
|
$ sf plugins trust verify --npm @scope/npmName
|
|
7566
7568
|
```
|
|
7567
7569
|
|
|
7568
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.7.
|
|
7570
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.7.114/src/commands/plugins/trust/verify.ts)_
|
|
7569
7571
|
|
|
7570
7572
|
## `sf plugins uninstall [PLUGIN]`
|
|
7571
7573
|
|
|
@@ -7674,7 +7676,7 @@ FLAG DESCRIPTIONS
|
|
|
7674
7676
|
If you specify this flag, don’t specify --metadata or --source-dir.
|
|
7675
7677
|
```
|
|
7676
7678
|
|
|
7677
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7679
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/convert/mdapi.ts)_
|
|
7678
7680
|
|
|
7679
7681
|
## `sf project convert source`
|
|
7680
7682
|
|
|
@@ -7747,7 +7749,7 @@ FLAG DESCRIPTIONS
|
|
|
7747
7749
|
Override the api version used for api requests made by this command
|
|
7748
7750
|
```
|
|
7749
7751
|
|
|
7750
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7752
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/convert/source.ts)_
|
|
7751
7753
|
|
|
7752
7754
|
## `sf project convert source-behavior`
|
|
7753
7755
|
|
|
@@ -7806,7 +7808,7 @@ EXAMPLES
|
|
|
7806
7808
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
7807
7809
|
```
|
|
7808
7810
|
|
|
7809
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7811
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/convert/source-behavior.ts)_
|
|
7810
7812
|
|
|
7811
7813
|
## `sf project delete source`
|
|
7812
7814
|
|
|
@@ -7959,7 +7961,7 @@ FLAG DESCRIPTIONS
|
|
|
7959
7961
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
7960
7962
|
```
|
|
7961
7963
|
|
|
7962
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
7964
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/delete/source.ts)_
|
|
7963
7965
|
|
|
7964
7966
|
## `sf project delete tracking`
|
|
7965
7967
|
|
|
@@ -7996,7 +7998,7 @@ EXAMPLES
|
|
|
7996
7998
|
$ sf project delete tracking --target-org my-scratch
|
|
7997
7999
|
```
|
|
7998
8000
|
|
|
7999
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8001
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/delete/tracking.ts)_
|
|
8000
8002
|
|
|
8001
8003
|
## `sf project deploy cancel`
|
|
8002
8004
|
|
|
@@ -8068,7 +8070,7 @@ FLAG DESCRIPTIONS
|
|
|
8068
8070
|
project deploy report".
|
|
8069
8071
|
```
|
|
8070
8072
|
|
|
8071
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8073
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/deploy/cancel.ts)_
|
|
8072
8074
|
|
|
8073
8075
|
## `sf project deploy preview`
|
|
8074
8076
|
|
|
@@ -8151,7 +8153,7 @@ FLAG DESCRIPTIONS
|
|
|
8151
8153
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8152
8154
|
```
|
|
8153
8155
|
|
|
8154
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8156
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/deploy/preview.ts)_
|
|
8155
8157
|
|
|
8156
8158
|
## `sf project deploy quick`
|
|
8157
8159
|
|
|
@@ -8244,7 +8246,7 @@ ERROR CODES
|
|
|
8244
8246
|
Canceling (69) The deploy is being canceled.
|
|
8245
8247
|
```
|
|
8246
8248
|
|
|
8247
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8249
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/deploy/quick.ts)_
|
|
8248
8250
|
|
|
8249
8251
|
## `sf project deploy report`
|
|
8250
8252
|
|
|
@@ -8336,7 +8338,7 @@ FLAG DESCRIPTIONS
|
|
|
8336
8338
|
--coverage-formatters lcov --coverage-formatters clover
|
|
8337
8339
|
```
|
|
8338
8340
|
|
|
8339
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8341
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/deploy/report.ts)_
|
|
8340
8342
|
|
|
8341
8343
|
## `sf project deploy resume`
|
|
8342
8344
|
|
|
@@ -8433,7 +8435,7 @@ ERROR CODES
|
|
|
8433
8435
|
Canceling (69) The deploy is being canceled.
|
|
8434
8436
|
```
|
|
8435
8437
|
|
|
8436
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8438
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/deploy/resume.ts)_
|
|
8437
8439
|
|
|
8438
8440
|
## `sf project deploy start`
|
|
8439
8441
|
|
|
@@ -8699,7 +8701,7 @@ ERROR CODES
|
|
|
8699
8701
|
Canceling (69) The deploy is being canceled.
|
|
8700
8702
|
```
|
|
8701
8703
|
|
|
8702
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8704
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/deploy/start.ts)_
|
|
8703
8705
|
|
|
8704
8706
|
## `sf project deploy validate`
|
|
8705
8707
|
|
|
@@ -8903,7 +8905,7 @@ ERROR CODES
|
|
|
8903
8905
|
Canceling (69) The deploy is being canceled.
|
|
8904
8906
|
```
|
|
8905
8907
|
|
|
8906
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8908
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/deploy/validate.ts)_
|
|
8907
8909
|
|
|
8908
8910
|
## `sf project generate manifest`
|
|
8909
8911
|
|
|
@@ -8999,7 +9001,7 @@ EXAMPLES
|
|
|
8999
9001
|
$ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
|
|
9000
9002
|
```
|
|
9001
9003
|
|
|
9002
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9004
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/generate/manifest.ts)_
|
|
9003
9005
|
|
|
9004
9006
|
## `sf project list ignored`
|
|
9005
9007
|
|
|
@@ -9041,7 +9043,7 @@ EXAMPLES
|
|
|
9041
9043
|
$ sf project list ignored --source-dir package.xml
|
|
9042
9044
|
```
|
|
9043
9045
|
|
|
9044
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9046
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/list/ignored.ts)_
|
|
9045
9047
|
|
|
9046
9048
|
## `sf project reset tracking`
|
|
9047
9049
|
|
|
@@ -9090,7 +9092,7 @@ EXAMPLES
|
|
|
9090
9092
|
$ sf project reset tracking --revision 30
|
|
9091
9093
|
```
|
|
9092
9094
|
|
|
9093
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9095
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/reset/tracking.ts)_
|
|
9094
9096
|
|
|
9095
9097
|
## `sf project retrieve preview`
|
|
9096
9098
|
|
|
@@ -9144,7 +9146,7 @@ FLAG DESCRIPTIONS
|
|
|
9144
9146
|
production orgs.
|
|
9145
9147
|
```
|
|
9146
9148
|
|
|
9147
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9149
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/retrieve/preview.ts)_
|
|
9148
9150
|
|
|
9149
9151
|
## `sf project retrieve start`
|
|
9150
9152
|
|
|
@@ -9325,7 +9327,7 @@ ENVIRONMENT VARIABLES
|
|
|
9325
9327
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
9326
9328
|
```
|
|
9327
9329
|
|
|
9328
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9330
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.11/src/commands/project/retrieve/start.ts)_
|
|
9329
9331
|
|
|
9330
9332
|
## `sf schema generate field`
|
|
9331
9333
|
|
|
@@ -9379,7 +9381,7 @@ FLAG DESCRIPTIONS
|
|
|
9379
9381
|
If you don't specify this flag, the command prompts you to choose from your local objects.
|
|
9380
9382
|
```
|
|
9381
9383
|
|
|
9382
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9384
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.83/src/commands/schema/generate/field.ts)_
|
|
9383
9385
|
|
|
9384
9386
|
## `sf schema generate platformevent`
|
|
9385
9387
|
|
|
@@ -9411,7 +9413,7 @@ EXAMPLES
|
|
|
9411
9413
|
$ sf schema generate platformevent --label "My Platform Event"
|
|
9412
9414
|
```
|
|
9413
9415
|
|
|
9414
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9416
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.83/src/commands/schema/generate/platformevent.ts)_
|
|
9415
9417
|
|
|
9416
9418
|
## `sf schema generate sobject`
|
|
9417
9419
|
|
|
@@ -9468,7 +9470,7 @@ FLAG DESCRIPTIONS
|
|
|
9468
9470
|
- Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
|
|
9469
9471
|
```
|
|
9470
9472
|
|
|
9471
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9473
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.83/src/commands/schema/generate/sobject.ts)_
|
|
9472
9474
|
|
|
9473
9475
|
## `sf schema generate tab`
|
|
9474
9476
|
|
|
@@ -9516,7 +9518,7 @@ FLAG DESCRIPTIONS
|
|
|
9516
9518
|
The API name for a custom object always ends in `__c`, such as `MyObject__c`.
|
|
9517
9519
|
```
|
|
9518
9520
|
|
|
9519
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9521
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.83/src/commands/schema/generate/tab.ts)_
|
|
9520
9522
|
|
|
9521
9523
|
## `sf search`
|
|
9522
9524
|
|