@salesforce/cli 2.115.3 → 2.115.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 +60 -60
- package/npm-shrinkwrap.json +417 -1388
- package/oclif.lock +386 -698
- package/oclif.manifest.json +1 -1
- package/package.json +6 -6
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.115.
|
|
28
|
+
@salesforce/cli/2.115.5 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.31/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.31/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.31/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.31/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.31/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.31/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.31/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.31/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.31/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.31/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.31/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.31/src/commands/agent/test/run.ts)_
|
|
931
931
|
|
|
932
932
|
## `sf alias list`
|
|
933
933
|
|
|
@@ -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.9/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.9/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.9/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.9/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.9/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.9/src/commands/apex/tail/log.ts)_
|
|
1610
1610
|
|
|
1611
1611
|
## `sf api request graphql`
|
|
1612
1612
|
|
|
@@ -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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/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.64/src/commands/data/upsert/resume.ts)_
|
|
3122
3122
|
|
|
3123
3123
|
## `sf doctor`
|
|
3124
3124
|
|
|
@@ -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.64/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.64/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.64/src/commands/force/data/bulk/upsert.ts)_
|
|
3312
3312
|
|
|
3313
3313
|
## `sf help [COMMAND]`
|
|
3314
3314
|
|
|
@@ -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.9/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.9/src/commands/logic/run/test.ts)_
|
|
3831
3831
|
|
|
3832
3832
|
## `sf org assign permset`
|
|
3833
3833
|
|
|
@@ -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.48/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.48/src/commands/org/create/scratch.ts)_
|
|
4240
4240
|
|
|
4241
4241
|
## `sf org create user`
|
|
4242
4242
|
|
|
@@ -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.48/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.48/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.48/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.48/src/commands/org/display.ts)_
|
|
4522
4522
|
|
|
4523
4523
|
## `sf org display user`
|
|
4524
4524
|
|
|
@@ -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.48/src/commands/org/enable/tracking.ts)_
|
|
4603
4603
|
|
|
4604
4604
|
## `sf org generate password`
|
|
4605
4605
|
|
|
@@ -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.48/src/commands/org/list.ts)_
|
|
4709
4709
|
|
|
4710
4710
|
## `sf org list auth`
|
|
4711
4711
|
|
|
@@ -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.48/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.48/src/commands/org/list/metadata-types.ts)_
|
|
4903
4903
|
|
|
4904
4904
|
## `sf org list sobject record-counts`
|
|
4905
4905
|
|
|
@@ -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.48/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.48/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.48/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.48/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.48/src/commands/org/resume/scratch.ts)_
|
|
5719
5719
|
|
|
5720
5720
|
## `sf package convert`
|
|
5721
5721
|
|