@salesforce/cli 2.135.1 → 2.135.2

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 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.1 linux-x64 node-v22.22.2
28
+ @salesforce/cli/2.135.2 linux-x64 node-v22.22.2
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -61,6 +61,9 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
61
61
  - [`sf agent test resume`](#sf-agent-test-resume)
62
62
  - [`sf agent test run`](#sf-agent-test-run)
63
63
  - [`sf agent test run-eval`](#sf-agent-test-run-eval)
64
+ - [`sf agent trace delete`](#sf-agent-trace-delete)
65
+ - [`sf agent trace list`](#sf-agent-trace-list)
66
+ - [`sf agent trace read`](#sf-agent-trace-read)
64
67
  - [`sf agent validate authoring-bundle`](#sf-agent-validate-authoring-bundle)
65
68
  - [`sf alias list`](#sf-alias-list)
66
69
  - [`sf alias set`](#sf-alias-set)
@@ -278,7 +281,7 @@ ERROR CODES
278
281
  ActivationFailed (4) Failed to activate the agent due to API or network errors.
279
282
  ```
280
283
 
281
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/activate.ts)_
284
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/activate.ts)_
282
285
 
283
286
  ## `sf agent create`
284
287
 
@@ -345,7 +348,7 @@ EXAMPLES
345
348
  $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
346
349
  ```
347
350
 
348
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/create.ts)_
351
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/create.ts)_
349
352
 
350
353
  ## `sf agent deactivate`
351
354
 
@@ -394,7 +397,7 @@ ERROR CODES
394
397
  DeactivationFailed (4) Failed to deactivate the agent due to API or network errors.
395
398
  ```
396
399
 
397
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/deactivate.ts)_
400
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/deactivate.ts)_
398
401
 
399
402
  ## `sf agent generate agent-spec`
400
403
 
@@ -501,7 +504,7 @@ EXAMPLES
501
504
  $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
502
505
  ```
503
506
 
504
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/generate/agent-spec.ts)_
507
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/generate/agent-spec.ts)_
505
508
 
506
509
  ## `sf agent generate authoring-bundle`
507
510
 
@@ -578,7 +581,7 @@ EXAMPLES
578
581
  other-package-dir/main/default --target-org my-dev-org
579
582
  ```
580
583
 
581
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/generate/authoring-bundle.ts)_
584
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/generate/authoring-bundle.ts)_
582
585
 
583
586
  ## `sf agent generate template`
584
587
 
@@ -640,7 +643,7 @@ EXAMPLES
640
643
  my-package --source-org my-scratch-org
641
644
  ```
642
645
 
643
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/generate/template.ts)_
646
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/generate/template.ts)_
644
647
 
645
648
  ## `sf agent generate test-spec`
646
649
 
@@ -705,7 +708,7 @@ EXAMPLES
705
708
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
706
709
  ```
707
710
 
708
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/generate/test-spec.ts)_
711
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/generate/test-spec.ts)_
709
712
 
710
713
  ## `sf agent preview`
711
714
 
@@ -778,7 +781,7 @@ EXAMPLES
778
781
  $ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
779
782
  ```
780
783
 
781
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/preview.ts)_
784
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/preview.ts)_
782
785
 
783
786
  ## `sf agent preview end`
784
787
 
@@ -842,7 +845,7 @@ ERROR CODES
842
845
  SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
843
846
  ```
844
847
 
845
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/preview/end.ts)_
848
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/preview/end.ts)_
846
849
 
847
850
  ## `sf agent preview send`
848
851
 
@@ -909,7 +912,7 @@ ERROR CODES
909
912
  SessionAmbiguous (5) Multiple preview sessions found; specify --session-id to choose one.
910
913
  ```
911
914
 
912
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/preview/send.ts)_
915
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/preview/send.ts)_
913
916
 
914
917
  ## `sf agent preview sessions`
915
918
 
@@ -945,7 +948,7 @@ ERROR CODES
945
948
  Succeeded (0) Sessions listed successfully (or empty list if no active sessions).
946
949
  ```
947
950
 
948
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/preview/sessions.ts)_
951
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/preview/sessions.ts)_
949
952
 
950
953
  ## `sf agent preview start`
951
954
 
@@ -1021,7 +1024,7 @@ ERROR CODES
1021
1024
  PreviewStartFailed (4) Preview session failed to start due to API or network errors.
1022
1025
  ```
