@salesforce/cli 2.112.3 → 2.112.4
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 +104 -104
- package/npm-shrinkwrap.json +88 -88
- package/oclif.lock +89 -89
- package/oclif.manifest.json +1 -1
- package/package.json +18 -18
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.112.
|
|
28
|
+
@salesforce/cli/2.112.4 linux-x64 node-v22.21.1
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -244,7 +244,7 @@ EXAMPLES
|
|
|
244
244
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
245
245
|
```
|
|
246
246
|
|
|
247
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
247
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/activate.ts)_
|
|
248
248
|
|
|
249
249
|
## `sf agent create`
|
|
250
250
|
|
|
@@ -306,7 +306,7 @@ EXAMPLES
|
|
|
306
306
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
307
307
|
```
|
|
308
308
|
|
|
309
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
309
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/create.ts)_
|
|
310
310
|
|
|
311
311
|
## `sf agent deactivate`
|
|
312
312
|
|
|
@@ -346,7 +346,7 @@ EXAMPLES
|
|
|
346
346
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
347
347
|
```
|
|
348
348
|
|
|
349
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
349
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/deactivate.ts)_
|
|
350
350
|
|
|
351
351
|
## `sf agent generate agent-spec`
|
|
352
352
|
|
|
@@ -451,7 +451,7 @@ EXAMPLES
|
|
|
451
451
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
452
452
|
```
|
|
453
453
|
|
|
454
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
454
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/generate/agent-spec.ts)_
|
|
455
455
|
|
|
456
456
|
## `sf agent generate template`
|
|
457
457
|
|
|
@@ -499,7 +499,7 @@ EXAMPLES
|
|
|
499
499
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
500
500
|
```
|
|
501
501
|
|
|
502
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
502
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/generate/template.ts)_
|
|
503
503
|
|
|
504
504
|
## `sf agent generate test-spec`
|
|
505
505
|
|
|
@@ -560,7 +560,7 @@ EXAMPLES
|
|
|
560
560
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
561
561
|
```
|
|
562
562
|
|
|
563
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
563
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/generate/test-spec.ts)_
|
|
564
564
|
|
|
565
565
|
## `sf agent preview`
|
|
566
566
|
|
|
@@ -624,7 +624,7 @@ EXAMPLES
|
|
|
624
624
|
transcripts/my-preview
|
|
625
625
|
```
|
|
626
626
|
|
|
627
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
627
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/preview.ts)_
|
|
628
628
|
|
|
629
629
|
## `sf agent test create`
|
|
630
630
|
|
|
@@ -679,7 +679,7 @@ EXAMPLES
|
|
|
679
679
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
680
680
|
```
|
|
681
681
|
|
|
682
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
682
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/test/create.ts)_
|
|
683
683
|
|
|
684
684
|
## `sf agent test list`
|
|
685
685
|
|
|
@@ -714,7 +714,7 @@ EXAMPLES
|
|
|
714
714
|
$ sf agent test list --target-org my-org
|
|
715
715
|
```
|
|
716
716
|
|
|
717
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
717
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/test/list.ts)_
|
|
718
718
|
|
|
719
719
|
## `sf agent test results`
|
|
720
720
|
|
|
@@ -780,7 +780,7 @@ FLAG DESCRIPTIONS
|
|
|
780
780
|
expression when using custom evaluations.
|
|
781
781
|
```
|
|
782
782
|
|
|
783
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
783
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/test/results.ts)_
|
|
784
784
|
|
|
785
785
|
## `sf agent test resume`
|
|
786
786
|
|
|
@@ -853,7 +853,7 @@ FLAG DESCRIPTIONS
|
|
|
853
853
|
expression when using custom evaluations.
|
|
854
854
|
```
|
|
855
855
|
|
|
856
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
856
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/test/resume.ts)_
|
|
857
857
|
|
|
858
858
|
## `sf agent test run`
|
|
859
859
|
|
|
@@ -927,7 +927,7 @@ FLAG DESCRIPTIONS
|
|
|
927
927
|
expression when using custom evaluations.
|
|
928
928
|
```
|
|
929
929
|
|
|
930
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
930
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.24/src/commands/agent/test/run.ts)_
|
|
931
931
|
|
|
932
932
|
## `sf alias list`
|
|
933
933
|
|
|
@@ -1086,7 +1086,7 @@ FLAG DESCRIPTIONS
|
|
|
1086
1086
|
directory.
|
|
1087
1087
|
```
|
|
1088
1088
|
|
|
1089
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
1089
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/analytics/generate/template.ts)_
|
|
1090
1090
|
|
|
1091
1091
|
## `sf apex generate class`
|
|
1092
1092
|
|
|
@@ -1145,7 +1145,7 @@ FLAG DESCRIPTIONS
|
|
|
1145
1145
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
1146
1146
|
```
|
|
1147
1147
|
|
|
1148
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
1148
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/apex/generate/class.ts)_
|
|
1149
1149
|
|
|
1150
1150
|
## `sf apex generate trigger`
|
|
1151
1151
|
|
|
@@ -1214,7 +1214,7 @@ FLAG DESCRIPTIONS
|
|
|
1214
1214
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
1215
1215
|
```
|
|
1216
1216
|
|
|
1217
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
1217
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/apex/generate/trigger.ts)_
|
|
1218
1218
|
|
|
1219
1219
|
## `sf apex get log`
|
|
1220
1220
|
|
|
@@ -1270,7 +1270,7 @@ FLAG DESCRIPTIONS
|
|
|
1270
1270
|
directory.
|
|
1271
1271
|
```
|
|
1272
1272
|
|
|
1273
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1273
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.6/src/commands/apex/get/log.ts)_
|
|
1274
1274
|
|
|
1275
1275
|
## `sf apex get test`
|
|
1276
1276
|
|
|
@@ -1330,7 +1330,7 @@ EXAMPLES
|
|
|
1330
1330
|
me@myorg'
|
|
1331
1331
|
```
|
|
1332
1332
|
|
|
1333
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1333
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.6/src/commands/apex/get/test.ts)_
|
|
1334
1334
|
|
|
1335
1335
|
## `sf apex list log`
|
|
1336
1336
|
|
|
@@ -1370,7 +1370,7 @@ EXAMPLES
|
|
|
1370
1370
|
$ sf apex list log --target-org me@my.org
|
|
1371
1371
|
```
|
|
1372
1372
|
|
|
1373
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1373
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.6/src/commands/apex/list/log.ts)_
|
|
1374
1374
|
|
|
1375
1375
|
## `sf apex run`
|
|
1376
1376
|
|
|
@@ -1417,7 +1417,7 @@ EXAMPLES
|
|
|
1417
1417
|
$ sf apex run
|
|
1418
1418
|
```
|
|
1419
1419
|
|
|
1420
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1420
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.6/src/commands/apex/run.ts)_
|
|
1421
1421
|
|
|
1422
1422
|
## `sf apex run test`
|
|
1423
1423
|
|
|
@@ -1563,7 +1563,7 @@ FLAG DESCRIPTIONS
|
|
|
1563
1563
|
--tests Test1 --tests Test2
|
|
1564
1564
|
```
|
|
1565
1565
|
|
|
1566
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1566
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.6/src/commands/apex/run/test.ts)_
|
|
1567
1567
|
|
|
1568
1568
|
## `sf apex tail log`
|
|
1569
1569
|
|
|
@@ -1606,7 +1606,7 @@ EXAMPLES
|
|
|
1606
1606
|
$ sf apex tail log --color --skip-trace-flag
|
|
1607
1607
|
```
|
|
1608
1608
|
|
|
1609
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1609
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.6/src/commands/apex/tail/log.ts)_
|
|
1610
1610
|
|
|
1611
1611
|
## `sf api request graphql`
|
|
1612
1612
|
|
|
@@ -1799,7 +1799,7 @@ EXAMPLES
|
|
|
1799
1799
|
$ sf autocomplete --refresh-cache
|
|
1800
1800
|
```
|
|
1801
1801
|
|
|
1802
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.
|
|
1802
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.39/src/commands/autocomplete/index.ts)_
|
|
1803
1803
|
|
|
1804
1804
|
## `sf commands`
|
|
1805
1805
|
|
|
@@ -2081,7 +2081,7 @@ EXAMPLES
|
|
|
2081
2081
|
$ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
|
|
2082
2082
|
```
|
|
2083
2083
|
|
|
2084
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2084
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/bulk/results.ts)_
|
|
2085
2085
|
|
|
2086
2086
|
## `sf data create file`
|
|
2087
2087
|
|
|
@@ -2130,7 +2130,7 @@ EXAMPLES
|
|
|
2130
2130
|
$ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
|
|
2131
2131
|
```
|
|
2132
2132
|
|
|
2133
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2133
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/create/file.ts)_
|
|
2134
2134
|
|
|
2135
2135
|
## `sf data create record`
|
|
2136
2136
|
|
|
@@ -2186,7 +2186,7 @@ EXAMPLES
|
|
|
2186
2186
|
TracedEntityId=01p17000000R6bLAAS"
|
|
2187
2187
|
```
|
|
2188
2188
|
|
|
2189
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2189
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/create/record.ts)_
|
|
2190
2190
|
|
|
2191
2191
|
## `sf data delete bulk`
|
|
2192
2192
|
|
|
@@ -2245,7 +2245,7 @@ FLAG DESCRIPTIONS
|
|
|
2245
2245
|
and can be enabled only by a system administrator.
|
|
2246
2246
|
```
|
|
2247
2247
|
|
|
2248
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2248
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/delete/bulk.ts)_
|
|
2249
2249
|
|
|
2250
2250
|
## `sf data delete record`
|
|
2251
2251
|
|
|
@@ -2306,7 +2306,7 @@ EXAMPLES
|
|
|
2306
2306
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2307
2307
|
```
|
|
2308
2308
|
|
|
2309
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2309
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/delete/record.ts)_
|
|
2310
2310
|
|
|
2311
2311
|
## `sf data delete resume`
|
|
2312
2312
|
|
|
@@ -2345,7 +2345,7 @@ EXAMPLES
|
|
|
2345
2345
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
2346
2346
|
```
|
|
2347
2347
|
|
|
2348
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2348
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/delete/resume.ts)_
|
|
2349
2349
|
|
|
2350
2350
|
## `sf data export bulk`
|
|
2351
2351
|
|
|
@@ -2412,7 +2412,7 @@ EXAMPLES
|
|
|
2412
2412
|
--result-format json --wait 10 --all-rows
|
|
2413
2413
|
```
|
|
2414
2414
|
|
|
2415
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2415
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/export/bulk.ts)_
|
|
2416
2416
|
|
|
2417
2417
|
## `sf data export resume`
|
|
2418
2418
|
|
|
@@ -2451,7 +2451,7 @@ EXAMPLES
|
|
|
2451
2451
|
$ sf data export resume --use-most-recent
|
|
2452
2452
|
```
|
|
2453
2453
|
|
|
2454
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2454
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/export/resume.ts)_
|
|
2455
2455
|
|
|
2456
2456
|
## `sf data export tree`
|
|
2457
2457
|
|
|
@@ -2511,7 +2511,7 @@ EXAMPLES
|
|
|
2511
2511
|
my-scratch
|
|
2512
2512
|
```
|
|
2513
2513
|
|
|
2514
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2514
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/export/tree.ts)_
|
|
2515
2515
|
|
|
2516
2516
|
## `sf data get record`
|
|
2517
2517
|
|
|
@@ -2575,7 +2575,7 @@ EXAMPLES
|
|
|
2575
2575
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2576
2576
|
```
|
|
2577
2577
|
|
|
2578
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2578
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/get/record.ts)_
|
|
2579
2579
|
|
|
2580
2580
|
## `sf data import bulk`
|
|
2581
2581
|
|
|
@@ -2627,7 +2627,7 @@ EXAMPLES
|
|
|
2627
2627
|
$ sf data import bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
2628
2628
|
```
|
|
2629
2629
|
|
|
2630
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2630
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/import/bulk.ts)_
|
|
2631
2631
|
|
|
2632
2632
|
## `sf data import resume`
|
|
2633
2633
|
|
|
@@ -2663,7 +2663,7 @@ EXAMPLES
|
|
|
2663
2663
|
$ sf data import resume --use-most-recent --target-org my-scratch
|
|
2664
2664
|
```
|
|
2665
2665
|
|
|
2666
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2666
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/import/resume.ts)_
|
|
2667
2667
|
|
|
2668
2668
|
## `sf data import tree`
|
|
2669
2669
|
|
|
@@ -2727,7 +2727,7 @@ FLAG DESCRIPTIONS
|
|
|
2727
2727
|
- files(array) - Files: An array of files paths to load
|
|
2728
2728
|
```
|
|
2729
2729
|
|
|
2730
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2730
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/import/tree.ts)_
|
|
2731
2731
|
|
|
2732
2732
|
## `sf data query`
|
|
2733
2733
|
|
|
@@ -2780,7 +2780,7 @@ EXAMPLES
|
|
|
2780
2780
|
$ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api
|
|
2781
2781
|
```
|
|
2782
2782
|
|
|
2783
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2783
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/query.ts)_
|
|
2784
2784
|
|
|
2785
2785
|
## `sf data resume`
|
|
2786
2786
|
|
|
@@ -2817,7 +2817,7 @@ EXAMPLES
|
|
|
2817
2817
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
2818
2818
|
```
|
|
2819
2819
|
|
|
2820
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2820
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/resume.ts)_
|
|
2821
2821
|
|
|
2822
2822
|
## `sf data search`
|
|
2823
2823
|
|
|
@@ -2867,7 +2867,7 @@ EXAMPLES
|
|
|
2867
2867
|
$ sf data search --file query.txt --target-org my-scratch --result-format csv
|
|
2868
2868
|
```
|
|
2869
2869
|
|
|
2870
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2870
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/search.ts)_
|
|
2871
2871
|
|
|
2872
2872
|
## `sf data update bulk`
|
|
2873
2873
|
|
|
@@ -2922,7 +2922,7 @@ EXAMPLES
|
|
|
2922
2922
|
$ sf data update bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
2923
2923
|
```
|
|
2924
2924
|
|
|
2925
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2925
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/update/bulk.ts)_
|
|
2926
2926
|
|
|
2927
2927
|
## `sf data update record`
|
|
2928
2928
|
|
|
@@ -2984,7 +2984,7 @@ EXAMPLES
|
|
|
2984
2984
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
2985
2985
|
```
|
|
2986
2986
|
|
|
2987
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2987
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/update/record.ts)_
|
|
2988
2988
|
|
|
2989
2989
|
## `sf data update resume`
|
|
2990
2990
|
|
|
@@ -3023,7 +3023,7 @@ EXAMPLES
|
|
|
3023
3023
|
$ sf data update resume --use-most-recent
|
|
3024
3024
|
```
|
|
3025
3025
|
|
|
3026
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3026
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/update/resume.ts)_
|
|
3027
3027
|
|
|
3028
3028
|
## `sf data upsert bulk`
|
|
3029
3029
|
|
|
@@ -3079,7 +3079,7 @@ EXAMPLES
|
|
|
3079
3079
|
my-scratch
|
|
3080
3080
|
```
|
|
3081
3081
|
|
|
3082
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3082
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/upsert/bulk.ts)_
|
|
3083
3083
|
|
|
3084
3084
|
## `sf data upsert resume`
|
|
3085
3085
|
|
|
@@ -3118,7 +3118,7 @@ EXAMPLES
|
|
|
3118
3118
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
3119
3119
|
```
|
|
3120
3120
|
|
|
3121
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3121
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/data/upsert/resume.ts)_
|
|
3122
3122
|
|
|
3123
3123
|
## `sf doctor`
|
|
3124
3124
|
|
|
@@ -3166,7 +3166,7 @@ EXAMPLES
|
|
|
3166
3166
|
$ sf doctor --plugin @salesforce/plugin-source
|
|
3167
3167
|
```
|
|
3168
3168
|
|
|
3169
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3169
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.96/src/commands/doctor.ts)_
|
|
3170
3170
|
|
|
3171
3171
|
## `sf force data bulk delete`
|
|
3172
3172
|
|
|
@@ -3213,7 +3213,7 @@ EXAMPLES
|
|
|
3213
3213
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
3214
3214
|
```
|
|
3215
3215
|
|
|
3216
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3216
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/force/data/bulk/delete.ts)_
|
|
3217
3217
|
|
|
3218
3218
|
## `sf force data bulk status`
|
|
3219
3219
|
|
|
@@ -3250,7 +3250,7 @@ EXAMPLES
|
|
|
3250
3250
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
3251
3251
|
```
|
|
3252
3252
|
|
|
3253
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3253
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/force/data/bulk/status.ts)_
|
|
3254
3254
|
|
|
3255
3255
|
## `sf force data bulk upsert`
|
|
3256
3256
|
|
|
@@ -3308,7 +3308,7 @@ EXAMPLES
|
|
|
3308
3308
|
--target-org my-scratch
|
|
3309
3309
|
```
|
|
3310
3310
|
|
|
3311
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3311
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.60/src/commands/force/data/bulk/upsert.ts)_
|
|
3312
3312
|
|
|
3313
3313
|
## `sf help [COMMAND]`
|
|
3314
3314
|
|
|
@@ -3368,7 +3368,7 @@ EXAMPLES
|
|
|
3368
3368
|
$ sf info releasenotes display --version latest
|
|
3369
3369
|
```
|
|
3370
3370
|
|
|
3371
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3371
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.96/src/commands/info/releasenotes/display.ts)_
|
|
3372
3372
|
|
|
3373
3373
|
## `sf lightning generate app`
|
|
3374
3374
|
|
|
@@ -3423,7 +3423,7 @@ FLAG DESCRIPTIONS
|
|
|
3423
3423
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3424
3424
|
```
|
|
3425
3425
|
|
|
3426
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
3426
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/lightning/generate/app.ts)_
|
|
3427
3427
|
|
|
3428
3428
|
## `sf lightning generate component`
|
|
3429
3429
|
|
|
@@ -3492,7 +3492,7 @@ FLAG DESCRIPTIONS
|
|
|
3492
3492
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3493
3493
|
```
|
|
3494
3494
|
|
|
3495
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
3495
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/lightning/generate/component.ts)_
|
|
3496
3496
|
|
|
3497
3497
|
## `sf lightning generate event`
|
|
3498
3498
|
|
|
@@ -3547,7 +3547,7 @@ FLAG DESCRIPTIONS
|
|
|
3547
3547
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3548
3548
|
```
|
|
3549
3549
|
|
|
3550
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
3550
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/lightning/generate/event.ts)_
|
|
3551
3551
|
|
|
3552
3552
|
## `sf lightning generate interface`
|
|
3553
3553
|
|
|
@@ -3602,7 +3602,7 @@ FLAG DESCRIPTIONS
|
|
|
3602
3602
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3603
3603
|
```
|
|
3604
3604
|
|
|
3605
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
3605
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/lightning/generate/interface.ts)_
|
|
3606
3606
|
|
|
3607
3607
|
## `sf lightning generate test`
|
|
3608
3608
|
|
|
@@ -3657,7 +3657,7 @@ FLAG DESCRIPTIONS
|
|
|
3657
3657
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
3658
3658
|
```
|
|
3659
3659
|
|
|
3660
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
3660
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/lightning/generate/test.ts)_
|
|
3661
3661
|
|
|
3662
3662
|
## `sf logic get test`
|
|
3663
3663
|
|
|
@@ -3705,7 +3705,7 @@ EXAMPLES
|
|
|
3705
3705
|
$ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
|
|
3706
3706
|
```
|
|
3707
3707
|
|
|
3708
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
3708
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.6/src/commands/logic/get/test.ts)_
|
|
3709
3709
|
|
|
3710
3710
|
## `sf logic run test`
|
|
3711
3711
|
|
|
@@ -3827,7 +3827,7 @@ FLAG DESCRIPTIONS
|
|
|
3827
3827
|
--tests Test1 --tests Test2
|
|
3828
3828
|
```
|
|
3829
3829
|
|
|
3830
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
3830
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.6/src/commands/logic/run/test.ts)_
|
|
3831
3831
|
|
|
3832
3832
|
## `sf org assign permset`
|
|
3833
3833
|
|
|
@@ -3873,7 +3873,7 @@ EXAMPLES
|
|
|
3873
3873
|
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
|
|
3874
3874
|
```
|
|
3875
3875
|
|
|
3876
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
3876
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/assign/permset.ts)_
|
|
3877
3877
|
|
|
3878
3878
|
## `sf org assign permsetlicense`
|
|
3879
3879
|
|
|
@@ -3920,7 +3920,7 @@ EXAMPLES
|
|
|
3920
3920
|
user3
|
|
3921
3921
|
```
|
|
3922
3922
|
|
|
3923
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
3923
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/assign/permsetlicense.ts)_
|
|
3924
3924
|
|
|
3925
3925
|
## `sf org create sandbox`
|
|
3926
3926
|
|
|
@@ -4054,7 +4054,7 @@ FLAG DESCRIPTIONS
|
|
|
4054
4054
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
4055
4055
|
```
|
|
4056
4056
|
|
|
4057
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4057
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/create/sandbox.ts)_
|
|
4058
4058
|
|
|
4059
4059
|
## `sf org create scratch`
|
|
4060
4060
|
|
|
@@ -4236,7 +4236,7 @@ FLAG DESCRIPTIONS
|
|
|
4236
4236
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4237
4237
|
```
|
|
4238
4238
|
|
|
4239
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4239
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/create/scratch.ts)_
|
|
4240
4240
|
|
|
4241
4241
|
## `sf org create user`
|
|
4242
4242
|
|
|
@@ -4344,7 +4344,7 @@ FLAG DESCRIPTIONS
|
|
|
4344
4344
|
might be different than what you specify in the definition file.
|
|
4345
4345
|
```
|
|
4346
4346
|
|
|
4347
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4347
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/create/user.ts)_
|
|
4348
4348
|
|
|
4349
4349
|
## `sf org delete sandbox`
|
|
4350
4350
|
|
|
@@ -4390,7 +4390,7 @@ EXAMPLES
|
|
|
4390
4390
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4391
4391
|
```
|
|
4392
4392
|
|
|
4393
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4393
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/delete/sandbox.ts)_
|
|
4394
4394
|
|
|
4395
4395
|
## `sf org delete scratch`
|
|
4396
4396
|
|
|
@@ -4434,7 +4434,7 @@ EXAMPLES
|
|
|
4434
4434
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4435
4435
|
```
|
|
4436
4436
|
|
|
4437
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4437
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/delete/scratch.ts)_
|
|
4438
4438
|
|
|
4439
4439
|
## `sf org disable tracking`
|
|
4440
4440
|
|
|
@@ -4473,7 +4473,7 @@ EXAMPLES
|
|
|
4473
4473
|
$ sf org disable tracking
|
|
4474
4474
|
```
|
|
4475
4475
|
|
|
4476
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4476
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/disable/tracking.ts)_
|
|
4477
4477
|
|
|
4478
4478
|
## `sf org display`
|
|
4479
4479
|
|
|
@@ -4518,7 +4518,7 @@ EXAMPLES
|
|
|
4518
4518
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4519
4519
|
```
|
|
4520
4520
|
|
|
4521
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4521
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/display.ts)_
|
|
4522
4522
|
|
|
4523
4523
|
## `sf org display user`
|
|
4524
4524
|
|
|
@@ -4557,7 +4557,7 @@ EXAMPLES
|
|
|
4557
4557
|
$ sf org display user --target-org me@my.org --json
|
|
4558
4558
|
```
|
|
4559
4559
|
|
|
4560
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4560
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/display/user.ts)_
|
|
4561
4561
|
|
|
4562
4562
|
## `sf org enable tracking`
|
|
4563
4563
|
|
|
@@ -4599,7 +4599,7 @@ EXAMPLES
|
|
|
4599
4599
|
$ sf org enable tracking
|
|
4600
4600
|
```
|
|
4601
4601
|
|
|
4602
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4602
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/enable/tracking.ts)_
|
|
4603
4603
|
|
|
4604
4604
|
## `sf org generate password`
|
|
4605
4605
|
|
|
@@ -4666,7 +4666,7 @@ EXAMPLES
|
|
|
4666
4666
|
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
|
|
4667
4667
|
```
|
|
4668
4668
|
|
|
4669
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4669
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/generate/password.ts)_
|
|
4670
4670
|
|
|
4671
4671
|
## `sf org list`
|
|
4672
4672
|
|
|
@@ -4705,7 +4705,7 @@ EXAMPLES
|
|
|
4705
4705
|
$ sf org list --clean
|
|
4706
4706
|
```
|
|
4707
4707
|
|
|
4708
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4708
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/list.ts)_
|
|
4709
4709
|
|
|
4710
4710
|
## `sf org list auth`
|
|
4711
4711
|
|
|
@@ -4737,7 +4737,7 @@ EXAMPLES
|
|
|
4737
4737
|
$ sf org list auth
|
|
4738
4738
|
```
|
|
4739
4739
|
|
|
4740
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
4740
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.18/src/commands/org/list/auth.ts)_
|
|
4741
4741
|
|
|
4742
4742
|
## `sf org list limits`
|
|
4743
4743
|
|
|
@@ -4777,7 +4777,7 @@ EXAMPLES
|
|
|
4777
4777
|
$ sf org list limits --target-org my-scratch-org
|
|
4778
4778
|
```
|
|
4779
4779
|
|
|
4780
|
-
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.
|
|
4780
|
+
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.71/src/commands/org/list/limits.ts)_
|
|
4781
4781
|
|
|
4782
4782
|
## `sf org list metadata`
|
|
4783
4783
|
|
|
@@ -4844,7 +4844,7 @@ FLAG DESCRIPTIONS
|
|
|
4844
4844
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4845
4845
|
```
|
|
4846
4846
|
|
|
4847
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4847
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/list/metadata.ts)_
|
|
4848
4848
|
|
|
4849
4849
|
## `sf org list metadata-types`
|
|
4850
4850
|
|
|
@@ -4899,7 +4899,7 @@ FLAG DESCRIPTIONS
|
|
|
4899
4899
|
Override the api version used for api requests made by this command
|
|
4900
4900
|
```
|
|
4901
4901
|
|
|
4902
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4902
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/list/metadata-types.ts)_
|
|
4903
4903
|
|
|
4904
4904
|
## `sf org list sobject record-counts`
|
|
4905
4905
|
|
|
@@ -4945,7 +4945,7 @@ EXAMPLES
|
|
|
4945
4945
|
$ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org
|
|
4946
4946
|
```
|
|
4947
4947
|
|
|
4948
|
-
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.
|
|
4948
|
+
_See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.71/src/commands/org/list/sobject/record-counts.ts)_
|
|
4949
4949
|
|
|
4950
4950
|
## `sf org list users`
|
|
4951
4951
|
|
|
@@ -4983,7 +4983,7 @@ EXAMPLES
|
|
|
4983
4983
|
$ sf org list users --target-org me@my.org
|
|
4984
4984
|
```
|
|
4985
4985
|
|
|
4986
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.
|
|
4986
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.6.41/src/commands/org/list/users.ts)_
|
|
4987
4987
|
|
|
4988
4988
|
## `sf org login access-token`
|
|
4989
4989
|
|
|
@@ -5037,7 +5037,7 @@ FLAG DESCRIPTIONS
|
|
|
5037
5037
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5038
5038
|
```
|
|
5039
5039
|
|
|
5040
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5040
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.18/src/commands/org/login/access-token.ts)_
|
|
5041
5041
|
|
|
5042
5042
|
## `sf org login jwt`
|
|
5043
5043
|
|
|
@@ -5128,7 +5128,7 @@ FLAG DESCRIPTIONS
|
|
|
5128
5128
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5129
5129
|
```
|
|
5130
5130
|
|
|
5131
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5131
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.18/src/commands/org/login/jwt.ts)_
|
|
5132
5132
|
|
|
5133
5133
|
## `sf org login sfdx-url`
|
|
5134
5134
|
|
|
@@ -5198,7 +5198,7 @@ EXAMPLES
|
|
|
5198
5198
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
5199
5199
|
```
|
|
5200
5200
|
|
|
5201
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5201
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.18/src/commands/org/login/sfdx-url.ts)_
|
|
5202
5202
|
|
|
5203
5203
|
## `sf org login web`
|
|
5204
5204
|
|
|
@@ -5303,7 +5303,7 @@ FLAG DESCRIPTIONS
|
|
|
5303
5303
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5304
5304
|
```
|
|
5305
5305
|
|
|
5306
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5306
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.18/src/commands/org/login/web.ts)_
|
|
5307
5307
|
|
|
5308
5308
|
## `sf org logout`
|
|
5309
5309
|
|
|
@@ -5369,7 +5369,7 @@ FLAG DESCRIPTIONS
|
|
|
5369
5369
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
5370
5370
|
```
|
|
5371
5371
|
|
|
5372
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5372
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.18/src/commands/org/logout.ts)_
|
|
5373
5373
|
|
|
5374
5374
|
## `sf org open`
|
|
5375
5375
|
|
|
@@ -5445,7 +5445,7 @@ EXAMPLES
|
|
|
5445
5445
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5446
5446
|
```
|
|
5447
5447
|
|
|
5448
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5448
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/open.ts)_
|
|
5449
5449
|
|
|
5450
5450
|
## `sf org open agent`
|
|
5451
5451
|
|
|
@@ -5496,7 +5496,7 @@ EXAMPLES
|
|
|
5496
5496
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5497
5497
|
```
|
|
5498
5498
|
|
|
5499
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5499
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/open/agent.ts)_
|
|
5500
5500
|
|
|
5501
5501
|
## `sf org refresh sandbox`
|
|
5502
5502
|
|
|
@@ -5599,7 +5599,7 @@ FLAG DESCRIPTIONS
|
|
|
5599
5599
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5600
5600
|
```
|
|
5601
5601
|
|
|
5602
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5602
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/refresh/sandbox.ts)_
|
|
5603
5603
|
|
|
5604
5604
|
## `sf org resume sandbox`
|
|
5605
5605
|
|
|
@@ -5662,7 +5662,7 @@ FLAG DESCRIPTIONS
|
|
|
5662
5662
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5663
5663
|
```
|
|
5664
5664
|
|
|
5665
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5665
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/resume/sandbox.ts)_
|
|
5666
5666
|
|
|
5667
5667
|
## `sf org resume scratch`
|
|
5668
5668
|
|
|
@@ -5715,7 +5715,7 @@ FLAG DESCRIPTIONS
|
|
|
5715
5715
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5716
5716
|
```
|
|
5717
5717
|
|
|
5718
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5718
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.43/src/commands/org/resume/scratch.ts)_
|
|
5719
5719
|
|
|
5720
5720
|
## `sf package convert`
|
|
5721
5721
|
|
|
@@ -7399,7 +7399,7 @@ EXAMPLES
|
|
|
7399
7399
|
$ sf plugins
|
|
7400
7400
|
```
|
|
7401
7401
|
|
|
7402
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7402
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.53/src/commands/plugins/index.ts)_
|
|
7403
7403
|
|
|
7404
7404
|
## `sf plugins discover`
|
|
7405
7405
|
|
|
@@ -7444,7 +7444,7 @@ EXAMPLES
|
|
|
7444
7444
|
$ sf plugins inspect @salesforce/plugin-packaging
|
|
7445
7445
|
```
|
|
7446
7446
|
|
|
7447
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7447
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.53/src/commands/plugins/inspect.ts)_
|
|
7448
7448
|
|
|
7449
7449
|
## `sf plugins install PLUGIN`
|
|
7450
7450
|
|
|
@@ -7493,7 +7493,7 @@ EXAMPLES
|
|
|
7493
7493
|
$ sf plugins install someuser/someplugin
|
|
7494
7494
|
```
|
|
7495
7495
|
|
|
7496
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7496
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.53/src/commands/plugins/install.ts)_
|
|
7497
7497
|
|
|
7498
7498
|
## `sf plugins link PATH`
|
|
7499
7499
|
|
|
@@ -7524,7 +7524,7 @@ EXAMPLES
|
|
|
7524
7524
|
$ sf plugins link @salesforce/plugin-packaging
|
|
7525
7525
|
```
|
|
7526
7526
|
|
|
7527
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7527
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.53/src/commands/plugins/link.ts)_
|
|
7528
7528
|
|
|
7529
7529
|
## `sf plugins reset`
|
|
7530
7530
|
|
|
@@ -7539,7 +7539,7 @@ FLAGS
|
|
|
7539
7539
|
--reinstall Reinstall all plugins after uninstalling.
|
|
7540
7540
|
```
|
|
7541
7541
|
|
|
7542
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7542
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.53/src/commands/plugins/reset.ts)_
|
|
7543
7543
|
|
|
7544
7544
|
## `sf plugins trust verify`
|
|
7545
7545
|
|
|
@@ -7596,7 +7596,7 @@ EXAMPLES
|
|
|
7596
7596
|
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
7597
7597
|
```
|
|
7598
7598
|
|
|
7599
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7599
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.53/src/commands/plugins/uninstall.ts)_
|
|
7600
7600
|
|
|
7601
7601
|
## `sf plugins update`
|
|
7602
7602
|
|
|
@@ -7614,7 +7614,7 @@ DESCRIPTION
|
|
|
7614
7614
|
Update installed plugins.
|
|
7615
7615
|
```
|
|
7616
7616
|
|
|
7617
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7617
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.53/src/commands/plugins/update.ts)_
|
|
7618
7618
|
|
|
7619
7619
|
## `sf project convert mdapi`
|
|
7620
7620
|
|
|
@@ -8971,7 +8971,7 @@ FLAG DESCRIPTIONS
|
|
|
8971
8971
|
Override the api version used for api requests made by this command
|
|
8972
8972
|
```
|
|
8973
8973
|
|
|
8974
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
8974
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/project/generate.ts)_
|
|
8975
8975
|
|
|
8976
8976
|
## `sf project generate manifest`
|
|
8977
8977
|
|
|
@@ -9447,7 +9447,7 @@ FLAG DESCRIPTIONS
|
|
|
9447
9447
|
If you don't specify this flag, the command prompts you to choose from your local objects.
|
|
9448
9448
|
```
|
|
9449
9449
|
|
|
9450
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9450
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.79/src/commands/schema/generate/field.ts)_
|
|
9451
9451
|
|
|
9452
9452
|
## `sf schema generate platformevent`
|
|
9453
9453
|
|
|
@@ -9479,7 +9479,7 @@ EXAMPLES
|
|
|
9479
9479
|
$ sf schema generate platformevent --label "My Platform Event"
|
|
9480
9480
|
```
|
|
9481
9481
|
|
|
9482
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9482
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.79/src/commands/schema/generate/platformevent.ts)_
|
|
9483
9483
|
|
|
9484
9484
|
## `sf schema generate sobject`
|
|
9485
9485
|
|
|
@@ -9536,7 +9536,7 @@ FLAG DESCRIPTIONS
|
|
|
9536
9536
|
- Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
|
|
9537
9537
|
```
|
|
9538
9538
|
|
|
9539
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9539
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.79/src/commands/schema/generate/sobject.ts)_
|
|
9540
9540
|
|
|
9541
9541
|
## `sf schema generate tab`
|
|
9542
9542
|
|
|
@@ -9584,7 +9584,7 @@ FLAG DESCRIPTIONS
|
|
|
9584
9584
|
The API name for a custom object always ends in `__c`, such as `MyObject__c`.
|
|
9585
9585
|
```
|
|
9586
9586
|
|
|
9587
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9587
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.79/src/commands/schema/generate/tab.ts)_
|
|
9588
9588
|
|
|
9589
9589
|
## `sf search`
|
|
9590
9590
|
|
|
@@ -9600,7 +9600,7 @@ DESCRIPTION
|
|
|
9600
9600
|
Once you select a command, hit enter and it will show the help for that command.
|
|
9601
9601
|
```
|
|
9602
9602
|
|
|
9603
|
-
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.
|
|
9603
|
+
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.35/src/commands/search.ts)_
|
|
9604
9604
|
|
|
9605
9605
|
## `sf sobject describe`
|
|
9606
9606
|
|
|
@@ -9647,7 +9647,7 @@ EXAMPLES
|
|
|
9647
9647
|
$ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
|
|
9648
9648
|
```
|
|
9649
9649
|
|
|
9650
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
9650
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.88/src/commands/sobject/describe.ts)_
|
|
9651
9651
|
|
|
9652
9652
|
## `sf sobject list`
|
|
9653
9653
|
|
|
@@ -9686,7 +9686,7 @@ EXAMPLES
|
|
|
9686
9686
|
$ sf sobject list --sobject custom --target-org my-scratch-org
|
|
9687
9687
|
```
|
|
9688
9688
|
|
|
9689
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
9689
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.88/src/commands/sobject/list.ts)_
|
|
9690
9690
|
|
|
9691
9691
|
## `sf static-resource generate`
|
|
9692
9692
|
|
|
@@ -9748,7 +9748,7 @@ FLAG DESCRIPTIONS
|
|
|
9748
9748
|
etc.
|
|
9749
9749
|
```
|
|
9750
9750
|
|
|
9751
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
9751
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/static-resource/generate.ts)_
|
|
9752
9752
|
|
|
9753
9753
|
## `sf update [CHANNEL]`
|
|
9754
9754
|
|
|
@@ -9786,7 +9786,7 @@ EXAMPLES
|
|
|
9786
9786
|
$ sf update --available
|
|
9787
9787
|
```
|
|
9788
9788
|
|
|
9789
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
9789
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.14/src/commands/update.ts)_
|
|
9790
9790
|
|
|
9791
9791
|
## `sf version`
|
|
9792
9792
|
|
|
@@ -9862,7 +9862,7 @@ FLAG DESCRIPTIONS
|
|
|
9862
9862
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9863
9863
|
```
|
|
9864
9864
|
|
|
9865
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
9865
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/visualforce/generate/component.ts)_
|
|
9866
9866
|
|
|
9867
9867
|
## `sf visualforce generate page`
|
|
9868
9868
|
|
|
@@ -9912,7 +9912,7 @@ FLAG DESCRIPTIONS
|
|
|
9912
9912
|
The name can be up to 40 characters and must start with a letter.
|
|
9913
9913
|
```
|
|
9914
9914
|
|
|
9915
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.
|
|
9915
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.3.71/src/commands/visualforce/generate/page.ts)_
|
|
9916
9916
|
|
|
9917
9917
|
## `sf which`
|
|
9918
9918
|
|