@salesforce/cli 2.132.11 → 2.132.13
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 +69 -69
- package/npm-shrinkwrap.json +83 -70
- package/oclif.lock +84 -78
- package/oclif.manifest.json +1 -1
- package/package.json +9 -9
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.132.
|
|
28
|
+
@salesforce/cli/2.132.13 linux-x64 node-v22.22.2
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -274,7 +274,7 @@ ERROR CODES
|
|
|
274
274
|
ActivationFailed (4) Failed to activate the agent due to API or network errors.
|
|
275
275
|
```
|
|
276
276
|
|
|
277
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
277
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/activate.ts)_
|
|
278
278
|
|
|
279
279
|
## `sf agent create`
|
|
280
280
|
|
|
@@ -341,7 +341,7 @@ EXAMPLES
|
|
|
341
341
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
342
342
|
```
|
|
343
343
|
|
|
344
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
344
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/create.ts)_
|
|
345
345
|
|
|
346
346
|
## `sf agent deactivate`
|
|
347
347
|
|
|
@@ -390,7 +390,7 @@ ERROR CODES
|
|
|
390
390
|
DeactivationFailed (4) Failed to deactivate the agent due to API or network errors.
|
|
391
391
|
```
|
|
392
392
|
|
|
393
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
393
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/deactivate.ts)_
|
|
394
394
|
|
|
395
395
|
## `sf agent generate agent-spec`
|
|
396
396
|
|
|
@@ -497,7 +497,7 @@ EXAMPLES
|
|
|
497
497
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
498
498
|
```
|
|
499
499
|
|
|
500
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
500
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/generate/agent-spec.ts)_
|
|
501
501
|
|
|
502
502
|
## `sf agent generate authoring-bundle`
|
|
503
503
|
|
|
@@ -574,7 +574,7 @@ EXAMPLES
|
|
|
574
574
|
other-package-dir/main/default --target-org my-dev-org
|
|
575
575
|
```
|
|
576
576
|
|
|
577
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
577
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/generate/authoring-bundle.ts)_
|
|
578
578
|
|
|
579
579
|
## `sf agent generate template`
|
|
580
580
|
|
|
@@ -636,7 +636,7 @@ EXAMPLES
|
|
|
636
636
|
my-package --source-org my-scratch-org
|
|
637
637
|
```
|
|
638
638
|
|
|
639
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
639
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/generate/template.ts)_
|
|
640
640
|
|
|
641
641
|
## `sf agent generate test-spec`
|
|
642
642
|
|
|
@@ -701,7 +701,7 @@ EXAMPLES
|
|
|
701
701
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
702
702
|
```
|
|
703
703
|
|
|
704
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
704
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/generate/test-spec.ts)_
|
|
705
705
|
|
|
706
706
|
## `sf agent preview`
|
|
707
707
|
|
|
@@ -774,7 +774,7 @@ EXAMPLES
|
|
|
774
774
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
775
775
|
```
|
|
776
776
|
|
|
777
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
777
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/preview.ts)_
|
|
778
778
|
|
|
779
779
|
## `sf agent preview end`
|
|
780
780
|
|
|
@@ -838,7 +838,7 @@ ERROR CODES
|
|
|
838
838
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
839
839
|
```
|
|
840
840
|
|
|
841
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
841
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/preview/end.ts)_
|
|
842
842
|
|
|
843
843
|
## `sf agent preview send`
|
|
844
844
|
|
|
@@ -905,7 +905,7 @@ ERROR CODES
|
|
|
905
905
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
906
906
|
```
|
|
907
907
|
|
|
908
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
908
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/preview/send.ts)_
|
|
909
909
|
|
|
910
910
|
## `sf agent preview sessions`
|
|
911
911
|
|
|
@@ -941,7 +941,7 @@ ERROR CODES
|
|
|
941
941
|
Succeeded (0) Sessions listed successfully (or empty list if no active sessions).
|
|
942
942
|
```
|
|
943
943
|
|
|
944
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
944
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/preview/sessions.ts)_
|
|
945
945
|
|
|
946
946
|
## `sf agent preview start`
|
|
947
947
|
|
|
@@ -1017,7 +1017,7 @@ ERROR CODES
|
|
|
1017
1017
|
PreviewStartFailed (4) Preview session failed to start due to API or network errors.
|
|
1018
1018
|
```
|
|
1019
1019
|
|
|
1020
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1020
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/preview/start.ts)_
|
|
1021
1021
|
|
|
1022
1022
|
## `sf agent publish authoring-bundle`
|
|
1023
1023
|
|
|
@@ -1066,7 +1066,7 @@ EXAMPLES
|
|
|
1066
1066
|
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
|
|
1067
1067
|
```
|
|
1068
1068
|
|
|
1069
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1069
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/publish/authoring-bundle.ts)_
|
|
1070
1070
|
|
|
1071
1071
|
## `sf agent test create`
|
|
1072
1072
|
|
|
@@ -1130,7 +1130,7 @@ ERROR CODES
|
|
|
1130
1130
|
DeploymentFailed (4) Deployment failed due to API or network errors.
|
|
1131
1131
|
```
|
|
1132
1132
|
|
|
1133
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1133
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/test/create.ts)_
|
|
1134
1134
|
|
|
1135
1135
|
## `sf agent test list`
|
|
1136
1136
|
|
|
@@ -1172,7 +1172,7 @@ ERROR CODES
|
|
|
1172
1172
|
Failed (4) Failed to retrieve agent tests due to API or network errors.
|
|
1173
1173
|
```
|
|
1174
1174
|
|
|
1175
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1175
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/test/list.ts)_
|
|
1176
1176
|
|
|
1177
1177
|
## `sf agent test results`
|
|
1178
1178
|
|
|
@@ -1246,7 +1246,7 @@ ERROR CODES
|
|
|
1246
1246
|
Failed (4) Failed to retrieve results due to API or network errors.
|
|
1247
1247
|
```
|
|
1248
1248
|
|
|
1249
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1249
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/test/results.ts)_
|
|
1250
1250
|
|
|
1251
1251
|
## `sf agent test resume`
|
|
1252
1252
|
|
|
@@ -1328,7 +1328,7 @@ ERROR CODES
|
|
|
1328
1328
|
OperationFailed (4) Failed to poll test due to API or network errors.
|
|
1329
1329
|
```
|
|
1330
1330
|
|
|
1331
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1331
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/test/resume.ts)_
|
|
1332
1332
|
|
|
1333
1333
|
## `sf agent test run`
|
|
1334
1334
|
|
|
@@ -1411,7 +1411,7 @@ ERROR CODES
|
|
|
1411
1411
|
OperationFailed (4) Failed to start or poll test due to API or network errors.
|
|
1412
1412
|
```
|
|
1413
1413
|
|
|
1414
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1414
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/test/run.ts)_
|
|
1415
1415
|
|
|
1416
1416
|
## `sf agent validate authoring-bundle`
|
|
1417
1417
|
|
|
@@ -1468,7 +1468,7 @@ ERROR CODES
|
|
|
1468
1468
|
ServerError (3) Validation/compilation API returned HTTP 500. A server error occurred during compilation.
|
|
1469
1469
|
```
|
|
1470
1470
|
|
|
1471
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.
|
|
1471
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.20/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1472
1472
|
|
|
1473
1473
|
## `sf alias list`
|
|
1474
1474
|
|
|
@@ -2031,7 +2031,7 @@ EXAMPLES
|
|
|
2031
2031
|
$ sf api request graphql --body example.txt --stream-to-file output.txt --include
|
|
2032
2032
|
```
|
|
2033
2033
|
|
|
2034
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.
|
|
2034
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.20/src/commands/api/request/graphql.ts)_
|
|
2035
2035
|
|
|
2036
2036
|
## `sf api request rest [URL]`
|
|
2037
2037
|
|
|
@@ -2140,7 +2140,7 @@ FLAG DESCRIPTIONS
|
|
|
2140
2140
|
https://github.com/salesforcecli/plugin-api/tree/main/test/test-files/data-project.
|
|
2141
2141
|
```
|
|
2142
2142
|
|
|
2143
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.
|
|
2143
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.20/src/commands/api/request/rest.ts)_
|
|
2144
2144
|
|
|
2145
2145
|
## `sf autocomplete [SHELL]`
|
|
2146
2146
|
|
|
@@ -2453,7 +2453,7 @@ EXAMPLES
|
|
|
2453
2453
|
$ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
|
|
2454
2454
|
```
|
|
2455
2455
|
|
|
2456
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2456
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/bulk/results.ts)_
|
|
2457
2457
|
|
|
2458
2458
|
## `sf data create file`
|
|
2459
2459
|
|
|
@@ -2502,7 +2502,7 @@ EXAMPLES
|
|
|
2502
2502
|
$ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
|
|
2503
2503
|
```
|
|
2504
2504
|
|
|
2505
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2505
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/create/file.ts)_
|
|
2506
2506
|
|
|
2507
2507
|
## `sf data create record`
|
|
2508
2508
|
|
|
@@ -2558,7 +2558,7 @@ EXAMPLES
|
|
|
2558
2558
|
TracedEntityId=01p17000000R6bLAAS"
|
|
2559
2559
|
```
|
|
2560
2560
|
|
|
2561
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2561
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/create/record.ts)_
|
|
2562
2562
|
|
|
2563
2563
|
## `sf data delete bulk`
|
|
2564
2564
|
|
|
@@ -2617,7 +2617,7 @@ FLAG DESCRIPTIONS
|
|
|
2617
2617
|
and can be enabled only by a system administrator.
|
|
2618
2618
|
```
|
|
2619
2619
|
|
|
2620
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2620
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/delete/bulk.ts)_
|
|
2621
2621
|
|
|
2622
2622
|
## `sf data delete record`
|
|
2623
2623
|
|
|
@@ -2678,7 +2678,7 @@ EXAMPLES
|
|
|
2678
2678
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2679
2679
|
```
|
|
2680
2680
|
|
|
2681
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2681
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/delete/record.ts)_
|
|
2682
2682
|
|
|
2683
2683
|
## `sf data delete resume`
|
|
2684
2684
|
|
|
@@ -2717,7 +2717,7 @@ EXAMPLES
|
|
|
2717
2717
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
2718
2718
|
```
|
|
2719
2719
|
|
|
2720
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2720
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/delete/resume.ts)_
|
|
2721
2721
|
|
|
2722
2722
|
## `sf data export bulk`
|
|
2723
2723
|
|
|
@@ -2784,7 +2784,7 @@ EXAMPLES
|
|
|
2784
2784
|
--result-format json --wait 10 --all-rows
|
|
2785
2785
|
```
|
|
2786
2786
|
|
|
2787
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2787
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/export/bulk.ts)_
|
|
2788
2788
|
|
|
2789
2789
|
## `sf data export resume`
|
|
2790
2790
|
|
|
@@ -2823,7 +2823,7 @@ EXAMPLES
|
|
|
2823
2823
|
$ sf data export resume --use-most-recent
|
|
2824
2824
|
```
|
|
2825
2825
|
|
|
2826
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2826
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/export/resume.ts)_
|
|
2827
2827
|
|
|
2828
2828
|
## `sf data export tree`
|
|
2829
2829
|
|
|
@@ -2883,7 +2883,7 @@ EXAMPLES
|
|
|
2883
2883
|
my-scratch
|
|
2884
2884
|
```
|
|
2885
2885
|
|
|
2886
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2886
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/export/tree.ts)_
|
|
2887
2887
|
|
|
2888
2888
|
## `sf data get record`
|
|
2889
2889
|
|
|
@@ -2947,7 +2947,7 @@ EXAMPLES
|
|
|
2947
2947
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
2948
2948
|
```
|
|
2949
2949
|
|
|
2950
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2950
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/get/record.ts)_
|
|
2951
2951
|
|
|
2952
2952
|
## `sf data import bulk`
|
|
2953
2953
|
|
|
@@ -2999,7 +2999,7 @@ EXAMPLES
|
|
|
2999
2999
|
$ sf data import bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
3000
3000
|
```
|
|
3001
3001
|
|
|
3002
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3002
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/import/bulk.ts)_
|
|
3003
3003
|
|
|
3004
3004
|
## `sf data import resume`
|
|
3005
3005
|
|
|
@@ -3035,7 +3035,7 @@ EXAMPLES
|
|
|
3035
3035
|
$ sf data import resume --use-most-recent --target-org my-scratch
|
|
3036
3036
|
```
|
|
3037
3037
|
|
|
3038
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3038
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/import/resume.ts)_
|
|
3039
3039
|
|
|
3040
3040
|
## `sf data import tree`
|
|
3041
3041
|
|
|
@@ -3099,7 +3099,7 @@ FLAG DESCRIPTIONS
|
|
|
3099
3099
|
- files(array) - Files: An array of files paths to load
|
|
3100
3100
|
```
|
|
3101
3101
|
|
|
3102
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3102
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/import/tree.ts)_
|
|
3103
3103
|
|
|
3104
3104
|
## `sf data query`
|
|
3105
3105
|
|
|
@@ -3152,7 +3152,7 @@ EXAMPLES
|
|
|
3152
3152
|
$ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api
|
|
3153
3153
|
```
|
|
3154
3154
|
|
|
3155
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3155
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/query.ts)_
|
|
3156
3156
|
|
|
3157
3157
|
## `sf data resume`
|
|
3158
3158
|
|
|
@@ -3189,7 +3189,7 @@ EXAMPLES
|
|
|
3189
3189
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
3190
3190
|
```
|
|
3191
3191
|
|
|
3192
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3192
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/resume.ts)_
|
|
3193
3193
|
|
|
3194
3194
|
## `sf data search`
|
|
3195
3195
|
|
|
@@ -3239,7 +3239,7 @@ EXAMPLES
|
|
|
3239
3239
|
$ sf data search --file query.txt --target-org my-scratch --result-format csv
|
|
3240
3240
|
```
|
|
3241
3241
|
|
|
3242
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3242
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/search.ts)_
|
|
3243
3243
|
|
|
3244
3244
|
## `sf data update bulk`
|
|
3245
3245
|
|
|
@@ -3294,7 +3294,7 @@ EXAMPLES
|
|
|
3294
3294
|
$ sf data update bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
3295
3295
|
```
|
|
3296
3296
|
|
|
3297
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3297
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/update/bulk.ts)_
|
|
3298
3298
|
|
|
3299
3299
|
## `sf data update record`
|
|
3300
3300
|
|
|
@@ -3356,7 +3356,7 @@ EXAMPLES
|
|
|
3356
3356
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
3357
3357
|
```
|
|
3358
3358
|
|
|
3359
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3359
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/update/record.ts)_
|
|
3360
3360
|
|
|
3361
3361
|
## `sf data update resume`
|
|
3362
3362
|
|
|
@@ -3395,7 +3395,7 @@ EXAMPLES
|
|
|
3395
3395
|
$ sf data update resume --use-most-recent
|
|
3396
3396
|
```
|
|
3397
3397
|
|
|
3398
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3398
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/update/resume.ts)_
|
|
3399
3399
|
|
|
3400
3400
|
## `sf data upsert bulk`
|
|
3401
3401
|
|
|
@@ -3451,7 +3451,7 @@ EXAMPLES
|
|
|
3451
3451
|
my-scratch
|
|
3452
3452
|
```
|
|
3453
3453
|
|
|
3454
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3454
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/upsert/bulk.ts)_
|
|
3455
3455
|
|
|
3456
3456
|
## `sf data upsert resume`
|
|
3457
3457
|
|
|
@@ -3490,7 +3490,7 @@ EXAMPLES
|
|
|
3490
3490
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
3491
3491
|
```
|
|
3492
3492
|
|
|
3493
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3493
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/data/upsert/resume.ts)_
|
|
3494
3494
|
|
|
3495
3495
|
## `sf doctor`
|
|
3496
3496
|
|
|
@@ -3538,7 +3538,7 @@ EXAMPLES
|
|
|
3538
3538
|
$ sf doctor --plugin @salesforce/plugin-source
|
|
3539
3539
|
```
|
|
3540
3540
|
|
|
3541
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3541
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.123/src/commands/doctor.ts)_
|
|
3542
3542
|
|
|
3543
3543
|
## `sf force data bulk delete`
|
|
3544
3544
|
|
|
@@ -3585,7 +3585,7 @@ EXAMPLES
|
|
|
3585
3585
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
3586
3586
|
```
|
|
3587
3587
|
|
|
3588
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3588
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/force/data/bulk/delete.ts)_
|
|
3589
3589
|
|
|
3590
3590
|
## `sf force data bulk status`
|
|
3591
3591
|
|
|
@@ -3622,7 +3622,7 @@ EXAMPLES
|
|
|
3622
3622
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
3623
3623
|
```
|
|
3624
3624
|
|
|
3625
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3625
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/force/data/bulk/status.ts)_
|
|
3626
3626
|
|
|
3627
3627
|
## `sf force data bulk upsert`
|
|
3628
3628
|
|
|
@@ -3680,7 +3680,7 @@ EXAMPLES
|
|
|
3680
3680
|
--target-org my-scratch
|
|
3681
3681
|
```
|
|
3682
3682
|
|
|
3683
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3683
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.92/src/commands/force/data/bulk/upsert.ts)_
|
|
3684
3684
|
|
|
3685
3685
|
## `sf help [COMMAND]`
|
|
3686
3686
|
|
|
@@ -3740,7 +3740,7 @@ EXAMPLES
|
|
|
3740
3740
|
$ sf info releasenotes display --version latest
|
|
3741
3741
|
```
|
|
3742
3742
|
|
|
3743
|
-
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.
|
|
3743
|
+
_See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.123/src/commands/info/releasenotes/display.ts)_
|
|
3744
3744
|
|
|
3745
3745
|
## `sf logic get test`
|
|
3746
3746
|
|
|
@@ -9598,7 +9598,7 @@ FLAG DESCRIPTIONS
|
|
|
9598
9598
|
If you don't specify this flag, the command prompts you to choose from your local objects.
|
|
9599
9599
|
```
|
|
9600
9600
|
|
|
9601
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9601
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.98/src/commands/schema/generate/field.ts)_
|
|
9602
9602
|
|
|
9603
9603
|
## `sf schema generate platformevent`
|
|
9604
9604
|
|
|
@@ -9630,7 +9630,7 @@ EXAMPLES
|
|
|
9630
9630
|
$ sf schema generate platformevent --label "My Platform Event"
|
|
9631
9631
|
```
|
|
9632
9632
|
|
|
9633
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9633
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.98/src/commands/schema/generate/platformevent.ts)_
|
|
9634
9634
|
|
|
9635
9635
|
## `sf schema generate sobject`
|
|
9636
9636
|
|
|
@@ -9687,7 +9687,7 @@ FLAG DESCRIPTIONS
|
|
|
9687
9687
|
- Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
|
|
9688
9688
|
```
|
|
9689
9689
|
|
|
9690
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9690
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.98/src/commands/schema/generate/sobject.ts)_
|
|
9691
9691
|
|
|
9692
9692
|
## `sf schema generate tab`
|
|
9693
9693
|
|
|
@@ -9735,7 +9735,7 @@ FLAG DESCRIPTIONS
|
|
|
9735
9735
|
The API name for a custom object always ends in `__c`, such as `MyObject__c`.
|
|
9736
9736
|
```
|
|
9737
9737
|
|
|
9738
|
-
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.
|
|
9738
|
+
_See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.98/src/commands/schema/generate/tab.ts)_
|
|
9739
9739
|
|
|
9740
9740
|
## `sf search`
|
|
9741
9741
|
|
|
@@ -9798,7 +9798,7 @@ EXAMPLES
|
|
|
9798
9798
|
$ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
|
|
9799
9799
|
```
|
|
9800
9800
|
|
|
9801
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
9801
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.105/src/commands/sobject/describe.ts)_
|
|
9802
9802
|
|
|
9803
9803
|
## `sf sobject list`
|
|
9804
9804
|
|
|
@@ -9837,7 +9837,7 @@ EXAMPLES
|
|
|
9837
9837
|
$ sf sobject list --sobject custom --target-org my-scratch-org
|
|
9838
9838
|
```
|
|
9839
9839
|
|
|
9840
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
9840
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.105/src/commands/sobject/list.ts)_
|
|
9841
9841
|
|
|
9842
9842
|
## `sf template generate analytics template`
|
|
9843
9843
|
|
|
@@ -9881,7 +9881,7 @@ FLAG DESCRIPTIONS
|
|
|
9881
9881
|
directory.
|
|
9882
9882
|
```
|
|
9883
9883
|
|
|
9884
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9884
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/analytics/template.ts)_
|
|
9885
9885
|
|
|
9886
9886
|
## `sf template generate apex class`
|
|
9887
9887
|
|
|
@@ -9941,7 +9941,7 @@ FLAG DESCRIPTIONS
|
|
|
9941
9941
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
9942
9942
|
```
|
|
9943
9943
|
|
|
9944
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
9944
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/apex/class.ts)_
|
|
9945
9945
|
|
|
9946
9946
|
## `sf template generate apex trigger`
|
|
9947
9947
|
|
|
@@ -10011,7 +10011,7 @@ FLAG DESCRIPTIONS
|
|
|
10011
10011
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10012
10012
|
```
|
|
10013
10013
|
|
|
10014
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10014
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/apex/trigger.ts)_
|
|
10015
10015
|
|
|
10016
10016
|
## `sf template generate digital-experience site`
|
|
10017
10017
|
|
|
@@ -10065,7 +10065,7 @@ FLAG DESCRIPTIONS
|
|
|
10065
10065
|
project, defaults to the current directory.
|
|
10066
10066
|
```
|
|
10067
10067
|
|
|
10068
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10068
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/digital-experience/site.ts)_
|
|
10069
10069
|
|
|
10070
10070
|
## `sf template generate flexipage`
|
|
10071
10071
|
|
|
@@ -10147,7 +10147,7 @@ FLAG DESCRIPTIONS
|
|
|
10147
10147
|
'Custom_Object__c'. This sets the `sobjectType` field in the FlexiPage metadata.
|
|
10148
10148
|
```
|
|
10149
10149
|
|
|
10150
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10150
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/flexipage/index.ts)_
|
|
10151
10151
|
|
|
10152
10152
|
## `sf template generate lightning app`
|
|
10153
10153
|
|
|
@@ -10205,7 +10205,7 @@ FLAG DESCRIPTIONS
|
|
|
10205
10205
|
field in the DX project's "sfdx-project.json" file.
|
|
10206
10206
|
```
|
|
10207
10207
|
|
|
10208
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10208
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/lightning/app.ts)_
|
|
10209
10209
|
|
|
10210
10210
|
## `sf template generate lightning component`
|
|
10211
10211
|
|
|
@@ -10282,7 +10282,7 @@ FLAG DESCRIPTIONS
|
|
|
10282
10282
|
field in the DX project's "sfdx-project.json" file.
|
|
10283
10283
|
```
|
|
10284
10284
|
|
|
10285
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10285
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/lightning/component.ts)_
|
|
10286
10286
|
|
|
10287
10287
|
## `sf template generate lightning event`
|
|
10288
10288
|
|
|
@@ -10340,7 +10340,7 @@ FLAG DESCRIPTIONS
|
|
|
10340
10340
|
field in the DX project's "sfdx-project.json" file.
|
|
10341
10341
|
```
|
|
10342
10342
|
|
|
10343
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10343
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/lightning/event.ts)_
|
|
10344
10344
|
|
|
10345
10345
|
## `sf template generate lightning interface`
|
|
10346
10346
|
|
|
@@ -10398,7 +10398,7 @@ FLAG DESCRIPTIONS
|
|
|
10398
10398
|
field in the DX project's "sfdx-project.json" file.
|
|
10399
10399
|
```
|
|
10400
10400
|
|
|
10401
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10401
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/lightning/interface.ts)_
|
|
10402
10402
|
|
|
10403
10403
|
## `sf template generate lightning test`
|
|
10404
10404
|
|
|
@@ -10456,7 +10456,7 @@ FLAG DESCRIPTIONS
|
|
|
10456
10456
|
field in the DX project's "sfdx-project.json" file.
|
|
10457
10457
|
```
|
|
10458
10458
|
|
|
10459
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10459
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/lightning/test.ts)_
|
|
10460
10460
|
|
|
10461
10461
|
## `sf template generate project`
|
|
10462
10462
|
|
|
@@ -10582,7 +10582,7 @@ FLAG DESCRIPTIONS
|
|
|
10582
10582
|
server-side type stripping.
|
|
10583
10583
|
```
|
|
10584
10584
|
|
|
10585
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10585
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/project/index.ts)_
|
|
10586
10586
|
|
|
10587
10587
|
## `sf template generate static-resource`
|
|
10588
10588
|
|
|
@@ -10645,7 +10645,7 @@ FLAG DESCRIPTIONS
|
|
|
10645
10645
|
etc.
|
|
10646
10646
|
```
|
|
10647
10647
|
|
|
10648
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10648
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/static-resource/index.ts)_
|
|
10649
10649
|
|
|
10650
10650
|
## `sf template generate ui-bundle`
|
|
10651
10651
|
|
|
@@ -10729,7 +10729,7 @@ FLAG DESCRIPTIONS
|
|
|
10729
10729
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10730
10730
|
```
|
|
10731
10731
|
|
|
10732
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10732
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/ui-bundle/index.ts)_
|
|
10733
10733
|
|
|
10734
10734
|
## `sf template generate visualforce component`
|
|
10735
10735
|
|
|
@@ -10786,7 +10786,7 @@ FLAG DESCRIPTIONS
|
|
|
10786
10786
|
Supplied parameter values or default values are filled into a copy of the template.
|
|
10787
10787
|
```
|
|
10788
10788
|
|
|
10789
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10789
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/visualforce/component.ts)_
|
|
10790
10790
|
|
|
10791
10791
|
## `sf template generate visualforce page`
|
|
10792
10792
|
|
|
@@ -10837,7 +10837,7 @@ FLAG DESCRIPTIONS
|
|
|
10837
10837
|
The name can be up to 40 characters and must start with a letter.
|
|
10838
10838
|
```
|
|
10839
10839
|
|
|
10840
|
-
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.
|
|
10840
|
+
_See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.0/src/commands/template/generate/visualforce/page.ts)_
|
|
10841
10841
|
|
|
10842
10842
|
## `sf update [CHANNEL]`
|
|
10843
10843
|
|