1023
1026
 
1024
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/preview/start.ts)_
1027
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/preview/start.ts)_
1025
1028
 
1026
1029
  ## `sf agent publish authoring-bundle`
1027
1030
 
@@ -1085,7 +1088,7 @@ ERROR CODES
1085
1088
  Failed (1) Compilation errors found in the Agent Script file.
1086
1089
  ```
1087
1090
 
1088
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/publish/authoring-bundle.ts)_
1091
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/publish/authoring-bundle.ts)_
1089
1092
 
1090
1093
  ## `sf agent test create`
1091
1094
 
@@ -1149,7 +1152,7 @@ ERROR CODES
1149
1152
  DeploymentFailed (4) Deployment failed due to API or network errors.
1150
1153
  ```
1151
1154
 
1152
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/create.ts)_
1155
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/test/create.ts)_
1153
1156
 
1154
1157
  ## `sf agent test list`
1155
1158
 
@@ -1191,7 +1194,7 @@ ERROR CODES
1191
1194
  Failed (4) Failed to retrieve agent tests due to API or network errors.
1192
1195
  ```
1193
1196
 
1194
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/list.ts)_
1197
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/test/list.ts)_
1195
1198
 
1196
1199
  ## `sf agent test results`
1197
1200
 
@@ -1275,7 +1278,7 @@ ERROR CODES
1275
1278
  Failed (4) Failed to retrieve results due to API or network errors.
1276
1279
  ```
1277
1280
 
1278
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/results.ts)_
1281
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/test/results.ts)_
1279
1282
 
1280
1283
  ## `sf agent test resume`
1281
1284
 
@@ -1368,7 +1371,7 @@ ERROR CODES
1368
1371
  OperationFailed (4) Failed to poll test due to API or network errors.
1369
1372
  ```
1370
1373
 
1371
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/resume.ts)_
1374
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/test/resume.ts)_
1372
1375
 
1373
1376
  ## `sf agent test run`
1374
1377
 
@@ -1461,7 +1464,7 @@ ERROR CODES
1461
1464
  OperationFailed (4) Failed to start or poll test due to API or network errors.
1462
1465
  ```
1463
1466
 
1464
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/run.ts)_
1467
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/test/run.ts)_
1465
1468
 
1466
1469
  ## `sf agent test run-eval`
1467
1470
 
@@ -1543,7 +1546,211 @@ ERROR CODES
1543
1546
  OperationFailed (4) Failed to execute tests due to API or network errors.
