@salesforce/cli 2.135.5 → 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 +136 -109
- package/npm-shrinkwrap.json +28 -28
- package/oclif.lock +29 -29
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
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
|
|
|
@@ -865,7 +865,7 @@ ERROR CODES
|
|
|
865
865
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
866
866
|
```
|
|
867
867
|
|
|
868
|
-
_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)_
|
|
869
869
|
|
|
870
870
|
## `sf agent preview send`
|
|
871
871
|
|
|
@@ -932,7 +932,7 @@ ERROR CODES
|
|
|
932
932
|
SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
|
|
933
933
|
```
|
|
934
934
|
|
|
935
|
-
_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)_
|
|
936
936
|
|
|
937
937
|
## `sf agent preview sessions`
|
|
938
938
|
|
|
@@ -968,7 +968,7 @@ ERROR CODES
|
|
|
968
968
|
Succeeded (0) Sessions listed successfully (or empty list if no active sessions).
|
|
969
969
|
```
|
|
970
970
|
|
|
971
|
-
_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)_
|
|
972
972
|
|
|
973
973
|
## `sf agent preview start`
|
|
974
974
|
|
|
@@ -1044,7 +1044,7 @@ ERROR CODES
|
|
|
1044
1044
|
PreviewStartFailed (4) Preview session failed to start due to API or network errors.
|
|
1045
1045
|
```
|
|
1046
1046
|
|
|
1047
|
-
_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)_
|
|
1048
1048
|
|
|
1049
1049
|
## `sf agent publish authoring-bundle`
|
|
1050
1050
|
|
|
@@ -1108,7 +1108,7 @@ ERROR CODES
|
|
|
1108
1108
|
Failed (1) Compilation errors found in the Agent Script file.
|
|
1109
1109
|
```
|
|
1110
1110
|
|
|
1111
|
-
_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)_
|
|
1112
1112
|
|
|
1113
1113
|
## `sf agent test create`
|
|
1114
1114
|
|
|
@@ -1172,7 +1172,7 @@ ERROR CODES
|
|
|
1172
1172
|
DeploymentFailed (4) Deployment failed due to API or network errors.
|
|
1173
1173
|
```
|
|
1174
1174
|
|
|
1175
|
-
_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)_
|
|
1176
1176
|
|
|
1177
1177
|
## `sf agent test list`
|
|
1178
1178
|
|
|
@@ -1214,7 +1214,7 @@ ERROR CODES
|
|
|
1214
1214
|
Failed (4) Failed to retrieve agent tests due to API or network errors.
|
|
1215
1215
|
```
|
|
1216
1216
|
|
|
1217
|
-
_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)_
|
|
1218
1218
|
|
|
1219
1219
|
## `sf agent test results`
|
|
1220
1220
|
|
|
@@ -1298,7 +1298,7 @@ ERROR CODES
|
|
|
1298
1298
|
Failed (4) Failed to retrieve results due to API or network errors.
|
|
1299
1299
|
```
|
|
1300
1300
|
|
|
1301
|
-
_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)_
|
|
1302
1302
|
|
|
1303
1303
|
## `sf agent test resume`
|
|
1304
1304
|
|
|
@@ -1391,7 +1391,7 @@ ERROR CODES
|
|
|
1391
1391
|
OperationFailed (4) Failed to poll test due to API or network errors.
|
|
1392
1392
|
```
|
|
1393
1393
|
|
|
1394
|
-
_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)_
|
|
1395
1395
|
|
|
1396
1396
|
## `sf agent test run`
|
|
1397
1397
|
|
|
@@ -1484,11 +1484,11 @@ ERROR CODES
|
|
|
1484
1484
|
OperationFailed (4) Failed to start or poll test due to API or network errors.
|
|
1485
1485
|
```
|
|
1486
1486
|
|
|
1487
|
-
_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)_
|
|
1488
1488
|
|
|
1489
1489
|
## `sf agent test run-eval`
|
|
1490
1490
|
|
|
1491
|
-
Run evaluation tests against an Agentforce agent.
|
|
1491
|
+
Run rich evaluation tests against an Agentforce agent.
|
|
1492
1492
|
|
|
1493
1493
|
```
|
|
1494
1494
|
USAGE
|
|
@@ -1496,8 +1496,8 @@ USAGE
|
|
|
1496
1496
|
[--result-format json|human|junit|tap] [--batch-size <value>] [--no-normalize]
|
|
1497
1497
|
|
|
1498
1498
|
FLAGS
|
|
1499
|
-
-n, --api-name=<value> Agent
|
|
1500
|
-
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.
|
|
1501
1501
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
1502
1502
|
configuration variable is already set.
|
|
1503
1503
|
-s, --spec=<value> (required) Path to test spec file (YAML or JSON). Supports reading from stdin when
|
|
@@ -1513,45 +1513,48 @@ GLOBAL FLAGS
|
|
|
1513
1513
|
--json Format output as json.
|
|
1514
1514
|
|
|
1515
1515
|
DESCRIPTION
|
|
1516
|
-
Run evaluation tests against an Agentforce agent.
|
|
1516
|
+
Run rich evaluation tests against an Agentforce agent.
|
|
1517
1517
|
|
|
1518
|
-
|
|
1519
|
-
specs (same format as `sf agent generate test-spec`) and JSON payloads.
|
|
1518
|
+
Specify the tests you want to run with one of these inputs to the --spec flag:
|
|
1520
1519
|
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
agent test run` and `sf agent test run-eval`. YAML test specs also support contextVariables, which allow you to inject
|
|
1524
|
-
contextual data (such as CaseId or RoutableId) into agent sessions for testing with different contexts.
|
|
1520
|
+
- YAML test spec generated by the `agent generate test-spec` CLI command
|
|
1521
|
+
- JSON payload
|
|
1525
1522
|
|
|
1526
|
-
When you provide a
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
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.
|
|
1530
1528
|
|
|
1531
|
-
|
|
1532
|
-
|
|
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.
|
|
1533
|
+
|
|
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.
|
|
1533
1536
|
|
|
1534
1537
|
EXAMPLES
|
|
1535
1538
|
Run tests using a YAML test spec on the org with alias "my-org":
|
|
1536
1539
|
|
|
1537
|
-
$ sf agent test run-eval --spec
|
|
1540
|
+
$ sf agent test run-eval --spec specs/my-agent-testSpec.yaml --target-org my-org
|
|
1538
1541
|
|
|
1539
1542
|
Run tests using a YAML spec with explicit agent name override; use your default org:
|
|
1540
1543
|
|
|
1541
|
-
$ sf agent test run-eval --spec
|
|
1544
|
+
$ sf agent test run-eval --spec specs/my-agent-testSpec.yaml --api-name My_Agent
|
|
1542
1545
|
|
|
1543
1546
|
Run tests using a JSON payload:
|
|
1544
1547
|
|
|
1545
|
-
$ sf agent test run-eval --spec
|
|
1548
|
+
$ sf agent test run-eval --spec specs/eval-payload.json --target-org my-org
|
|
1546
1549
|
|
|
1547
1550
|
Run tests and output results in JUnit format; useful for continuous integration and deployment (CI/CD):
|
|
1548
1551
|
|
|
1549
|
-
$ 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
|
|
1550
1553
|
|
|
1551
1554
|
Run tests with contextVariables to inject contextual data into agent sessions (add contextVariables to test cases in
|
|
1552
1555
|
your YAML spec):
|
|
1553
1556
|
|
|
1554
|
-
$ sf agent test run-eval --spec
|
|
1557
|
+
$ sf agent test run-eval --spec specs/agent-with-context.yaml --target-org my-org
|
|
1555
1558
|
|
|
1556
1559
|
Pipe JSON payload from stdin (--spec flag is automatically populated from stdin):
|
|
1557
1560
|
$ echo '{"tests":[...]}' | sf agent test run-eval --spec --target-org my-org
|
|
@@ -1566,11 +1569,11 @@ ERROR CODES
|
|
|
1566
1569
|
OperationFailed (4) Failed to execute tests due to API or network errors.
|
|
1567
1570
|
```
|
|
1568
1571
|
|
|
1569
|
-
_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)_
|
|
1570
1573
|
|
|
1571
1574
|
## `sf agent trace delete`
|
|
1572
1575
|
|
|
1573
|
-
Delete agent preview
|
|
1576
|
+
Delete trace files from an agent preview session.
|
|
1574
1577
|
|
|
1575
1578
|
```
|
|
1576
1579
|
USAGE
|
|
@@ -1578,28 +1581,34 @@ USAGE
|
|
|
1578
1581
|
[--no-prompt]
|
|
1579
1582
|
|
|
1580
1583
|
FLAGS
|
|
1581
|
-
-a, --agent=<value>
|
|
1582
|
-
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.
|
|
1583
1587
|
--no-prompt Skip the confirmation prompt and delete immediately.
|
|
1584
|
-
--older-than=<value>
|
|
1585
|
-
h/hours, d/days, w/weeks
|
|
1586
|
-
|
|
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.
|
|
1587
1593
|
|
|
1588
1594
|
GLOBAL FLAGS
|
|
1589
1595
|
--flags-dir=<value> Import flag values from a directory.
|
|
1590
1596
|
--json Format output as json.
|
|
1591
1597
|
|
|
1592
1598
|
DESCRIPTION
|
|
1593
|
-
Delete agent preview
|
|
1599
|
+
Delete trace files from an agent preview session.
|
|
1600
|
+
|
|
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.
|
|
1594
1603
|
|
|
1595
|
-
|
|
1596
|
-
|
|
1604
|
+
By default, this command shows a preview of what will be deleted and prompts for confirmation. Use --no-prompt to skip
|
|
1605
|
+
confirmation.
|
|
1597
1606
|
|
|
1598
|
-
Without filters, deletes all
|
|
1599
|
-
(--agent), by session (--session-id), or by age (--older-than).
|
|
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).
|
|
1600
1609
|
|
|
1601
1610
|
EXAMPLES
|
|
1602
|
-
Delete all traces for all agents and sessions
|
|
1611
|
+
Delete all traces for all agents and sessions; prompt for confirmation:
|
|
1603
1612
|
|
|
1604
1613
|
$ sf agent trace delete
|
|
1605
1614
|
|
|
@@ -1615,11 +1624,11 @@ EXAMPLES
|
|
|
1615
1624
|
|
|
1616
1625
|
$ sf agent trace delete --older-than 7d
|
|
1617
1626
|
|
|
1618
|
-
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:
|
|
1619
1628
|
|
|
1620
1629
|
$ sf agent trace delete --agent My_Agent --older-than 24h --no-prompt
|
|
1621
1630
|
|
|
1622
|
-
Delete all traces
|
|
1631
|
+
Delete all traces for all agents and sessions; don't prompt for confirmation:
|
|
1623
1632
|
|
|
1624
1633
|
$ sf agent trace delete --no-prompt
|
|
1625
1634
|
|
|
@@ -1627,20 +1636,22 @@ ERROR CODES
|
|
|
1627
1636
|
Succeeded (0) Traces deleted successfully (or no traces matched).
|
|
1628
1637
|
```
|
|
1629
1638
|
|
|
1630
|
-
_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)_
|
|
1631
1640
|
|
|
1632
1641
|
## `sf agent trace list`
|
|
1633
1642
|
|
|
1634
|
-
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.
|
|
1635
1644
|
|
|
1636
1645
|
```
|
|
1637
1646
|
USAGE
|
|
1638
1647
|
$ sf agent trace list [--json] [--flags-dir <value>] [--session-id <value>] [-a <value>] [--since <value>]
|
|
1639
1648
|
|
|
1640
1649
|
FLAGS
|
|
1641
|
-
-a, --agent=<value>
|
|
1642
|
-
starting the session,
|
|
1643
|
-
|
|
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.
|
|
1644
1655
|
--since=<value> Date used to filter the list of trace files; only those recorded on or after the date are
|
|
1645
1656
|
listed.
|
|
1646
1657
|
|
|
@@ -1649,33 +1660,34 @@ GLOBAL FLAGS
|
|
|
1649
1660
|
--json Format output as json.
|
|
1650
1661
|
|
|
1651
1662
|
DESCRIPTION
|
|
1652
|
-
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.
|
|
1653
1664
|
|
|
1654
|
-
|
|
1655
|
-
|
|
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
|
|
1656
1668
|
(--since).
|
|
1657
1669
|
|
|
1658
1670
|
Each row in the output corresponds to one trace file, which in turn corresponds to one agent session. The Agent column
|
|
1659
1671
|
shows the authoring bundle or API name used when starting the session.
|
|
1660
1672
|
|
|
1661
1673
|
EXAMPLES
|
|
1662
|
-
List all
|
|
1674
|
+
List all trace files for all agents and sessions:
|
|
1663
1675
|
|
|
1664
1676
|
$ sf agent trace list
|
|
1665
1677
|
|
|
1666
|
-
List all
|
|
1678
|
+
List all trace files for a specific agent:
|
|
1667
1679
|
|
|
1668
1680
|
$ sf agent trace list --agent My_Agent
|
|
1669
1681
|
|
|
1670
|
-
List
|
|
1682
|
+
List trace files for a specific session:
|
|
1671
1683
|
|
|
1672
1684
|
$ sf agent trace list --session-id <SESSION_ID>
|
|
1673
1685
|
|
|
1674
|
-
List
|
|
1686
|
+
List trace files recorded on or after April 20, 2026 (date-only, interpreted as UTC midnight):
|
|
1675
1687
|
|
|
1676
1688
|
$ sf agent trace list --since 2026-04-20
|
|
1677
1689
|
|
|
1678
|
-
List
|
|
1690
|
+
List trace files recorded on or after a specific UTC time:
|
|
1679
1691
|
|
|
1680
1692
|
$ sf agent trace list --since 2026-04-20T14:00:00Z
|
|
1681
1693
|
|
|
@@ -1697,11 +1709,11 @@ ERROR CODES
|
|
|
1697
1709
|
Succeeded (0) Trace files listed successfully (or empty list if none found).
|
|
1698
1710
|
```
|
|
1699
1711
|
|
|
1700
|
-
_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)_
|
|
1701
1713
|
|
|
1702
1714
|
## `sf agent trace read`
|
|
1703
1715
|
|
|
1704
|
-
Read
|
|
1716
|
+
Read trace files from an agent preview session.
|
|
1705
1717
|
|
|
1706
1718
|
```
|
|
1707
1719
|
USAGE
|
|
@@ -1709,43 +1721,58 @@ USAGE
|
|
|
1709
1721
|
actions|grounding|routing|errors] [-t <value>]
|
|
1710
1722
|
|
|
1711
1723
|
FLAGS
|
|
1712
|
-
-d, --dimension=<option> Dimension to drill into when using --format detail
|
|
1713
|
-
|
|
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.
|
|
1714
1726
|
<options: actions|grounding|routing|errors>
|
|
1715
|
-
-f, --format=<option> [default: summary] Output format
|
|
1716
|
-
|
|
1727
|
+
-f, --format=<option> [default: summary] Output format of the trace data; specifies the level of detail you want
|
|
1728
|
+
in the trace files.
|
|
1717
1729
|
<options: summary|detail|raw>
|
|
1718
|
-
-s, --session-id=<value> (required) Session ID to read traces for.
|
|
1719
|
-
|
|
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.
|
|
1720
1734
|
|
|
1721
1735
|
GLOBAL FLAGS
|
|
1722
1736
|
--flags-dir=<value> Import flag values from a directory.
|
|
1723
1737
|
--json Format output as json.
|
|
1724
1738
|
|
|
1725
1739
|
DESCRIPTION
|
|
1726
|
-
Read
|
|
1727
|
-
|
|
1728
|
-
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.
|
|
1729
1741
|
|
|
1730
|
-
|
|
1731
|
-
|
|
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.
|
|
1732
1746
|
|
|
1733
|
-
|
|
1734
|
-
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:
|
|
1735
1748
|
|
|
1736
|
-
|
|
1737
|
-
|
|
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.
|
|
1738
1755
|
|
|
1739
|
-
|
|
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:
|
|
1740
1760
|
|
|
1741
|
-
|
|
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.
|
|
1742
1769
|
|
|
1743
1770
|
EXAMPLES
|
|
1744
|
-
Show a session summary
|
|
1771
|
+
Show a session trace summary for all turns in the session with the specified ID:
|
|
1745
1772
|
|
|
1746
1773
|
$ sf agent trace read --session-id <SESSION_ID>
|
|
1747
1774
|
|
|
1748
|
-
Show summary for
|
|
1775
|
+
Show a trace summary for the second turn (utterance or response) of the conversation:
|
|
1749
1776
|
|
|
1750
1777
|
$ sf agent trace read --session-id <SESSION_ID> --turn 2
|
|
1751
1778
|
|
|
@@ -1753,7 +1780,7 @@ EXAMPLES
|
|
|
1753
1780
|
|
|
1754
1781
|
$ sf agent trace read --session-id <SESSION_ID> --format detail --dimension actions
|
|
1755
1782
|
|
|
1756
|
-
Drill into routing decisions for
|
|
1783
|
+
Drill into routing decisions for the first turn of the conversation:
|
|
1757
1784
|
|
|
1758
1785
|
$ sf agent trace read --session-id <SESSION_ID> --format detail --dimension routing --turn 1
|
|
1759
1786
|
|
|
@@ -1770,7 +1797,7 @@ EXAMPLES
|
|
|
1770
1797
|
$ sf agent trace read --session-id <SESSION_ID> --json
|
|
1771
1798
|
```
|
|
1772
1799
|
|
|
1773
|
-
_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)_
|
|
1774
1801
|
|
|
1775
1802
|
## `sf agent validate authoring-bundle`
|
|
1776
1803
|
|
|
@@ -1827,7 +1854,7 @@ ERROR CODES
|
|
|
1827
1854
|
ServerError (3) Validation/compilation API returned HTTP 500. A server error occurred during compilation.
|
|
1828
1855
|
```
|
|
1829
1856
|
|
|
1830
|
-
_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)_
|
|
1831
1858
|
|
|
1832
1859
|
## `sf alias list`
|
|
1833
1860
|
|
|
@@ -8378,7 +8405,7 @@ FLAG DESCRIPTIONS
|
|
|
8378
8405
|
If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8379
8406
|
```
|
|
8380
8407
|
|
|
8381
|
-
_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)_
|
|
8382
8409
|
|
|
8383
8410
|
## `sf project convert source`
|
|
8384
8411
|
|
|
@@ -8451,7 +8478,7 @@ FLAG DESCRIPTIONS
|
|
|
8451
8478
|
Override the api version used for api requests made by this command
|
|
8452
8479
|
```
|
|
8453
8480
|
|
|
8454
|
-
_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)_
|
|
8455
8482
|
|
|
8456
8483
|
## `sf project convert source-behavior`
|
|
8457
8484
|
|
|
@@ -8510,7 +8537,7 @@ EXAMPLES
|
|
|
8510
8537
|
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
8511
8538
|
```
|
|
8512
8539
|
|
|
8513
|
-
_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)_
|
|
8514
8541
|
|
|
8515
8542
|
## `sf project delete source`
|
|
8516
8543
|
|
|
@@ -8663,7 +8690,7 @@ FLAG DESCRIPTIONS
|
|
|
8663
8690
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
8664
8691
|
```
|
|
8665
8692
|
|
|
8666
|
-
_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)_
|
|
8667
8694
|
|
|
8668
8695
|
## `sf project delete tracking`
|
|
8669
8696
|
|
|
@@ -8700,7 +8727,7 @@ EXAMPLES
|
|
|
8700
8727
|
$ sf project delete tracking --target-org my-scratch
|
|
8701
8728
|
```
|
|
8702
8729
|
|
|
8703
|
-
_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)_
|
|
8704
8731
|
|
|
8705
8732
|
## `sf project deploy cancel`
|
|
8706
8733
|
|
|
@@ -8772,7 +8799,7 @@ FLAG DESCRIPTIONS
|
|
|
8772
8799
|
project deploy report".
|
|
8773
8800
|
```
|
|
8774
8801
|
|
|
8775
|
-
_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)_
|
|
8776
8803
|
|
|
8777
8804
|
## `sf project deploy preview`
|
|
8778
8805
|
|
|
@@ -8855,7 +8882,7 @@ FLAG DESCRIPTIONS
|
|
|
8855
8882
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
8856
8883
|
```
|
|
8857
8884
|
|
|
8858
|
-
_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)_
|
|
8859
8886
|
|
|
8860
8887
|
## `sf project deploy quick`
|
|
8861
8888
|
|
|
@@ -8948,7 +8975,7 @@ ERROR CODES
|
|
|
8948
8975
|
Canceling (69) The deploy is being canceled.
|
|
8949
8976
|
```
|
|
8950
8977
|
|
|
8951
|
-
_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)_
|
|
8952
8979
|
|
|
8953
8980
|
## `sf project deploy report`
|
|
8954
8981
|
|
|
@@ -9040,7 +9067,7 @@ FLAG DESCRIPTIONS
|
|
|
9040
9067
|
--coverage-formatters lcov --coverage-formatters clover
|
|
9041
9068
|
```
|
|
9042
9069
|
|
|
9043
|
-
_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)_
|
|
9044
9071
|
|
|
9045
9072
|
## `sf project deploy resume`
|
|
9046
9073
|
|
|
@@ -9137,7 +9164,7 @@ ERROR CODES
|
|
|
9137
9164
|
Canceling (69) The deploy is being canceled.
|
|
9138
9165
|
```
|
|
9139
9166
|
|
|
9140
|
-
_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)_
|
|
9141
9168
|
|
|
9142
9169
|
## `sf project deploy start`
|
|
9143
9170
|
|
|
@@ -9403,7 +9430,7 @@ ERROR CODES
|
|
|
9403
9430
|
Canceling (69) The deploy is being canceled.
|
|
9404
9431
|
```
|
|
9405
9432
|
|
|
9406
|
-
_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)_
|
|
9407
9434
|
|
|
9408
9435
|
## `sf project deploy validate`
|
|
9409
9436
|
|
|
@@ -9607,7 +9634,7 @@ ERROR CODES
|
|
|
9607
9634
|
Canceling (69) The deploy is being canceled.
|
|
9608
9635
|
```
|
|
9609
9636
|
|
|
9610
|
-
_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)_
|
|
9611
9638
|
|
|
9612
9639
|
## `sf project generate manifest`
|
|
9613
9640
|
|
|
@@ -9703,7 +9730,7 @@ EXAMPLES
|
|
|
9703
9730
|
$ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
|
|
9704
9731
|
```
|
|
9705
9732
|
|
|
9706
|
-
_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)_
|
|
9707
9734
|
|
|
9708
9735
|
## `sf project list ignored`
|
|
9709
9736
|
|
|
@@ -9745,7 +9772,7 @@ EXAMPLES
|
|
|
9745
9772
|
$ sf project list ignored --source-dir package.xml
|
|
9746
9773
|
```
|
|
9747
9774
|
|
|
9748
|
-
_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)_
|
|
9749
9776
|
|
|
9750
9777
|
## `sf project reset tracking`
|
|
9751
9778
|
|
|
@@ -9794,7 +9821,7 @@ EXAMPLES
|
|
|
9794
9821
|
$ sf project reset tracking --revision 30
|
|
9795
9822
|
```
|
|
9796
9823
|
|
|
9797
|
-
_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)_
|
|
9798
9825
|
|
|
9799
9826
|
## `sf project retrieve preview`
|
|
9800
9827
|
|
|
@@ -9848,7 +9875,7 @@ FLAG DESCRIPTIONS
|
|
|
9848
9875
|
production orgs.
|
|
9849
9876
|
```
|
|
9850
9877
|
|
|
9851
|
-
_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)_
|
|
9852
9879
|
|
|
9853
9880
|
## `sf project retrieve start`
|
|
9854
9881
|
|
|
@@ -10029,7 +10056,7 @@ ENVIRONMENT VARIABLES
|
|
|
10029
10056
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
10030
10057
|
```
|
|
10031
10058
|
|
|
10032
|
-
_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)_
|
|
10033
10060
|
|
|
10034
10061
|
## `sf schema generate field`
|
|
10035
10062
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.135.
|
|
3
|
+
"version": "2.135.6",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.135.
|
|
9
|
+
"version": "2.135.6",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"@oclif/plugin-which": "3.2.53",
|
|
25
25
|
"@salesforce/core": "^8.28.0",
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
|
-
"@salesforce/plugin-agent": "1.
|
|
27
|
+
"@salesforce/plugin-agent": "1.40.1",
|
|
28
28
|
"@salesforce/plugin-apex": "3.9.27",
|
|
29
29
|
"@salesforce/plugin-api": "1.3.30",
|
|
30
30
|
"@salesforce/plugin-auth": "4.3.10",
|
|
31
31
|
"@salesforce/plugin-data": "4.0.99",
|
|
32
|
-
"@salesforce/plugin-deploy-retrieve": "3.24.
|
|
32
|
+
"@salesforce/plugin-deploy-retrieve": "3.24.45",
|
|
33
33
|
"@salesforce/plugin-info": "3.4.131",
|
|
34
34
|
"@salesforce/plugin-limits": "3.3.89",
|
|
35
35
|
"@salesforce/plugin-marketplace": "1.3.26",
|
|
@@ -4686,9 +4686,9 @@
|
|
|
4686
4686
|
"license": "BSD-3-Clause"
|
|
4687
4687
|
},
|
|
4688
4688
|
"node_modules/@protobufjs/utf8": {
|
|
4689
|
-
"version": "1.1.
|
|
4690
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.
|
|
4691
|
-
"integrity": "sha512-
|
|
4689
|
+
"version": "1.1.1",
|
|
4690
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
|
|
4691
|
+
"integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
|
|
4692
4692
|
"license": "BSD-3-Clause"
|
|
4693
4693
|
},
|
|
4694
4694
|
"node_modules/@salesforce/agents": {
|
|
@@ -4841,9 +4841,9 @@
|
|
|
4841
4841
|
}
|
|
4842
4842
|
},
|
|
4843
4843
|
"node_modules/@salesforce/core": {
|
|
4844
|
-
"version": "8.
|
|
4845
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.
|
|
4846
|
-
"integrity": "sha512-
|
|
4844
|
+
"version": "8.30.0",
|
|
4845
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.30.0.tgz",
|
|
4846
|
+
"integrity": "sha512-BzKIKAqKKB+obt6KlP3LEOB9kWb6MCFmmzkDiEEyeqENQCDJr/IIps6tZG3VM7RgbNxvu/A8GIS7yIkoyGnqIg==",
|
|
4847
4847
|
"license": "BSD-3-Clause",
|
|
4848
4848
|
"dependencies": {
|
|
4849
4849
|
"@jsforce/jsforce-node": "^3.10.13",
|
|
@@ -5149,9 +5149,9 @@
|
|
|
5149
5149
|
}
|
|
5150
5150
|
},
|
|
5151
5151
|
"node_modules/@salesforce/plugin-agent": {
|
|
5152
|
-
"version": "1.
|
|
5153
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.
|
|
5154
|
-
"integrity": "sha512-
|
|
5152
|
+
"version": "1.40.1",
|
|
5153
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.40.1.tgz",
|
|
5154
|
+
"integrity": "sha512-PYlhDEKTxNrmOZ4TEkXH/YxkGzeNOrxWFgisrqRfhNDDe0Xq9CXxfENwewYHHpFcm2JJEciwfJlPvoXI8QS80w==",
|
|
5155
5155
|
"license": "Apache-2.0",
|
|
5156
5156
|
"dependencies": {
|
|
5157
5157
|
"@inquirer/core": "^10.3.2",
|
|
@@ -5499,21 +5499,21 @@
|
|
|
5499
5499
|
}
|
|
5500
5500
|
},
|
|
5501
5501
|
"node_modules/@salesforce/plugin-deploy-retrieve": {
|
|
5502
|
-
"version": "3.24.
|
|
5503
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.
|
|
5504
|
-
"integrity": "sha512-
|
|
5502
|
+
"version": "3.24.45",
|
|
5503
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.45.tgz",
|
|
5504
|
+
"integrity": "sha512-c44pJp6Wr81txCNAJogTZC8A3OnZo3jhNTNwYOxGewV2BZGR9SwQVAgdqmwT8GAtzGVDsNjCYximDKMScKYZVg==",
|
|
5505
5505
|
"license": "Apache-2.0",
|
|
5506
5506
|
"dependencies": {
|
|
5507
5507
|
"@inquirer/prompts": "^7.8.3",
|
|
5508
5508
|
"@oclif/core": "^4.10.5",
|
|
5509
5509
|
"@oclif/multi-stage-output": "^0.8.37",
|
|
5510
5510
|
"@salesforce/apex-node": "^8.4.22",
|
|
5511
|
-
"@salesforce/core": "^8.
|
|
5511
|
+
"@salesforce/core": "^8.30.0",
|
|
5512
5512
|
"@salesforce/kit": "^3.2.4",
|
|
5513
5513
|
"@salesforce/plugin-info": "^3.4.124",
|
|
5514
5514
|
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
5515
|
-
"@salesforce/source-deploy-retrieve": "^12.35.
|
|
5516
|
-
"@salesforce/source-tracking": "^7.8.
|
|
5515
|
+
"@salesforce/source-deploy-retrieve": "^12.35.9",
|
|
5516
|
+
"@salesforce/source-tracking": "^7.8.16",
|
|
5517
5517
|
"@salesforce/ts-types": "^2.0.12",
|
|
5518
5518
|
"ansis": "^3.17.0",
|
|
5519
5519
|
"terminal-link": "^3.0.0"
|
|
@@ -6362,9 +6362,9 @@
|
|
|
6362
6362
|
}
|
|
6363
6363
|
},
|
|
6364
6364
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
6365
|
-
"version": "12.35.
|
|
6366
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.35.
|
|
6367
|
-
"integrity": "sha512-
|
|
6365
|
+
"version": "12.35.9",
|
|
6366
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.35.9.tgz",
|
|
6367
|
+
"integrity": "sha512-Qud+1lHS0u+LM/AAHPN9Y/6W6hBZ8nvw6/TxJRzn/BuvRSz74YBwvmVhmn5pvpZdNrYmKRMPxsK47l2VmazSsw==",
|
|
6368
6368
|
"license": "Apache-2.0",
|
|
6369
6369
|
"dependencies": {
|
|
6370
6370
|
"@salesforce/core": "^8.29.0",
|
|
@@ -6372,7 +6372,7 @@
|
|
|
6372
6372
|
"@salesforce/ts-types": "^2.0.12",
|
|
6373
6373
|
"@salesforce/types": "^1.6.0",
|
|
6374
6374
|
"fast-levenshtein": "^3.0.0",
|
|
6375
|
-
"fast-xml-parser": "^5.7.
|
|
6375
|
+
"fast-xml-parser": "^5.7.3",
|
|
6376
6376
|
"got": "^11.8.6",
|
|
6377
6377
|
"graceful-fs": "^4.2.11",
|
|
6378
6378
|
"ignore": "^5.3.2",
|
|
@@ -6515,14 +6515,14 @@
|
|
|
6515
6515
|
}
|
|
6516
6516
|
},
|
|
6517
6517
|
"node_modules/@salesforce/source-tracking": {
|
|
6518
|
-
"version": "7.8.
|
|
6519
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.
|
|
6520
|
-
"integrity": "sha512-
|
|
6518
|
+
"version": "7.8.16",
|
|
6519
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.16.tgz",
|
|
6520
|
+
"integrity": "sha512-l6nUZpueLqApzIlwQWS72oU+NOnLRGOvhMjPxGUdII+vFBdFxniHOXd0vFEx3LZFJ3ksk95x5pQgV0nEKW9TRw==",
|
|
6521
6521
|
"license": "Apache-2.0",
|
|
6522
6522
|
"dependencies": {
|
|
6523
|
-
"@salesforce/core": "^8.
|
|
6523
|
+
"@salesforce/core": "^8.30.0",
|
|
6524
6524
|
"@salesforce/kit": "^3.2.6",
|
|
6525
|
-
"@salesforce/source-deploy-retrieve": "^12.
|
|
6525
|
+
"@salesforce/source-deploy-retrieve": "^12.35.9",
|
|
6526
6526
|
"@salesforce/ts-types": "^2.0.12",
|
|
6527
6527
|
"fast-xml-parser": "^5.5.7",
|
|
6528
6528
|
"graceful-fs": "^4.2.11",
|
package/oclif.lock
CHANGED
|
@@ -2175,9 +2175,9 @@
|
|
|
2175
2175
|
integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==
|
|
2176
2176
|
|
|
2177
2177
|
"@protobufjs/utf8@^1.1.0":
|
|
2178
|
-
version "1.1.
|
|
2179
|
-
resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.
|
|
2180
|
-
integrity sha512-
|
|
2178
|
+
version "1.1.1"
|
|
2179
|
+
resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz"
|
|
2180
|
+
integrity sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==
|
|
2181
2181
|
|
|
2182
2182
|
"@salesforce/agents@^1.6.0":
|
|
2183
2183
|
version "1.6.0"
|
|
@@ -2223,10 +2223,10 @@
|
|
|
2223
2223
|
strip-ansi "6.0.1"
|
|
2224
2224
|
ts-retry-promise "^0.8.1"
|
|
2225
2225
|
|
|
2226
|
-
"@salesforce/core@^8.25.1", "@salesforce/core@^8.27.1", "@salesforce/core@^8.28.0", "@salesforce/core@^8.28.1", "@salesforce/core@^8.28.3", "@salesforce/core@^8.28.4", "@salesforce/core@^8.29.0", "@salesforce/core@^8.29.1", "@salesforce/core@^8.5.1":
|
|
2227
|
-
version "8.
|
|
2228
|
-
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.
|
|
2229
|
-
integrity sha512-
|
|
2226
|
+
"@salesforce/core@^8.25.1", "@salesforce/core@^8.27.1", "@salesforce/core@^8.28.0", "@salesforce/core@^8.28.1", "@salesforce/core@^8.28.3", "@salesforce/core@^8.28.4", "@salesforce/core@^8.29.0", "@salesforce/core@^8.29.1", "@salesforce/core@^8.30.0", "@salesforce/core@^8.5.1":
|
|
2227
|
+
version "8.30.0"
|
|
2228
|
+
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.30.0.tgz"
|
|
2229
|
+
integrity sha512-BzKIKAqKKB+obt6KlP3LEOB9kWb6MCFmmzkDiEEyeqENQCDJr/IIps6tZG3VM7RgbNxvu/A8GIS7yIkoyGnqIg==
|
|
2230
2230
|
dependencies:
|
|
2231
2231
|
"@jsforce/jsforce-node" "^3.10.13"
|
|
2232
2232
|
"@salesforce/kit" "^3.2.4"
|
|
@@ -2320,10 +2320,10 @@
|
|
|
2320
2320
|
jszip "^3.10.1"
|
|
2321
2321
|
object-treeify "^2"
|
|
2322
2322
|
|
|
2323
|
-
"@salesforce/plugin-agent@1.
|
|
2324
|
-
version "1.
|
|
2325
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.
|
|
2326
|
-
integrity sha512-
|
|
2323
|
+
"@salesforce/plugin-agent@1.40.1":
|
|
2324
|
+
version "1.40.1"
|
|
2325
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.40.1.tgz"
|
|
2326
|
+
integrity sha512-PYlhDEKTxNrmOZ4TEkXH/YxkGzeNOrxWFgisrqRfhNDDe0Xq9CXxfENwewYHHpFcm2JJEciwfJlPvoXI8QS80w==
|
|
2327
2327
|
dependencies:
|
|
2328
2328
|
"@inquirer/core" "^10.3.2"
|
|
2329
2329
|
"@inquirer/prompts" "^7.10.1"
|
|
@@ -2419,21 +2419,21 @@
|
|
|
2419
2419
|
undici "^7.25.0"
|
|
2420
2420
|
zod "^4.4.3"
|
|
2421
2421
|
|
|
2422
|
-
"@salesforce/plugin-deploy-retrieve@3.24.
|
|
2423
|
-
version "3.24.
|
|
2424
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.
|
|
2425
|
-
integrity sha512-
|
|
2422
|
+
"@salesforce/plugin-deploy-retrieve@3.24.45":
|
|
2423
|
+
version "3.24.45"
|
|
2424
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.45.tgz"
|
|
2425
|
+
integrity sha512-c44pJp6Wr81txCNAJogTZC8A3OnZo3jhNTNwYOxGewV2BZGR9SwQVAgdqmwT8GAtzGVDsNjCYximDKMScKYZVg==
|
|
2426
2426
|
dependencies:
|
|
2427
2427
|
"@inquirer/prompts" "^7.8.3"
|
|
2428
2428
|
"@oclif/core" "^4.10.5"
|
|
2429
2429
|
"@oclif/multi-stage-output" "^0.8.37"
|
|
2430
2430
|
"@salesforce/apex-node" "^8.4.22"
|
|
2431
|
-
"@salesforce/core" "^8.
|
|
2431
|
+
"@salesforce/core" "^8.30.0"
|
|
2432
2432
|
"@salesforce/kit" "^3.2.4"
|
|
2433
2433
|
"@salesforce/plugin-info" "^3.4.124"
|
|
2434
2434
|
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
2435
|
-
"@salesforce/source-deploy-retrieve" "^12.35.
|
|
2436
|
-
"@salesforce/source-tracking" "^7.8.
|
|
2435
|
+
"@salesforce/source-deploy-retrieve" "^12.35.9"
|
|
2436
|
+
"@salesforce/source-tracking" "^7.8.16"
|
|
2437
2437
|
"@salesforce/ts-types" "^2.0.12"
|
|
2438
2438
|
ansis "^3.17.0"
|
|
2439
2439
|
terminal-link "^3.0.0"
|
|
@@ -2663,17 +2663,17 @@
|
|
|
2663
2663
|
cli-progress "^3.12.0"
|
|
2664
2664
|
terminal-link "^3.0.0"
|
|
2665
2665
|
|
|
2666
|
-
"@salesforce/source-deploy-retrieve@^12.
|
|
2667
|
-
version "12.35.
|
|
2668
|
-
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.35.
|
|
2669
|
-
integrity sha512-
|
|
2666
|
+
"@salesforce/source-deploy-retrieve@^12.34.2", "@salesforce/source-deploy-retrieve@^12.35.1", "@salesforce/source-deploy-retrieve@^12.35.3", "@salesforce/source-deploy-retrieve@^12.35.9":
|
|
2667
|
+
version "12.35.9"
|
|
2668
|
+
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.35.9.tgz"
|
|
2669
|
+
integrity sha512-Qud+1lHS0u+LM/AAHPN9Y/6W6hBZ8nvw6/TxJRzn/BuvRSz74YBwvmVhmn5pvpZdNrYmKRMPxsK47l2VmazSsw==
|
|
2670
2670
|
dependencies:
|
|
2671
2671
|
"@salesforce/core" "^8.29.0"
|
|
2672
2672
|
"@salesforce/kit" "^3.2.4"
|
|
2673
2673
|
"@salesforce/ts-types" "^2.0.12"
|
|
2674
2674
|
"@salesforce/types" "^1.6.0"
|
|
2675
2675
|
fast-levenshtein "^3.0.0"
|
|
2676
|
-
fast-xml-parser "^5.7.
|
|
2676
|
+
fast-xml-parser "^5.7.3"
|
|
2677
2677
|
got "^11.8.6"
|
|
2678
2678
|
graceful-fs "^4.2.11"
|
|
2679
2679
|
ignore "^5.3.2"
|
|
@@ -2683,14 +2683,14 @@
|
|
|
2683
2683
|
proxy-agent "^6.5.0"
|
|
2684
2684
|
yaml "^2.8.3"
|
|
2685
2685
|
|
|
2686
|
-
"@salesforce/source-tracking@^7.8.
|
|
2687
|
-
version "7.8.
|
|
2688
|
-
resolved "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.
|
|
2689
|
-
integrity sha512-
|
|
2686
|
+
"@salesforce/source-tracking@^7.8.16":
|
|
2687
|
+
version "7.8.16"
|
|
2688
|
+
resolved "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.16.tgz"
|
|
2689
|
+
integrity sha512-l6nUZpueLqApzIlwQWS72oU+NOnLRGOvhMjPxGUdII+vFBdFxniHOXd0vFEx3LZFJ3ksk95x5pQgV0nEKW9TRw==
|
|
2690
2690
|
dependencies:
|
|
2691
|
-
"@salesforce/core" "^8.
|
|
2691
|
+
"@salesforce/core" "^8.30.0"
|
|
2692
2692
|
"@salesforce/kit" "^3.2.6"
|
|
2693
|
-
"@salesforce/source-deploy-retrieve" "^12.
|
|
2693
|
+
"@salesforce/source-deploy-retrieve" "^12.35.9"
|
|
2694
2694
|
"@salesforce/ts-types" "^2.0.12"
|
|
2695
2695
|
fast-xml-parser "^5.5.7"
|
|
2696
2696
|
graceful-fs "^4.2.11"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.135.
|
|
4
|
+
"version": "2.135.6",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -159,12 +159,12 @@
|
|
|
159
159
|
"@oclif/plugin-which": "3.2.53",
|
|
160
160
|
"@salesforce/core": "^8.28.0",
|
|
161
161
|
"@salesforce/kit": "^3.1.6",
|
|
162
|
-
"@salesforce/plugin-agent": "1.
|
|
162
|
+
"@salesforce/plugin-agent": "1.40.1",
|
|
163
163
|
"@salesforce/plugin-apex": "3.9.27",
|
|
164
164
|
"@salesforce/plugin-api": "1.3.30",
|
|
165
165
|
"@salesforce/plugin-auth": "4.3.10",
|
|
166
166
|
"@salesforce/plugin-data": "4.0.99",
|
|
167
|
-
"@salesforce/plugin-deploy-retrieve": "3.24.
|
|
167
|
+
"@salesforce/plugin-deploy-retrieve": "3.24.45",
|
|
168
168
|
"@salesforce/plugin-info": "3.4.131",
|
|
169
169
|
"@salesforce/plugin-limits": "3.3.89",
|
|
170
170
|
"@salesforce/plugin-marketplace": "1.3.26",
|