@salesforce/cli 2.134.6 → 2.135.1
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 +228 -103
- package/npm-shrinkwrap.json +57 -57
- package/oclif.lock +58 -58
- package/oclif.manifest.json +1 -1
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
|
|
|
25
25
|
$ sf COMMAND
|
|
26
26
|
running command...
|
|
27
27
|
$ sf (--version|-v)
|
|
28
|
-
@salesforce/cli/2.
|
|
28
|
+
@salesforce/cli/2.135.1 linux-x64 node-v22.22.2
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -60,6 +60,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
60
60
|
- [`sf agent test results`](#sf-agent-test-results)
|
|
61
61
|
- [`sf agent test resume`](#sf-agent-test-resume)
|
|
62
62
|
- [`sf agent test run`](#sf-agent-test-run)
|
|
63
|
+
- [`sf agent test run-eval`](#sf-agent-test-run-eval)
|
|
63
64
|
- [`sf agent validate authoring-bundle`](#sf-agent-validate-authoring-bundle)
|
|
64
65
|
- [`sf alias list`](#sf-alias-list)
|
|
65
66
|
- [`sf alias set`](#sf-alias-set)
|
|
@@ -277,7 +278,7 @@ ERROR CODES
|
|
|
277
278
|
ActivationFailed (4) Failed to activate the agent due to API or network errors.
|
|
278
279
|
```
|
|
279
280
|
|
|
280
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
281
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/activate.ts)_
|
|
281
282
|
|
|
282
283
|
## `sf agent create`
|
|
283
284
|
|
|
@@ -344,7 +345,7 @@ EXAMPLES
|
|
|
344
345
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
345
346
|
```
|
|
346
347
|
|
|
347
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
348
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/create.ts)_
|
|
348
349
|
|
|
349
350
|
## `sf agent deactivate`
|
|
350
351
|
|
|
@@ -393,7 +394,7 @@ ERROR CODES
|
|
|
393
394
|
DeactivationFailed (4) Failed to deactivate the agent due to API or network errors.
|
|
394
395
|
```
|
|
395
396
|
|
|
396
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
397
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/deactivate.ts)_
|
|
397
398
|
|
|
398
399
|
## `sf agent generate agent-spec`
|
|
399
400
|
|
|
@@ -500,7 +501,7 @@ EXAMPLES
|
|
|
500
501
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
501
502
|
```
|
|
502
503
|
|
|
503
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
504
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/generate/agent-spec.ts)_
|
|
504
505
|
|
|
505
506
|
## `sf agent generate authoring-bundle`
|
|
506
507
|
|
|
@@ -577,7 +578,7 @@ EXAMPLES
|
|
|
577
578
|
other-package-dir/main/default --target-org my-dev-org
|
|
578
579
|
```
|
|
579
580
|
|
|
580
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
581
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/generate/authoring-bundle.ts)_
|
|
581
582
|
|
|
582
583
|
## `sf agent generate template`
|
|
583
584
|
|
|
@@ -639,7 +640,7 @@ EXAMPLES
|
|
|
639
640
|
my-package --source-org my-scratch-org
|
|
640
641
|
```
|
|
641
642
|
|
|
642
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
643
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/generate/template.ts)_
|
|
643
644
|
|
|
644
645
|
## `sf agent generate test-spec`
|
|
645
646
|
|
|
@@ -704,7 +705,7 @@ EXAMPLES
|
|
|
704
705
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
705
706
|
```
|
|
706
707
|
|
|
707
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
708
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/generate/test-spec.ts)_
|
|
708
709
|
|
|
709
710
|
## `sf agent preview`
|
|
710
711
|
|
|
@@ -777,7 +778,7 @@ EXAMPLES
|
|
|
777
778
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
778
779
|
```
|
|
779
780
|
|
|
780
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
781
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/preview.ts)_
|
|
781
782
|
|
|
782
783
|
## `sf agent preview end`
|
|
783
784
|
|
|
@@ -841,7 +842,7 @@ ERROR CODES
|
|
|
841
842
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
842
843
|
```
|
|
843
844
|
|
|
844
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
845
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/preview/end.ts)_
|
|
845
846
|
|
|
846
847
|
## `sf agent preview send`
|
|
847
848
|
|
|
@@ -908,7 +909,7 @@ ERROR CODES
|
|
|
908
909
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
909
910
|
```
|
|
910
911
|
|
|
911
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
912
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/preview/send.ts)_
|
|
912
913
|
|
|
913
914
|
## `sf agent preview sessions`
|
|
914
915
|
|
|
@@ -944,7 +945,7 @@ ERROR CODES
|
|
|
944
945
|
Succeeded (0) Sessions listed successfully (or empty list if no active sessions).
|
|
945
946
|
```
|
|
946
947
|
|
|
947
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
948
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/preview/sessions.ts)_
|
|
948
949
|
|
|
949
950
|
## `sf agent preview start`
|
|
950
951
|
|
|
@@ -1020,7 +1021,7 @@ ERROR CODES
|
|
|
1020
1021
|
PreviewStartFailed (4) Preview session failed to start due to API or network errors.
|
|
1021
1022
|
```
|
|
1022
1023
|
|
|
1023
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1024
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/preview/start.ts)_
|
|
1024
1025
|
|
|
1025
1026
|
## `sf agent publish authoring-bundle`
|
|
1026
1027
|
|
|
@@ -1029,14 +1030,17 @@ Publish an authoring bundle to your org, which results in a new agent or a new v
|
|
|
1029
1030
|
```
|
|
1030
1031
|
USAGE
|
|
1031
1032
|
$ sf agent publish authoring-bundle -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
|
|
1032
|
-
[--skip-retrieve]
|
|
1033
|
+
[--skip-retrieve] [-v | --concise]
|
|
1033
1034
|
|
|
1034
1035
|
FLAGS
|
|
1035
1036
|
-n, --api-name=<value> API name of the authoring bundle you want to publish; if not specified, the command
|
|
1036
1037
|
provides a list that you can choose from.
|
|
1037
1038
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
1038
1039
|
configuration variable is already set.
|
|
1040
|
+
-v, --verbose Display detailed output showing all metadata components retrieved and deployed during the
|
|
1041
|
+
publish process.
|
|
1039
1042
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
1043
|
+
--concise Display minimal output with only essential information about the publish operation.
|
|
1040
1044
|
--skip-retrieve Don't retrieve the metadata associated with the agent to your DX project.
|
|
1041
1045
|
|
|
1042
1046
|
GLOBAL FLAGS
|
|
@@ -1068,12 +1072,20 @@ EXAMPLES
|
|
|
1068
1072
|
|
|
1069
1073
|
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
|
|
1070
1074
|
|
|
1075
|
+
Publish with verbose output to see all retrieved and deployed metadata components:
|
|
1076
|
+
|
|
1077
|
+
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --verbose
|
|
1078
|
+
|
|
1079
|
+
Publish with concise output showing only essential information:
|
|
1080
|
+
|
|
1081
|
+
$ sf agent publish authoring-bundle --api-name MyAuthoringbundle --concise
|
|
1082
|
+
|
|
1071
1083
|
ERROR CODES
|
|
1072
1084
|
Succeeded (0) Agent published successfully without errors.
|
|
1073
1085
|
Failed (1) Compilation errors found in the Agent Script file.
|
|
1074
1086
|
```
|
|
1075
1087
|
|
|
1076
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1088
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/publish/authoring-bundle.ts)_
|
|
1077
1089
|
|
|
1078
1090
|
## `sf agent test create`
|
|
1079
1091
|
|
|
@@ -1137,7 +1149,7 @@ ERROR CODES
|
|
|
1137
1149
|
DeploymentFailed (4) Deployment failed due to API or network errors.
|
|
1138
1150
|
```
|
|
1139
1151
|
|
|
1140
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1152
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/create.ts)_
|
|
1141
1153
|
|
|
1142
1154
|
## `sf agent test list`
|
|
1143
1155
|
|
|
@@ -1159,8 +1171,8 @@ GLOBAL FLAGS
|
|
|
1159
1171
|
DESCRIPTION
|
|
1160
1172
|
List the available agent tests in your org.
|
|
1161
1173
|
|
|
1162
|
-
The command outputs a table with the name (API name) of each test along with its unique ID
|
|
1163
|
-
in the org.
|
|
1174
|
+
The command outputs a table with the name (API name) of each test along with its unique ID, type ('agentforce-studio'
|
|
1175
|
+
or 'testing-center'), and the date it was created in the org.
|
|
1164
1176
|
|
|
1165
1177
|
EXAMPLES
|
|
1166
1178
|
List the agent tests in your default org:
|
|
@@ -1179,7 +1191,7 @@ ERROR CODES
|
|
|
1179
1191
|
Failed (4) Failed to retrieve agent tests due to API or network errors.
|
|
1180
1192
|
```
|
|
1181
1193
|
|
|
1182
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1194
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/list.ts)_
|
|
1183
1195
|
|
|
1184
1196
|
## `sf agent test results`
|
|
1185
1197
|
|
|
@@ -1188,7 +1200,7 @@ Get the results of a completed agent test run.
|
|
|
1188
1200
|
```
|
|
1189
1201
|
USAGE
|
|
1190
1202
|
$ sf agent test results -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>] [--result-format
|
|
1191
|
-
json|human|junit|tap] [-d <value>] [--verbose]
|
|
1203
|
+
json|human|junit|tap] [-d <value>] [--test-runner agentforce-studio|testing-center] [--verbose]
|
|
1192
1204
|
|
|
1193
1205
|
FLAGS
|
|
1194
1206
|
-d, --output-dir=<value> Directory to write the agent test results into.
|
|
@@ -1198,6 +1210,8 @@ FLAGS
|
|
|
1198
1210
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
1199
1211
|
--result-format=<option> [default: human] Format of the agent test run results.
|
|
1200
1212
|
<options: json|human|junit|tap>
|
|
1213
|
+
--test-runner=<option> Explicitly specify which test runner to use (agentforce-studio or testing-center).
|
|
1214
|
+
<options: agentforce-studio|testing-center>
|
|
1201
1215
|
--verbose Show generated data in the test results output.
|
|
1202
1216
|
|
|
1203
1217
|
GLOBAL FLAGS
|
|
@@ -1235,6 +1249,14 @@ FLAG DESCRIPTIONS
|
|
|
1235
1249
|
If the agent test run completes, write the results to the specified directory. If the test is still running, the
|
|
1236
1250
|
test results aren't written.
|
|
1237
1251
|
|
|
1252
|
+
--test-runner=agentforce-studio|testing-center
|
|
1253
|
+
|
|
1254
|
+
Explicitly specify which test runner to use (agentforce-studio or testing-center).
|
|
1255
|
+
|
|
1256
|
+
By default, the command automatically detects which test runner to use based on the test definition metadata type in
|
|
1257
|
+
your org. Use this flag to explicitly specify the runner type. 'agentforce-studio' uses AiTestingDefinition
|
|
1258
|
+
metadata. 'testing-center' uses AiEvaluationDefinition metadata.
|
|
1259
|
+
|
|
1238
1260
|
--verbose Show generated data in the test results output.
|
|
1239
1261
|
|
|
1240
1262
|
When enabled, includes detailed generated data (such as invoked actions) in the human-readable test results output.
|
|
@@ -1253,7 +1275,7 @@ ERROR CODES
|
|
|
1253
1275
|
Failed (4) Failed to retrieve results due to API or network errors.
|
|
1254
1276
|
```
|
|
1255
1277
|
|
|
1256
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1278
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/results.ts)_
|
|
1257
1279
|
|
|
1258
1280
|
## `sf agent test resume`
|
|
1259
1281
|
|
|
@@ -1262,7 +1284,8 @@ Resume an agent test that you previously started in your org so you can view the
|
|
|
1262
1284
|
```
|
|
1263
1285
|
USAGE
|
|
1264
1286
|
$ sf agent test resume -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-i <value>] [-r] [-w
|
|
1265
|
-
<value>] [--result-format json|human|junit|tap] [-d <value>] [--
|
|
1287
|
+
<value>] [--result-format json|human|junit|tap] [-d <value>] [--test-runner agentforce-studio|testing-center]
|
|
1288
|
+
[--verbose]
|
|
1266
1289
|
|
|
1267
1290
|
FLAGS
|
|
1268
1291
|
-d, --output-dir=<value> Directory to write the agent test results into.
|
|
@@ -1275,6 +1298,8 @@ FLAGS
|
|
|
1275
1298
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
1276
1299
|
--result-format=<option> [default: human] Format of the agent test run results.
|
|
1277
1300
|
<options: json|human|junit|tap>
|
|
1301
|
+
--test-runner=<option> Explicitly specify which test runner to use (agentforce-studio or testing-center).
|
|
1302
|
+
<options: agentforce-studio|testing-center>
|
|
1278
1303
|
--verbose Show generated data in the test results output.
|
|
1279
1304
|
|
|
1280
1305
|
GLOBAL FLAGS
|
|
@@ -1316,6 +1341,14 @@ FLAG DESCRIPTIONS
|
|
|
1316
1341
|
If the agent test run completes, write the results to the specified directory. If the test is still running, the
|
|
1317
1342
|
test results aren't written.
|
|
1318
1343
|
|
|
1344
|
+
--test-runner=agentforce-studio|testing-center
|
|
1345
|
+
|
|
1346
|
+
Explicitly specify which test runner to use (agentforce-studio or testing-center).
|
|
1347
|
+
|
|
1348
|
+
By default, the command automatically detects which test runner to use based on the test definition metadata type in
|
|
1349
|
+
your org. Use this flag to explicitly specify the runner type. 'agentforce-studio' uses AiTestingDefinition
|
|
1350
|
+
metadata. 'testing-center' uses AiEvaluationDefinition metadata.
|
|
1351
|
+
|
|
1319
1352
|
--verbose Show generated data in the test results output.
|
|
1320
1353
|
|
|
1321
1354
|
When enabled, includes detailed generated data (such as invoked actions) in the human-readable test results output.
|
|
@@ -1335,7 +1368,7 @@ ERROR CODES
|
|
|
1335
1368
|
OperationFailed (4) Failed to poll test due to API or network errors.
|
|
1336
1369
|
```
|
|
1337
1370
|
|
|
1338
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1371
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/resume.ts)_
|
|
1339
1372
|
|
|
1340
1373
|
## `sf agent test run`
|
|
1341
1374
|
|
|
@@ -1344,7 +1377,7 @@ Start an agent test in your org.
|
|
|
1344
1377
|
```
|
|
1345
1378
|
USAGE
|
|
1346
1379
|
$ sf agent test run -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>] [-w <value>]
|
|
1347
|
-
[--result-format json|human|junit|tap] [-d <value>] [--verbose]
|
|
1380
|
+
[--result-format json|human|junit|tap] [-d <value>] [--test-runner agentforce-studio|testing-center] [--verbose]
|
|
1348
1381
|
|
|
1349
1382
|
FLAGS
|
|
1350
1383
|
-d, --output-dir=<value> Directory to write the agent test results into.
|
|
@@ -1357,6 +1390,8 @@ FLAGS
|
|
|
1357
1390
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
1358
1391
|
--result-format=<option> [default: human] Format of the agent test run results.
|
|
1359
1392
|
<options: json|human|junit|tap>
|
|
1393
|
+
--test-runner=<option> Explicitly specify which test runner to use (agentforce-studio or testing-center).
|
|
1394
|
+
<options: agentforce-studio|testing-center>
|
|
1360
1395
|
--verbose Show generated data in the test results output.
|
|
1361
1396
|
|
|
1362
1397
|
GLOBAL FLAGS
|
|
@@ -1399,6 +1434,14 @@ FLAG DESCRIPTIONS
|
|
|
1399
1434
|
If the agent test run completes, write the results to the specified directory. If the test is still running, the
|
|
1400
1435
|
test results aren't written.
|
|
1401
1436
|
|
|
1437
|
+
--test-runner=agentforce-studio|testing-center
|
|
1438
|
+
|
|
1439
|
+
Explicitly specify which test runner to use (agentforce-studio or testing-center).
|
|
1440
|
+
|
|
1441
|
+
By default, the command automatically detects which test runner to use based on the test definition metadata type in
|
|
1442
|
+
your org. Use this flag to explicitly specify the runner type. 'agentforce-studio' uses AiTestingDefinition
|
|
1443
|
+
metadata. 'testing-center' uses AiEvaluationDefinition metadata.
|
|
1444
|
+
|
|
1402
1445
|
--verbose Show generated data in the test results output.
|
|
1403
1446
|
|
|
1404
1447
|
When enabled, includes detailed generated data (such as invoked actions) in the human-readable test results output.
|
|
@@ -1418,7 +1461,89 @@ ERROR CODES
|
|
|
1418
1461
|
OperationFailed (4) Failed to start or poll test due to API or network errors.
|
|
1419
1462
|
```
|
|
1420
1463
|
|
|
1421
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1464
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/run.ts)_
|
|
1465
|
+
|
|
1466
|
+
## `sf agent test run-eval`
|
|
1467
|
+
|
|
1468
|
+
Run evaluation tests against an Agentforce agent.
|
|
1469
|
+
|
|
1470
|
+
```
|
|
1471
|
+
USAGE
|
|
1472
|
+
$ sf agent test run-eval -o <value> -s <value> [--json] [--flags-dir <value>] [--api-version <value>] [-n <value>]
|
|
1473
|
+
[--result-format json|human|junit|tap] [--batch-size <value>] [--no-normalize]
|
|
1474
|
+
|
|
1475
|
+
FLAGS
|
|
1476
|
+
-n, --api-name=<value> Agent DeveloperName (also called API name) to resolve agent_id and agent_version_id.
|
|
1477
|
+
Auto-inferred from the YAML spec's subjectName.
|
|
1478
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
1479
|
+
configuration variable is already set.
|
|
1480
|
+
-s, --spec=<value> (required) Path to test spec file (YAML or JSON). Supports reading from stdin when
|
|
1481
|
+
piping content.
|
|
1482
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
1483
|
+
--batch-size=<value> [default: 5] Number of tests per API request (max 5).
|
|
1484
|
+
--no-normalize Disable auto-normalization of field names and shorthand references.
|
|
1485
|
+
--result-format=<option> [default: human] Format of the agent test run results.
|
|
1486
|
+
<options: json|human|junit|tap>
|
|
1487
|
+
|
|
1488
|
+
GLOBAL FLAGS
|
|
1489
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
1490
|
+
--json Format output as json.
|
|
1491
|
+
|
|
1492
|
+
DESCRIPTION
|
|
1493
|
+
Run evaluation tests against an Agentforce agent.
|
|
1494
|
+
|
|
1495
|
+
Execute rich evaluation tests against an Agentforce agent using the Einstein Evaluation API. Supports both YAML test
|
|
1496
|
+
specs (same format as `sf agent generate test-spec`) and JSON payloads.
|
|
1497
|
+
|
|
1498
|
+
When you provide a YAML test spec, the command automatically translates test cases into Evaluation API calls and
|
|
1499
|
+
infers the agent name from the spec's `subjectName` field. This means you can use the same test spec with both `sf
|
|
1500
|
+
agent test run` and `sf agent test run-eval`. YAML test specs also support contextVariables, which allow you to inject
|
|
1501
|
+
contextual data (such as CaseId or RoutableId) into agent sessions for testing with different contexts.
|
|
1502
|
+
|
|
1503
|
+
When you provide a JSON payload, it's sent directly to the API with optional normalization. The normalizer
|
|
1504
|
+
auto-corrects common field name mistakes, converts shorthand references to JSONPath, and injects defaults. Use
|
|
1505
|
+
`--no-normalize` to disable this auto-normalization. JSON payloads can also include context_variables on
|
|
1506
|
+
agent.create_session steps for the same contextual testing capabilities.
|
|
1507
|
+
|
|
1508
|
+
Supports 8+ evaluator types, including topic routing assertions, action invocation checks, string/numeric assertions,
|
|
1509
|
+
semantic similarity scoring, and LLM-based quality ratings.
|
|
1510
|
+
|
|
1511
|
+
EXAMPLES
|
|
1512
|
+
Run tests using a YAML test spec on the org with alias "my-org":
|
|
1513
|
+
|
|
1514
|
+
$ sf agent test run-eval --spec tests/my-agent-testSpec.yaml --target-org my-org
|
|
1515
|
+
|
|
1516
|
+
Run tests using a YAML spec with explicit agent name override; use your default org:
|
|
1517
|
+
|
|
1518
|
+
$ sf agent test run-eval --spec tests/my-agent-testSpec.yaml --api-name My_Agent --target-org my-org
|
|
1519
|
+
|
|
1520
|
+
Run tests using a JSON payload:
|
|
1521
|
+
|
|
1522
|
+
$ sf agent test run-eval --spec tests/eval-payload.json --target-org my-org
|
|
1523
|
+
|
|
1524
|
+
Run tests and output results in JUnit format; useful for continuous integration and deployment (CI/CD):
|
|
1525
|
+
|
|
1526
|
+
$ sf agent test run-eval --spec tests/my-agent-testSpec.yaml --target-org my-org --result-format junit
|
|
1527
|
+
|
|
1528
|
+
Run tests with contextVariables to inject contextual data into agent sessions (add contextVariables to test cases in
|
|
1529
|
+
your YAML spec):
|
|
1530
|
+
|
|
1531
|
+
$ sf agent test run-eval --spec tests/agent-with-context.yaml --target-org my-org
|
|
1532
|
+
|
|
1533
|
+
Pipe JSON payload from stdin (--spec flag is automatically populated from stdin):
|
|
1534
|
+
$ echo '{"tests":[...]}' | sf agent test run-eval --spec --target-org my-org
|
|
1535
|
+
|
|
1536
|
+
ENVIRONMENT VARIABLES
|
|
1537
|
+
SF_TARGET_ORG Username or alias of your default org. Overrides the target-org configuration variable.
|
|
1538
|
+
|
|
1539
|
+
ERROR CODES
|
|
1540
|
+
Succeeded (0) Tests completed successfully. Test results (passed/failed) are in the JSON output.
|
|
1541
|
+
Failed (1) Tests encountered execution errors (tests couldn't run properly).
|
|
1542
|
+
NotFound (2) Agent not found, spec file not found, or invalid agent name.
|
|
1543
|
+
OperationFailed (4) Failed to execute tests due to API or network errors.
|
|
1544
|
+
```
|
|
1545
|
+
|
|
1546
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/run-eval.ts)_
|
|
1422
1547
|
|
|
1423
1548
|
## `sf agent validate authoring-bundle`
|
|
1424
1549
|
|
|
@@ -1475,7 +1600,7 @@ ERROR CODES
|
|
|
1475
1600
|
ServerError (3) Validation/compilation API returned HTTP 500. A server error occurred during compilation.
|
|
1476
1601
|
```
|
|
1477
1602
|
|
|
1478
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1603
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1479
1604
|
|
|
1480
1605
|
## `sf alias list`
|
|
1481
1606
|
|
|
@@ -2038,7 +2163,7 @@ EXAMPLES
|
|
|
2038
2163
|
$ sf api request graphql --body example.txt --stream-to-file output.txt --include
|
|
2039
2164
|
```
|
|
2040
2165
|
|
|
2041
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.
|
|
2166
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.25/src/commands/api/request/graphql.ts)_
|
|
2042
2167
|
|
|
2043
2168
|
## `sf api request rest [URL]`
|
|
2044
2169
|
|
|
@@ -2147,7 +2272,7 @@ FLAG DESCRIPTIONS
|
|
|
2147
2272
|
https://github.com/salesforcecli/plugin-api/tree/main/test/test-files/data-project.
|
|
2148
2273
|
```
|
|
2149
2274
|
|
|
2150
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.
|
|
2275
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.25/src/commands/api/request/rest.ts)_
|
|
2151
2276
|
|
|
2152
2277
|
## `sf autocomplete [SHELL]`
|
|
2153
2278
|
|
|
@@ -4088,7 +4213,7 @@ FLAG DESCRIPTIONS
|
|
|
4088
4213
|
"agent.user.<GUID>@your-org-domain.com".
|
|
4089
4214
|
```
|
|
4090
4215
|
|
|
4091
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4216
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/create/agent-user.ts)_
|
|
4092
4217
|
|
|
4093
4218
|
## `sf org create sandbox`
|
|
4094
4219
|
|
|
@@ -4222,7 +4347,7 @@ FLAG DESCRIPTIONS
|
|
|
4222
4347
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
4223
4348
|
```
|
|
4224
4349
|
|
|
4225
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4350
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/create/sandbox.ts)_
|
|
4226
4351
|
|
|
4227
4352
|
## `sf org create scratch`
|
|
4228
4353
|
|
|
@@ -4404,7 +4529,7 @@ FLAG DESCRIPTIONS
|
|
|
4404
4529
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4405
4530
|
```
|
|
4406
4531
|
|
|
4407
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4532
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/create/scratch.ts)_
|
|
4408
4533
|
|
|
4409
4534
|
## `sf org create user`
|
|
4410
4535
|
|
|
@@ -4558,7 +4683,7 @@ EXAMPLES
|
|
|
4558
4683
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4559
4684
|
```
|
|
4560
4685
|
|
|
4561
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4686
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/delete/sandbox.ts)_
|
|
4562
4687
|
|
|
4563
4688
|
## `sf org delete scratch`
|
|
4564
4689
|
|
|
@@ -4602,7 +4727,7 @@ EXAMPLES
|
|
|
4602
4727
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4603
4728
|
```
|
|
4604
4729
|
|
|
4605
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4730
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/delete/scratch.ts)_
|
|
4606
4731
|
|
|
4607
4732
|
## `sf org disable tracking`
|
|
4608
4733
|
|
|
@@ -4641,7 +4766,7 @@ EXAMPLES
|
|
|
4641
4766
|
$ sf org disable tracking
|
|
4642
4767
|
```
|
|
4643
4768
|
|
|
4644
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4769
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/disable/tracking.ts)_
|
|
4645
4770
|
|
|
4646
4771
|
## `sf org display`
|
|
4647
4772
|
|
|
@@ -4686,7 +4811,7 @@ EXAMPLES
|
|
|
4686
4811
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4687
4812
|
```
|
|
4688
4813
|
|
|
4689
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4814
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/display.ts)_
|
|
4690
4815
|
|
|
4691
4816
|
## `sf org display user`
|
|
4692
4817
|
|
|
@@ -4767,7 +4892,7 @@ EXAMPLES
|
|
|
4767
4892
|
$ sf org enable tracking
|
|
4768
4893
|
```
|
|
4769
4894
|
|
|
4770
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4895
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/enable/tracking.ts)_
|
|
4771
4896
|
|
|
4772
4897
|
## `sf org generate password`
|
|
4773
4898
|
|
|
@@ -4873,7 +4998,7 @@ EXAMPLES
|
|
|
4873
4998
|
$ sf org list --clean
|
|
4874
4999
|
```
|
|
4875
5000
|
|
|
4876
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5001
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/list.ts)_
|
|
4877
5002
|
|
|
4878
5003
|
## `sf org list auth`
|
|
4879
5004
|
|
|
@@ -5012,7 +5137,7 @@ FLAG DESCRIPTIONS
|
|
|
5012
5137
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
5013
5138
|
```
|
|
5014
5139
|
|
|
5015
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5140
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/list/metadata.ts)_
|
|
5016
5141
|
|
|
5017
5142
|
## `sf org list metadata-types`
|
|
5018
5143
|
|
|
@@ -5067,7 +5192,7 @@ FLAG DESCRIPTIONS
|
|
|
5067
5192
|
Override the api version used for api requests made by this command
|
|
5068
5193
|
```
|
|
5069
5194
|
|
|
5070
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5195
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/list/metadata-types.ts)_
|
|
5071
5196
|
|
|
5072
5197
|
## `sf org list sobject record-counts`
|
|
5073
5198
|
|
|
@@ -5613,7 +5738,7 @@ EXAMPLES
|
|
|
5613
5738
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5614
5739
|
```
|
|
5615
5740
|
|
|
5616
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5741
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/open.ts)_
|
|
5617
5742
|
|
|
5618
5743
|
## `sf org open agent`
|
|
5619
5744
|
|
|
@@ -5688,7 +5813,7 @@ FLAG DESCRIPTIONS
|
|
|
5688
5813
|
flag.
|
|
5689
5814
|
```
|
|
5690
5815
|
|
|
5691
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5816
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/open/agent.ts)_
|
|
5692
5817
|
|
|
5693
5818
|
## `sf org open authoring-bundle`
|
|
5694
5819
|
|
|
@@ -5734,7 +5859,7 @@ EXAMPLES
|
|
|
5734
5859
|
$ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
|
|
5735
5860
|
```
|
|
5736
5861
|
|
|
5737
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5862
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/open/authoring-bundle.ts)_
|
|
5738
5863
|
|
|
5739
5864
|
## `sf org refresh sandbox`
|
|
5740
5865
|
|
|
@@ -5837,7 +5962,7 @@ FLAG DESCRIPTIONS
|
|
|
5837
5962
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
5838
5963
|
```
|
|
5839
5964
|
|
|
5840
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5965
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/refresh/sandbox.ts)_
|
|
5841
5966
|
|
|
5842
5967
|
## `sf org resume sandbox`
|
|
5843
5968
|
|
|
@@ -5900,7 +6025,7 @@ FLAG DESCRIPTIONS
|
|
|
5900
6025
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5901
6026
|
```
|
|
5902
6027
|
|
|
5903
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
6028
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/resume/sandbox.ts)_
|
|
5904
6029
|
|
|
5905
6030
|
## `sf org resume scratch`
|
|
5906
6031
|
|
|
@@ -5953,7 +6078,7 @@ FLAG DESCRIPTIONS
|
|
|
5953
6078
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
5954
6079
|
```
|
|
5955
6080
|
|
|
5956
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
6081
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/resume/scratch.ts)_
|
|
5957
6082
|
|
|
5958
6083
|
## `sf package convert`
|
|
5959
6084
|
|
|
@@ -6050,7 +6175,7 @@ FLAG DESCRIPTIONS
|
|
|
6050
6175
|
--installation-key-bypass flag is required.
|
|
6051
6176
|
```
|
|
6052
6177
|
|
|
6053
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6178
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/convert.ts)_
|
|
6054
6179
|
|
|
6055
6180
|
## `sf package create`
|
|
6056
6181
|
|
|
@@ -6129,7 +6254,7 @@ FLAG DESCRIPTIONS
|
|
|
6129
6254
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
6130
6255
|
```
|
|
6131
6256
|
|
|
6132
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6257
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/create.ts)_
|
|
6133
6258
|
|
|
6134
6259
|
## `sf package delete`
|
|
6135
6260
|
|
|
@@ -6171,7 +6296,7 @@ EXAMPLES
|
|
|
6171
6296
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
6172
6297
|
```
|
|
6173
6298
|
|
|
6174
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6299
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/delete.ts)_
|
|
6175
6300
|
|
|
6176
6301
|
## `sf package install`
|
|
6177
6302
|
|
|
@@ -6270,7 +6395,7 @@ FLAG DESCRIPTIONS
|
|
|
6270
6395
|
- Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
|
|
6271
6396
|
```
|
|
6272
6397
|
|
|
6273
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6398
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/install.ts)_
|
|
6274
6399
|
|
|
6275
6400
|
## `sf package install report`
|
|
6276
6401
|
|
|
@@ -6303,7 +6428,7 @@ EXAMPLES
|
|
|
6303
6428
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
6304
6429
|
```
|
|
6305
6430
|
|
|
6306
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6431
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/install/report.ts)_
|
|
6307
6432
|
|
|
6308
6433
|
## `sf package installed list`
|
|
6309
6434
|
|
|
@@ -6335,7 +6460,7 @@ EXAMPLES
|
|
|
6335
6460
|
$ sf package installed list --target-org me@example.com
|
|
6336
6461
|
```
|
|
6337
6462
|
|
|
6338
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6463
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/installed/list.ts)_
|
|
6339
6464
|
|
|
6340
6465
|
## `sf package list`
|
|
6341
6466
|
|
|
@@ -6373,7 +6498,7 @@ EXAMPLES
|
|
|
6373
6498
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
6374
6499
|
```
|
|
6375
6500
|
|
|
6376
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6501
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/list.ts)_
|
|
6377
6502
|
|
|
6378
6503
|
## `sf package push-upgrade abort`
|
|
6379
6504
|
|
|
@@ -6412,7 +6537,7 @@ EXAMPLES
|
|
|
6412
6537
|
$ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6413
6538
|
```
|
|
6414
6539
|
|
|
6415
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6540
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/push-upgrade/abort.ts)_
|
|
6416
6541
|
|
|
6417
6542
|
## `sf package push-upgrade list`
|
|
6418
6543
|
|
|
@@ -6471,7 +6596,7 @@ EXAMPLES
|
|
|
6471
6596
|
$ sf package push-upgrade list --package 033xyz –-status Failed
|
|
6472
6597
|
```
|
|
6473
6598
|
|
|
6474
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6599
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/push-upgrade/list.ts)_
|
|
6475
6600
|
|
|
6476
6601
|
## `sf package push-upgrade report`
|
|
6477
6602
|
|
|
@@ -6513,7 +6638,7 @@ EXAMPLES
|
|
|
6513
6638
|
$ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
|
|
6514
6639
|
```
|
|
6515
6640
|
|
|
6516
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6641
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/push-upgrade/report.ts)_
|
|
6517
6642
|
|
|
6518
6643
|
## `sf package push-upgrade schedule`
|
|
6519
6644
|
|
|
@@ -6600,7 +6725,7 @@ FLAG DESCRIPTIONS
|
|
|
6600
6725
|
Overrides the value of the target-dev-hub configuration variable, if set.
|
|
6601
6726
|
```
|
|
6602
6727
|
|
|
6603
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6728
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/push-upgrade/schedule.ts)_
|
|
6604
6729
|
|
|
6605
6730
|
## `sf package uninstall`
|
|
6606
6731
|
|
|
@@ -6648,7 +6773,7 @@ EXAMPLES
|
|
|
6648
6773
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
6649
6774
|
```
|
|
6650
6775
|
|
|
6651
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6776
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/uninstall.ts)_
|
|
6652
6777
|
|
|
6653
6778
|
## `sf package uninstall report`
|
|
6654
6779
|
|
|
@@ -6681,7 +6806,7 @@ EXAMPLES
|
|
|
6681
6806
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
6682
6807
|
```
|
|
6683
6808
|
|
|
6684
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6809
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/uninstall/report.ts)_
|
|
6685
6810
|
|
|
6686
6811
|
## `sf package update`
|
|
6687
6812
|
|
|
@@ -6749,7 +6874,7 @@ FLAG DESCRIPTIONS
|
|
|
6749
6874
|
the Installed Packages page. Only released package versions can be set as the recommended version.
|
|
6750
6875
|
```
|
|
6751
6876
|
|
|
6752
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
6877
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/update.ts)_
|
|
6753
6878
|
|
|
6754
6879
|
## `sf package version create`
|
|
6755
6880
|
|
|
@@ -6926,7 +7051,7 @@ FLAG DESCRIPTIONS
|
|
|
6926
7051
|
periods of no output from commands.
|
|
6927
7052
|
```
|
|
6928
7053
|
|
|
6929
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7054
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/create.ts)_
|
|
6930
7055
|
|
|
6931
7056
|
## `sf package version create list`
|
|
6932
7057
|
|
|
@@ -6987,7 +7112,7 @@ EXAMPLES
|
|
|
6987
7112
|
$ sf package version create list --created-last-days 0 --status Success
|
|
6988
7113
|
```
|
|
6989
7114
|
|
|
6990
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7115
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/create/list.ts)_
|
|
6991
7116
|
|
|
6992
7117
|
## `sf package version create report`
|
|
6993
7118
|
|
|
@@ -7030,7 +7155,7 @@ EXAMPLES
|
|
|
7030
7155
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
7031
7156
|
```
|
|
7032
7157
|
|
|
7033
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7158
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/create/report.ts)_
|
|
7034
7159
|
|
|
7035
7160
|
## `sf package version delete`
|
|
7036
7161
|
|
|
@@ -7071,7 +7196,7 @@ EXAMPLES
|
|
|
7071
7196
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
7072
7197
|
```
|
|
7073
7198
|
|
|
7074
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7199
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/delete.ts)_
|
|
7075
7200
|
|
|
7076
7201
|
## `sf package version displayancestry`
|
|
7077
7202
|
|
|
@@ -7131,7 +7256,7 @@ FLAG DESCRIPTIONS
|
|
|
7131
7256
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
7132
7257
|
```
|
|
7133
7258
|
|
|
7134
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7259
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/displayancestry.ts)_
|
|
7135
7260
|
|
|
7136
7261
|
## `sf package version displaydependencies`
|
|
7137
7262
|
|
|
@@ -7193,7 +7318,7 @@ FLAG DESCRIPTIONS
|
|
|
7193
7318
|
package, which must be installed last.
|
|
7194
7319
|
```
|
|
7195
7320
|
|
|
7196
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7321
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/displaydependencies.ts)_
|
|
7197
7322
|
|
|
7198
7323
|
## `sf package version list`
|
|
7199
7324
|
|
|
@@ -7269,7 +7394,7 @@ EXAMPLES
|
|
|
7269
7394
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
7270
7395
|
```
|
|
7271
7396
|
|
|
7272
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7397
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/list.ts)_
|
|
7273
7398
|
|
|
7274
7399
|
## `sf package version promote`
|
|
7275
7400
|
|
|
@@ -7313,7 +7438,7 @@ EXAMPLES
|
|
|
7313
7438
|
$ sf package version promote --package "Awesome Package Alias"
|
|
7314
7439
|
```
|
|
7315
7440
|
|
|
7316
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7441
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/promote.ts)_
|
|
7317
7442
|
|
|
7318
7443
|
## `sf package version report`
|
|
7319
7444
|
|
|
@@ -7353,7 +7478,7 @@ EXAMPLES
|
|
|
7353
7478
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
7354
7479
|
```
|
|
7355
7480
|
|
|
7356
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7481
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/report.ts)_
|
|
7357
7482
|
|
|
7358
7483
|
## `sf package version retrieve`
|
|
7359
7484
|
|
|
@@ -7398,7 +7523,7 @@ EXAMPLES
|
|
|
7398
7523
|
$ sf package version retrieve --package 04tXXX --output-dir my-directory/ --target-dev-hub devhub@example.com
|
|
7399
7524
|
```
|
|
7400
7525
|
|
|
7401
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7526
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/retrieve.ts)_
|
|
7402
7527
|
|
|
7403
7528
|
## `sf package version update`
|
|
7404
7529
|
|
|
@@ -7451,7 +7576,7 @@ EXAMPLES
|
|
|
7451
7576
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
7452
7577
|
```
|
|
7453
7578
|
|
|
7454
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7579
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/update.ts)_
|
|
7455
7580
|
|
|
7456
7581
|
## `sf package1 version create`
|
|
7457
7582
|
|
|
@@ -7518,7 +7643,7 @@ FLAG DESCRIPTIONS
|
|
|
7518
7643
|
subscribers.
|
|
7519
7644
|
```
|
|
7520
7645
|
|
|
7521
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7646
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package1/version/create.ts)_
|
|
7522
7647
|
|
|
7523
7648
|
## `sf package1 version create get`
|
|
7524
7649
|
|
|
@@ -7551,7 +7676,7 @@ EXAMPLES
|
|
|
7551
7676
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
7552
7677
|
```
|
|
7553
7678
|
|
|
7554
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7679
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package1/version/create/get.ts)_
|
|
7555
7680
|
|
|
7556
7681
|
## `sf package1 version display`
|
|
7557
7682
|
|
|
@@ -7585,7 +7710,7 @@ EXAMPLES
|
|
|
7585
7710
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
7586
7711
|
```
|
|
7587
7712
|
|
|
7588
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7713
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package1/version/display.ts)_
|
|
7589
7714
|
|
|
7590
7715
|
## `sf package1 version list`
|
|
7591
7716
|
|
|
@@ -7623,7 +7748,7 @@ FLAG DESCRIPTIONS
|
|
|
7623
7748
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
7624
7749
|
```
|
|
7625
7750
|
|
|
7626
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.
|
|
7751
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package1/version/list.ts)_
|
|
7627
7752
|
|
|
7628
7753
|
## `sf plugins`
|
|
7629
7754
|
|
|
@@ -7646,7 +7771,7 @@ EXAMPLES
|
|
|
7646
7771
|
$ sf plugins
|
|
7647
7772
|
```
|
|
7648
7773
|
|
|
7649
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7774
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/index.ts)_
|
|
7650
7775
|
|
|
7651
7776
|
## `sf plugins discover`
|
|
7652
7777
|
|
|
@@ -7664,7 +7789,7 @@ EXAMPLES
|
|
|
7664
7789
|
$ sf plugins discover
|
|
7665
7790
|
```
|
|
7666
7791
|
|
|
7667
|
-
_See code: [@salesforce/plugin-marketplace](https://github.com/salesforcecli/plugin-marketplace/blob/1.3.
|
|
7792
|
+
_See code: [@salesforce/plugin-marketplace](https://github.com/salesforcecli/plugin-marketplace/blob/1.3.22/src/commands/plugins/discover.ts)_
|
|
7668
7793
|
|
|
7669
7794
|
## `sf plugins:inspect PLUGIN...`
|
|
7670
7795
|
|
|
@@ -7691,7 +7816,7 @@ EXAMPLES
|
|
|
7691
7816
|
$ sf plugins inspect @salesforce/plugin-packaging
|
|
7692
7817
|
```
|
|
7693
7818
|
|
|
7694
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7819
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/inspect.ts)_
|
|
7695
7820
|
|
|
7696
7821
|
## `sf plugins install PLUGIN`
|
|
7697
7822
|
|
|
@@ -7740,7 +7865,7 @@ EXAMPLES
|
|
|
7740
7865
|
$ sf plugins install someuser/someplugin
|
|
7741
7866
|
```
|
|
7742
7867
|
|
|
7743
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7868
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/install.ts)_
|
|
7744
7869
|
|
|
7745
7870
|
## `sf plugins link PATH`
|
|
7746
7871
|
|
|
@@ -7771,7 +7896,7 @@ EXAMPLES
|
|
|
7771
7896
|
$ sf plugins link @salesforce/plugin-packaging
|
|
7772
7897
|
```
|
|
7773
7898
|
|
|
7774
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7899
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/link.ts)_
|
|
7775
7900
|
|
|
7776
7901
|
## `sf plugins reset`
|
|
7777
7902
|
|
|
@@ -7786,7 +7911,7 @@ FLAGS
|
|
|
7786
7911
|
--reinstall Reinstall all plugins after uninstalling.
|
|
7787
7912
|
```
|
|
7788
7913
|
|
|
7789
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7914
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/reset.ts)_
|
|
7790
7915
|
|
|
7791
7916
|
## `sf plugins trust allowlist add`
|
|
7792
7917
|
|
|
@@ -7823,7 +7948,7 @@ EXAMPLES
|
|
|
7823
7948
|
$ sf plugins trust allowlist add --name @scope/my-plugin --name another-plugin
|
|
7824
7949
|
```
|
|
7825
7950
|
|
|
7826
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.
|
|
7951
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.2/src/commands/plugins/trust/allowlist/add.ts)_
|
|
7827
7952
|
|
|
7828
7953
|
## `sf plugins trust allowlist list`
|
|
7829
7954
|
|
|
@@ -7851,7 +7976,7 @@ EXAMPLES
|
|
|
7851
7976
|
$ sf plugins trust allowlist list
|
|
7852
7977
|
```
|
|
7853
7978
|
|
|
7854
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.
|
|
7979
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.2/src/commands/plugins/trust/allowlist/list.ts)_
|
|
7855
7980
|
|
|
7856
7981
|
## `sf plugins trust allowlist remove`
|
|
7857
7982
|
|
|
@@ -7888,7 +8013,7 @@ EXAMPLES
|
|
|
7888
8013
|
$ sf plugins trust allowlist remove --name @scope/my-plugin --name another-plugin
|
|
7889
8014
|
```
|
|
7890
8015
|
|
|
7891
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.
|
|
8016
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.2/src/commands/plugins/trust/allowlist/remove.ts)_
|
|
7892
8017
|
|
|
7893
8018
|
## `sf plugins trust verify`
|
|
7894
8019
|
|
|
@@ -7917,7 +8042,7 @@ EXAMPLES
|
|
|
7917
8042
|
$ sf plugins trust verify --npm @scope/npmName
|
|
7918
8043
|
```
|
|
7919
8044
|
|
|
7920
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.
|
|
8045
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.2/src/commands/plugins/trust/verify.ts)_
|
|
7921
8046
|
|
|
7922
8047
|
## `sf plugins uninstall [PLUGIN]`
|
|
7923
8048
|
|
|
@@ -7945,7 +8070,7 @@ EXAMPLES
|
|
|
7945
8070
|
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
7946
8071
|
```
|
|
7947
8072
|
|
|
7948
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
8073
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/uninstall.ts)_
|
|
7949
8074
|
|
|
7950
8075
|
## `sf plugins update`
|
|
7951
8076
|
|
|
@@ -7963,7 +8088,7 @@ DESCRIPTION
|
|
|
7963
8088
|
Update installed plugins.
|
|
7964
8089
|
```
|
|
7965
8090
|
|
|
7966
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
8091
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/update.ts)_
|
|
7967
8092
|
|
|
7968
8093
|
## `sf project convert mdapi`
|
|
7969
8094
|
|
|
@@ -8026,7 +8151,7 @@ FLAG DESCRIPTIONS
|
|
|
8026
8151
|
If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8027
8152
|
```
|
|
8028
8153
|
|
|
8029
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8154
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/convert/mdapi.ts)_
|
|
8030
8155
|
|
|
8031
8156
|
## `sf project convert source`
|
|
8032
8157
|
|
|
@@ -8099,7 +8224,7 @@ FLAG DESCRIPTIONS
|
|
|
8099
8224
|
Override the api version used for api requests made by this command
|
|
8100
8225
|
```
|
|
8101
8226
|
|
|
8102
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8227
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/convert/source.ts)_
|
|
8103
8228
|
|
|
8104
8229
|
## `sf project convert source-behavior`
|
|
8105
8230
|
|
|
@@ -8158,7 +8283,7 @@ EXAMPLES
|
|
|
8158
8283
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
8159
8284
|
```
|
|
8160
8285
|
|
|
8161
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8286
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/convert/source-behavior.ts)_
|
|
8162
8287
|
|
|
8163
8288
|
## `sf project delete source`
|
|
8164
8289
|
|
|
@@ -8311,7 +8436,7 @@ FLAG DESCRIPTIONS
|
|
|
8311
8436
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
8312
8437
|
```
|
|
8313
8438
|
|
|
8314
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8439
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/delete/source.ts)_
|
|
8315
8440
|
|
|
8316
8441
|
## `sf project delete tracking`
|
|
8317
8442
|
|
|
@@ -8348,7 +8473,7 @@ EXAMPLES
|
|
|
8348
8473
|
$ sf project delete tracking --target-org my-scratch
|
|
8349
8474
|
```
|
|
8350
8475
|
|
|
8351
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8476
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/delete/tracking.ts)_
|
|
8352
8477
|
|
|
8353
8478
|
## `sf project deploy cancel`
|
|
8354
8479
|
|
|
@@ -8420,7 +8545,7 @@ FLAG DESCRIPTIONS
|
|
|
8420
8545
|
project deploy report".
|
|
8421
8546
|
```
|
|
8422
8547
|
|
|
8423
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8548
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/cancel.ts)_
|
|
8424
8549
|
|
|
8425
8550
|
## `sf project deploy preview`
|
|
8426
8551
|
|
|
@@ -8503,7 +8628,7 @@ FLAG DESCRIPTIONS
|
|
|
8503
8628
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8504
8629
|
```
|
|
8505
8630
|
|
|
8506
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8631
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/preview.ts)_
|
|
8507
8632
|
|
|
8508
8633
|
## `sf project deploy quick`
|
|
8509
8634
|
|
|
@@ -8596,7 +8721,7 @@ ERROR CODES
|
|
|
8596
8721
|
Canceling (69) The deploy is being canceled.
|
|
8597
8722
|
```
|
|
8598
8723
|
|
|
8599
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8724
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/quick.ts)_
|
|
8600
8725
|
|
|
8601
8726
|
## `sf project deploy report`
|
|
8602
8727
|
|
|
@@ -8688,7 +8813,7 @@ FLAG DESCRIPTIONS
|
|
|
8688
8813
|
--coverage-formatters lcov --coverage-formatters clover
|
|
8689
8814
|
```
|
|
8690
8815
|
|
|
8691
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8816
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/report.ts)_
|
|
8692
8817
|
|
|
8693
8818
|
## `sf project deploy resume`
|
|
8694
8819
|
|
|
@@ -8785,7 +8910,7 @@ ERROR CODES
|
|
|
8785
8910
|
Canceling (69) The deploy is being canceled.
|
|
8786
8911
|
```
|
|
8787
8912
|
|
|
8788
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8913
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/resume.ts)_
|
|
8789
8914
|
|
|
8790
8915
|
## `sf project deploy start`
|
|
8791
8916
|
|
|
@@ -9051,7 +9176,7 @@ ERROR CODES
|
|
|
9051
9176
|
Canceling (69) The deploy is being canceled.
|
|
9052
9177
|
```
|
|
9053
9178
|
|
|
9054
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9179
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/start.ts)_
|
|
9055
9180
|
|
|
9056
9181
|
## `sf project deploy validate`
|
|
9057
9182
|
|
|
@@ -9255,7 +9380,7 @@ ERROR CODES
|
|
|
9255
9380
|
Canceling (69) The deploy is being canceled.
|
|
9256
9381
|
```
|
|
9257
9382
|
|
|
9258
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9383
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/validate.ts)_
|
|
9259
9384
|
|
|
9260
9385
|
## `sf project generate manifest`
|
|
9261
9386
|
|
|
@@ -9351,7 +9476,7 @@ EXAMPLES
|
|
|
9351
9476
|
$ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
|
|
9352
9477
|
```
|
|
9353
9478
|
|
|
9354
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9479
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/generate/manifest.ts)_
|
|
9355
9480
|
|
|
9356
9481
|
## `sf project list ignored`
|
|
9357
9482
|
|
|
@@ -9393,7 +9518,7 @@ EXAMPLES
|
|
|
9393
9518
|
$ sf project list ignored --source-dir package.xml
|
|
9394
9519
|
```
|
|
9395
9520
|
|
|
9396
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9521
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/list/ignored.ts)_
|
|
9397
9522
|
|
|
9398
9523
|
## `sf project reset tracking`
|
|
9399
9524
|
|
|
@@ -9442,7 +9567,7 @@ EXAMPLES
|
|
|
9442
9567
|
$ sf project reset tracking --revision 30
|
|
9443
9568
|
```
|
|
9444
9569
|
|
|
9445
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9570
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/reset/tracking.ts)_
|
|
9446
9571
|
|
|
9447
9572
|
## `sf project retrieve preview`
|
|
9448
9573
|
|
|
@@ -9496,7 +9621,7 @@ FLAG DESCRIPTIONS
|
|
|
9496
9621
|
production orgs.
|
|
9497
9622
|
```
|
|
9498
9623
|
|
|
9499
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9624
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/retrieve/preview.ts)_
|
|
9500
9625
|
|
|
9501
9626
|
## `sf project retrieve start`
|
|
9502
9627
|
|
|
@@ -9677,7 +9802,7 @@ ENVIRONMENT VARIABLES
|
|
|
9677
9802
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
9678
9803
|
```
|
|
9679
9804
|
|
|
9680
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9805
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/retrieve/start.ts)_
|
|
9681
9806
|
|
|
9682
9807
|
## `sf schema generate field`
|
|
9683
9808
|
|