@salesforce/cli 2.135.4 → 2.135.6
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 +209 -162
- package/npm-shrinkwrap.json +49 -49
- package/oclif.lock +52 -52
- package/oclif.manifest.json +1 -1
- package/package.json +7 -7
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.135.
|
|
28
|
+
@salesforce/cli/2.135.6 linux-x64 node-v22.22.2
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -281,7 +281,7 @@ ERROR CODES
|
|
|
281
281
|
ActivationFailed (4) Failed to activate the agent due to API or network errors.
|
|
282
282
|
```
|
|
283
283
|
|
|
284
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
284
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/activate.ts)_
|
|
285
285
|
|
|
286
286
|
## `sf agent create`
|
|
287
287
|
|
|
@@ -348,7 +348,7 @@ EXAMPLES
|
|
|
348
348
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
349
349
|
```
|
|
350
350
|
|
|
351
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
351
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/create.ts)_
|
|
352
352
|
|
|
353
353
|
## `sf agent deactivate`
|
|
354
354
|
|
|
@@ -397,7 +397,7 @@ ERROR CODES
|
|
|
397
397
|
DeactivationFailed (4) Failed to deactivate the agent due to API or network errors.
|
|
398
398
|
```
|
|
399
399
|
|
|
400
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
400
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/deactivate.ts)_
|
|
401
401
|
|
|
402
402
|
## `sf agent generate agent-spec`
|
|
403
403
|
|
|
@@ -504,7 +504,7 @@ EXAMPLES
|
|
|
504
504
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
505
505
|
```
|
|
506
506
|
|
|
507
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
507
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/generate/agent-spec.ts)_
|
|
508
508
|
|
|
509
509
|
## `sf agent generate authoring-bundle`
|
|
510
510
|
|
|
@@ -581,7 +581,7 @@ EXAMPLES
|
|
|
581
581
|
other-package-dir/main/default --target-org my-dev-org
|
|
582
582
|
```
|
|
583
583
|
|
|
584
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
584
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/generate/authoring-bundle.ts)_
|
|
585
585
|
|
|
586
586
|
## `sf agent generate template`
|
|
587
587
|
|
|
@@ -643,7 +643,7 @@ EXAMPLES
|
|
|
643
643
|
my-package --source-org my-scratch-org
|
|
644
644
|
```
|
|
645
645
|
|
|
646
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
646
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/generate/template.ts)_
|
|
647
647
|
|
|
648
648
|
## `sf agent generate test-spec`
|
|
649
649
|
|
|
@@ -708,7 +708,7 @@ EXAMPLES
|
|
|
708
708
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
709
709
|
```
|
|
710
710
|
|
|
711
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
711
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/generate/test-spec.ts)_
|
|
712
712
|
|
|
713
713
|
## `sf agent preview`
|
|
714
714
|
|
|
@@ -781,7 +781,7 @@ EXAMPLES
|
|
|
781
781
|
$ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
|
|
782
782
|
```
|
|
783
783
|
|
|
784
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
784
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/preview.ts)_
|
|
785
785
|
|
|
786
786
|
## `sf agent preview end`
|
|
787
787
|
|
|
@@ -789,13 +789,18 @@ End an existing programmatic agent preview session and get trace location.
|
|
|
789
789
|
|
|
790
790
|
```
|
|
791
791
|
USAGE
|
|
792
|
-
$ sf agent preview end -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [--session-id <value>
|
|
793
|
-
<value>
|
|
792
|
+
$ sf agent preview end -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [--session-id <value> |
|
|
793
|
+
--all] [-n <value> | --authoring-bundle <value>] [-p]
|
|
794
794
|
|
|
795
795
|
FLAGS
|
|
796
796
|
-n, --api-name=<value> API name of the activated published agent you want to preview.
|
|
797
797
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
798
798
|
configuration variable is already set.
|
|
799
|
+
-p, --no-prompt Don't prompt for confirmation before ending sessions. Has an effect only when used
|
|
800
|
+
with --all.
|
|
801
|
+
--all End all active preview sessions. Combine with --api-name or --authoring-bundle to
|
|
802
|
+
limit to a specific agent, or use with only --target-org to end sessions for all
|
|
803
|
+
agents found in the local session cache. Requires --target-org.
|
|
799
804
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
800
805
|
--authoring-bundle=<value> API name of the authoring bundle metadata component that contains the agent's Agent
|
|
801
806
|
Script file.
|
|
@@ -815,13 +820,17 @@ DESCRIPTION
|
|
|
815
820
|
The original "agent preview start" command outputs a session ID which you then use with the --session-id flag of this
|
|
816
821
|
command to end the session. You don't have to specify the --session-id flag if an agent has only one active preview
|
|
817
822
|
session. You must also use either the --authoring-bundle or --api-name flag to specify the API name of the authoring
|
|
818
|
-
bundle or the published agent,
|
|
823
|
+
bundle or the published agent, respectively. To find either API name, navigate to your package directory in your DX
|
|
819
824
|
project. The API name of an authoring bundle is the same as its directory name under the "aiAuthoringBundles" metadata
|
|
820
825
|
directory. Similarly, the published agent's API name is the same as its directory name under the "Bots" metadata
|
|
821
826
|
directory.
|
|
822
827
|
|
|
828
|
+
Use the --all flag to end all active preview sessions at once. You can combine --all with --api-name or
|
|
829
|
+
--authoring-bundle to end only sessions for a specific agent, or use --all on its own to end every session across all
|
|
830
|
+
agents in the project.
|
|
831
|
+
|
|
823
832
|
EXAMPLES
|
|
824
|
-
End a preview session of a published agent by specifying its session ID and API name
|
|
833
|
+
End a preview session of a published agent by specifying its session ID and API name; use the default org:
|
|
825
834
|
|
|
826
835
|
$ sf agent preview end --session-id <SESSION_ID> --api-name My_Published_Agent
|
|
827
836
|
|
|
@@ -835,17 +844,28 @@ EXAMPLES
|
|
|
835
844
|
|
|
836
845
|
$ sf agent preview end --authoring-bundle My_Local_Agent
|
|
837
846
|
|
|
847
|
+
End all active preview sessions for a specific agent without prompting:
|
|
848
|
+
|
|
849
|
+
$ sf agent preview end --all --authoring-bundle My_Local_Agent --target-org <target_org> --no-prompt
|
|
850
|
+
|
|
851
|
+
End all active preview sessions across every agent in the local session cache for an org:
|
|
852
|
+
|
|
853
|
+
$ sf agent preview end --all --target-org <target_org>
|
|
854
|
+
|
|
838
855
|
ENVIRONMENT VARIABLES
|
|
839
856
|
SF_TARGET_ORG Username or alias of your default org. Overrides the target-org configuration variable.
|
|
840
857
|
|
|
841
858
|
ERROR CODES
|
|
842
|
-
Succeeded (0)
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
859
|
+
Succeeded (0) Preview session ended successfully and traces saved.
|
|
860
|
+
ExactlyOneRequired (2) Neither --api-name nor --authoring-bundle was provided (required when --all is not
|
|
861
|
+
set).
|
|
862
|
+
NotFound (2) Agent not found, or no preview session exists for this agent.
|
|
863
|
+
PreviewEndFailed (4) Failed to end the preview session.
|
|
864
|
+
PreviewEndPartialFailure (68) With --all, one or more sessions failed to end while others succeeded.
|
|
865
|
+
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
846
866
|
```
|
|
847
867
|
|
|
848
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
868
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/preview/end.ts)_
|
|
849
869
|
|
|
850
870
|
## `sf agent preview send`
|
|
851
871
|
|
|
@@ -912,7 +932,7 @@ ERROR CODES
|
|
|
912
932
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
913
933
|
```
|
|
914
934
|
|
|
915
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
935
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/preview/send.ts)_
|
|
916
936
|
|
|
917
937
|
## `sf agent preview sessions`
|
|
918
938
|
|
|
@@ -948,7 +968,7 @@ ERROR CODES
|
|
|
948
968
|
Succeeded (0) Sessions listed successfully (or empty list if no active sessions).
|
|
949
969
|
```
|
|
950
970
|
|
|
951
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
971
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/preview/sessions.ts)_
|
|
952
972
|
|
|
953
973
|
## `sf agent preview start`
|
|
954
974
|
|
|
@@ -1024,7 +1044,7 @@ ERROR CODES
|
|
|
1024
1044
|
PreviewStartFailed (4) Preview session failed to start due to API or network errors.
|
|
1025
1045
|
```
|
|
1026
1046
|
|
|
1027
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1047
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/preview/start.ts)_
|
|
1028
1048
|
|
|
1029
1049
|
## `sf agent publish authoring-bundle`
|
|
1030
1050
|
|
|
@@ -1088,7 +1108,7 @@ ERROR CODES
|
|
|
1088
1108
|
Failed (1) Compilation errors found in the Agent Script file.
|
|
1089
1109
|
```
|
|
1090
1110
|
|
|
1091
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1111
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/publish/authoring-bundle.ts)_
|
|
1092
1112
|
|
|
1093
1113
|
## `sf agent test create`
|
|
1094
1114
|
|
|
@@ -1152,7 +1172,7 @@ ERROR CODES
|
|
|
1152
1172
|
DeploymentFailed (4) Deployment failed due to API or network errors.
|
|
1153
1173
|
```
|
|
1154
1174
|
|
|
1155
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1175
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/test/create.ts)_
|
|
1156
1176
|
|
|
1157
1177
|
## `sf agent test list`
|
|
1158
1178
|
|
|
@@ -1194,7 +1214,7 @@ ERROR CODES
|
|
|
1194
1214
|
Failed (4) Failed to retrieve agent tests due to API or network errors.
|
|
1195
1215
|
```
|
|
1196
1216
|
|
|
1197
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1217
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/test/list.ts)_
|
|
1198
1218
|
|
|
1199
1219
|
## `sf agent test results`
|
|
1200
1220
|
|
|
@@ -1278,7 +1298,7 @@ ERROR CODES
|
|
|
1278
1298
|
Failed (4) Failed to retrieve results due to API or network errors.
|
|
1279
1299
|
```
|
|
1280
1300
|
|
|
1281
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1301
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/test/results.ts)_
|
|
1282
1302
|
|
|
1283
1303
|
## `sf agent test resume`
|
|
1284
1304
|
|
|
@@ -1371,7 +1391,7 @@ ERROR CODES
|
|
|
1371
1391
|
OperationFailed (4) Failed to poll test due to API or network errors.
|
|
1372
1392
|
```
|
|
1373
1393
|
|
|
1374
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1394
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/test/resume.ts)_
|
|
1375
1395
|
|
|
1376
1396
|
## `sf agent test run`
|
|
1377
1397
|
|
|
@@ -1464,11 +1484,11 @@ ERROR CODES
|
|
|
1464
1484
|
OperationFailed (4) Failed to start or poll test due to API or network errors.
|
|
1465
1485
|
```
|
|
1466
1486
|
|
|
1467
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1487
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/test/run.ts)_
|
|
1468
1488
|
|
|
1469
1489
|
## `sf agent test run-eval`
|
|
1470
1490
|
|
|
1471
|
-
Run evaluation tests against an Agentforce agent.
|
|
1491
|
+
Run rich evaluation tests against an Agentforce agent.
|
|
1472
1492
|
|
|
1473
1493
|
```
|
|
1474
1494
|
USAGE
|
|
@@ -1476,8 +1496,8 @@ USAGE
|
|
|
1476
1496
|
[--result-format json|human|junit|tap] [--batch-size <value>] [--no-normalize]
|
|
1477
1497
|
|
|
1478
1498
|
FLAGS
|
|
1479
|
-
-n, --api-name=<value> Agent
|
|
1480
|
-
Auto-inferred from the YAML spec's subjectName.
|
|
1499
|
+
-n, --api-name=<value> Agent API name (also called DeveloperName) used to resolve agent_id and
|
|
1500
|
+
agent_version_id. Auto-inferred from the YAML spec's subjectName.
|
|
1481
1501
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
1482
1502
|
configuration variable is already set.
|
|
1483
1503
|
-s, --spec=<value> (required) Path to test spec file (YAML or JSON). Supports reading from stdin when
|
|
@@ -1493,45 +1513,48 @@ GLOBAL FLAGS
|
|
|
1493
1513
|
--json Format output as json.
|
|
1494
1514
|
|
|
1495
1515
|
DESCRIPTION
|
|
1496
|
-
Run evaluation tests against an Agentforce agent.
|
|
1516
|
+
Run rich evaluation tests against an Agentforce agent.
|
|
1517
|
+
|
|
1518
|
+
Specify the tests you want to run with one of these inputs to the --spec flag:
|
|
1497
1519
|
|
|
1498
|
-
|
|
1499
|
-
|
|
1520
|
+
- YAML test spec generated by the `agent generate test-spec` CLI command
|
|
1521
|
+
- JSON payload
|
|
1500
1522
|
|
|
1501
|
-
When you provide a YAML test spec,
|
|
1502
|
-
infers the agent name from the spec's `subjectName` field.
|
|
1503
|
-
agent test run` and `
|
|
1504
|
-
contextual data (such as CaseId or RoutableId) into agent sessions for
|
|
1523
|
+
When you provide a YAML test spec, this command automatically translates test cases into internal state-based
|
|
1524
|
+
evaluation framework calls and infers the agent name from the test spec's `subjectName` field. As a result, you can
|
|
1525
|
+
use the same test spec with both the `agent test run` and `agent test run-eval` commands. YAML test specs also support
|
|
1526
|
+
context variables, which allow you to inject contextual data (such as CaseId or RoutableId) into agent sessions for
|
|
1527
|
+
testing with different contexts.
|
|
1505
1528
|
|
|
1506
|
-
When you provide a JSON payload, it's sent directly to the
|
|
1507
|
-
auto-corrects common field name mistakes, converts shorthand references to JSONPath, and injects defaults.
|
|
1508
|
-
`--no-normalize` to disable this auto-normalization. JSON payloads can also include context_variables on
|
|
1509
|
-
agent.create_session steps for the same contextual testing capabilities.
|
|
1529
|
+
When you provide a JSON payload, it's sent directly to the evaluation framework with optional normalization. The
|
|
1530
|
+
normalizer auto-corrects common field name mistakes, converts shorthand references to JSONPath, and injects defaults.
|
|
1531
|
+
Use `--no-normalize` to disable this auto-normalization. JSON payloads can also include context_variables on
|
|
1532
|
+
agent.create_session steps for the same contextual testing capabilities as when you use a YAML test spec.
|
|
1510
1533
|
|
|
1511
|
-
|
|
1512
|
-
semantic similarity scoring, and LLM-based quality ratings.
|
|
1534
|
+
This command supports more than 8 evaluator types, including subagent routing assertions, action invocation checks,
|
|
1535
|
+
string/numeric assertions, semantic similarity scoring, and LLM-based quality ratings.
|
|
1513
1536
|
|
|
1514
1537
|
EXAMPLES
|
|
1515
1538
|
Run tests using a YAML test spec on the org with alias "my-org":
|
|
1516
1539
|
|
|
1517
|
-
$ sf agent test run-eval --spec
|
|
1540
|
+
$ sf agent test run-eval --spec specs/my-agent-testSpec.yaml --target-org my-org
|
|
1518
1541
|
|
|
1519
1542
|
Run tests using a YAML spec with explicit agent name override; use your default org:
|
|
1520
1543
|
|
|
1521
|
-
$ sf agent test run-eval --spec
|
|
1544
|
+
$ sf agent test run-eval --spec specs/my-agent-testSpec.yaml --api-name My_Agent
|
|
1522
1545
|
|
|
1523
1546
|
Run tests using a JSON payload:
|
|
1524
1547
|
|
|
1525
|
-
$ sf agent test run-eval --spec
|
|
1548
|
+
$ sf agent test run-eval --spec specs/eval-payload.json --target-org my-org
|
|
1526
1549
|
|
|
1527
1550
|
Run tests and output results in JUnit format; useful for continuous integration and deployment (CI/CD):
|
|
1528
1551
|
|
|
1529
|
-
$ sf agent test run-eval --spec
|
|
1552
|
+
$ sf agent test run-eval --spec specs/my-agent-testSpec.yaml --target-org my-org --result-format junit
|
|
1530
1553
|
|
|
1531
1554
|
Run tests with contextVariables to inject contextual data into agent sessions (add contextVariables to test cases in
|
|
1532
1555
|
your YAML spec):
|
|
1533
1556
|
|
|
1534
|
-
$ sf agent test run-eval --spec
|
|
1557
|
+
$ sf agent test run-eval --spec specs/agent-with-context.yaml --target-org my-org
|
|
1535
1558
|
|
|
1536
1559
|
Pipe JSON payload from stdin (--spec flag is automatically populated from stdin):
|
|
1537
1560
|
$ echo '{"tests":[...]}' | sf agent test run-eval --spec --target-org my-org
|
|
@@ -1546,11 +1569,11 @@ ERROR CODES
|
|
|
1546
1569
|
OperationFailed (4) Failed to execute tests due to API or network errors.
|
|
1547
1570
|
```
|
|
1548
1571
|
|
|
1549
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1572
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/test/run-eval.ts)_
|
|
1550
1573
|
|
|
1551
1574
|
## `sf agent trace delete`
|
|
1552
1575
|
|
|
1553
|
-
Delete agent preview
|
|
1576
|
+
Delete trace files from an agent preview session.
|
|
1554
1577
|
|
|
1555
1578
|
```
|
|
1556
1579
|
USAGE
|
|
@@ -1558,28 +1581,34 @@ USAGE
|
|
|
1558
1581
|
[--no-prompt]
|
|
1559
1582
|
|
|
1560
1583
|
FLAGS
|
|
1561
|
-
-a, --agent=<value>
|
|
1562
|
-
starting the session,
|
|
1584
|
+
-a, --agent=<value> API name of the agent used to filter the list of trace files you want to delete. Matches
|
|
1585
|
+
against the API name used when starting the session, either an authoring bundle or a
|
|
1586
|
+
published agent API name.
|
|
1563
1587
|
--no-prompt Skip the confirmation prompt and delete immediately.
|
|
1564
|
-
--older-than=<value>
|
|
1565
|
-
h/hours, d/days, w/weeks
|
|
1566
|
-
|
|
1588
|
+
--older-than=<value> Duration used to filter the list of trace files; only files older than the duration are
|
|
1589
|
+
deleted. Accepts a number followed by a unit: m/minutes, h/hours, d/days, w/weeks. Examples:
|
|
1590
|
+
7d, 24h, 2w.
|
|
1591
|
+
--session-id=<value> Session ID used to filter the list of trace files you want to delete. Use the "agent preview
|
|
1592
|
+
sessions" CLI command to list all known agent preview sessions along with their session IDs.
|
|
1567
1593
|
|
|
1568
1594
|
GLOBAL FLAGS
|
|
1569
1595
|
--flags-dir=<value> Import flag values from a directory.
|
|
1570
1596
|
--json Format output as json.
|
|
1571
1597
|
|
|
1572
1598
|
DESCRIPTION
|
|
1573
|
-
Delete agent preview
|
|
1599
|
+
Delete trace files from an agent preview session.
|
|
1574
1600
|
|
|
1575
|
-
|
|
1576
|
-
|
|
1601
|
+
When you run an agent preview conversation (either interactive or programmatic), trace files are automatically
|
|
1602
|
+
recorded and saved in your local DX project. Use this command to delete some or all of the trace files.
|
|
1577
1603
|
|
|
1578
|
-
|
|
1579
|
-
|
|
1604
|
+
By default, this command shows a preview of what will be deleted and prompts for confirmation. Use --no-prompt to skip
|
|
1605
|
+
confirmation.
|
|
1606
|
+
|
|
1607
|
+
Without filters, this comamnd deletes all trace files for all agents and sessions. Use flags to narrow the scope:
|
|
1608
|
+
filter by agent API name (--agent), by session (--session-id), or by age (--older-than).
|
|
1580
1609
|
|
|
1581
1610
|
EXAMPLES
|
|
1582
|
-
Delete all traces for all agents and sessions
|
|
1611
|
+
Delete all traces for all agents and sessions; prompt for confirmation:
|
|
1583
1612
|
|
|
1584
1613
|
$ sf agent trace delete
|
|
1585
1614
|
|
|
@@ -1595,11 +1624,11 @@ EXAMPLES
|
|
|
1595
1624
|
|
|
1596
1625
|
$ sf agent trace delete --older-than 7d
|
|
1597
1626
|
|
|
1598
|
-
Delete traces older than 24 hours for a specific agent
|
|
1627
|
+
Delete traces older than 24 hours for a specific agent; don't prompt for confirmation:
|
|
1599
1628
|
|
|
1600
1629
|
$ sf agent trace delete --agent My_Agent --older-than 24h --no-prompt
|
|
1601
1630
|
|
|
1602
|
-
Delete all traces
|
|
1631
|
+
Delete all traces for all agents and sessions; don't prompt for confirmation:
|
|
1603
1632
|
|
|
1604
1633
|
$ sf agent trace delete --no-prompt
|
|
1605
1634
|
|
|
@@ -1607,20 +1636,22 @@ ERROR CODES
|
|
|
1607
1636
|
Succeeded (0) Traces deleted successfully (or no traces matched).
|
|
1608
1637
|
```
|
|
1609
1638
|
|
|
1610
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1639
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/trace/delete.ts)_
|
|
1611
1640
|
|
|
1612
1641
|
## `sf agent trace list`
|
|
1613
1642
|
|
|
1614
|
-
List the trace files that were recorded during all agent preview sessions.
|
|
1643
|
+
List the available trace files that were recorded during all agent preview sessions.
|
|
1615
1644
|
|
|
1616
1645
|
```
|
|
1617
1646
|
USAGE
|
|
1618
1647
|
$ sf agent trace list [--json] [--flags-dir <value>] [--session-id <value>] [-a <value>] [--since <value>]
|
|
1619
1648
|
|
|
1620
1649
|
FLAGS
|
|
1621
|
-
-a, --agent=<value>
|
|
1622
|
-
starting the session,
|
|
1623
|
-
|
|
1650
|
+
-a, --agent=<value> API name of the agent used to filter the list of available trace files. Matches against the
|
|
1651
|
+
API name used when starting the session, either an authoring bundle or a published agent API
|
|
1652
|
+
name.
|
|
1653
|
+
--session-id=<value> Session ID used to filter the list of trace files. Use the "agent preview sessions" CLI
|
|
1654
|
+
command to list all known agent preview sessions along with their session IDs.
|
|
1624
1655
|
--since=<value> Date used to filter the list of trace files; only those recorded on or after the date are
|
|
1625
1656
|
listed.
|
|
1626
1657
|
|
|
@@ -1629,33 +1660,34 @@ GLOBAL FLAGS
|
|
|
1629
1660
|
--json Format output as json.
|
|
1630
1661
|
|
|
1631
1662
|
DESCRIPTION
|
|
1632
|
-
List the trace files that were recorded during all agent preview sessions.
|
|
1663
|
+
List the available trace files that were recorded during all agent preview sessions.
|
|
1633
1664
|
|
|
1634
|
-
|
|
1635
|
-
|
|
1665
|
+
When you run an agent preview conversation (either interactive or programmatic), trace files are automatically
|
|
1666
|
+
recorded and saved in your local DX project. By default, this command lists all trace files for all agents and all of
|
|
1667
|
+
their sessions. Use flags to narrow results: filter by agent name (--agent), by session (--session-id), or by date
|
|
1636
1668
|
(--since).
|
|
1637
1669
|
|
|
1638
1670
|
Each row in the output corresponds to one trace file, which in turn corresponds to one agent session. The Agent column
|
|
1639
1671
|
shows the authoring bundle or API name used when starting the session.
|
|
1640
1672
|
|
|
1641
1673
|
EXAMPLES
|
|
1642
|
-
List all
|
|
1674
|
+
List all trace files for all agents and sessions:
|
|
1643
1675
|
|
|
1644
1676
|
$ sf agent trace list
|
|
1645
1677
|
|
|
1646
|
-
List all
|
|
1678
|
+
List all trace files for a specific agent:
|
|
1647
1679
|
|
|
1648
1680
|
$ sf agent trace list --agent My_Agent
|
|
1649
1681
|
|
|
1650
|
-
List
|
|
1682
|
+
List trace files for a specific session:
|
|
1651
1683
|
|
|
1652
1684
|
$ sf agent trace list --session-id <SESSION_ID>
|
|
1653
1685
|
|
|
1654
|
-
List
|
|
1686
|
+
List trace files recorded on or after April 20, 2026 (date-only, interpreted as UTC midnight):
|
|
1655
1687
|
|
|
1656
1688
|
$ sf agent trace list --since 2026-04-20
|
|
1657
1689
|
|
|
1658
|
-
List
|
|
1690
|
+
List trace files recorded on or after a specific UTC time:
|
|
1659
1691
|
|
|
1660
1692
|
$ sf agent trace list --since 2026-04-20T14:00:00Z
|
|
1661
1693
|
|
|
@@ -1677,11 +1709,11 @@ ERROR CODES
|
|
|
1677
1709
|
Succeeded (0) Trace files listed successfully (or empty list if none found).
|
|
1678
1710
|
```
|
|
1679
1711
|
|
|
1680
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1712
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/trace/list.ts)_
|
|
1681
1713
|
|
|
1682
1714
|
## `sf agent trace read`
|
|
1683
1715
|
|
|
1684
|
-
Read
|
|
1716
|
+
Read trace files from an agent preview session.
|
|
1685
1717
|
|
|
1686
1718
|
```
|
|
1687
1719
|
USAGE
|
|
@@ -1689,43 +1721,58 @@ USAGE
|
|
|
1689
1721
|
actions|grounding|routing|errors] [-t <value>]
|
|
1690
1722
|
|
|
1691
1723
|
FLAGS
|
|
1692
|
-
-d, --dimension=<option> Dimension to drill into when using --format detail
|
|
1693
|
-
|
|
1724
|
+
-d, --dimension=<option> Dimension to drill into when using "--format detail"; used to filter and organize the trace
|
|
1725
|
+
data to answer a specific type of question.
|
|
1694
1726
|
<options: actions|grounding|routing|errors>
|
|
1695
|
-
-f, --format=<option> [default: summary] Output format
|
|
1696
|
-
|
|
1727
|
+
-f, --format=<option> [default: summary] Output format of the trace data; specifies the level of detail you want
|
|
1728
|
+
in the trace files.
|
|
1697
1729
|
<options: summary|detail|raw>
|
|
1698
|
-
-s, --session-id=<value> (required) Session ID to read traces for.
|
|
1699
|
-
|
|
1730
|
+
-s, --session-id=<value> (required) Session ID to read traces for. Use the "agent preview sessions" CLI command to
|
|
1731
|
+
list all known agent preview sessions along with their session IDs
|
|
1732
|
+
-t, --turn=<value> Turn number for which you want trace data. A turn is a single utterance or response in a
|
|
1733
|
+
conversation, starting with 1.
|
|
1700
1734
|
|
|
1701
1735
|
GLOBAL FLAGS
|
|
1702
1736
|
--flags-dir=<value> Import flag values from a directory.
|
|
1703
1737
|
--json Format output as json.
|
|
1704
1738
|
|
|
1705
1739
|
DESCRIPTION
|
|
1706
|
-
Read
|
|
1707
|
-
|
|
1708
|
-
Reads trace files recorded during an agent preview session and outputs them in one of three formats.
|
|
1740
|
+
Read trace files from an agent preview session.
|
|
1709
1741
|
|
|
1710
|
-
|
|
1711
|
-
|
|
1742
|
+
When you run an agent preview conversation (either interactive or programmatic), trace files are automatically
|
|
1743
|
+
recorded and saved in your local DX project. Each turn (utterance or response) of a conversation creates trace data.
|
|
1744
|
+
Use this command to view trace data for a specific preview session, so you can then analyze the trace data to observe,
|
|
1745
|
+
monitor, investigate, and troubleshoot agent events and behavior.
|
|
1712
1746
|
|
|
1713
|
-
|
|
1714
|
-
the trace steps relevant to that dimension, minimizing noise.
|
|
1747
|
+
Use the --format flag to specify one of these formats of the outputted trace data:
|
|
1715
1748
|
|
|
1716
|
-
|
|
1717
|
-
|
|
1749
|
+
- summary (Default): A per-turn narrative showing topic routing, actions executed, and the agent's response. Use this
|
|
1750
|
+
to quickly understand what happened in a preview session.
|
|
1751
|
+
- detail: Diagnostic drill-down into a specific dimension. Filters output to only the trace steps relevant to that
|
|
1752
|
+
dimension, minimizing noise.
|
|
1753
|
+
- raw: Unprocessed trace JSON. Use this as a fallback when the trace schema has changed or you need to perform custom
|
|
1754
|
+
analysis.
|
|
1718
1755
|
|
|
1719
|
-
|
|
1756
|
+
If you specify "--format detail", you must also specify a dimension with the --dimension flag. Dimensions are a way to
|
|
1757
|
+
slice and analyze the agent execution trace from a specific angle or concern. Instead of looking at the raw sequence
|
|
1758
|
+
of everything that happened, each dimension filters and organizes the trace data to answer a specific type of
|
|
1759
|
+
question. These are the available dimensions and the information they provide:
|
|
1720
1760
|
|
|
1721
|
-
|
|
1761
|
+
- actions: The actions the agent executed. Includes action name, input parameters, output, and latency. Use this
|
|
1762
|
+
dimension to understand what the agent actually did when answering an utterance in the preview session.
|
|
1763
|
+
- grounding: The reasoning steps used by the LLM. Use this dimension to see how the agent "thought" about the problem
|
|
1764
|
+
- the AI reasoning that determined which actions to take.
|
|
1765
|
+
- routing: How the agent navigated between subagents. Use this dimension to understand conversation flow - when and
|
|
1766
|
+
why the agent switched between different subagents or contexts during the conversation.
|
|
1767
|
+
- errors: Aggregates all errors during the session. Use this dimension to quickly identify and debug issues across all
|
|
1768
|
+
steps.
|
|
1722
1769
|
|
|
1723
1770
|
EXAMPLES
|
|
1724
|
-
Show a session summary
|
|
1771
|
+
Show a session trace summary for all turns in the session with the specified ID:
|
|
1725
1772
|
|
|
1726
1773
|
$ sf agent trace read --session-id <SESSION_ID>
|
|
1727
1774
|
|
|
1728
|
-
Show summary for
|
|
1775
|
+
Show a trace summary for the second turn (utterance or response) of the conversation:
|
|
1729
1776
|
|
|
1730
1777
|
$ sf agent trace read --session-id <SESSION_ID> --turn 2
|
|
1731
1778
|
|
|
@@ -1733,7 +1780,7 @@ EXAMPLES
|
|
|
1733
1780
|
|
|
1734
1781
|
$ sf agent trace read --session-id <SESSION_ID> --format detail --dimension actions
|
|
1735
1782
|
|
|
1736
|
-
Drill into routing decisions for
|
|
1783
|
+
Drill into routing decisions for the first turn of the conversation:
|
|
1737
1784
|
|
|
1738
1785
|
$ sf agent trace read --session-id <SESSION_ID> --format detail --dimension routing --turn 1
|
|
1739
1786
|
|
|
@@ -1750,7 +1797,7 @@ EXAMPLES
|
|
|
1750
1797
|
$ sf agent trace read --session-id <SESSION_ID> --json
|
|
1751
1798
|
```
|
|
1752
1799
|
|
|
1753
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1800
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/trace/read.ts)_
|
|
1754
1801
|
|
|
1755
1802
|
## `sf agent validate authoring-bundle`
|
|
1756
1803
|
|
|
@@ -1807,7 +1854,7 @@ ERROR CODES
|
|
|
1807
1854
|
ServerError (3) Validation/compilation API returned HTTP 500. A server error occurred during compilation.
|
|
1808
1855
|
```
|
|
1809
1856
|
|
|
1810
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.
|
|
1857
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.40.1/src/commands/agent/validate/authoring-bundle.ts)_
|
|
1811
1858
|
|
|
1812
1859
|
## `sf alias list`
|
|
1813
1860
|
|
|
@@ -2370,7 +2417,7 @@ EXAMPLES
|
|
|
2370
2417
|
$ sf api request graphql --body example.txt --stream-to-file output.txt --include
|
|
2371
2418
|
```
|
|
2372
2419
|
|
|
2373
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.
|
|
2420
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.30/src/commands/api/request/graphql.ts)_
|
|
2374
2421
|
|
|
2375
2422
|
## `sf api request rest [URL]`
|
|
2376
2423
|
|
|
@@ -2479,7 +2526,7 @@ FLAG DESCRIPTIONS
|
|
|
2479
2526
|
https://github.com/salesforcecli/plugin-api/tree/main/test/test-files/data-project.
|
|
2480
2527
|
```
|
|
2481
2528
|
|
|
2482
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.
|
|
2529
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.30/src/commands/api/request/rest.ts)_
|
|
2483
2530
|
|
|
2484
2531
|
## `sf autocomplete [SHELL]`
|
|
2485
2532
|
|
|
@@ -2792,7 +2839,7 @@ EXAMPLES
|
|
|
2792
2839
|
$ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
|
|
2793
2840
|
```
|
|
2794
2841
|
|
|
2795
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2842
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/bulk/results.ts)_
|
|
2796
2843
|
|
|
2797
2844
|
## `sf data create file`
|
|
2798
2845
|
|
|
@@ -2841,7 +2888,7 @@ EXAMPLES
|
|
|
2841
2888
|
$ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
|
|
2842
2889
|
```
|
|
2843
2890
|
|
|
2844
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2891
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/create/file.ts)_
|
|
2845
2892
|
|
|
2846
2893
|
## `sf data create record`
|
|
2847
2894
|
|
|
@@ -2897,7 +2944,7 @@ EXAMPLES
|
|
|
2897
2944
|
TracedEntityId=01p17000000R6bLAAS"
|
|
2898
2945
|
```
|
|
2899
2946
|
|
|
2900
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
2947
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/create/record.ts)_
|
|
2901
2948
|
|
|
2902
2949
|
## `sf data delete bulk`
|
|
2903
2950
|
|
|
@@ -2956,7 +3003,7 @@ FLAG DESCRIPTIONS
|
|
|
2956
3003
|
and can be enabled only by a system administrator.
|
|
2957
3004
|
```
|
|
2958
3005
|
|
|
2959
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3006
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/delete/bulk.ts)_
|
|
2960
3007
|
|
|
2961
3008
|
## `sf data delete record`
|
|
2962
3009
|
|
|
@@ -3017,7 +3064,7 @@ EXAMPLES
|
|
|
3017
3064
|
$ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
3018
3065
|
```
|
|
3019
3066
|
|
|
3020
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3067
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/delete/record.ts)_
|
|
3021
3068
|
|
|
3022
3069
|
## `sf data delete resume`
|
|
3023
3070
|
|
|
@@ -3056,7 +3103,7 @@ EXAMPLES
|
|
|
3056
3103
|
$ sf data delete resume --use-most-recent --target-org my-scratch
|
|
3057
3104
|
```
|
|
3058
3105
|
|
|
3059
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3106
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/delete/resume.ts)_
|
|
3060
3107
|
|
|
3061
3108
|
## `sf data export bulk`
|
|
3062
3109
|
|
|
@@ -3123,7 +3170,7 @@ EXAMPLES
|
|
|
3123
3170
|
--result-format json --wait 10 --all-rows
|
|
3124
3171
|
```
|
|
3125
3172
|
|
|
3126
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3173
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/export/bulk.ts)_
|
|
3127
3174
|
|
|
3128
3175
|
## `sf data export resume`
|
|
3129
3176
|
|
|
@@ -3162,7 +3209,7 @@ EXAMPLES
|
|
|
3162
3209
|
$ sf data export resume --use-most-recent
|
|
3163
3210
|
```
|
|
3164
3211
|
|
|
3165
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3212
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/export/resume.ts)_
|
|
3166
3213
|
|
|
3167
3214
|
## `sf data export tree`
|
|
3168
3215
|
|
|
@@ -3222,7 +3269,7 @@ EXAMPLES
|
|
|
3222
3269
|
my-scratch
|
|
3223
3270
|
```
|
|
3224
3271
|
|
|
3225
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3272
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/export/tree.ts)_
|
|
3226
3273
|
|
|
3227
3274
|
## `sf data get record`
|
|
3228
3275
|
|
|
@@ -3286,7 +3333,7 @@ EXAMPLES
|
|
|
3286
3333
|
$ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
|
|
3287
3334
|
```
|
|
3288
3335
|
|
|
3289
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3336
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/get/record.ts)_
|
|
3290
3337
|
|
|
3291
3338
|
## `sf data import bulk`
|
|
3292
3339
|
|
|
@@ -3338,7 +3385,7 @@ EXAMPLES
|
|
|
3338
3385
|
$ sf data import bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
3339
3386
|
```
|
|
3340
3387
|
|
|
3341
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3388
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/import/bulk.ts)_
|
|
3342
3389
|
|
|
3343
3390
|
## `sf data import resume`
|
|
3344
3391
|
|
|
@@ -3374,7 +3421,7 @@ EXAMPLES
|
|
|
3374
3421
|
$ sf data import resume --use-most-recent --target-org my-scratch
|
|
3375
3422
|
```
|
|
3376
3423
|
|
|
3377
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3424
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/import/resume.ts)_
|
|
3378
3425
|
|
|
3379
3426
|
## `sf data import tree`
|
|
3380
3427
|
|
|
@@ -3438,7 +3485,7 @@ FLAG DESCRIPTIONS
|
|
|
3438
3485
|
- files(array) - Files: An array of files paths to load
|
|
3439
3486
|
```
|
|
3440
3487
|
|
|
3441
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3488
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/import/tree.ts)_
|
|
3442
3489
|
|
|
3443
3490
|
## `sf data query`
|
|
3444
3491
|
|
|
@@ -3491,7 +3538,7 @@ EXAMPLES
|
|
|
3491
3538
|
$ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api
|
|
3492
3539
|
```
|
|
3493
3540
|
|
|
3494
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3541
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/query.ts)_
|
|
3495
3542
|
|
|
3496
3543
|
## `sf data resume`
|
|
3497
3544
|
|
|
@@ -3528,7 +3575,7 @@ EXAMPLES
|
|
|
3528
3575
|
$ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
|
|
3529
3576
|
```
|
|
3530
3577
|
|
|
3531
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3578
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/resume.ts)_
|
|
3532
3579
|
|
|
3533
3580
|
## `sf data search`
|
|
3534
3581
|
|
|
@@ -3578,7 +3625,7 @@ EXAMPLES
|
|
|
3578
3625
|
$ sf data search --file query.txt --target-org my-scratch --result-format csv
|
|
3579
3626
|
```
|
|
3580
3627
|
|
|
3581
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3628
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/search.ts)_
|
|
3582
3629
|
|
|
3583
3630
|
## `sf data update bulk`
|
|
3584
3631
|
|
|
@@ -3633,7 +3680,7 @@ EXAMPLES
|
|
|
3633
3680
|
$ sf data update bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
|
|
3634
3681
|
```
|
|
3635
3682
|
|
|
3636
|
-
_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.99/src/commands/data/update/bulk.ts)_
|
|
3637
3684
|
|
|
3638
3685
|
## `sf data update record`
|
|
3639
3686
|
|
|
@@ -3695,7 +3742,7 @@ EXAMPLES
|
|
|
3695
3742
|
"ExpirationDate=2017-12-01T00:58:04.000+0000"
|
|
3696
3743
|
```
|
|
3697
3744
|
|
|
3698
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3745
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/update/record.ts)_
|
|
3699
3746
|
|
|
3700
3747
|
## `sf data update resume`
|
|
3701
3748
|
|
|
@@ -3734,7 +3781,7 @@ EXAMPLES
|
|
|
3734
3781
|
$ sf data update resume --use-most-recent
|
|
3735
3782
|
```
|
|
3736
3783
|
|
|
3737
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3784
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/update/resume.ts)_
|
|
3738
3785
|
|
|
3739
3786
|
## `sf data upsert bulk`
|
|
3740
3787
|
|
|
@@ -3790,7 +3837,7 @@ EXAMPLES
|
|
|
3790
3837
|
my-scratch
|
|
3791
3838
|
```
|
|
3792
3839
|
|
|
3793
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3840
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/upsert/bulk.ts)_
|
|
3794
3841
|
|
|
3795
3842
|
## `sf data upsert resume`
|
|
3796
3843
|
|
|
@@ -3829,7 +3876,7 @@ EXAMPLES
|
|
|
3829
3876
|
$ sf data upsert resume --use-most-recent --target-org my-scratch
|
|
3830
3877
|
```
|
|
3831
3878
|
|
|
3832
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3879
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/data/upsert/resume.ts)_
|
|
3833
3880
|
|
|
3834
3881
|
## `sf doctor`
|
|
3835
3882
|
|
|
@@ -3924,7 +3971,7 @@ EXAMPLES
|
|
|
3924
3971
|
$ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
|
|
3925
3972
|
```
|
|
3926
3973
|
|
|
3927
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
3974
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/force/data/bulk/delete.ts)_
|
|
3928
3975
|
|
|
3929
3976
|
## `sf force data bulk status`
|
|
3930
3977
|
|
|
@@ -3961,7 +4008,7 @@ EXAMPLES
|
|
|
3961
4008
|
$ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
|
|
3962
4009
|
```
|
|
3963
4010
|
|
|
3964
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
4011
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/force/data/bulk/status.ts)_
|
|
3965
4012
|
|
|
3966
4013
|
## `sf force data bulk upsert`
|
|
3967
4014
|
|
|
@@ -4019,7 +4066,7 @@ EXAMPLES
|
|
|
4019
4066
|
--target-org my-scratch
|
|
4020
4067
|
```
|
|
4021
4068
|
|
|
4022
|
-
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.
|
|
4069
|
+
_See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.99/src/commands/force/data/bulk/upsert.ts)_
|
|
4023
4070
|
|
|
4024
4071
|
## `sf help [COMMAND]`
|
|
4025
4072
|
|
|
@@ -4420,7 +4467,7 @@ FLAG DESCRIPTIONS
|
|
|
4420
4467
|
"agent.user.<GUID>@your-org-domain.com".
|
|
4421
4468
|
```
|
|
4422
4469
|
|
|
4423
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4470
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/create/agent-user.ts)_
|
|
4424
4471
|
|
|
4425
4472
|
## `sf org create sandbox`
|
|
4426
4473
|
|
|
@@ -4554,7 +4601,7 @@ FLAG DESCRIPTIONS
|
|
|
4554
4601
|
You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
|
|
4555
4602
|
```
|
|
4556
4603
|
|
|
4557
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4604
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/create/sandbox.ts)_
|
|
4558
4605
|
|
|
4559
4606
|
## `sf org create scratch`
|
|
4560
4607
|
|
|
@@ -4736,7 +4783,7 @@ FLAG DESCRIPTIONS
|
|
|
4736
4783
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
4737
4784
|
```
|
|
4738
4785
|
|
|
4739
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4786
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/create/scratch.ts)_
|
|
4740
4787
|
|
|
4741
4788
|
## `sf org create user`
|
|
4742
4789
|
|
|
@@ -4890,7 +4937,7 @@ EXAMPLES
|
|
|
4890
4937
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4891
4938
|
```
|
|
4892
4939
|
|
|
4893
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4940
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/delete/sandbox.ts)_
|
|
4894
4941
|
|
|
4895
4942
|
## `sf org delete scratch`
|
|
4896
4943
|
|
|
@@ -4934,7 +4981,7 @@ EXAMPLES
|
|
|
4934
4981
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4935
4982
|
```
|
|
4936
4983
|
|
|
4937
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
4984
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/delete/scratch.ts)_
|
|
4938
4985
|
|
|
4939
4986
|
## `sf org disable tracking`
|
|
4940
4987
|
|
|
@@ -4973,7 +5020,7 @@ EXAMPLES
|
|
|
4973
5020
|
$ sf org disable tracking
|
|
4974
5021
|
```
|
|
4975
5022
|
|
|
4976
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5023
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/disable/tracking.ts)_
|
|
4977
5024
|
|
|
4978
5025
|
## `sf org display`
|
|
4979
5026
|
|
|
@@ -5018,7 +5065,7 @@ EXAMPLES
|
|
|
5018
5065
|
$ sf org display --target-org TestOrg1 --verbose
|
|
5019
5066
|
```
|
|
5020
5067
|
|
|
5021
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5068
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/display.ts)_
|
|
5022
5069
|
|
|
5023
5070
|
## `sf org display user`
|
|
5024
5071
|
|
|
@@ -5099,7 +5146,7 @@ EXAMPLES
|
|
|
5099
5146
|
$ sf org enable tracking
|
|
5100
5147
|
```
|
|
5101
5148
|
|
|
5102
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5149
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/enable/tracking.ts)_
|
|
5103
5150
|
|
|
5104
5151
|
## `sf org generate password`
|
|
5105
5152
|
|
|
@@ -5205,7 +5252,7 @@ EXAMPLES
|
|
|
5205
5252
|
$ sf org list --clean
|
|
5206
5253
|
```
|
|
5207
5254
|
|
|
5208
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5255
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/list.ts)_
|
|
5209
5256
|
|
|
5210
5257
|
## `sf org list auth`
|
|
5211
5258
|
|
|
@@ -5344,7 +5391,7 @@ FLAG DESCRIPTIONS
|
|
|
5344
5391
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
5345
5392
|
```
|
|
5346
5393
|
|
|
5347
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5394
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/list/metadata.ts)_
|
|
5348
5395
|
|
|
5349
5396
|
## `sf org list metadata-types`
|
|
5350
5397
|
|
|
@@ -5399,7 +5446,7 @@ FLAG DESCRIPTIONS
|
|
|
5399
5446
|
Override the api version used for api requests made by this command
|
|
5400
5447
|
```
|
|
5401
5448
|
|
|
5402
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5449
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/list/metadata-types.ts)_
|
|
5403
5450
|
|
|
5404
5451
|
## `sf org list sobject record-counts`
|
|
5405
5452
|
|
|
@@ -5945,7 +5992,7 @@ EXAMPLES
|
|
|
5945
5992
|
$ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
|
|
5946
5993
|
```
|
|
5947
5994
|
|
|
5948
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
5995
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/open.ts)_
|
|
5949
5996
|
|
|
5950
5997
|
## `sf org open agent`
|
|
5951
5998
|
|
|
@@ -6020,7 +6067,7 @@ FLAG DESCRIPTIONS
|
|
|
6020
6067
|
flag.
|
|
6021
6068
|
```
|
|
6022
6069
|
|
|
6023
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
6070
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/open/agent.ts)_
|
|
6024
6071
|
|
|
6025
6072
|
## `sf org open authoring-bundle`
|
|
6026
6073
|
|
|
@@ -6066,7 +6113,7 @@ EXAMPLES
|
|
|
6066
6113
|
$ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
|
|
6067
6114
|
```
|
|
6068
6115
|
|
|
6069
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
6116
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/open/authoring-bundle.ts)_
|
|
6070
6117
|
|
|
6071
6118
|
## `sf org refresh sandbox`
|
|
6072
6119
|
|
|
@@ -6169,7 +6216,7 @@ FLAG DESCRIPTIONS
|
|
|
6169
6216
|
You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
|
|
6170
6217
|
```
|
|
6171
6218
|
|
|
6172
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
6219
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/refresh/sandbox.ts)_
|
|
6173
6220
|
|
|
6174
6221
|
## `sf org resume sandbox`
|
|
6175
6222
|
|
|
@@ -6232,7 +6279,7 @@ FLAG DESCRIPTIONS
|
|
|
6232
6279
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
6233
6280
|
```
|
|
6234
6281
|
|
|
6235
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
6282
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/resume/sandbox.ts)_
|
|
6236
6283
|
|
|
6237
6284
|
## `sf org resume scratch`
|
|
6238
6285
|
|
|
@@ -6285,7 +6332,7 @@ FLAG DESCRIPTIONS
|
|
|
6285
6332
|
returns the job ID. To resume checking the scratch creation, rerun this command.
|
|
6286
6333
|
```
|
|
6287
6334
|
|
|
6288
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.
|
|
6335
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.13/src/commands/org/resume/scratch.ts)_
|
|
6289
6336
|
|
|
6290
6337
|
## `sf package convert`
|
|
6291
6338
|
|
|
@@ -8358,7 +8405,7 @@ FLAG DESCRIPTIONS
|
|
|
8358
8405
|
If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8359
8406
|
```
|
|
8360
8407
|
|
|
8361
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8408
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/convert/mdapi.ts)_
|
|
8362
8409
|
|
|
8363
8410
|
## `sf project convert source`
|
|
8364
8411
|
|
|
@@ -8431,7 +8478,7 @@ FLAG DESCRIPTIONS
|
|
|
8431
8478
|
Override the api version used for api requests made by this command
|
|
8432
8479
|
```
|
|
8433
8480
|
|
|
8434
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8481
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/convert/source.ts)_
|
|
8435
8482
|
|
|
8436
8483
|
## `sf project convert source-behavior`
|
|
8437
8484
|
|
|
@@ -8490,7 +8537,7 @@ EXAMPLES
|
|
|
8490
8537
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
8491
8538
|
```
|
|
8492
8539
|
|
|
8493
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8540
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/convert/source-behavior.ts)_
|
|
8494
8541
|
|
|
8495
8542
|
## `sf project delete source`
|
|
8496
8543
|
|
|
@@ -8643,7 +8690,7 @@ FLAG DESCRIPTIONS
|
|
|
8643
8690
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
8644
8691
|
```
|
|
8645
8692
|
|
|
8646
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8693
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/delete/source.ts)_
|
|
8647
8694
|
|
|
8648
8695
|
## `sf project delete tracking`
|
|
8649
8696
|
|
|
@@ -8680,7 +8727,7 @@ EXAMPLES
|
|
|
8680
8727
|
$ sf project delete tracking --target-org my-scratch
|
|
8681
8728
|
```
|
|
8682
8729
|
|
|
8683
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8730
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/delete/tracking.ts)_
|
|
8684
8731
|
|
|
8685
8732
|
## `sf project deploy cancel`
|
|
8686
8733
|
|
|
@@ -8752,7 +8799,7 @@ FLAG DESCRIPTIONS
|
|
|
8752
8799
|
project deploy report".
|
|
8753
8800
|
```
|
|
8754
8801
|
|
|
8755
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8802
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/deploy/cancel.ts)_
|
|
8756
8803
|
|
|
8757
8804
|
## `sf project deploy preview`
|
|
8758
8805
|
|
|
@@ -8835,7 +8882,7 @@ FLAG DESCRIPTIONS
|
|
|
8835
8882
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8836
8883
|
```
|
|
8837
8884
|
|
|
8838
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8885
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/deploy/preview.ts)_
|
|
8839
8886
|
|
|
8840
8887
|
## `sf project deploy quick`
|
|
8841
8888
|
|
|
@@ -8928,7 +8975,7 @@ ERROR CODES
|
|
|
8928
8975
|
Canceling (69) The deploy is being canceled.
|
|
8929
8976
|
```
|
|
8930
8977
|
|
|
8931
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
8978
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/deploy/quick.ts)_
|
|
8932
8979
|
|
|
8933
8980
|
## `sf project deploy report`
|
|
8934
8981
|
|
|
@@ -9020,7 +9067,7 @@ FLAG DESCRIPTIONS
|
|
|
9020
9067
|
--coverage-formatters lcov --coverage-formatters clover
|
|
9021
9068
|
```
|
|
9022
9069
|
|
|
9023
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9070
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/deploy/report.ts)_
|
|
9024
9071
|
|
|
9025
9072
|
## `sf project deploy resume`
|
|
9026
9073
|
|
|
@@ -9117,7 +9164,7 @@ ERROR CODES
|
|
|
9117
9164
|
Canceling (69) The deploy is being canceled.
|
|
9118
9165
|
```
|
|
9119
9166
|
|
|
9120
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9167
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/deploy/resume.ts)_
|
|
9121
9168
|
|
|
9122
9169
|
## `sf project deploy start`
|
|
9123
9170
|
|
|
@@ -9383,7 +9430,7 @@ ERROR CODES
|
|
|
9383
9430
|
Canceling (69) The deploy is being canceled.
|
|
9384
9431
|
```
|
|
9385
9432
|
|
|
9386
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9433
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/deploy/start.ts)_
|
|
9387
9434
|
|
|
9388
9435
|
## `sf project deploy validate`
|
|
9389
9436
|
|
|
@@ -9587,7 +9634,7 @@ ERROR CODES
|
|
|
9587
9634
|
Canceling (69) The deploy is being canceled.
|
|
9588
9635
|
```
|
|
9589
9636
|
|
|
9590
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9637
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/deploy/validate.ts)_
|
|
9591
9638
|
|
|
9592
9639
|
## `sf project generate manifest`
|
|
9593
9640
|
|
|
@@ -9683,7 +9730,7 @@ EXAMPLES
|
|
|
9683
9730
|
$ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
|
|
9684
9731
|
```
|
|
9685
9732
|
|
|
9686
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9733
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/generate/manifest.ts)_
|
|
9687
9734
|
|
|
9688
9735
|
## `sf project list ignored`
|
|
9689
9736
|
|
|
@@ -9725,7 +9772,7 @@ EXAMPLES
|
|
|
9725
9772
|
$ sf project list ignored --source-dir package.xml
|
|
9726
9773
|
```
|
|
9727
9774
|
|
|
9728
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9775
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/list/ignored.ts)_
|
|
9729
9776
|
|
|
9730
9777
|
## `sf project reset tracking`
|
|
9731
9778
|
|
|
@@ -9774,7 +9821,7 @@ EXAMPLES
|
|
|
9774
9821
|
$ sf project reset tracking --revision 30
|
|
9775
9822
|
```
|
|
9776
9823
|
|
|
9777
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9824
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/reset/tracking.ts)_
|
|
9778
9825
|
|
|
9779
9826
|
## `sf project retrieve preview`
|
|
9780
9827
|
|
|
@@ -9828,7 +9875,7 @@ FLAG DESCRIPTIONS
|
|
|
9828
9875
|
production orgs.
|
|
9829
9876
|
```
|
|
9830
9877
|
|
|
9831
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
9878
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/retrieve/preview.ts)_
|
|
9832
9879
|
|
|
9833
9880
|
## `sf project retrieve start`
|
|
9834
9881
|
|
|
@@ -10009,7 +10056,7 @@ ENVIRONMENT VARIABLES
|
|
|
10009
10056
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
10010
10057
|
```
|
|
10011
10058
|
|
|
10012
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.
|
|
10059
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.45/src/commands/project/retrieve/start.ts)_
|
|
10013
10060
|
|
|
10014
10061
|
## `sf schema generate field`
|
|
10015
10062
|
|
|
@@ -10263,7 +10310,7 @@ EXAMPLES
|
|
|
10263
10310
|
$ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
|
|
10264
10311
|
```
|
|
10265
10312
|
|
|
10266
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
10313
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.111/src/commands/sobject/describe.ts)_
|
|
10267
10314
|
|
|
10268
10315
|
## `sf sobject list`
|
|
10269
10316
|
|
|
@@ -10302,7 +10349,7 @@ EXAMPLES
|
|
|
10302
10349
|
$ sf sobject list --sobject custom --target-org my-scratch-org
|
|
10303
10350
|
```
|
|
10304
10351
|
|
|
10305
|
-
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.
|
|
10352
|
+
_See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.111/src/commands/sobject/list.ts)_
|
|
10306
10353
|
|
|
10307
10354
|
## `sf template generate analytics template`
|
|
10308
10355
|
|