1544
1547
  ```
1545
1548
 
1546
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/test/run-eval.ts)_
1549
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/test/run-eval.ts)_
1550
+
1551
+ ## `sf agent trace delete`
1552
+
1553
+ Delete agent preview trace files.
1554
+
1555
+ ```
1556
+ USAGE
1557
+ $ sf agent trace delete [--json] [--flags-dir <value>] [-a <value>] [--session-id <value>] [--older-than <value>]
1558
+ [--no-prompt]
1559
+
1560
+ FLAGS
1561
+ -a, --agent=<value> Only delete traces for this agent name (substring match). Matches against the name used when
1562
+ starting the session, whether that's an authoring bundle or a published agent API name.
1563
+ --no-prompt Skip the confirmation prompt and delete immediately.
1564
+ --older-than=<value> Only delete traces older than this duration. Accepts a number followed by a unit: m/minutes,
1565
+ h/hours, d/days, w/weeks (e.g. 7d, 24h, 2w).
1566
+ --session-id=<value> Only delete traces from this session ID.
1567
+
1568
+ GLOBAL FLAGS
1569
+ --flags-dir=<value> Import flag values from a directory.
1570
+ --json Format output as json.
1571
+
1572
+ DESCRIPTION
1573
+ Delete agent preview trace files.
1574
+
1575
+ Deletes trace files recorded during agent preview sessions. By default, shows a preview of what will be deleted and
1576
+ prompts for confirmation. Use --no-prompt to skip confirmation.
1577
+
1578
+ Without filters, deletes all traces for all agents and sessions. Use flags to narrow the scope: filter by agent name
1579
+ (--agent), by session (--session-id), or by age (--older-than).
1580
+
1581
+ EXAMPLES
1582
+ Delete all traces for all agents and sessions (with confirmation prompt):
1583
+
1584
+ $ sf agent trace delete
1585
+
1586
+ Delete all traces for a specific agent:
1587
+
1588
+ $ sf agent trace delete --agent My_Agent
1589
+
1590
+ Delete traces from a specific session:
1591
+
1592
+ $ sf agent trace delete --session-id <SESSION_ID>
1593
+
1594
+ Delete traces older than 7 days:
1595
+
1596
+ $ sf agent trace delete --older-than 7d
1597
+
1598
+ Delete traces older than 24 hours for a specific agent, no prompt:
1599
+
1600
+ $ sf agent trace delete --agent My_Agent --older-than 24h --no-prompt
1601
+
1602
+ Delete all traces without confirmation:
1603
+
1604
+ $ sf agent trace delete --no-prompt
1605
+
1606
+ ERROR CODES
1607
+ Succeeded (0) Traces deleted successfully (or no traces matched).
1608
+ ```
1609
+
1610
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/trace/delete.ts)_
1611
+
1612
+ ## `sf agent trace list`
1613
+
1614
+ List the trace files that were recorded during all agent preview sessions.
1615
+
1616
+ ```
1617
+ USAGE
1618
+ $ sf agent trace list [--json] [--flags-dir <value>] [--session-id <value>] [-a <value>] [--since <value>]
1619
+
1620
+ FLAGS
1621
+ -a, --agent=<value> Only show traces for this agent name (substring match). Matches against the name used when
1622
+ starting the session, whether that's an authoring bundle or a published agent API name.
1623
+ --session-id=<value> Session ID used to filter the list of trace files.
1624
+ --since=<value> Date used to filter the list of trace files; only those recorded on or after the date are
1625
+ listed.
1626
+
1627
+ GLOBAL FLAGS
1628
+ --flags-dir=<value> Import flag values from a directory.
1629
+ --json Format output as json.
1630
+
1631
+ DESCRIPTION
1632
+ List the trace files that were recorded during all agent preview sessions.
1633
+
1634
+ Lists trace files recorded during agent preview sessions. By default, lists all traces for all agents and all of their
1635
+ sessions. Use flags to narrow results: filter by agent name (--agent), by session (--session-id), or by date
1636
+ (--since).
1637
+
1638
+ Each row in the output corresponds to one trace file, which in turn corresponds to one agent session. The Agent column
1639
+ shows the authoring bundle or API name used when starting the session.
1640
+
1641
+ EXAMPLES
1642
+ List all traces for all agents and sessions:
1643
+
1644
+ $ sf agent trace list
1645
+
1646
+ List all traces for a specific agent:
1647
+
1648
+ $ sf agent trace list --agent My_Agent
1649
+
1650
+ List traces for a specific session:
1651
+
1652
+ $ sf agent trace list --session-id <SESSION_ID>
1653
+
1654
+ List traces recorded on or after April 20, 2026 (date-only, interpreted as UTC midnight):
1655
+
1656
+ $ sf agent trace list --since 2026-04-20
1657
+
1658
+ List traces recorded on or after a specific UTC time:
1659
+
1660
+ $ sf agent trace list --since 2026-04-20T14:00:00Z
1661
+
1662
+ Filter by agent and date together:
1663
+
1664
+ $ sf agent trace list --agent My_Agent --since 2026-04-20
1665
+
1666
+ Return results as JSON:
1667
+
1668
+ $ sf agent trace list --json
1669
+
1670
+ FLAG DESCRIPTIONS
1671
+ --since=<value> Date used to filter the list of trace files; only those recorded on or after the date are listed.
1672
+
1673
+ Accepts ISO 8601 format: date-only (2026-04-20), date-time (2026-04-20T14:00:00Z), or date-time with milliseconds
1674
+ (2026-04-20T14:00:00.000Z). The "Recorded At" values shown in the table output are valid inputs.
1675
+
1676
+ ERROR CODES
1677
+ Succeeded (0) Trace files listed successfully (or empty list if none found).
1678
+ ```
1679
+
1680
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/trace/list.ts)_
1681
+
1682
+ ## `sf agent trace read`
1683
+
1684
+ Read and analyze trace files from an agent preview session.
1685
+
1686
+ ```
1687
+ USAGE
1688
+ $ sf agent trace read -s <value> [--json] [--flags-dir <value>] [-f summary|detail|raw] [-d
1689
+ actions|grounding|routing|errors] [-t <value>]
1690
+
1691
+ FLAGS
1692
+ -d, --dimension=<option> Dimension to drill into when using --format detail. One of: actions, grounding, routing,
1693
+ errors. Required when --format is detail.
1694
+ <options: actions|grounding|routing|errors>
1695
+ -f, --format=<option> [default: summary] Output format: summary (default), detail, or raw. Use detail with
1696
+ --dimension to drill into a specific aspect of the trace.
1697
+ <options: summary|detail|raw>
1698
+ -s, --session-id=<value> (required) Session ID to read traces for.
1699
+ -t, --turn=<value> Scope output to this conversation turn number.
1700
+
1701
+ GLOBAL FLAGS
1702
+ --flags-dir=<value> Import flag values from a directory.
1703
+ --json Format output as json.
1704
+
1705
+ DESCRIPTION
1706
+ Read and analyze trace files from an agent preview session.
1707
+
1708
+ Reads trace files recorded during an agent preview session and outputs them in one of three formats.
1709
+
1710
+ **--format summary** (default): A per-turn narrative showing topic routing, actions executed, and the agent's
1711
+ response. Use this to quickly understand what happened in a session.
1712
+
1713
+ **--format detail**: Diagnostic drill-down into a specific dimension (--dimension required). Filters output to only
1714
+ the trace steps relevant to that dimension, minimizing noise.
1715
+
1716
+ **--format raw**: Unprocessed trace JSON. Use this as a fallback when the trace schema has changed or you need to
1717
+ perform custom analysis.
1718
+
1719
+ Available dimensions for --format detail: actions, grounding, routing, errors.
1720
+
1721
+ Use --turn N to scope output to a single conversation turn.
1722
+
1723
+ EXAMPLES
1724
+ Show a session summary (all turns):
1725
+
1726
+ $ sf agent trace read --session-id <SESSION_ID>
1727
+
1728
+ Show summary for a single turn:
1729
+
1730
+ $ sf agent trace read --session-id <SESSION_ID> --turn 2
1731
+
1732
+ Drill into action execution across all turns:
1733
+
1734
+ $ sf agent trace read --session-id <SESSION_ID> --format detail --dimension actions
1735
+
1736
+ Drill into routing decisions for a specific turn:
1737
+
1738
+ $ sf agent trace read --session-id <SESSION_ID> --format detail --dimension routing --turn 1
1739
+
1740
+ Show all errors across the session:
1741
+
1742
+ $ sf agent trace read --session-id <SESSION_ID> --format detail --dimension errors
1743
+
1744
+ Output raw trace JSON for custom parsing:
1745
+
1746
+ $ sf agent trace read --session-id <SESSION_ID> --format raw
1747
+
1748
+ Return results as JSON:
1749
+
1750
+ $ sf agent trace read --session-id <SESSION_ID> --json
1751
+ ```
1752
+
1753
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/trace/read.ts)_
1547
1754
 
1548
1755
  ## `sf agent validate authoring-bundle`
1549
1756
 
@@ -1600,7 +1807,7 @@ ERROR CODES
1600
1807
  ServerError (3) Validation/compilation API returned HTTP 500. A server error occurred during compilation.
1601
1808
  ```
