@salesforce/cli 2.108.2 → 2.108.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 +113 -107
- package/npm-shrinkwrap.json +84 -75
- package/oclif.lock +83 -78
- package/oclif.manifest.json +1 -1
- package/package.json +14 -14
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.4 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.12/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.12/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.12/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.12/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.12/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.12/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.12/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.12/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.12/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.12/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.12/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.12/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
|
|
|
@@ -4730,7 +4736,7 @@ EXAMPLES
|
|
|
4730
4736
|
$ sf org list auth
|
|
4731
4737
|
```
|
|
4732
4738
|
|
|
4733
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
4739
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.8/src/commands/org/list/auth.ts)_
|
|
4734
4740
|
|
|
4735
4741
|
## `sf org list limits`
|
|
4736
4742
|
|
|
@@ -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
|
|
|
@@ -5030,7 +5036,7 @@ FLAG DESCRIPTIONS
|
|
|
5030
5036
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5031
5037
|
```
|
|
5032
5038
|
|
|
5033
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5039
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.8/src/commands/org/login/access-token.ts)_
|
|
5034
5040
|
|
|
5035
5041
|
## `sf org login jwt`
|
|
5036
5042
|
|
|
@@ -5121,7 +5127,7 @@ FLAG DESCRIPTIONS
|
|
|
5121
5127
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5122
5128
|
```
|
|
5123
5129
|
|
|
5124
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5130
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.8/src/commands/org/login/jwt.ts)_
|
|
5125
5131
|
|
|
5126
5132
|
## `sf org login sfdx-url`
|
|
5127
5133
|
|
|
@@ -5191,7 +5197,7 @@ EXAMPLES
|
|
|
5191
5197
|
$ echo url | sf org login sfdx-url --sfdx-url-stdin
|
|
5192
5198
|
```
|
|
5193
5199
|
|
|
5194
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5200
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.8/src/commands/org/login/sfdx-url.ts)_
|
|
5195
5201
|
|
|
5196
5202
|
## `sf org login web`
|
|
5197
5203
|
|
|
@@ -5296,7 +5302,7 @@ FLAG DESCRIPTIONS
|
|
|
5296
5302
|
To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
|
|
5297
5303
|
```
|
|
5298
5304
|
|
|
5299
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5305
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.8/src/commands/org/login/web.ts)_
|
|
5300
5306
|
|
|
5301
5307
|
## `sf org logout`
|
|
5302
5308
|
|
|
@@ -5362,7 +5368,7 @@ FLAG DESCRIPTIONS
|
|
|
5362
5368
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
5363
5369
|
```
|
|
5364
5370
|
|
|
5365
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.
|
|
5371
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.9.8/src/commands/org/logout.ts)_
|
|
5366
5372
|
|
|
5367
5373
|
## `sf org open`
|
|
5368
5374
|
|
|
@@ -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
|
|
|
@@ -5805,7 +5811,7 @@ FLAG DESCRIPTIONS
|
|
|
5805
5811
|
--installation-key-bypass flag is required.
|
|
5806
5812
|
```
|
|
5807
5813
|
|
|
5808
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
5814
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/convert.ts)_
|
|
5809
5815
|
|
|
5810
5816
|
## `sf package create`
|
|
5811
5817
|
|
|
@@ -5884,7 +5890,7 @@ FLAG DESCRIPTIONS
|
|
|
5884
5890
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5885
5891
|
```
|
|
5886
5892
|
|
|
5887
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
5893
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/create.ts)_
|
|
5888
5894
|
|
|
5889
5895
|
## `sf package delete`
|
|
5890
5896
|
|
|
@@ -5926,7 +5932,7 @@ EXAMPLES
|
|
|
5926
5932
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5927
5933
|
```
|
|
5928
5934
|
|
|
5929
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
5935
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/delete.ts)_
|
|
5930
5936
|
|
|
5931
5937
|
## `sf package install`
|
|
5932
5938
|
|
|
@@ -6025,7 +6031,7 @@ FLAG DESCRIPTIONS
|
|
|
6025
6031
|
- Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
|
|
6026
6032
|
```
|
|
6027
6033
|
|
|
6028
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6034
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/install.ts)_
|
|
6029
6035
|
|
|
6030
6036
|
## `sf package install report`
|
|
6031
6037
|
|
|
@@ -6058,7 +6064,7 @@ EXAMPLES
|
|
|
6058
6064
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
6059
6065
|
```
|
|
6060
6066
|
|
|
6061
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6067
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/install/report.ts)_
|
|
6062
6068
|
|
|
6063
6069
|
## `sf package installed list`
|
|
6064
6070
|
|
|
@@ -6090,7 +6096,7 @@ EXAMPLES
|
|
|
6090
6096
|
$ sf package installed list --target-org me@example.com
|
|
6091
6097
|
```
|
|
6092
6098
|
|
|
6093
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6099
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/installed/list.ts)_
|
|
6094
6100
|
|
|
6095
6101
|
## `sf package list`
|
|
6096
6102
|
|
|
@@ -6128,7 +6134,7 @@ EXAMPLES
|
|
|
6128
6134
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
6129
6135
|
```
|
|
6130
6136
|
|
|
6131
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6137
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/list.ts)_
|
|
6132
6138
|
|
|
6133
6139
|
## `sf package push-upgrade abort`
|
|
6134
6140
|
|
|
@@ -6167,7 +6173,7 @@ EXAMPLES
|
|
|
6167
6173
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6168
6174
|
```
|
|
6169
6175
|
|
|
6170
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6176
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/push-upgrade/abort.ts)_
|
|
6171
6177
|
|
|
6172
6178
|
## `sf package push-upgrade list`
|
|
6173
6179
|
|
|
@@ -6226,7 +6232,7 @@ EXAMPLES
|
|
|
6226
6232
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6227
6233
|
```
|
|
6228
6234
|
|
|
6229
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6235
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/push-upgrade/list.ts)_
|
|
6230
6236
|
|
|
6231
6237
|
## `sf package push-upgrade report`
|
|
6232
6238
|
|
|
@@ -6268,7 +6274,7 @@ EXAMPLES
|
|
|
6268
6274
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6269
6275
|
```
|
|
6270
6276
|
|
|
6271
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6277
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/push-upgrade/report.ts)_
|
|
6272
6278
|
|
|
6273
6279
|
## `sf package push-upgrade schedule`
|
|
6274
6280
|
|
|
@@ -6355,7 +6361,7 @@ FLAG DESCRIPTIONS
|
|
|
6355
6361
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6356
6362
|
```
|
|
6357
6363
|
|
|
6358
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6364
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/push-upgrade/schedule.ts)_
|
|
6359
6365
|
|
|
6360
6366
|
## `sf package uninstall`
|
|
6361
6367
|
|
|
@@ -6403,7 +6409,7 @@ EXAMPLES
|
|
|
6403
6409
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6404
6410
|
```
|
|
6405
6411
|
|
|
6406
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6412
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/uninstall.ts)_
|
|
6407
6413
|
|
|
6408
6414
|
## `sf package uninstall report`
|
|
6409
6415
|
|
|
@@ -6436,7 +6442,7 @@ EXAMPLES
|
|
|
6436
6442
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6437
6443
|
```
|
|
6438
6444
|
|
|
6439
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6445
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/uninstall/report.ts)_
|
|
6440
6446
|
|
|
6441
6447
|
## `sf package update`
|
|
6442
6448
|
|
|
@@ -6491,7 +6497,7 @@ FLAG DESCRIPTIONS
|
|
|
6491
6497
|
associated with your package.
|
|
6492
6498
|
```
|
|
6493
6499
|
|
|
6494
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6500
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/update.ts)_
|
|
6495
6501
|
|
|
6496
6502
|
## `sf package version create`
|
|
6497
6503
|
|
|
@@ -6666,7 +6672,7 @@ FLAG DESCRIPTIONS
|
|
|
6666
6672
|
periods of no output from commands.
|
|
6667
6673
|
```
|
|
6668
6674
|
|
|
6669
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6675
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/version/create.ts)_
|
|
6670
6676
|
|
|
6671
6677
|
## `sf package version create list`
|
|
6672
6678
|
|
|
@@ -6727,7 +6733,7 @@ EXAMPLES
|
|
|
6727
6733
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6728
6734
|
```
|
|
6729
6735
|
|
|
6730
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6736
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/version/create/list.ts)_
|
|
6731
6737
|
|
|
6732
6738
|
## `sf package version create report`
|
|
6733
6739
|
|
|
@@ -6770,7 +6776,7 @@ EXAMPLES
|
|
|
6770
6776
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6771
6777
|
```
|
|
6772
6778
|
|
|
6773
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6779
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/version/create/report.ts)_
|
|
6774
6780
|
|
|
6775
6781
|
## `sf package version delete`
|
|
6776
6782
|
|
|
@@ -6811,7 +6817,7 @@ EXAMPLES
|
|
|
6811
6817
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6812
6818
|
```
|
|
6813
6819
|
|
|
6814
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6820
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/version/delete.ts)_
|
|
6815
6821
|
|
|
6816
6822
|
## `sf package version displayancestry`
|
|
6817
6823
|
|
|
@@ -6871,7 +6877,7 @@ FLAG DESCRIPTIONS
|
|
|
6871
6877
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6872
6878
|
```
|
|
6873
6879
|
|
|
6874
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6880
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/version/displayancestry.ts)_
|
|
6875
6881
|
|
|
6876
6882
|
## `sf package version displaydependencies`
|
|
6877
6883
|
|
|
@@ -6933,7 +6939,7 @@ FLAG DESCRIPTIONS
|
|
|
6933
6939
|
package, which must be installed last.
|
|
6934
6940
|
```
|
|
6935
6941
|
|
|
6936
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
6942
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/version/displaydependencies.ts)_
|
|
6937
6943
|
|
|
6938
6944
|
## `sf package version list`
|
|
6939
6945
|
|
|
@@ -7009,7 +7015,7 @@ EXAMPLES
|
|
|
7009
7015
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
7010
7016
|
```
|
|
7011
7017
|
|
|
7012
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7018
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/version/list.ts)_
|
|
7013
7019
|
|
|
7014
7020
|
## `sf package version promote`
|
|
7015
7021
|
|
|
@@ -7053,7 +7059,7 @@ EXAMPLES
|
|
|
7053
7059
|
$ sf package version promote --package "Awesome Package Alias"
|
|
7054
7060
|
```
|
|
7055
7061
|
|
|
7056
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7062
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/version/promote.ts)_
|
|
7057
7063
|
|
|
7058
7064
|
## `sf package version report`
|
|
7059
7065
|
|
|
@@ -7093,7 +7099,7 @@ EXAMPLES
|
|
|
7093
7099
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
7094
7100
|
```
|
|
7095
7101
|
|
|
7096
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7102
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/version/report.ts)_
|
|
7097
7103
|
|
|
7098
7104
|
## `sf package version update`
|
|
7099
7105
|
|
|
@@ -7146,7 +7152,7 @@ EXAMPLES
|
|
|
7146
7152
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
7147
7153
|
```
|
|
7148
7154
|
|
|
7149
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7155
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package/version/update.ts)_
|
|
7150
7156
|
|
|
7151
7157
|
## `sf package1 version create`
|
|
7152
7158
|
|
|
@@ -7213,7 +7219,7 @@ FLAG DESCRIPTIONS
|
|
|
7213
7219
|
subscribers.
|
|
7214
7220
|
```
|
|
7215
7221
|
|
|
7216
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7222
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package1/version/create.ts)_
|
|
7217
7223
|
|
|
7218
7224
|
## `sf package1 version create get`
|
|
7219
7225
|
|
|
@@ -7246,7 +7252,7 @@ EXAMPLES
|
|
|
7246
7252
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
7247
7253
|
```
|
|
7248
7254
|
|
|
7249
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7255
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package1/version/create/get.ts)_
|
|
7250
7256
|
|
|
7251
7257
|
## `sf package1 version display`
|
|
7252
7258
|
|
|
@@ -7280,7 +7286,7 @@ EXAMPLES
|
|
|
7280
7286
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7281
7287
|
```
|
|
7282
7288
|
|
|
7283
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7289
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package1/version/display.ts)_
|
|
7284
7290
|
|
|
7285
7291
|
## `sf package1 version list`
|
|
7286
7292
|
|
|
@@ -7318,7 +7324,7 @@ FLAG DESCRIPTIONS
|
|
|
7318
7324
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7319
7325
|
```
|
|
7320
7326
|
|
|
7321
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.
|
|
7327
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.20.4/src/commands/package1/version/list.ts)_
|
|
7322
7328
|
|
|
7323
7329
|
## `sf plugins`
|
|
7324
7330
|
|
|
@@ -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
|
|