@salesforce/cli 2.108.3 → 2.108.5
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 +79 -73
- package/npm-shrinkwrap.json +746 -162
- package/oclif.lock +530 -189
- package/oclif.manifest.json +1 -1
- package/package.json +11 -11
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.108.
|
|
28
|
+
@salesforce/cli/2.108.5 linux-x64 node-v22.19.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -243,7 +243,7 @@ EXAMPLES
|
|
|
243
243
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
244
244
|
```
|
|
245
245
|
|
|
246
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
246
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/activate.ts)_
|
|
247
247
|
|
|
248
248
|
## `sf agent create`
|
|
249
249
|
|
|
@@ -305,7 +305,7 @@ EXAMPLES
|
|
|
305
305
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
306
306
|
```
|
|
307
307
|
|
|
308
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
308
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/create.ts)_
|
|
309
309
|
|
|
310
310
|
## `sf agent deactivate`
|
|
311
311
|
|
|
@@ -345,7 +345,7 @@ EXAMPLES
|
|
|
345
345
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
346
346
|
```
|
|
347
347
|
|
|
348
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
348
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/deactivate.ts)_
|
|
349
349
|
|
|
350
350
|
## `sf agent generate agent-spec`
|
|
351
351
|
|
|
@@ -450,7 +450,7 @@ EXAMPLES
|
|
|
450
450
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
451
451
|
```
|
|
452
452
|
|
|
453
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
453
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/generate/agent-spec.ts)_
|
|
454
454
|
|
|
455
455
|
## `sf agent generate template`
|
|
456
456
|
|
|
@@ -498,7 +498,7 @@ EXAMPLES
|
|
|
498
498
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
499
499
|
```
|
|
500
500
|
|
|
501
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
501
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/generate/template.ts)_
|
|
502
502
|
|
|
503
503
|
## `sf agent generate test-spec`
|
|
504
504
|
|
|
@@ -559,7 +559,7 @@ EXAMPLES
|
|
|
559
559
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
560
560
|
```
|
|
561
561
|
|
|
562
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
562
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/generate/test-spec.ts)_
|
|
563
563
|
|
|
564
564
|
## `sf agent preview`
|
|
565
565
|
|
|
@@ -623,7 +623,7 @@ EXAMPLES
|
|
|
623
623
|
transcripts/my-preview
|
|
624
624
|
```
|
|
625
625
|
|
|
626
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
626
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/preview.ts)_
|
|
627
627
|
|
|
628
628
|
## `sf agent test create`
|
|
629
629
|
|
|
@@ -678,7 +678,7 @@ EXAMPLES
|
|
|
678
678
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
679
679
|
```
|
|
680
680
|
|
|
681
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
681
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/create.ts)_
|
|
682
682
|
|
|
683
683
|
## `sf agent test list`
|
|
684
684
|
|
|
@@ -713,7 +713,7 @@ EXAMPLES
|
|
|
713
713
|
$ sf agent test list --target-org my-org
|
|
714
714
|
```
|
|
715
715
|
|
|
716
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
716
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/list.ts)_
|
|
717
717
|
|
|
718
718
|
## `sf agent test results`
|
|
719
719
|
|
|
@@ -779,7 +779,7 @@ FLAG DESCRIPTIONS
|
|
|
779
779
|
expression when using custom evaluations.
|
|
780
780
|
```
|
|
781
781
|
|
|
782
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
782
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/results.ts)_
|
|
783
783
|
|
|
784
784
|
## `sf agent test resume`
|
|
785
785
|
|
|
@@ -852,7 +852,7 @@ FLAG DESCRIPTIONS
|
|
|
852
852
|
expression when using custom evaluations.
|
|
853
853
|
```
|
|
854
854
|
|
|
855
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
855
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/resume.ts)_
|
|
856
856
|
|
|
857
857
|
## `sf agent test run`
|
|
858
858
|
|
|
@@ -926,7 +926,7 @@ FLAG DESCRIPTIONS
|
|
|
926
926
|
expression when using custom evaluations.
|
|
927
927
|
```
|
|
928
928
|
|
|
929
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
929
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.13/src/commands/agent/test/run.ts)_
|
|
930
930
|
|
|
931
931
|
## `sf alias list`
|
|
932
932
|
|
|
@@ -1269,7 +1269,7 @@ FLAG DESCRIPTIONS
|
|
|
1269
1269
|
directory.
|
|
1270
1270
|
```
|
|
1271
1271
|
|
|
1272
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1272
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/get/log.ts)_
|
|
1273
1273
|
|
|
1274
1274
|
## `sf apex get test`
|
|
1275
1275
|
|
|
@@ -1329,7 +1329,7 @@ EXAMPLES
|
|
|
1329
1329
|
me@myorg'
|
|
1330
1330
|
```
|
|
1331
1331
|
|
|
1332
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1332
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/get/test.ts)_
|
|
1333
1333
|
|
|
1334
1334
|
## `sf apex list log`
|
|
1335
1335
|
|
|
@@ -1369,7 +1369,7 @@ EXAMPLES
|
|
|
1369
1369
|
$ sf apex list log --target-org me@my.org
|
|
1370
1370
|
```
|
|
1371
1371
|
|
|
1372
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1372
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/list/log.ts)_
|
|
1373
1373
|
|
|
1374
1374
|
## `sf apex run`
|
|
1375
1375
|
|
|
@@ -1416,7 +1416,7 @@ EXAMPLES
|
|
|
1416
1416
|
$ sf apex run
|
|
1417
1417
|
```
|
|
1418
1418
|
|
|
1419
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1419
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/run.ts)_
|
|
1420
1420
|
|
|
1421
1421
|
## `sf apex run test`
|
|
1422
1422
|
|
|
@@ -1562,7 +1562,7 @@ FLAG DESCRIPTIONS
|
|
|
1562
1562
|
--tests Test1 --tests Test2
|
|
1563
1563
|
```
|
|
1564
1564
|
|
|
1565
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1565
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/run/test.ts)_
|
|
1566
1566
|
|
|
1567
1567
|
## `sf apex tail log`
|
|
1568
1568
|
|
|
@@ -1605,7 +1605,7 @@ EXAMPLES
|
|
|
1605
1605
|
$ sf apex tail log --color --skip-trace-flag
|
|
1606
1606
|
```
|
|
1607
1607
|
|
|
1608
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
1608
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/apex/tail/log.ts)_
|
|
1609
1609
|
|
|
1610
1610
|
## `sf api request graphql`
|
|
1611
1611
|
|
|
@@ -1798,7 +1798,7 @@ EXAMPLES
|
|
|
1798
1798
|
$ sf autocomplete --refresh-cache
|
|
1799
1799
|
```
|
|
1800
1800
|
|
|
1801
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.
|
|
1801
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.35/src/commands/autocomplete/index.ts)_
|
|
1802
1802
|
|
|
1803
1803
|
## `sf commands`
|
|
1804
1804
|
|
|
@@ -2080,7 +2080,7 @@ EXAMPLES
|
|
|
2080
2080
|
$ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
|
|
2081
2081
|
```
|
|
2082
2082
|
|
|
2083
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2083
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/bulk/results.ts)_
|
|
2084
2084
|
|
|
2085
2085
|
## `sf data create file`
|
|
2086
2086
|
|
|
@@ -2129,7 +2129,7 @@ EXAMPLES
|
|
|
2129
2129
|
$ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
|
|
2130
2130
|
```
|
|
2131
2131
|
|
|
2132
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2132
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/create/file.ts)_
|
|
2133
2133
|
|
|
2134
2134
|
## `sf data create record`
|
|
2135
2135
|
|
|
@@ -2185,7 +2185,7 @@ EXAMPLES
|
|
|
2185
2185
|
TracedEntityId=01p17000000R6bLAAS"
|
|
2186
2186
|
```
|
|
2187
2187
|
|
|
2188
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2188
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/create/record.ts)_
|
|
2189
2189
|
|
|
2190
2190
|
## `sf data delete bulk`
|
|
2191
2191
|
|
|
@@ -2244,7 +2244,7 @@ FLAG DESCRIPTIONS
|
|
|
2244
2244
|
and can be enabled only by a system administrator.
|
|
2245
2245
|
```
|
|
2246
2246
|
|
|
2247
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2247
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/delete/bulk.ts)_
|
|
2248
2248
|
|
|
2249
2249
|
## `sf data delete record`
|
|
2250
2250
|
|
|
@@ -2305,7 +2305,7 @@ EXAMPLES
|
|
|
2305
2305
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2306
2306
|
```
|
|
2307
2307
|
|
|
2308
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2308
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/delete/record.ts)_
|
|
2309
2309
|
|
|
2310
2310
|
## `sf data delete resume`
|
|
2311
2311
|
|
|
@@ -2344,7 +2344,7 @@ EXAMPLES
|
|
|
2344
2344
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
2345
2345
|
```
|
|
2346
2346
|
|
|
2347
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2347
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/delete/resume.ts)_
|
|
2348
2348
|
|
|
2349
2349
|
## `sf data export bulk`
|
|
2350
2350
|
|
|
@@ -2411,7 +2411,7 @@ EXAMPLES
|
|
|
2411
2411
|
--result-format json --wait 10 --all-rows
|
|
2412
2412
|
```
|
|
2413
2413
|
|
|
2414
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2414
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/export/bulk.ts)_
|
|
2415
2415
|
|
|
2416
2416
|
## `sf data export resume`
|
|
2417
2417
|
|
|
@@ -2450,7 +2450,7 @@ EXAMPLES
|
|
|
2450
2450
|
$ sf data export resume --use-most-recent
|
|
2451
2451
|
```
|
|
2452
2452
|
|
|
2453
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2453
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/export/resume.ts)_
|
|
2454
2454
|
|
|
2455
2455
|
## `sf data export tree`
|
|
2456
2456
|
|
|
@@ -2510,7 +2510,7 @@ EXAMPLES
|
|
|
2510
2510
|
my-scratch
|
|
2511
2511
|
```
|
|
2512
2512
|
|
|
2513
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2513
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/export/tree.ts)_
|
|
2514
2514
|
|
|
2515
2515
|
## `sf data get record`
|
|
2516
2516
|
|
|
@@ -2574,7 +2574,7 @@ EXAMPLES
|
|
|
2574
2574
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2575
2575
|
```
|
|
2576
2576
|
|
|
2577
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2577
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/get/record.ts)_
|
|
2578
2578
|
|
|
2579
2579
|
## `sf data import bulk`
|
|
2580
2580
|
|
|
@@ -2626,7 +2626,7 @@ EXAMPLES
|
|
|
2626
2626
|
$ sf data import bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
2627
2627
|
```
|
|
2628
2628
|
|
|
2629
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2629
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/import/bulk.ts)_
|
|
2630
2630
|
|
|
2631
2631
|
## `sf data import resume`
|
|
2632
2632
|
|
|
@@ -2662,7 +2662,7 @@ EXAMPLES
|
|
|
2662
2662
|
$ sf data import resume --use-most-recent --target-org my-scratch
|
|
2663
2663
|
```
|
|
2664
2664
|
|
|
2665
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2665
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/import/resume.ts)_
|
|
2666
2666
|
|
|
2667
2667
|
## `sf data import tree`
|
|
2668
2668
|
|
|
@@ -2726,7 +2726,7 @@ FLAG DESCRIPTIONS
|
|
|
2726
2726
|
- files(array) - Files: An array of files paths to load
|
|
2727
2727
|
```
|
|
2728
2728
|
|
|
2729
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2729
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/import/tree.ts)_
|
|
2730
2730
|
|
|
2731
2731
|
## `sf data query`
|
|
2732
2732
|
|
|
@@ -2779,7 +2779,7 @@ EXAMPLES
|
|
|
2779
2779
|
$ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api
|
|
2780
2780
|
```
|
|
2781
2781
|
|
|
2782
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2782
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/query.ts)_
|
|
2783
2783
|
|
|
2784
2784
|
## `sf data resume`
|
|
2785
2785
|
|
|
@@ -2816,7 +2816,7 @@ EXAMPLES
|
|
|
2816
2816
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
2817
2817
|
```
|
|
2818
2818
|
|
|
2819
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2819
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/resume.ts)_
|
|
2820
2820
|
|
|
2821
2821
|
## `sf data search`
|
|
2822
2822
|
|
|
@@ -2866,7 +2866,7 @@ EXAMPLES
|
|
|
2866
2866
|
$ sf data search --file query.txt --target-org my-scratch --result-format csv
|
|
2867
2867
|
```
|
|
2868
2868
|
|
|
2869
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2869
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/search.ts)_
|
|
2870
2870
|
|
|
2871
2871
|
## `sf data update bulk`
|
|
2872
2872
|
|
|
@@ -2921,7 +2921,7 @@ EXAMPLES
|
|
|
2921
2921
|
$ sf data update bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
2922
2922
|
```
|
|
2923
2923
|
|
|
2924
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2924
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/update/bulk.ts)_
|
|
2925
2925
|
|
|
2926
2926
|
## `sf data update record`
|
|
2927
2927
|
|
|
@@ -2983,7 +2983,7 @@ EXAMPLES
|
|
|
2983
2983
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
2984
2984
|
```
|
|
2985
2985
|
|
|
2986
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2986
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/update/record.ts)_
|
|
2987
2987
|
|
|
2988
2988
|
## `sf data update resume`
|
|
2989
2989
|
|
|
@@ -3022,7 +3022,7 @@ EXAMPLES
|
|
|
3022
3022
|
$ sf data update resume --use-most-recent
|
|
3023
3023
|
```
|
|
3024
3024
|
|
|
3025
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3025
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/update/resume.ts)_
|
|
3026
3026
|
|
|
3027
3027
|
## `sf data upsert bulk`
|
|
3028
3028
|
|
|
@@ -3078,7 +3078,7 @@ EXAMPLES
|
|
|
3078
3078
|
my-scratch
|
|
3079
3079
|
```
|
|
3080
3080
|
|
|
3081
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3081
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/upsert/bulk.ts)_
|
|
3082
3082
|
|
|
3083
3083
|
## `sf data upsert resume`
|
|
3084
3084
|
|
|
@@ -3117,7 +3117,7 @@ EXAMPLES
|
|
|
3117
3117
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
3118
3118
|
```
|
|
3119
3119
|
|
|
3120
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3120
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/data/upsert/resume.ts)_
|
|
3121
3121
|
|
|
3122
3122
|
## `sf doctor`
|
|
3123
3123
|
|
|
@@ -3165,7 +3165,7 @@ EXAMPLES
|
|
|
3165
3165
|
$ sf doctor --plugin @salesforce/plugin-source
|
|
3166
3166
|
```
|
|
3167
3167
|
|
|
3168
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3168
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.88/src/commands/doctor.ts)_
|
|
3169
3169
|
|
|
3170
3170
|
## `sf force data bulk delete`
|
|
3171
3171
|
|
|
@@ -3212,7 +3212,7 @@ EXAMPLES
|
|
|
3212
3212
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
3213
3213
|
```
|
|
3214
3214
|
|
|
3215
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3215
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/force/data/bulk/delete.ts)_
|
|
3216
3216
|
|
|
3217
3217
|
## `sf force data bulk status`
|
|
3218
3218
|
|
|
@@ -3249,7 +3249,7 @@ EXAMPLES
|
|
|
3249
3249
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
3250
3250
|
```
|
|
3251
3251
|
|
|
3252
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3252
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/force/data/bulk/status.ts)_
|
|
3253
3253
|
|
|
3254
3254
|
## `sf force data bulk upsert`
|
|
3255
3255
|
|
|
@@ -3307,7 +3307,7 @@ EXAMPLES
|
|
|
3307
3307
|
--target-org my-scratch
|
|
3308
3308
|
```
|
|
3309
3309
|
|
|
3310
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3310
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.57/src/commands/force/data/bulk/upsert.ts)_
|
|
3311
3311
|
|
|
3312
3312
|
## `sf help [COMMAND]`
|
|
3313
3313
|
|
|
@@ -3367,7 +3367,7 @@ EXAMPLES
|
|
|
3367
3367
|
$ sf info releasenotes display --version latest
|
|
3368
3368
|
```
|
|
3369
3369
|
|
|
3370
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3370
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.88/src/commands/info/releasenotes/display.ts)_
|
|
3371
3371
|
|
|
3372
3372
|
## `sf lightning generate app`
|
|
3373
3373
|
|
|
@@ -3704,7 +3704,7 @@ EXAMPLES
|
|
|
3704
3704
|
$ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
|
|
3705
3705
|
```
|
|
3706
3706
|
|
|
3707
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
3707
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/logic/get/test.ts)_
|
|
3708
3708
|
|
|
3709
3709
|
## `sf logic run test`
|
|
3710
3710
|
|
|
@@ -3753,11 +3753,16 @@ DESCRIPTION
|
|
|
3753
3753
|
retrieve the results. If you want to wait for the test run to complete and see the results in the command output, use
|
|
3754
3754
|
the --synchronous flag.
|
|
3755
3755
|
|
|
3756
|
-
To run specific tests, use the --tests flag
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
--test-category
|
|
3760
|
-
the
|
|
3756
|
+
To run specific tests, use the --tests flag and pass it the names of Apex and Flow tests. For Apex, simply specify the
|
|
3757
|
+
name of the Apex test class. For Flows, use the format "FlowTesting.<name-of-flow-test>". To find the name of all the
|
|
3758
|
+
flow tests in your org, run this command and specify the Flow category, such as "sf logic run test --synchronous
|
|
3759
|
+
--test-category Flow --test-level RunAllTestsInOrg". The command displays a table of all the flow tests it ran; see
|
|
3760
|
+
the "TEST NAME" column for the full name of all available flow tests in your org.
|
|
3761
|
+
|
|
3762
|
+
You can also run specific test methods, although if you run the tests synchronously, the methods must belong to a
|
|
3763
|
+
single Apex class or Flow test. To run all tests of a certain category, use --test-category and --test-level together.
|
|
3764
|
+
If neither of these flags is specified, all local tests for all categories are run by default. You can also use the
|
|
3765
|
+
--class-names and --suite-names flags to run Apex test classes or suites.
|
|
3761
3766
|
|
|
3762
3767
|
To see code coverage results, use the --code-coverage flag with --result-format. The output displays a high-level
|
|
3763
3768
|
summary of the test run and the code coverage values for the tested classes or flows. If you specify human-readable
|
|
@@ -3769,7 +3774,8 @@ DESCRIPTION
|
|
|
3769
3774
|
EXAMPLES
|
|
3770
3775
|
Run a mix of specific Apex and Flow tests asynchronously in your default org:
|
|
3771
3776
|
|
|
3772
|
-
$ sf logic run test --tests
|
|
3777
|
+
$ sf logic run test --tests \
|
|
3778
|
+
MyApexClassTest,FlowTesting.Modify_Account_Desc.Modify_Account_Desc_TestAccountDescription
|
|
3773
3779
|
|
|
3774
3780
|
Run all local Apex and Flow tests and wait for the results to complete; run the tests in the org with alias
|
|
3775
3781
|
"my-scratch":
|
|
@@ -3820,7 +3826,7 @@ FLAG DESCRIPTIONS
|
|
|
3820
3826
|
--tests Test1 --tests Test2
|
|
3821
3827
|
```
|
|
3822
3828
|
|
|
3823
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.
|
|
3829
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.8.1/src/commands/logic/run/test.ts)_
|
|
3824
3830
|
|
|
3825
3831
|
## `sf org assign permset`
|
|
3826
3832
|
|
|
@@ -4047,7 +4053,7 @@ FLAG DESCRIPTIONS
|
|
|
4047
4053
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
4048
4054
|
```
|
|
4049
4055
|
|
|
4050
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4056
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/create/sandbox.ts)_
|
|
4051
4057
|
|
|
4052
4058
|
## `sf org create scratch`
|
|
4053
4059
|
|
|
@@ -4229,7 +4235,7 @@ FLAG DESCRIPTIONS
|
|
|
4229
4235
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4230
4236
|
```
|
|
4231
4237
|
|
|
4232
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4238
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/create/scratch.ts)_
|
|
4233
4239
|
|
|
4234
4240
|
## `sf org create user`
|
|
4235
4241
|
|
|
@@ -4383,7 +4389,7 @@ EXAMPLES
|
|
|
4383
4389
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4384
4390
|
```
|
|
4385
4391
|
|
|
4386
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4392
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/delete/sandbox.ts)_
|
|
4387
4393
|
|
|
4388
4394
|
## `sf org delete scratch`
|
|
4389
4395
|
|
|
@@ -4427,7 +4433,7 @@ EXAMPLES
|
|
|
4427
4433
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4428
4434
|
```
|
|
4429
4435
|
|
|
4430
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4436
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/delete/scratch.ts)_
|
|
4431
4437
|
|
|
4432
4438
|
## `sf org disable tracking`
|
|
4433
4439
|
|
|
@@ -4466,7 +4472,7 @@ EXAMPLES
|
|
|
4466
4472
|
$ sf org disable tracking
|
|
4467
4473
|
```
|
|
4468
4474
|
|
|
4469
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4475
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/disable/tracking.ts)_
|
|
4470
4476
|
|
|
4471
4477
|
## `sf org display`
|
|
4472
4478
|
|
|
@@ -4511,7 +4517,7 @@ EXAMPLES
|
|
|
4511
4517
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4512
4518
|
```
|
|
4513
4519
|
|
|
4514
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4520
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/display.ts)_
|
|
4515
4521
|
|
|
4516
4522
|
## `sf org display user`
|
|
4517
4523
|
|
|
@@ -4592,7 +4598,7 @@ EXAMPLES
|
|
|
4592
4598
|
$ sf org enable tracking
|
|
4593
4599
|
```
|
|
4594
4600
|
|
|
4595
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4601
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/enable/tracking.ts)_
|
|
4596
4602
|
|
|
4597
4603
|
## `sf org generate password`
|
|
4598
4604
|
|
|
@@ -4698,7 +4704,7 @@ EXAMPLES
|
|
|
4698
4704
|
$ sf org list --clean
|
|
4699
4705
|
```
|
|
4700
4706
|
|
|
4701
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4707
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/list.ts)_
|
|
4702
4708
|
|
|
4703
4709
|
## `sf org list auth`
|
|
4704
4710
|
|
|
@@ -4837,7 +4843,7 @@ FLAG DESCRIPTIONS
|
|
|
4837
4843
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4838
4844
|
```
|
|
4839
4845
|
|
|
4840
|
-
_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.30/src/commands/org/list/metadata.ts)_
|
|
4841
4847
|
|
|
4842
4848
|
## `sf org list metadata-types`
|
|
4843
4849
|
|
|
@@ -4892,7 +4898,7 @@ FLAG DESCRIPTIONS
|
|
|
4892
4898
|
Override the api version used for api requests made by this command
|
|
4893
4899
|
```
|
|
4894
4900
|
|
|
4895
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
4901
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/list/metadata-types.ts)_
|
|
4896
4902
|
|
|
4897
4903
|
## `sf org list sobject record-counts`
|
|
4898
4904
|
|
|
@@ -5438,7 +5444,7 @@ EXAMPLES
|
|
|
5438
5444
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5439
5445
|
```
|
|
5440
5446
|
|
|
5441
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5447
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/open.ts)_
|
|
5442
5448
|
|
|
5443
5449
|
## `sf org open agent`
|
|
5444
5450
|
|
|
@@ -5489,7 +5495,7 @@ EXAMPLES
|
|
|
5489
5495
|
$ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
|
|
5490
5496
|
```
|
|
5491
5497
|
|
|
5492
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5498
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/open/agent.ts)_
|
|
5493
5499
|
|
|
5494
5500
|
## `sf org refresh sandbox`
|
|
5495
5501
|
|
|
@@ -5592,7 +5598,7 @@ FLAG DESCRIPTIONS
|
|
|
5592
5598
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5593
5599
|
```
|
|
5594
5600
|
|
|
5595
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5601
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/refresh/sandbox.ts)_
|
|
5596
5602
|
|
|
5597
5603
|
## `sf org resume sandbox`
|
|
5598
5604
|
|
|
@@ -5655,7 +5661,7 @@ FLAG DESCRIPTIONS
|
|
|
5655
5661
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5656
5662
|
```
|
|
5657
5663
|
|
|
5658
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5664
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/resume/sandbox.ts)_
|
|
5659
5665
|
|
|
5660
5666
|
## `sf org resume scratch`
|
|
5661
5667
|
|
|
@@ -5708,7 +5714,7 @@ FLAG DESCRIPTIONS
|
|
|
5708
5714
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5709
5715
|
```
|
|
5710
5716
|
|
|
5711
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.
|
|
5717
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.30/src/commands/org/resume/scratch.ts)_
|
|
5712
5718
|
|
|
5713
5719
|
## `sf package convert`
|
|
5714
5720
|
|
|
@@ -9542,7 +9548,7 @@ DESCRIPTION
|
|
|
9542
9548
|
Once you select a command, hit enter and it will show the help for that command.
|
|
9543
9549
|
```
|
|
9544
9550
|
|
|
9545
|
-
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.
|
|
9551
|
+
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.31/src/commands/search.ts)_
|
|
9546
9552
|
|
|
9547
9553
|
## `sf sobject describe`
|
|
9548
9554
|
|
|
@@ -9589,7 +9595,7 @@ EXAMPLES
|
|
|
9589
9595
|
$ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
|
|
9590
9596
|
```
|
|
9591
9597
|
|
|
9592
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
9598
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.82/src/commands/sobject/describe.ts)_
|
|
9593
9599
|
|
|
9594
9600
|
## `sf sobject list`
|
|
9595
9601
|
|
|
@@ -9628,7 +9634,7 @@ EXAMPLES
|
|
|
9628
9634
|
$ sf sobject list --sobject custom --target-org my-scratch-org
|
|
9629
9635
|
```
|
|
9630
9636
|
|
|
9631
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
9637
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.82/src/commands/sobject/list.ts)_
|
|
9632
9638
|
|
|
9633
9639
|
## `sf static-resource generate`
|
|
9634
9640
|
|
|
@@ -9728,7 +9734,7 @@ EXAMPLES
|
|
|
9728
9734
|
$ sf update --available
|
|
9729
9735
|
```
|
|
9730
9736
|
|
|
9731
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
9737
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.7/src/commands/update.ts)_
|
|
9732
9738
|
|
|
9733
9739
|
## `sf version`
|
|
9734
9740
|
|