1602
1809
 
1603
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.37.0/src/commands/agent/validate/authoring-bundle.ts)_
1810
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.38.0/src/commands/agent/validate/authoring-bundle.ts)_
1604
1811
 
1605
1812
  ## `sf alias list`
1606
1813
 
@@ -3670,7 +3877,7 @@ EXAMPLES
3670
3877
  $ sf doctor --plugin @salesforce/plugin-source
3671
3878
  ```
3672
3879
 
3673
- _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.125/src/commands/doctor.ts)_
3880
+ _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.126/src/commands/doctor.ts)_
3674
3881
 
3675
3882
  ## `sf force data bulk delete`
3676
3883
 
@@ -3872,7 +4079,7 @@ EXAMPLES
3872
4079
  $ sf info releasenotes display --version latest
3873
4080
  ```
3874
4081
 
3875
- _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.125/src/commands/info/releasenotes/display.ts)_
4082
+ _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.126/src/commands/info/releasenotes/display.ts)_
3876
4083
 
3877
4084
  ## `sf logic get test`
3878
4085
 
@@ -11133,7 +11340,7 @@ EXAMPLES
11133
11340
  $ sf update --available
11134
11341
  ```
11135
11342
 
11136
- _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.35/src/commands/update.ts)_
11343
+ _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.36/src/commands/update.ts)_
11137
11344
 
11138
11345
  ## `sf version`
11139
11346
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.135.1",
3
+ "version": "2.135.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.135.1",
9
+ "version": "2.135.2",
10
10
  "hasInstallScript": true,
11
11
  "license": "Apache-2.0",
12
12
  "dependencies": {
@@ -18,19 +18,19 @@
18
18
  "@oclif/plugin-not-found": "3.2.82",
19
19
  "@oclif/plugin-plugins": "5.4.64",
20
20
  "@oclif/plugin-search": "1.2.46",
21
- "@oclif/plugin-update": "4.7.35",
21
+ "@oclif/plugin-update": "4.7.36",
22
22
  "@oclif/plugin-version": "2.2.43",
23
23
  "@oclif/plugin-warn-if-update-available": "3.1.62",
24
24
  "@oclif/plugin-which": "3.2.51",
25
25
  "@salesforce/core": "^8.28.0",
26
26
  "@salesforce/kit": "^3.1.6",
27
- "@salesforce/plugin-agent": "1.37.0",
27
+ "@salesforce/plugin-agent": "1.38.0",
28
28
  "@salesforce/plugin-apex": "3.9.23",
29
29
  "@salesforce/plugin-api": "1.3.25",
30
30
  "@salesforce/plugin-auth": "4.3.7",
31
31
  "@salesforce/plugin-data": "4.0.94",
32
32
  "@salesforce/plugin-deploy-retrieve": "3.24.42",
33
- "@salesforce/plugin-info": "3.4.125",
33
+ "@salesforce/plugin-info": "3.4.126",
34
34
  "@salesforce/plugin-limits": "3.3.86",
35
35
  "@salesforce/plugin-marketplace": "1.3.22",
36
36
  "@salesforce/plugin-org": "5.10.8",
@@ -4134,9 +4134,9 @@
4134
4134
  }
4135
4135
  },
4136
4136
  "node_modules/@oclif/plugin-update": {
4137
- "version": "4.7.35",
4138
- "resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.35.tgz",
4139
- "integrity": "sha512-HZ+G8QpSoI9khWqkBeMVV8b4o3NF5x4Bz8MXJA/Ys9PeQJGX73GeLlL3XseLkq3ui9IEGWjwL0qm3ld257CzdA==",
4137
+ "version": "4.7.36",
4138
+ "resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.36.tgz",
4139
+ "integrity": "sha512-kV9lAToagYIDc6o1OmsqcNUpzHVuhu2FuzQdI/dCm675i0aE2lqzRsQF0A2zXL/cVMtihGYpJD0zxm5JZx1MXw==",
4140
4140
  "license": "MIT",
4141
4141
  "dependencies": {
4142
4142
  "@inquirer/select": "^2.5.0",
@@ -4692,9 +4692,9 @@
4692
4692
  "license": "BSD-3-Clause"
4693
4693
  },
4694
4694
  "node_modules/@salesforce/agents": {
4695
- "version": "1.5.2",
4696
- "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-1.5.2.tgz",
4697
- "integrity": "sha512-eFy2IBw+43W3Xqbg2MbilG5Deet242FeHYt+z2JRRa73Um7+3wfI9b53haahnjZ6uCdqcYp6DYKVT037IyK1WA==",
4695
+ "version": "1.6.0",
4696
+ "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-1.6.0.tgz",
4697
+ "integrity": "sha512-3ziyrozhmO0SBu6anSZ2BaOWKu9QNPYxWR0jLIfqwhC4Fydle//eCjob1+F06aGbBGcAzaje4iM0pvMAJbWv6w==",
4698
4698
  "license": "Apache-2.0",
4699
4699
  "dependencies": {
4700
4700
  "@salesforce/core": "^8.29.0",
@@ -5149,16 +5149,16 @@
5149
5149
  }
5150
5150
  },
5151
5151
  "node_modules/@salesforce/plugin-agent": {
5152
- "version": "1.37.0",
5153
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.37.0.tgz",
5154
- "integrity": "sha512-YpKRZY67TkHN7YPUo2WxUFtYYzz8YM44xIHSvOVHDVWV2JxVOmA91/OVvibPoZk6ylDNvvrCaysseclqNtrB2w==",
5152
+ "version": "1.38.0",
5153
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.38.0.tgz",
5154
+ "integrity": "sha512-a6y+LBmn9dmdwNJXTjVlgaA5qbdxXKKZnDMEwDJJsQRKOW56h+wEi18evl2WV4MFThodvBDbpb96sMNpZYskQA==",
5155
5155
  "license": "Apache-2.0",
5156
5156
  "dependencies": {
5157
5157
  "@inquirer/core": "^10.3.2",
5158
5158
  "@inquirer/prompts": "^7.10.1",
5159
5159
  "@oclif/core": "^4",
5160
5160
  "@oclif/multi-stage-output": "^0.8.36",
5161
- "@salesforce/agents": "^1.5.2",
5161
+ "@salesforce/agents": "^1.6.0",
5162
5162
  "@salesforce/core": "^8.28.3",
5163
5163
  "@salesforce/kit": "^3.2.6",
5164
5164
  "@salesforce/sf-plugins-core": "^12.2.6",
@@ -5523,9 +5523,9 @@
5523
5523
  }
5524
5524
  },
5525
5525
  "node_modules/@salesforce/plugin-info": {
5526
- "version": "3.4.125",
5527
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.4.125.tgz",
5528
- "integrity": "sha512-EGJWHgg3pvYYTxPy7WcmA62C6adqgF0V294Z26+hU7eYo4YI6JgEgK4Qz96FQVrxKHiWkDZP53yhY8ICwaoJxg==",
5526
+ "version": "3.4.126",
5527
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.4.126.tgz",
5528
+ "integrity": "sha512-dL4De6cx1yIYbjKZh09b518Fqm9jVtxzzKWrcX8JwfB4ts6BkeOsLp27Ja4vzwgCiFC7c04EpLvD12swGJYTqg==",
5529
5529
  "license": "Apache-2.0",
5530
5530
  "dependencies": {
5531
5531
  "@inquirer/input": "^2.3.0",
@@ -12628,9 +12628,9 @@
12628
12628
  }
12629
12629
  },
12630
12630
  "node_modules/fast-xml-builder": {
12631
- "version": "1.1.5",
12632
- "resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.1.5.tgz",
12633
- "integrity": "sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA==",
12631
+ "version": "1.2.0",
12632
+ "resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.2.0.tgz",
12633
+ "integrity": "sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==",
12634
12634
  "funding": [
12635
12635
  {
12636
12636
  "type": "github",
@@ -12639,7 +12639,8 @@
12639
12639
  ],
12640
12640
  "license": "MIT",
12641
12641
  "dependencies": {
12642
- "path-expression-matcher": "^1.1.3"
12642
+ "path-expression-matcher": "^1.5.0",
12643
+ "xml-naming": "^0.1.0"
12643
12644
  }
12644
12645
  },
12645
12646
  "node_modules/fast-xml-parser": {
@@ -24228,6 +24229,21 @@
24228
24229
  "url": "https://github.com/sponsors/sindresorhus"
24229
24230
  }
24230
24231
  },
24232
+ "node_modules/xml-naming": {
24233
+ "version": "0.1.0",
24234
+ "resolved": "https://registry.npmjs.org/xml-naming/-/xml-naming-0.1.0.tgz",
24235
+ "integrity": "sha512-k8KO9hrMyNk6tUWqUfkTEZbezRRpONVOzUTnc97VnCvyj6Tf9lyUR9EDAIeiVLv56jsMcoXEwjW8Kv5yPY52lw==",
24236
+ "funding": [
24237
+ {
24238
+ "type": "github",
24239
+ "url": "https://github.com/sponsors/NaturalIntelligence"
24240
+ }
24241
+ ],
24242
+ "license": "MIT",
24243
+ "engines": {
24244
+ "node": ">=16.0.0"
24245
+ }
24246
+ },
24231
24247
  "node_modules/xml2js": {
24232
24248
  "version": "0.6.2",
24233
24249
  "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz",
package/oclif.lock CHANGED
@@ -1888,10 +1888,10 @@
1888
1888
  ansi-escapes "^7.3.0"
1889
1889
  inquirer-autocomplete-standalone "^0.8.1"
1890
1890
 
1891
- "@oclif/plugin-update@4.7.35":
1892
- version "4.7.35"
1893
- resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.35.tgz"
1894
- integrity sha512-HZ+G8QpSoI9khWqkBeMVV8b4o3NF5x4Bz8MXJA/Ys9PeQJGX73GeLlL3XseLkq3ui9IEGWjwL0qm3ld257CzdA==
1891
+ "@oclif/plugin-update@4.7.36":
1892
+ version "4.7.36"
1893
+ resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.36.tgz"
1894
+ integrity sha512-kV9lAToagYIDc6o1OmsqcNUpzHVuhu2FuzQdI/dCm675i0aE2lqzRsQF0A2zXL/cVMtihGYpJD0zxm5JZx1MXw==
1895
1895
  dependencies:
1896
1896
  "@inquirer/select" "^2.5.0"
1897
1897
  "@oclif/core" "^4"
@@ -2179,10 +2179,10 @@
2179
2179
  resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz"
2180
2180
  integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
2181
2181
 
2182
- "@salesforce/agents@^1.5.2":
2183
- version "1.5.2"
2184
- resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-1.5.2.tgz"
2185
- integrity sha512-eFy2IBw+43W3Xqbg2MbilG5Deet242FeHYt+z2JRRa73Um7+3wfI9b53haahnjZ6uCdqcYp6DYKVT037IyK1WA==
2182
+ "@salesforce/agents@^1.6.0":
2183
+ version "1.6.0"
2184
+ resolved "https://registry.npmjs.org/@salesforce/agents/-/agents-1.6.0.tgz"
2185
+ integrity sha512-3ziyrozhmO0SBu6anSZ2BaOWKu9QNPYxWR0jLIfqwhC4Fydle//eCjob1+F06aGbBGcAzaje4iM0pvMAJbWv6w==
2186
2186
  dependencies:
2187
2187
  "@salesforce/core" "^8.29.0"
2188
2188
  "@salesforce/kit" "^3.2.6"
@@ -2320,16 +2320,16 @@
2320
2320
  jszip "^3.10.1"
2321
2321
  object-treeify "^2"
2322
2322
 
2323
- "@salesforce/plugin-agent@1.37.0":
2324
- version "1.37.0"
2325
- resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.37.0.tgz"
2326
- integrity sha512-YpKRZY67TkHN7YPUo2WxUFtYYzz8YM44xIHSvOVHDVWV2JxVOmA91/OVvibPoZk6ylDNvvrCaysseclqNtrB2w==
2323
+ "@salesforce/plugin-agent@1.38.0":
2324
+ version "1.38.0"
2325
+ resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.38.0.tgz"
2326
+ integrity sha512-a6y+LBmn9dmdwNJXTjVlgaA5qbdxXKKZnDMEwDJJsQRKOW56h+wEi18evl2WV4MFThodvBDbpb96sMNpZYskQA==
2327
2327
  dependencies:
2328
2328
  "@inquirer/core" "^10.3.2"
2329
2329
  "@inquirer/prompts" "^7.10.1"
2330
2330
  "@oclif/core" "^4"
2331
2331
  "@oclif/multi-stage-output" "^0.8.36"
2332
- "@salesforce/agents" "^1.5.2"
2332
+ "@salesforce/agents" "^1.6.0"
2333
2333
  "@salesforce/core" "^8.28.3"
2334
2334
  "@salesforce/kit" "^3.2.6"
2335
2335
  "@salesforce/sf-plugins-core" "^12.2.6"
@@ -2438,10 +2438,10 @@
2438
2438
  ansis "^3.17.0"
2439
2439
  terminal-link "^3.0.0"
2440
2440
 
2441
- "@salesforce/plugin-info@^3.4.100", "@salesforce/plugin-info@^3.4.123", "@salesforce/plugin-info@^3.4.124", "@salesforce/plugin-info@3.4.125":
2442
- version "3.4.125"
2443
- resolved "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.4.125.tgz"
2444
- integrity sha512-EGJWHgg3pvYYTxPy7WcmA62C6adqgF0V294Z26+hU7eYo4YI6JgEgK4Qz96FQVrxKHiWkDZP53yhY8ICwaoJxg==
2441
+ "@salesforce/plugin-info@^3.4.100", "@salesforce/plugin-info@^3.4.123", "@salesforce/plugin-info@^3.4.124", "@salesforce/plugin-info@3.4.126":
2442
+ version "3.4.126"
2443
+ resolved "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.4.126.tgz"
2444
+ integrity sha512-dL4De6cx1yIYbjKZh09b518Fqm9jVtxzzKWrcX8JwfB4ts6BkeOsLp27Ja4vzwgCiFC7c04EpLvD12swGJYTqg==
2445
2445
  dependencies:
2446
2446
  "@inquirer/input" "^2.3.0"
2447
2447
  "@jsforce/jsforce-node" "^3.10.14"
@@ -6021,11 +6021,12 @@ fast-wrap-ansi@^0.2.0:
6021
6021
  fast-string-width "^3.0.2"
6022
6022
 
6023
6023
  fast-xml-builder@^1.1.4, fast-xml-builder@^1.1.5:
6024
- version "1.1.5"
6025
- resolved "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.1.5.tgz"
6026
- integrity sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA==
6024
+ version "1.2.0"
6025
+ resolved "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.2.0.tgz"
6026
+ integrity sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==
6027
6027
  dependencies:
6028
- path-expression-matcher "^1.1.3"
6028
+ path-expression-matcher "^1.5.0"
6029
+ xml-naming "^0.1.0"
6029
6030
 
6030
6031
  fast-xml-parser@^5.5.6, fast-xml-parser@^5.5.7, fast-xml-parser@^5.7.1, fast-xml-parser@^5.7.2:
6031
6032
  version "5.7.2"
@@ -9491,7 +9492,7 @@ path-exists@^4.0.0:
9491
9492
  resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
9492
9493
  integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
9493
9494
 
9494
- path-expression-matcher@^1.1.3, path-expression-matcher@^1.2.0, path-expression-matcher@^1.5.0:
9495
+ path-expression-matcher@^1.2.0, path-expression-matcher@^1.5.0:
9495
9496
  version "1.5.0"
9496
9497
  resolved "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.5.0.tgz"
9497
9498
  integrity sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ==
@@ -11722,6 +11723,11 @@ wsl-utils@^0.1.0:
11722
11723
  dependencies:
11723
11724
  is-wsl "^3.1.0"
11724
11725
 
11726
+ xml-naming@^0.1.0:
11727
+ version "0.1.0"
11728
+ resolved "https://registry.npmjs.org/xml-naming/-/xml-naming-0.1.0.tgz"
11729
+ integrity sha512-k8KO9hrMyNk6tUWqUfkTEZbezRRpONVOzUTnc97VnCvyj6Tf9lyUR9EDAIeiVLv56jsMcoXEwjW8Kv5yPY52lw==
11730
+
11725
11731
  xml2js@^0.6.2, xml2js@0.6.2:
11726
11732
  version "0.6.2"
11727
11733
  resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz"
@@ -4554,5 +4554,5 @@
4554
4554
  "requiresProject": true
4555
4555
  }
4556
4556
  },
4557
- "version": "2.135.1"
4557
+ "version": "2.135.2"
4558
4558
  }
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.1",
4
+ "version": "2.135.2",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -153,19 +153,19 @@
153
153
  "@oclif/plugin-not-found": "3.2.82",
154
154
  "@oclif/plugin-plugins": "5.4.64",
155
155
  "@oclif/plugin-search": "1.2.46",
156
- "@oclif/plugin-update": "4.7.35",
156
+ "@oclif/plugin-update": "4.7.36",
157
157
  "@oclif/plugin-version": "2.2.43",
158
158
  "@oclif/plugin-warn-if-update-available": "3.1.62",
159
159
  "@oclif/plugin-which": "3.2.51",
160
160
  "@salesforce/core": "^8.28.0",
161
161
  "@salesforce/kit": "^3.1.6",
162
- "@salesforce/plugin-agent": "1.37.0",
162
+ "@salesforce/plugin-agent": "1.38.0",
163
163
  "@salesforce/plugin-apex": "3.9.23",
164
164
  "@salesforce/plugin-api": "1.3.25",
165
165
  "@salesforce/plugin-auth": "4.3.7",
166
166
  "@salesforce/plugin-data": "4.0.94",
167
167
  "@salesforce/plugin-deploy-retrieve": "3.24.42",
168
- "@salesforce/plugin-info": "3.4.125",
168
+ "@salesforce/plugin-info": "3.4.126",
169
169
  "@salesforce/plugin-limits": "3.3.86",
170
170
  "@salesforce/plugin-marketplace": "1.3.22",
171
171
  "@salesforce/plugin-org": "5.10.8",