@salesforce/cli 2.135.5 → 2.135.7
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 +98 -41
- package/oclif.lock +88 -43
- 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.7 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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.2/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.7",
|
|
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.7",
|
|
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.2",
|
|
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",
|
|
@@ -3345,6 +3345,23 @@
|
|
|
3345
3345
|
"integrity": "sha512-2IHAOaLauc8qaAitvWS+U931T+ze+7MNWrDHY47IENP5y2UA0vqJDu67kWZDdpCN1fFC77sfgfB+HV7SrKshnQ==",
|
|
3346
3346
|
"license": "MIT"
|
|
3347
3347
|
},
|
|
3348
|
+
"node_modules/@mswjs/interceptors": {
|
|
3349
|
+
"version": "0.41.9",
|
|
3350
|
+
"resolved": "https://registry.npmjs.org/@mswjs/interceptors/-/interceptors-0.41.9.tgz",
|
|
3351
|
+
"integrity": "sha512-VVPPgHyQ6ShqnrmDWuxjmUIsO9gWyOZFmuOfLd9LfBGQJwZfy0gvv9pbHSJuoFNIYC7ZDX9aoFwowjcdSC4E8w==",
|
|
3352
|
+
"license": "MIT",
|
|
3353
|
+
"dependencies": {
|
|
3354
|
+
"@open-draft/deferred-promise": "^2.2.0",
|
|
3355
|
+
"@open-draft/logger": "^0.3.0",
|
|
3356
|
+
"@open-draft/until": "^2.0.0",
|
|
3357
|
+
"is-node-process": "^1.2.0",
|
|
3358
|
+
"outvariant": "^1.4.3",
|
|
3359
|
+
"strict-event-emitter": "^0.5.1"
|
|
3360
|
+
},
|
|
3361
|
+
"engines": {
|
|
3362
|
+
"node": ">=18"
|
|
3363
|
+
}
|
|
3364
|
+
},
|
|
3348
3365
|
"node_modules/@nodable/entities": {
|
|
3349
3366
|
"version": "2.1.0",
|
|
3350
3367
|
"resolved": "https://registry.npmjs.org/@nodable/entities/-/entities-2.1.0.tgz",
|
|
@@ -4490,6 +4507,28 @@
|
|
|
4490
4507
|
"@octokit/openapi-types": "^25.1.0"
|
|
4491
4508
|
}
|
|
4492
4509
|
},
|
|
4510
|
+
"node_modules/@open-draft/deferred-promise": {
|
|
4511
|
+
"version": "2.2.0",
|
|
4512
|
+
"resolved": "https://registry.npmjs.org/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz",
|
|
4513
|
+
"integrity": "sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==",
|
|
4514
|
+
"license": "MIT"
|
|
4515
|
+
},
|
|
4516
|
+
"node_modules/@open-draft/logger": {
|
|
4517
|
+
"version": "0.3.0",
|
|
4518
|
+
"resolved": "https://registry.npmjs.org/@open-draft/logger/-/logger-0.3.0.tgz",
|
|
4519
|
+
"integrity": "sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==",
|
|
4520
|
+
"license": "MIT",
|
|
4521
|
+
"dependencies": {
|
|
4522
|
+
"is-node-process": "^1.2.0",
|
|
4523
|
+
"outvariant": "^1.4.0"
|
|
4524
|
+
}
|
|
4525
|
+
},
|
|
4526
|
+
"node_modules/@open-draft/until": {
|
|
4527
|
+
"version": "2.1.0",
|
|
4528
|
+
"resolved": "https://registry.npmjs.org/@open-draft/until/-/until-2.1.0.tgz",
|
|
4529
|
+
"integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==",
|
|
4530
|
+
"license": "MIT"
|
|
4531
|
+
},
|
|
4493
4532
|
"node_modules/@opentelemetry/api": {
|
|
4494
4533
|
"version": "1.8.0",
|
|
4495
4534
|
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.8.0.tgz",
|
|
@@ -4686,23 +4725,23 @@
|
|
|
4686
4725
|
"license": "BSD-3-Clause"
|
|
4687
4726
|
},
|
|
4688
4727
|
"node_modules/@protobufjs/utf8": {
|
|
4689
|
-
"version": "1.1.
|
|
4690
|
-
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.
|
|
4691
|
-
"integrity": "sha512-
|
|
4728
|
+
"version": "1.1.1",
|
|
4729
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
|
|
4730
|
+
"integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
|
|
4692
4731
|
"license": "BSD-3-Clause"
|
|
4693
4732
|
},
|
|
4694
4733
|
"node_modules/@salesforce/agents": {
|
|
4695
|
-
"version": "1.6.
|
|
4696
|
-
"resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-1.6.
|
|
4697
|
-
"integrity": "sha512-
|
|
4734
|
+
"version": "1.6.6",
|
|
4735
|
+
"resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-1.6.6.tgz",
|
|
4736
|
+
"integrity": "sha512-YMYOPv45aSLjIARu+9vkHz5GWXGh0EMhiQw+oCBEwlxD55/O4Gm6Zb/HzLuOPKhXt5xn9TogG87vvHvCNgiUyA==",
|
|
4698
4737
|
"license": "Apache-2.0",
|
|
4699
4738
|
"dependencies": {
|
|
4700
|
-
"@salesforce/core": "^8.29.
|
|
4739
|
+
"@salesforce/core": "^8.29.1",
|
|
4701
4740
|
"@salesforce/kit": "^3.2.6",
|
|
4702
|
-
"@salesforce/source-deploy-retrieve": "^12.35.
|
|
4741
|
+
"@salesforce/source-deploy-retrieve": "^12.35.8",
|
|
4703
4742
|
"@salesforce/types": "^1.7.1",
|
|
4704
|
-
"fast-xml-parser": "^5.7.
|
|
4705
|
-
"nock": "^
|
|
4743
|
+
"fast-xml-parser": "^5.7.3",
|
|
4744
|
+
"nock": "^14.0.15",
|
|
4706
4745
|
"yaml": "^2.8.4"
|
|
4707
4746
|
},
|
|
4708
4747
|
"engines": {
|
|
@@ -4841,9 +4880,9 @@
|
|
|
4841
4880
|
}
|
|
4842
4881
|
},
|
|
4843
4882
|
"node_modules/@salesforce/core": {
|
|
4844
|
-
"version": "8.
|
|
4845
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.
|
|
4846
|
-
"integrity": "sha512-
|
|
4883
|
+
"version": "8.30.0",
|
|
4884
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.30.0.tgz",
|
|
4885
|
+
"integrity": "sha512-BzKIKAqKKB+obt6KlP3LEOB9kWb6MCFmmzkDiEEyeqENQCDJr/IIps6tZG3VM7RgbNxvu/A8GIS7yIkoyGnqIg==",
|
|
4847
4886
|
"license": "BSD-3-Clause",
|
|
4848
4887
|
"dependencies": {
|
|
4849
4888
|
"@jsforce/jsforce-node": "^3.10.13",
|
|
@@ -5149,16 +5188,16 @@
|
|
|
5149
5188
|
}
|
|
5150
5189
|
},
|
|
5151
5190
|
"node_modules/@salesforce/plugin-agent": {
|
|
5152
|
-
"version": "1.
|
|
5153
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.
|
|
5154
|
-
"integrity": "sha512-
|
|
5191
|
+
"version": "1.40.2",
|
|
5192
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.40.2.tgz",
|
|
5193
|
+
"integrity": "sha512-ChkJ+CtlJ+b85lsOCRs4MMLqdsXAwl92bIFzdh94q/HvKE91jQ7Jr+J+KiKPoenw5/OW+8FOzqCdWCF8hu8nTQ==",
|
|
5155
5194
|
"license": "Apache-2.0",
|
|
5156
5195
|
"dependencies": {
|
|
5157
5196
|
"@inquirer/core": "^10.3.2",
|
|
5158
5197
|
"@inquirer/prompts": "^7.10.1",
|
|
5159
5198
|
"@oclif/core": "^4",
|
|
5160
5199
|
"@oclif/multi-stage-output": "^0.8.36",
|
|
5161
|
-
"@salesforce/agents": "^1.6.
|
|
5200
|
+
"@salesforce/agents": "^1.6.6",
|
|
5162
5201
|
"@salesforce/core": "^8.28.3",
|
|
5163
5202
|
"@salesforce/kit": "^3.2.6",
|
|
5164
5203
|
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
@@ -5499,21 +5538,21 @@
|
|
|
5499
5538
|
}
|
|
5500
5539
|
},
|
|
5501
5540
|
"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-
|
|
5541
|
+
"version": "3.24.45",
|
|
5542
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.45.tgz",
|
|
5543
|
+
"integrity": "sha512-c44pJp6Wr81txCNAJogTZC8A3OnZo3jhNTNwYOxGewV2BZGR9SwQVAgdqmwT8GAtzGVDsNjCYximDKMScKYZVg==",
|
|
5505
5544
|
"license": "Apache-2.0",
|
|
5506
5545
|
"dependencies": {
|
|
5507
5546
|
"@inquirer/prompts": "^7.8.3",
|
|
5508
5547
|
"@oclif/core": "^4.10.5",
|
|
5509
5548
|
"@oclif/multi-stage-output": "^0.8.37",
|
|
5510
5549
|
"@salesforce/apex-node": "^8.4.22",
|
|
5511
|
-
"@salesforce/core": "^8.
|
|
5550
|
+
"@salesforce/core": "^8.30.0",
|
|
5512
5551
|
"@salesforce/kit": "^3.2.4",
|
|
5513
5552
|
"@salesforce/plugin-info": "^3.4.124",
|
|
5514
5553
|
"@salesforce/sf-plugins-core": "^12.2.6",
|
|
5515
|
-
"@salesforce/source-deploy-retrieve": "^12.35.
|
|
5516
|
-
"@salesforce/source-tracking": "^7.8.
|
|
5554
|
+
"@salesforce/source-deploy-retrieve": "^12.35.9",
|
|
5555
|
+
"@salesforce/source-tracking": "^7.8.16",
|
|
5517
5556
|
"@salesforce/ts-types": "^2.0.12",
|
|
5518
5557
|
"ansis": "^3.17.0",
|
|
5519
5558
|
"terminal-link": "^3.0.0"
|
|
@@ -6362,9 +6401,9 @@
|
|
|
6362
6401
|
}
|
|
6363
6402
|
},
|
|
6364
6403
|
"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-
|
|
6404
|
+
"version": "12.35.9",
|
|
6405
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.35.9.tgz",
|
|
6406
|
+
"integrity": "sha512-Qud+1lHS0u+LM/AAHPN9Y/6W6hBZ8nvw6/TxJRzn/BuvRSz74YBwvmVhmn5pvpZdNrYmKRMPxsK47l2VmazSsw==",
|
|
6368
6407
|
"license": "Apache-2.0",
|
|
6369
6408
|
"dependencies": {
|
|
6370
6409
|
"@salesforce/core": "^8.29.0",
|
|
@@ -6372,7 +6411,7 @@
|
|
|
6372
6411
|
"@salesforce/ts-types": "^2.0.12",
|
|
6373
6412
|
"@salesforce/types": "^1.6.0",
|
|
6374
6413
|
"fast-levenshtein": "^3.0.0",
|
|
6375
|
-
"fast-xml-parser": "^5.7.
|
|
6414
|
+
"fast-xml-parser": "^5.7.3",
|
|
6376
6415
|
"got": "^11.8.6",
|
|
6377
6416
|
"graceful-fs": "^4.2.11",
|
|
6378
6417
|
"ignore": "^5.3.2",
|
|
@@ -6515,14 +6554,14 @@
|
|
|
6515
6554
|
}
|
|
6516
6555
|
},
|
|
6517
6556
|
"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-
|
|
6557
|
+
"version": "7.8.16",
|
|
6558
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.16.tgz",
|
|
6559
|
+
"integrity": "sha512-l6nUZpueLqApzIlwQWS72oU+NOnLRGOvhMjPxGUdII+vFBdFxniHOXd0vFEx3LZFJ3ksk95x5pQgV0nEKW9TRw==",
|
|
6521
6560
|
"license": "Apache-2.0",
|
|
6522
6561
|
"dependencies": {
|
|
6523
|
-
"@salesforce/core": "^8.
|
|
6562
|
+
"@salesforce/core": "^8.30.0",
|
|
6524
6563
|
"@salesforce/kit": "^3.2.6",
|
|
6525
|
-
"@salesforce/source-deploy-retrieve": "^12.
|
|
6564
|
+
"@salesforce/source-deploy-retrieve": "^12.35.9",
|
|
6526
6565
|
"@salesforce/ts-types": "^2.0.12",
|
|
6527
6566
|
"fast-xml-parser": "^5.5.7",
|
|
6528
6567
|
"graceful-fs": "^4.2.11",
|
|
@@ -14921,6 +14960,12 @@
|
|
|
14921
14960
|
"url": "https://github.com/sponsors/ljharb"
|
|
14922
14961
|
}
|
|
14923
14962
|
},
|
|
14963
|
+
"node_modules/is-node-process": {
|
|
14964
|
+
"version": "1.2.0",
|
|
14965
|
+
"resolved": "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz",
|
|
14966
|
+
"integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==",
|
|
14967
|
+
"license": "MIT"
|
|
14968
|
+
},
|
|
14924
14969
|
"node_modules/is-number": {
|
|
14925
14970
|
"version": "7.0.0",
|
|
14926
14971
|
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
@@ -17323,17 +17368,17 @@
|
|
|
17323
17368
|
}
|
|
17324
17369
|
},
|
|
17325
17370
|
"node_modules/nock": {
|
|
17326
|
-
"version": "
|
|
17327
|
-
"resolved": "https://registry.npmjs.org/nock/-/nock-
|
|
17328
|
-
"integrity": "sha512-
|
|
17371
|
+
"version": "14.0.15",
|
|
17372
|
+
"resolved": "https://registry.npmjs.org/nock/-/nock-14.0.15.tgz",
|
|
17373
|
+
"integrity": "sha512-S0a47C9pLvcYx/Ugf0H30BVBEcUgMMBDk9VJIDlJ8XGrfH2QDUD4Tgdp45qDIiHttokBG+IbsOtsvIjGR/j3bg==",
|
|
17329
17374
|
"license": "MIT",
|
|
17330
17375
|
"dependencies": {
|
|
17331
|
-
"
|
|
17376
|
+
"@mswjs/interceptors": "^0.41.0",
|
|
17332
17377
|
"json-stringify-safe": "^5.0.1",
|
|
17333
17378
|
"propagate": "^2.0.0"
|
|
17334
17379
|
},
|
|
17335
17380
|
"engines": {
|
|
17336
|
-
"node": ">=
|
|
17381
|
+
"node": ">=18.20.0 <20 || >=20.12.1"
|
|
17337
17382
|
}
|
|
17338
17383
|
},
|
|
17339
17384
|
"node_modules/node-emoji": {
|
|
@@ -20245,6 +20290,12 @@
|
|
|
20245
20290
|
"dev": true,
|
|
20246
20291
|
"license": "MIT"
|
|
20247
20292
|
},
|
|
20293
|
+
"node_modules/outvariant": {
|
|
20294
|
+
"version": "1.4.3",
|
|
20295
|
+
"resolved": "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz",
|
|
20296
|
+
"integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==",
|
|
20297
|
+
"license": "MIT"
|
|
20298
|
+
},
|
|
20248
20299
|
"node_modules/p-cancelable": {
|
|
20249
20300
|
"version": "3.0.0",
|
|
20250
20301
|
"resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
|
|
@@ -22575,6 +22626,12 @@
|
|
|
22575
22626
|
"node": ">=8"
|
|
22576
22627
|
}
|
|
22577
22628
|
},
|
|
22629
|
+
"node_modules/strict-event-emitter": {
|
|
22630
|
+
"version": "0.5.1",
|
|
22631
|
+
"resolved": "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz",
|
|
22632
|
+
"integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==",
|
|
22633
|
+
"license": "MIT"
|
|
22634
|
+
},
|
|
22578
22635
|
"node_modules/string_decoder": {
|
|
22579
22636
|
"version": "1.3.0",
|
|
22580
22637
|
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
package/oclif.lock
CHANGED
|
@@ -1555,6 +1555,18 @@
|
|
|
1555
1555
|
resolved "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.0.1.tgz"
|
|
1556
1556
|
integrity sha512-2IHAOaLauc8qaAitvWS+U931T+ze+7MNWrDHY47IENP5y2UA0vqJDu67kWZDdpCN1fFC77sfgfB+HV7SrKshnQ==
|
|
1557
1557
|
|
|
1558
|
+
"@mswjs/interceptors@^0.41.0":
|
|
1559
|
+
version "0.41.9"
|
|
1560
|
+
resolved "https://registry.npmjs.org/@mswjs/interceptors/-/interceptors-0.41.9.tgz"
|
|
1561
|
+
integrity sha512-VVPPgHyQ6ShqnrmDWuxjmUIsO9gWyOZFmuOfLd9LfBGQJwZfy0gvv9pbHSJuoFNIYC7ZDX9aoFwowjcdSC4E8w==
|
|
1562
|
+
dependencies:
|
|
1563
|
+
"@open-draft/deferred-promise" "^2.2.0"
|
|
1564
|
+
"@open-draft/logger" "^0.3.0"
|
|
1565
|
+
"@open-draft/until" "^2.0.0"
|
|
1566
|
+
is-node-process "^1.2.0"
|
|
1567
|
+
outvariant "^1.4.3"
|
|
1568
|
+
strict-event-emitter "^0.5.1"
|
|
1569
|
+
|
|
1558
1570
|
"@nodable/entities@^2.1.0":
|
|
1559
1571
|
version "2.1.0"
|
|
1560
1572
|
resolved "https://registry.npmjs.org/@nodable/entities/-/entities-2.1.0.tgz"
|
|
@@ -2055,6 +2067,24 @@
|
|
|
2055
2067
|
dependencies:
|
|
2056
2068
|
"@octokit/openapi-types" "^25.1.0"
|
|
2057
2069
|
|
|
2070
|
+
"@open-draft/deferred-promise@^2.2.0":
|
|
2071
|
+
version "2.2.0"
|
|
2072
|
+
resolved "https://registry.npmjs.org/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz"
|
|
2073
|
+
integrity sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==
|
|
2074
|
+
|
|
2075
|
+
"@open-draft/logger@^0.3.0":
|
|
2076
|
+
version "0.3.0"
|
|
2077
|
+
resolved "https://registry.npmjs.org/@open-draft/logger/-/logger-0.3.0.tgz"
|
|
2078
|
+
integrity sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==
|
|
2079
|
+
dependencies:
|
|
2080
|
+
is-node-process "^1.2.0"
|
|
2081
|
+
outvariant "^1.4.0"
|
|
2082
|
+
|
|
2083
|
+
"@open-draft/until@^2.0.0":
|
|
2084
|
+
version "2.1.0"
|
|
2085
|
+
resolved "https://registry.npmjs.org/@open-draft/until/-/until-2.1.0.tgz"
|
|
2086
|
+
integrity sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==
|
|
2087
|
+
|
|
2058
2088
|
"@opentelemetry/api@^1.3.0", "@opentelemetry/api@^1.4.1", "@opentelemetry/api@^1.7.0", "@opentelemetry/api@>=1.0.0 <1.9.0":
|
|
2059
2089
|
version "1.8.0"
|
|
2060
2090
|
resolved "https://registry.npmjs.org/@opentelemetry/api/-/api-1.8.0.tgz"
|
|
@@ -2175,21 +2205,21 @@
|
|
|
2175
2205
|
integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==
|
|
2176
2206
|
|
|
2177
2207
|
"@protobufjs/utf8@^1.1.0":
|
|
2178
|
-
version "1.1.
|
|
2179
|
-
resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.
|
|
2180
|
-
integrity sha512-
|
|
2208
|
+
version "1.1.1"
|
|
2209
|
+
resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz"
|
|
2210
|
+
integrity sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==
|
|
2181
2211
|
|
|
2182
|
-
"@salesforce/agents@^1.6.
|
|
2183
|
-
version "1.6.
|
|
2184
|
-
resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-1.6.
|
|
2185
|
-
integrity sha512-
|
|
2212
|
+
"@salesforce/agents@^1.6.6":
|
|
2213
|
+
version "1.6.6"
|
|
2214
|
+
resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-1.6.6.tgz"
|
|
2215
|
+
integrity sha512-YMYOPv45aSLjIARu+9vkHz5GWXGh0EMhiQw+oCBEwlxD55/O4Gm6Zb/HzLuOPKhXt5xn9TogG87vvHvCNgiUyA==
|
|
2186
2216
|
dependencies:
|
|
2187
|
-
"@salesforce/core" "^8.29.
|
|
2217
|
+
"@salesforce/core" "^8.29.1"
|
|
2188
2218
|
"@salesforce/kit" "^3.2.6"
|
|
2189
|
-
"@salesforce/source-deploy-retrieve" "^12.35.
|
|
2219
|
+
"@salesforce/source-deploy-retrieve" "^12.35.8"
|
|
2190
2220
|
"@salesforce/types" "^1.7.1"
|
|
2191
|
-
fast-xml-parser "^5.7.
|
|
2192
|
-
nock "^
|
|
2221
|
+
fast-xml-parser "^5.7.3"
|
|
2222
|
+
nock "^14.0.15"
|
|
2193
2223
|
yaml "^2.8.4"
|
|
2194
2224
|
|
|
2195
2225
|
"@salesforce/apex-node@^8.4.22", "@salesforce/apex-node@^8.4.24":
|
|
@@ -2223,10 +2253,10 @@
|
|
|
2223
2253
|
strip-ansi "6.0.1"
|
|
2224
2254
|
ts-retry-promise "^0.8.1"
|
|
2225
2255
|
|
|
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-
|
|
2256
|
+
"@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":
|
|
2257
|
+
version "8.30.0"
|
|
2258
|
+
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.30.0.tgz"
|
|
2259
|
+
integrity sha512-BzKIKAqKKB+obt6KlP3LEOB9kWb6MCFmmzkDiEEyeqENQCDJr/IIps6tZG3VM7RgbNxvu/A8GIS7yIkoyGnqIg==
|
|
2230
2260
|
dependencies:
|
|
2231
2261
|
"@jsforce/jsforce-node" "^3.10.13"
|
|
2232
2262
|
"@salesforce/kit" "^3.2.4"
|
|
@@ -2320,16 +2350,16 @@
|
|
|
2320
2350
|
jszip "^3.10.1"
|
|
2321
2351
|
object-treeify "^2"
|
|
2322
2352
|
|
|
2323
|
-
"@salesforce/plugin-agent@1.
|
|
2324
|
-
version "1.
|
|
2325
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.
|
|
2326
|
-
integrity sha512-
|
|
2353
|
+
"@salesforce/plugin-agent@1.40.2":
|
|
2354
|
+
version "1.40.2"
|
|
2355
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.40.2.tgz"
|
|
2356
|
+
integrity sha512-ChkJ+CtlJ+b85lsOCRs4MMLqdsXAwl92bIFzdh94q/HvKE91jQ7Jr+J+KiKPoenw5/OW+8FOzqCdWCF8hu8nTQ==
|
|
2327
2357
|
dependencies:
|
|
2328
2358
|
"@inquirer/core" "^10.3.2"
|
|
2329
2359
|
"@inquirer/prompts" "^7.10.1"
|
|
2330
2360
|
"@oclif/core" "^4"
|
|
2331
2361
|
"@oclif/multi-stage-output" "^0.8.36"
|
|
2332
|
-
"@salesforce/agents" "^1.6.
|
|
2362
|
+
"@salesforce/agents" "^1.6.6"
|
|
2333
2363
|
"@salesforce/core" "^8.28.3"
|
|
2334
2364
|
"@salesforce/kit" "^3.2.6"
|
|
2335
2365
|
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
@@ -2419,21 +2449,21 @@
|
|
|
2419
2449
|
undici "^7.25.0"
|
|
2420
2450
|
zod "^4.4.3"
|
|
2421
2451
|
|
|
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-
|
|
2452
|
+
"@salesforce/plugin-deploy-retrieve@3.24.45":
|
|
2453
|
+
version "3.24.45"
|
|
2454
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.24.45.tgz"
|
|
2455
|
+
integrity sha512-c44pJp6Wr81txCNAJogTZC8A3OnZo3jhNTNwYOxGewV2BZGR9SwQVAgdqmwT8GAtzGVDsNjCYximDKMScKYZVg==
|
|
2426
2456
|
dependencies:
|
|
2427
2457
|
"@inquirer/prompts" "^7.8.3"
|
|
2428
2458
|
"@oclif/core" "^4.10.5"
|
|
2429
2459
|
"@oclif/multi-stage-output" "^0.8.37"
|
|
2430
2460
|
"@salesforce/apex-node" "^8.4.22"
|
|
2431
|
-
"@salesforce/core" "^8.
|
|
2461
|
+
"@salesforce/core" "^8.30.0"
|
|
2432
2462
|
"@salesforce/kit" "^3.2.4"
|
|
2433
2463
|
"@salesforce/plugin-info" "^3.4.124"
|
|
2434
2464
|
"@salesforce/sf-plugins-core" "^12.2.6"
|
|
2435
|
-
"@salesforce/source-deploy-retrieve" "^12.35.
|
|
2436
|
-
"@salesforce/source-tracking" "^7.8.
|
|
2465
|
+
"@salesforce/source-deploy-retrieve" "^12.35.9"
|
|
2466
|
+
"@salesforce/source-tracking" "^7.8.16"
|
|
2437
2467
|
"@salesforce/ts-types" "^2.0.12"
|
|
2438
2468
|
ansis "^3.17.0"
|
|
2439
2469
|
terminal-link "^3.0.0"
|
|
@@ -2663,17 +2693,17 @@
|
|
|
2663
2693
|
cli-progress "^3.12.0"
|
|
2664
2694
|
terminal-link "^3.0.0"
|
|
2665
2695
|
|
|
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-
|
|
2696
|
+
"@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.8", "@salesforce/source-deploy-retrieve@^12.35.9":
|
|
2697
|
+
version "12.35.9"
|
|
2698
|
+
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.35.9.tgz"
|
|
2699
|
+
integrity sha512-Qud+1lHS0u+LM/AAHPN9Y/6W6hBZ8nvw6/TxJRzn/BuvRSz74YBwvmVhmn5pvpZdNrYmKRMPxsK47l2VmazSsw==
|
|
2670
2700
|
dependencies:
|
|
2671
2701
|
"@salesforce/core" "^8.29.0"
|
|
2672
2702
|
"@salesforce/kit" "^3.2.4"
|
|
2673
2703
|
"@salesforce/ts-types" "^2.0.12"
|
|
2674
2704
|
"@salesforce/types" "^1.6.0"
|
|
2675
2705
|
fast-levenshtein "^3.0.0"
|
|
2676
|
-
fast-xml-parser "^5.7.
|
|
2706
|
+
fast-xml-parser "^5.7.3"
|
|
2677
2707
|
got "^11.8.6"
|
|
2678
2708
|
graceful-fs "^4.2.11"
|
|
2679
2709
|
ignore "^5.3.2"
|
|
@@ -2683,14 +2713,14 @@
|
|
|
2683
2713
|
proxy-agent "^6.5.0"
|
|
2684
2714
|
yaml "^2.8.3"
|
|
2685
2715
|
|
|
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-
|
|
2716
|
+
"@salesforce/source-tracking@^7.8.16":
|
|
2717
|
+
version "7.8.16"
|
|
2718
|
+
resolved "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.8.16.tgz"
|
|
2719
|
+
integrity sha512-l6nUZpueLqApzIlwQWS72oU+NOnLRGOvhMjPxGUdII+vFBdFxniHOXd0vFEx3LZFJ3ksk95x5pQgV0nEKW9TRw==
|
|
2690
2720
|
dependencies:
|
|
2691
|
-
"@salesforce/core" "^8.
|
|
2721
|
+
"@salesforce/core" "^8.30.0"
|
|
2692
2722
|
"@salesforce/kit" "^3.2.6"
|
|
2693
|
-
"@salesforce/source-deploy-retrieve" "^12.
|
|
2723
|
+
"@salesforce/source-deploy-retrieve" "^12.35.9"
|
|
2694
2724
|
"@salesforce/ts-types" "^2.0.12"
|
|
2695
2725
|
fast-xml-parser "^5.5.7"
|
|
2696
2726
|
graceful-fs "^4.2.11"
|
|
@@ -7324,6 +7354,11 @@ is-negative-zero@^2.0.3:
|
|
|
7324
7354
|
resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz"
|
|
7325
7355
|
integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==
|
|
7326
7356
|
|
|
7357
|
+
is-node-process@^1.2.0:
|
|
7358
|
+
version "1.2.0"
|
|
7359
|
+
resolved "https://registry.npmjs.org/is-node-process/-/is-node-process-1.2.0.tgz"
|
|
7360
|
+
integrity sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==
|
|
7361
|
+
|
|
7327
7362
|
is-number-object@^1.0.4:
|
|
7328
7363
|
version "1.0.7"
|
|
7329
7364
|
resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"
|
|
@@ -8772,12 +8807,12 @@ no-case@^3.0.4:
|
|
|
8772
8807
|
lower-case "^2.0.2"
|
|
8773
8808
|
tslib "^2.0.3"
|
|
8774
8809
|
|
|
8775
|
-
nock@^
|
|
8776
|
-
version "
|
|
8777
|
-
resolved "https://registry.npmjs.org/nock/-/nock-
|
|
8778
|
-
integrity sha512-
|
|
8810
|
+
nock@^14.0.15:
|
|
8811
|
+
version "14.0.15"
|
|
8812
|
+
resolved "https://registry.npmjs.org/nock/-/nock-14.0.15.tgz"
|
|
8813
|
+
integrity sha512-S0a47C9pLvcYx/Ugf0H30BVBEcUgMMBDk9VJIDlJ8XGrfH2QDUD4Tgdp45qDIiHttokBG+IbsOtsvIjGR/j3bg==
|
|
8779
8814
|
dependencies:
|
|
8780
|
-
|
|
8815
|
+
"@mswjs/interceptors" "^0.41.0"
|
|
8781
8816
|
json-stringify-safe "^5.0.1"
|
|
8782
8817
|
propagate "^2.0.0"
|
|
8783
8818
|
|
|
@@ -9258,6 +9293,11 @@ optionator@^0.9.3:
|
|
|
9258
9293
|
prelude-ls "^1.2.1"
|
|
9259
9294
|
type-check "^0.4.0"
|
|
9260
9295
|
|
|
9296
|
+
outvariant@^1.4.0, outvariant@^1.4.3:
|
|
9297
|
+
version "1.4.3"
|
|
9298
|
+
resolved "https://registry.npmjs.org/outvariant/-/outvariant-1.4.3.tgz"
|
|
9299
|
+
integrity sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==
|
|
9300
|
+
|
|
9261
9301
|
p-cancelable@^2.0.0:
|
|
9262
9302
|
version "2.1.1"
|
|
9263
9303
|
resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz"
|
|
@@ -10702,6 +10742,11 @@ stack-utils@^2.0.6:
|
|
|
10702
10742
|
dependencies:
|
|
10703
10743
|
escape-string-regexp "^2.0.0"
|
|
10704
10744
|
|
|
10745
|
+
strict-event-emitter@^0.5.1:
|
|
10746
|
+
version "0.5.1"
|
|
10747
|
+
resolved "https://registry.npmjs.org/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz"
|
|
10748
|
+
integrity sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==
|
|
10749
|
+
|
|
10705
10750
|
string_decoder@^1.1.1, string_decoder@^1.3.0:
|
|
10706
10751
|
version "1.3.0"
|
|
10707
10752
|
resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
|
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.7",
|
|
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.2",
|
|
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",
|