@salesforce/cli 2.135.1 → 2.135.3

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.3 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
 
@@ -1628,7 +1835,7 @@ EXAMPLES
1628
1835
  $ sf alias list
1629
1836
  ```
1630
1837
 
1631
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.73/src/commands/alias/list.ts)_
1838
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.75/src/commands/alias/list.ts)_
1632
1839
 
1633
1840
  ## `sf alias set`
1634
1841
 
@@ -1677,7 +1884,7 @@ EXAMPLES
1677
1884
  $ sf alias set my-scratch-org test-ss0xut7txzxf@example.com
1678
1885
  ```
1679
1886
 
1680
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.73/src/commands/alias/set.ts)_
1887
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.75/src/commands/alias/set.ts)_
1681
1888
 
1682
1889
  ## `sf alias unset`
1683
1890
 
@@ -1717,7 +1924,7 @@ EXAMPLES
1717
1924
  $ sf alias unset --all [--no-prompt]
1718
1925
  ```
1719
1926
 
1720
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.73/src/commands/alias/unset.ts)_
1927
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.75/src/commands/alias/unset.ts)_
1721
1928
 
1722
1929
  ## `sf apex get log`
1723
1930
 
@@ -1773,7 +1980,7 @@ FLAG DESCRIPTIONS
1773
1980
  directory.
1774
1981
  ```
1775
1982
 
1776
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.23/src/commands/apex/get/log.ts)_
1983
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.25/src/commands/apex/get/log.ts)_
1777
1984
 
1778
1985
  ## `sf apex get test`
1779
1986
 
@@ -1833,7 +2040,7 @@ EXAMPLES
1833
2040
  me@myorg'
1834
2041
  ```
1835
2042
 
1836
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.23/src/commands/apex/get/test.ts)_
2043
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.25/src/commands/apex/get/test.ts)_
1837
2044
 
1838
2045
  ## `sf apex list log`
1839
2046
 
@@ -1873,7 +2080,7 @@ EXAMPLES
1873
2080
  $ sf apex list log --target-org me@my.org
1874
2081
  ```
1875
2082
 
1876
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.23/src/commands/apex/list/log.ts)_
2083
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.25/src/commands/apex/list/log.ts)_
1877
2084
 
1878
2085
  ## `sf apex run`
1879
2086
 
@@ -1920,7 +2127,7 @@ EXAMPLES
1920
2127
  $ sf apex run
1921
2128
  ```
1922
2129
 
1923
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.23/src/commands/apex/run.ts)_
2130
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.25/src/commands/apex/run.ts)_
1924
2131
 
1925
2132
  ## `sf apex run test`
1926
2133
 
@@ -2067,7 +2274,7 @@ FLAG DESCRIPTIONS
2067
2274
  --tests Test1 --tests Test2
2068
2275
  ```
2069
2276
 
2070
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.23/src/commands/apex/run/test.ts)_
2277
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.25/src/commands/apex/run/test.ts)_
2071
2278
 
2072
2279
  ## `sf apex tail log`
2073
2280
 
@@ -2110,7 +2317,7 @@ EXAMPLES
2110
2317
  $ sf apex tail log --color --skip-trace-flag
2111
2318
  ```
2112
2319
 
2113
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.23/src/commands/apex/tail/log.ts)_
2320
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.25/src/commands/apex/tail/log.ts)_
2114
2321
 
2115
2322
  ## `sf api request graphql`
2116
2323
 
@@ -2163,7 +2370,7 @@ EXAMPLES
2163
2370
  $ sf api request graphql --body example.txt --stream-to-file output.txt --include
2164
2371
  ```
2165
2372
 
2166
- _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.25/src/commands/api/request/graphql.ts)_
2373
+ _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.27/src/commands/api/request/graphql.ts)_
2167
2374
 
2168
2375
  ## `sf api request rest [URL]`
2169
2376
 
@@ -2272,7 +2479,7 @@ FLAG DESCRIPTIONS
2272
2479
  https://github.com/salesforcecli/plugin-api/tree/main/test/test-files/data-project.
2273
2480
  ```
2274
2481
 
2275
- _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.25/src/commands/api/request/rest.ts)_
2482
+ _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.27/src/commands/api/request/rest.ts)_
2276
2483
 
2277
2484
  ## `sf autocomplete [SHELL]`
2278
2485
 
@@ -2303,7 +2510,7 @@ EXAMPLES
2303
2510
  $ sf autocomplete --refresh-cache
2304
2511
  ```
2305
2512
 
2306
- _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.47/src/commands/autocomplete/index.ts)_
2513
+ _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.48/src/commands/autocomplete/index.ts)_
2307
2514
 
2308
2515
  ## `sf commands`
2309
2516
 
@@ -2332,7 +2539,7 @@ DESCRIPTION
2332
2539
  List all sf commands.
2333
2540
  ```
2334
2541
 
2335
- _See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/4.1.49/src/commands/commands.ts)_
2542
+ _See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/4.1.51/src/commands/commands.ts)_
2336
2543
 
2337
2544
  ## `sf config get`
2338
2545
 
@@ -2381,7 +2588,7 @@ CONFIGURATION VARIABLES
2381
2588
  org-capitalize-record-types Whether record types are capitalized on scratch org creation.
2382
2589
  ```
2383
2590
 
2384
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.73/src/commands/config/get.ts)_
2591
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.75/src/commands/config/get.ts)_
2385
2592
 
2386
2593
  ## `sf config list`
2387
2594
 
@@ -2421,7 +2628,7 @@ EXAMPLES
2421
2628
  $ sf config list
2422
2629
  ```
2423
2630
 
2424
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.73/src/commands/config/list.ts)_
2631
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.75/src/commands/config/list.ts)_
2425
2632
 
2426
2633
  ## `sf config set`
2427
2634
 
@@ -2490,7 +2697,7 @@ CONFIGURATION VARIABLES
2490
2697
  org-capitalize-record-types Whether record types are capitalized on scratch org creation.
2491
2698
  ```
2492
2699
 
2493
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.73/src/commands/config/set.ts)_
2700
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.75/src/commands/config/set.ts)_
2494
2701
 
2495
2702
  ## `sf config unset`
2496
2703
 
@@ -2540,7 +2747,7 @@ CONFIGURATION VARIABLES
2540
2747
  org-capitalize-record-types Whether record types are capitalized on scratch org creation.
2541
2748
  ```
2542
2749
 
2543
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.73/src/commands/config/unset.ts)_
2750
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.75/src/commands/config/unset.ts)_
2544
2751
 
2545
2752
  ## `sf data bulk results`
2546
2753
 
@@ -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.128/src/commands/doctor.ts)_
3674
3881
 
3675
3882
  ## `sf force data bulk delete`
3676
3883
 
@@ -3832,7 +4039,7 @@ DESCRIPTION
3832
4039
  Display help for sf.
3833
4040
  ```
3834
4041
 
3835
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.46/src/commands/help.ts)_
4042
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.48/src/commands/help.ts)_
3836
4043
 
3837
4044
  ## `sf info releasenotes display`
3838
4045
 
@@ -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.128/src/commands/info/releasenotes/display.ts)_
3876
4083
 
3877
4084
  ## `sf logic get test`
3878
4085
 
@@ -3920,7 +4127,7 @@ EXAMPLES
3920
4127
  $ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
3921
4128
  ```
3922
4129
 
3923
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.23/src/commands/logic/get/test.ts)_
4130
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.25/src/commands/logic/get/test.ts)_
3924
4131
 
3925
4132
  ## `sf logic run test`
3926
4133
 
@@ -4042,7 +4249,7 @@ FLAG DESCRIPTIONS
4042
4249
  --tests Test1 --tests Test2
4043
4250
  ```
4044
4251
 
4045
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.23/src/commands/logic/run/test.ts)_
4252
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.25/src/commands/logic/run/test.ts)_
4046
4253
 
4047
4254
  ## `sf org assign permset`
4048
4255
 
@@ -4088,7 +4295,7 @@ EXAMPLES
4088
4295
  $ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
4089
4296
  ```
4090
4297
 
4091
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.1/src/commands/org/assign/permset.ts)_
4298
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.3/src/commands/org/assign/permset.ts)_
4092
4299
 
4093
4300
  ## `sf org assign permsetlicense`
4094
4301
 
@@ -4135,7 +4342,7 @@ EXAMPLES
4135
4342
  user3
4136
4343
  ```
4137
4344
 
4138
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.1/src/commands/org/assign/permsetlicense.ts)_
4345
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.3/src/commands/org/assign/permsetlicense.ts)_
4139
4346
 
4140
4347
  ## `sf org create agent-user`
4141
4348
 
@@ -4213,7 +4420,7 @@ FLAG DESCRIPTIONS
4213
4420
  "agent.user.<GUID>@your-org-domain.com".
4214
4421
  ```
4215
4422
 
4216
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/create/agent-user.ts)_
4423
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/create/agent-user.ts)_
4217
4424
 
4218
4425
  ## `sf org create sandbox`
4219
4426
 
@@ -4347,7 +4554,7 @@ FLAG DESCRIPTIONS
4347
4554
  You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
4348
4555
  ```
4349
4556
 
4350
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/create/sandbox.ts)_
4557
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/create/sandbox.ts)_
4351
4558
 
4352
4559
  ## `sf org create scratch`
4353
4560
 
@@ -4529,7 +4736,7 @@ FLAG DESCRIPTIONS
4529
4736
  Omit this flag to have Salesforce generate a unique username for your org.
4530
4737
  ```
4531
4738
 
4532
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/create/scratch.ts)_
4739
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/create/scratch.ts)_
4533
4740
 
4534
4741
  ## `sf org create user`
4535
4742
 
@@ -4637,7 +4844,7 @@ FLAG DESCRIPTIONS
4637
4844
  might be different than what you specify in the definition file.
4638
4845
  ```
4639
4846
 
4640
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.1/src/commands/org/create/user.ts)_
4847
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.3/src/commands/org/create/user.ts)_
4641
4848
 
4642
4849
  ## `sf org delete sandbox`
4643
4850
 
@@ -4683,7 +4890,7 @@ EXAMPLES
4683
4890
  $ sf org delete sandbox --target-org my-sandbox --no-prompt
4684
4891
  ```
4685
4892
 
4686
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/delete/sandbox.ts)_
4893
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/delete/sandbox.ts)_
4687
4894
 
4688
4895
  ## `sf org delete scratch`
4689
4896
 
@@ -4727,7 +4934,7 @@ EXAMPLES
4727
4934
  $ sf org delete scratch --target-org my-scratch-org --no-prompt
4728
4935
  ```
4729
4936
 
4730
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/delete/scratch.ts)_
4937
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/delete/scratch.ts)_
4731
4938
 
4732
4939
  ## `sf org disable tracking`
4733
4940
 
@@ -4766,7 +4973,7 @@ EXAMPLES
4766
4973
  $ sf org disable tracking
4767
4974
  ```
4768
4975
 
4769
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/disable/tracking.ts)_
4976
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/disable/tracking.ts)_
4770
4977
 
4771
4978
  ## `sf org display`
4772
4979
 
@@ -4811,7 +5018,7 @@ EXAMPLES
4811
5018
  $ sf org display --target-org TestOrg1 --verbose
4812
5019
  ```
4813
5020
 
4814
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/display.ts)_
5021
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/display.ts)_
4815
5022
 
4816
5023
  ## `sf org display user`
4817
5024
 
@@ -4850,7 +5057,7 @@ EXAMPLES
4850
5057
  $ sf org display user --target-org me@my.org --json
4851
5058
  ```
4852
5059
 
4853
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.1/src/commands/org/display/user.ts)_
5060
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.3/src/commands/org/display/user.ts)_
4854
5061
 
4855
5062
  ## `sf org enable tracking`
4856
5063
 
@@ -4892,7 +5099,7 @@ EXAMPLES
4892
5099
  $ sf org enable tracking
4893
5100
  ```
4894
5101
 
4895
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/enable/tracking.ts)_
5102
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/enable/tracking.ts)_
4896
5103
 
4897
5104
  ## `sf org generate password`
4898
5105
 
@@ -4959,7 +5166,7 @@ EXAMPLES
4959
5166
  $ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
4960
5167
  ```
4961
5168
 
4962
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.1/src/commands/org/generate/password.ts)_
5169
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.3/src/commands/org/generate/password.ts)_
4963
5170
 
4964
5171
  ## `sf org list`
4965
5172
 
@@ -4998,7 +5205,7 @@ EXAMPLES
4998
5205
  $ sf org list --clean
4999
5206
  ```
5000
5207
 
5001
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/list.ts)_
5208
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/list.ts)_
5002
5209
 
5003
5210
  ## `sf org list auth`
5004
5211
 
@@ -5030,7 +5237,7 @@ EXAMPLES
5030
5237
  $ sf org list auth
5031
5238
  ```
5032
5239
 
5033
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.7/src/commands/org/list/auth.ts)_
5240
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.10/src/commands/org/list/auth.ts)_
5034
5241
 
5035
5242
  ## `sf org list limits`
5036
5243
 
@@ -5070,7 +5277,7 @@ EXAMPLES
5070
5277
  $ sf org list limits --target-org my-scratch-org
5071
5278
  ```
5072
5279
 
5073
- _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.86/src/commands/org/list/limits.ts)_
5280
+ _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.88/src/commands/org/list/limits.ts)_
5074
5281
 
5075
5282
  ## `sf org list metadata`
5076
5283
 
@@ -5137,7 +5344,7 @@ FLAG DESCRIPTIONS
5137
5344
  Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
5138
5345
  ```
5139
5346
 
5140
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/list/metadata.ts)_
5347
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/list/metadata.ts)_
5141
5348
 
5142
5349
  ## `sf org list metadata-types`
5143
5350
 
@@ -5192,7 +5399,7 @@ FLAG DESCRIPTIONS
5192
5399
  Override the api version used for api requests made by this command
5193
5400
  ```
5194
5401
 
5195
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/list/metadata-types.ts)_
5402
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/list/metadata-types.ts)_
5196
5403
 
5197
5404
  ## `sf org list sobject record-counts`
5198
5405
 
@@ -5238,7 +5445,7 @@ EXAMPLES
5238
5445
  $ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org
5239
5446
  ```
5240
5447
 
5241
- _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.86/src/commands/org/list/sobject/record-counts.ts)_
5448
+ _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.88/src/commands/org/list/sobject/record-counts.ts)_
5242
5449
 
5243
5450
  ## `sf org list users`
5244
5451
 
@@ -5276,7 +5483,7 @@ EXAMPLES
5276
5483
  $ sf org list users --target-org me@my.org
5277
5484
  ```
5278
5485
 
5279
- _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.1/src/commands/org/list/users.ts)_
5486
+ _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.9.3/src/commands/org/list/users.ts)_
5280
5487
 
5281
5488
  ## `sf org login access-token`
5282
5489
 
@@ -5330,7 +5537,7 @@ FLAG DESCRIPTIONS
5330
5537
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5331
5538
  ```
5332
5539
 
5333
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.7/src/commands/org/login/access-token.ts)_
5540
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.10/src/commands/org/login/access-token.ts)_
5334
5541
 
5335
5542
  ## `sf org login jwt`
5336
5543
 
@@ -5421,7 +5628,7 @@ FLAG DESCRIPTIONS
5421
5628
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5422
5629
  ```
5423
5630
 
5424
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.7/src/commands/org/login/jwt.ts)_
5631
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.10/src/commands/org/login/jwt.ts)_
5425
5632
 
5426
5633
  ## `sf org login sfdx-url`
5427
5634
 
@@ -5491,7 +5698,7 @@ EXAMPLES
5491
5698
  $ echo url | sf org login sfdx-url --sfdx-url-stdin
5492
5699
  ```
5493
5700
 
5494
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.7/src/commands/org/login/sfdx-url.ts)_
5701
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.10/src/commands/org/login/sfdx-url.ts)_
5495
5702
 
5496
5703
  ## `sf org login web`
5497
5704
 
@@ -5596,7 +5803,7 @@ FLAG DESCRIPTIONS
5596
5803
  To specify a sandbox, set --instance-url to "https://<MyDomainName>--<SandboxName>.sandbox.my.salesforce.com".
5597
5804
  ```
5598
5805
 
5599
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.7/src/commands/org/login/web.ts)_
5806
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.10/src/commands/org/login/web.ts)_
5600
5807
 
5601
5808
  ## `sf org logout`
5602
5809
 
@@ -5662,7 +5869,7 @@ FLAG DESCRIPTIONS
5662
5869
  All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
5663
5870
  ```
5664
5871
 
5665
- _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.7/src/commands/org/logout.ts)_
5872
+ _See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/4.3.10/src/commands/org/logout.ts)_
5666
5873
 
5667
5874
  ## `sf org open`
5668
5875
 
@@ -5738,7 +5945,7 @@ EXAMPLES
5738
5945
  $ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
5739
5946
  ```
5740
5947
 
5741
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/open.ts)_
5948
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/open.ts)_
5742
5949
 
5743
5950
  ## `sf org open agent`
5744
5951
 
@@ -5813,7 +6020,7 @@ FLAG DESCRIPTIONS
5813
6020
  flag.
5814
6021
  ```
5815
6022
 
5816
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/open/agent.ts)_
6023
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/open/agent.ts)_
5817
6024
 
5818
6025
  ## `sf org open authoring-bundle`
5819
6026
 
@@ -5859,7 +6066,7 @@ EXAMPLES
5859
6066
  $ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
5860
6067
  ```
5861
6068
 
5862
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/open/authoring-bundle.ts)_
6069
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/open/authoring-bundle.ts)_
5863
6070
 
5864
6071
  ## `sf org refresh sandbox`
5865
6072
 
@@ -5962,7 +6169,7 @@ FLAG DESCRIPTIONS
5962
6169
  You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
5963
6170
  ```
5964
6171
 
5965
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/refresh/sandbox.ts)_
6172
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/refresh/sandbox.ts)_
5966
6173
 
5967
6174
  ## `sf org resume sandbox`
5968
6175
 
@@ -6025,7 +6232,7 @@ FLAG DESCRIPTIONS
6025
6232
  returns the job ID. To resume checking the sandbox creation, rerun this command.
6026
6233
  ```
6027
6234
 
6028
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/resume/sandbox.ts)_
6235
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/resume/sandbox.ts)_
6029
6236
 
6030
6237
  ## `sf org resume scratch`
6031
6238
 
@@ -6078,7 +6285,7 @@ FLAG DESCRIPTIONS
6078
6285
  returns the job ID. To resume checking the scratch creation, rerun this command.
6079
6286
  ```
6080
6287
 
6081
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.8/src/commands/org/resume/scratch.ts)_
6288
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.10.10/src/commands/org/resume/scratch.ts)_
6082
6289
 
6083
6290
  ## `sf package convert`
6084
6291
 
@@ -6175,7 +6382,7 @@ FLAG DESCRIPTIONS
6175
6382
  --installation-key-bypass flag is required.
6176
6383
  ```
6177
6384
 
6178
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/convert.ts)_
6385
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/convert.ts)_
6179
6386
 
6180
6387
  ## `sf package create`
6181
6388
 
@@ -6254,7 +6461,7 @@ FLAG DESCRIPTIONS
6254
6461
  Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
6255
6462
  ```
6256
6463
 
6257
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/create.ts)_
6464
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/create.ts)_
6258
6465
 
6259
6466
  ## `sf package delete`
6260
6467
 
@@ -6296,7 +6503,7 @@ EXAMPLES
6296
6503
  $ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
6297
6504
  ```
6298
6505
 
6299
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/delete.ts)_
6506
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/delete.ts)_
6300
6507
 
6301
6508
  ## `sf package install`
6302
6509
 
@@ -6395,7 +6602,7 @@ FLAG DESCRIPTIONS
6395
6602
  - Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
6396
6603
  ```
6397
6604
 
6398
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/install.ts)_
6605
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/install.ts)_
6399
6606
 
6400
6607
  ## `sf package install report`
6401
6608
 
@@ -6428,7 +6635,7 @@ EXAMPLES
6428
6635
  $ sf package install report --request-id 0Hf... --target-org me@example.com
6429
6636
  ```
6430
6637
 
6431
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/install/report.ts)_
6638
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/install/report.ts)_
6432
6639
 
6433
6640
  ## `sf package installed list`
6434
6641
 
@@ -6460,7 +6667,7 @@ EXAMPLES
6460
6667
  $ sf package installed list --target-org me@example.com
6461
6668
  ```
6462
6669
 
6463
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/installed/list.ts)_
6670
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/installed/list.ts)_
6464
6671
 
6465
6672
  ## `sf package list`
6466
6673
 
@@ -6498,7 +6705,7 @@ EXAMPLES
6498
6705
  $ sf package list --target-dev-hub devhub@example.com --verbose
6499
6706
  ```
6500
6707
 
6501
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/list.ts)_
6708
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/list.ts)_
6502
6709
 
6503
6710
  ## `sf package push-upgrade abort`
6504
6711
 
@@ -6537,7 +6744,7 @@ EXAMPLES
6537
6744
  $ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
6538
6745
  ```
6539
6746
 
6540
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/push-upgrade/abort.ts)_
6747
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/push-upgrade/abort.ts)_
6541
6748
 
6542
6749
  ## `sf package push-upgrade list`
6543
6750
 
@@ -6596,7 +6803,7 @@ EXAMPLES
6596
6803
  $ sf package push-upgrade list --package 033xyz –-status Failed
6597
6804
  ```
6598
6805
 
6599
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/push-upgrade/list.ts)_
6806
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/push-upgrade/list.ts)_
6600
6807
 
6601
6808
  ## `sf package push-upgrade report`
6602
6809
 
@@ -6638,7 +6845,7 @@ EXAMPLES
6638
6845
  $ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
6639
6846
  ```
6640
6847
 
6641
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/push-upgrade/report.ts)_
6848
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/push-upgrade/report.ts)_
6642
6849
 
6643
6850
  ## `sf package push-upgrade schedule`
6644
6851
 
@@ -6725,7 +6932,7 @@ FLAG DESCRIPTIONS
6725
6932
  Overrides the value of the target-dev-hub configuration variable, if set.
6726
6933
  ```
6727
6934
 
6728
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/push-upgrade/schedule.ts)_
6935
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/push-upgrade/schedule.ts)_
6729
6936
 
6730
6937
  ## `sf package uninstall`
6731
6938
 
@@ -6773,7 +6980,7 @@ EXAMPLES
6773
6980
  $ sf package uninstall --package "Undesirable Package Alias"
6774
6981
  ```
6775
6982
 
6776
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/uninstall.ts)_
6983
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/uninstall.ts)_
6777
6984
 
6778
6985
  ## `sf package uninstall report`
6779
6986
 
@@ -6806,7 +7013,7 @@ EXAMPLES
6806
7013
  $ sf package uninstall report --request-id 06y... --target-org me@example.com
6807
7014
  ```
6808
7015
 
6809
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/uninstall/report.ts)_
7016
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/uninstall/report.ts)_
6810
7017
 
6811
7018
  ## `sf package update`
6812
7019
 
@@ -6874,7 +7081,7 @@ FLAG DESCRIPTIONS
6874
7081
  the Installed Packages page. Only released package versions can be set as the recommended version.
6875
7082
  ```
6876
7083
 
6877
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/update.ts)_
7084
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/update.ts)_
6878
7085
 
6879
7086
  ## `sf package version create`
6880
7087
 
@@ -7051,7 +7258,7 @@ FLAG DESCRIPTIONS
7051
7258
  periods of no output from commands.
7052
7259
  ```
7053
7260
 
7054
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/create.ts)_
7261
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/create.ts)_
7055
7262
 
7056
7263
  ## `sf package version create list`
7057
7264
 
@@ -7112,7 +7319,7 @@ EXAMPLES
7112
7319
  $ sf package version create list --created-last-days 0 --status Success
7113
7320
  ```
7114
7321
 
7115
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/create/list.ts)_
7322
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/create/list.ts)_
7116
7323
 
7117
7324
  ## `sf package version create report`
7118
7325
 
@@ -7155,7 +7362,7 @@ EXAMPLES
7155
7362
  $ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
7156
7363
  ```
7157
7364
 
7158
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/create/report.ts)_
7365
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/create/report.ts)_
7159
7366
 
7160
7367
  ## `sf package version delete`
7161
7368
 
@@ -7196,7 +7403,7 @@ EXAMPLES
7196
7403
  $ sf package version delete --package 04t... --target-org devhub@example.com
7197
7404
  ```
7198
7405
 
7199
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/delete.ts)_
7406
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/delete.ts)_
7200
7407
 
7201
7408
  ## `sf package version displayancestry`
7202
7409
 
@@ -7256,7 +7463,7 @@ FLAG DESCRIPTIONS
7256
7463
  You can use the DOT code output in graph visualization software to create tree visualizations.
7257
7464
  ```
7258
7465
 
7259
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/displayancestry.ts)_
7466
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/displayancestry.ts)_
7260
7467
 
7261
7468
  ## `sf package version displaydependencies`
7262
7469
 
@@ -7318,7 +7525,7 @@ FLAG DESCRIPTIONS
7318
7525
  package, which must be installed last.
7319
7526
  ```
7320
7527
 
7321
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/displaydependencies.ts)_
7528
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/displaydependencies.ts)_
7322
7529
 
7323
7530
  ## `sf package version list`
7324
7531
 
@@ -7394,7 +7601,7 @@ EXAMPLES
7394
7601
  $ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
7395
7602
  ```
7396
7603
 
7397
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/list.ts)_
7604
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/list.ts)_
7398
7605
 
7399
7606
  ## `sf package version promote`
7400
7607
 
@@ -7438,7 +7645,7 @@ EXAMPLES
7438
7645
  $ sf package version promote --package "Awesome Package Alias"
7439
7646
  ```
7440
7647
 
7441
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/promote.ts)_
7648
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/promote.ts)_
7442
7649
 
7443
7650
  ## `sf package version report`
7444
7651
 
@@ -7478,7 +7685,7 @@ EXAMPLES
7478
7685
  $ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
7479
7686
  ```
7480
7687
 
7481
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/report.ts)_
7688
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/report.ts)_
7482
7689
 
7483
7690
  ## `sf package version retrieve`
7484
7691
 
@@ -7523,7 +7730,7 @@ EXAMPLES
7523
7730
  $ sf package version retrieve --package 04tXXX --output-dir my-directory/ --target-dev-hub devhub@example.com
7524
7731
  ```
7525
7732
 
7526
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/retrieve.ts)_
7733
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/retrieve.ts)_
7527
7734
 
7528
7735
  ## `sf package version update`
7529
7736
 
@@ -7576,7 +7783,7 @@ EXAMPLES
7576
7783
  $ sf package version update --package 04t... --version-description "New Package Version Description"
7577
7784
  ```
7578
7785
 
7579
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package/version/update.ts)_
7786
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package/version/update.ts)_
7580
7787
 
7581
7788
  ## `sf package1 version create`
7582
7789
 
@@ -7643,7 +7850,7 @@ FLAG DESCRIPTIONS
7643
7850
  subscribers.
7644
7851
  ```
7645
7852
 
7646
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package1/version/create.ts)_
7853
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package1/version/create.ts)_
7647
7854
 
7648
7855
  ## `sf package1 version create get`
7649
7856
 
@@ -7676,7 +7883,7 @@ EXAMPLES
7676
7883
  $ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
7677
7884
  ```
7678
7885
 
7679
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package1/version/create/get.ts)_
7886
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package1/version/create/get.ts)_
7680
7887
 
7681
7888
  ## `sf package1 version display`
7682
7889
 
@@ -7710,7 +7917,7 @@ EXAMPLES
7710
7917
  $ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
7711
7918
  ```
7712
7919
 
7713
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package1/version/display.ts)_
7920
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package1/version/display.ts)_
7714
7921
 
7715
7922
  ## `sf package1 version list`
7716
7923
 
@@ -7748,7 +7955,7 @@ FLAG DESCRIPTIONS
7748
7955
  If not specified, shows all versions for all packages (managed and unmanaged) in the org.
7749
7956
  ```
7750
7957
 
7751
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.13/src/commands/package1/version/list.ts)_
7958
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.27.16/src/commands/package1/version/list.ts)_
7752
7959
 
7753
7960
  ## `sf plugins`
7754
7961
 
@@ -7771,7 +7978,7 @@ EXAMPLES
7771
7978
  $ sf plugins
7772
7979
  ```
7773
7980
 
7774
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/index.ts)_
7981
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.67/src/commands/plugins/index.ts)_
7775
7982
 
7776
7983
  ## `sf plugins discover`
7777
7984
 
@@ -7789,7 +7996,7 @@ EXAMPLES
7789
7996
  $ sf plugins discover
7790
7997
  ```
7791
7998
 
7792
- _See code: [@salesforce/plugin-marketplace](https://github.com/salesforcecli/plugin-marketplace/blob/1.3.22/src/commands/plugins/discover.ts)_
7999
+ _See code: [@salesforce/plugin-marketplace](https://github.com/salesforcecli/plugin-marketplace/blob/1.3.24/src/commands/plugins/discover.ts)_
7793
8000
 
7794
8001
  ## `sf plugins:inspect PLUGIN...`
7795
8002
 
@@ -7816,7 +8023,7 @@ EXAMPLES
7816
8023
  $ sf plugins inspect @salesforce/plugin-packaging
7817
8024
  ```
7818
8025
 
7819
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/inspect.ts)_
8026
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.67/src/commands/plugins/inspect.ts)_
7820
8027
 
7821
8028
  ## `sf plugins install PLUGIN`
7822
8029
 
@@ -7865,7 +8072,7 @@ EXAMPLES
7865
8072
  $ sf plugins install someuser/someplugin
7866
8073
  ```
7867
8074
 
7868
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/install.ts)_
8075
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.67/src/commands/plugins/install.ts)_
7869
8076
 
7870
8077
  ## `sf plugins link PATH`
7871
8078
 
@@ -7896,7 +8103,7 @@ EXAMPLES
7896
8103
  $ sf plugins link @salesforce/plugin-packaging
7897
8104
  ```
7898
8105
 
7899
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/link.ts)_
8106
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.67/src/commands/plugins/link.ts)_
7900
8107
 
7901
8108
  ## `sf plugins reset`
7902
8109
 
@@ -7911,7 +8118,7 @@ FLAGS
7911
8118
  --reinstall Reinstall all plugins after uninstalling.
7912
8119
  ```
7913
8120
 
7914
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/reset.ts)_
8121
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.67/src/commands/plugins/reset.ts)_
7915
8122
 
7916
8123
  ## `sf plugins trust allowlist add`
7917
8124
 
@@ -7948,7 +8155,7 @@ EXAMPLES
7948
8155
  $ sf plugins trust allowlist add --name @scope/my-plugin --name another-plugin
7949
8156
  ```
7950
8157
 
7951
- _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.2/src/commands/plugins/trust/allowlist/add.ts)_
8158
+ _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.5/src/commands/plugins/trust/allowlist/add.ts)_
7952
8159
 
7953
8160
  ## `sf plugins trust allowlist list`
7954
8161
 
@@ -7976,7 +8183,7 @@ EXAMPLES
7976
8183
  $ sf plugins trust allowlist list
7977
8184
  ```
7978
8185
 
7979
- _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.2/src/commands/plugins/trust/allowlist/list.ts)_
8186
+ _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.5/src/commands/plugins/trust/allowlist/list.ts)_
7980
8187
 
7981
8188
  ## `sf plugins trust allowlist remove`
7982
8189
 
@@ -8013,7 +8220,7 @@ EXAMPLES
8013
8220
  $ sf plugins trust allowlist remove --name @scope/my-plugin --name another-plugin
8014
8221
  ```
8015
8222
 
8016
- _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.2/src/commands/plugins/trust/allowlist/remove.ts)_
8223
+ _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.5/src/commands/plugins/trust/allowlist/remove.ts)_
8017
8224
 
8018
8225
  ## `sf plugins trust verify`
8019
8226
 
@@ -8042,7 +8249,7 @@ EXAMPLES
8042
8249
  $ sf plugins trust verify --npm @scope/npmName
8043
8250
  ```
8044
8251
 
8045
- _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.2/src/commands/plugins/trust/verify.ts)_
8252
+ _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.8.5/src/commands/plugins/trust/verify.ts)_
8046
8253
 
8047
8254
  ## `sf plugins uninstall [PLUGIN]`
8048
8255
 
@@ -8070,7 +8277,7 @@ EXAMPLES
8070
8277
  $ sf plugins uninstall @salesforce/plugin-packaging
8071
8278
  ```
8072
8279
 
8073
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/uninstall.ts)_
8280
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.67/src/commands/plugins/uninstall.ts)_
8074
8281
 
8075
8282
  ## `sf plugins update`
8076
8283
 
@@ -8088,7 +8295,7 @@ DESCRIPTION
8088
8295
  Update installed plugins.
8089
8296
  ```
8090
8297
 
8091
- _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.64/src/commands/plugins/update.ts)_
8298
+ _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.67/src/commands/plugins/update.ts)_
8092
8299
 
8093
8300
  ## `sf project convert mdapi`
8094
8301
 
@@ -8151,7 +8358,7 @@ FLAG DESCRIPTIONS
8151
8358
  If you specify this flag, don’t specify --metadata or --source-dir.
8152
8359
  ```
8153
8360
 
8154
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/convert/mdapi.ts)_
8361
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/convert/mdapi.ts)_
8155
8362
 
8156
8363
  ## `sf project convert source`
8157
8364
 
@@ -8224,7 +8431,7 @@ FLAG DESCRIPTIONS
8224
8431
  Override the api version used for api requests made by this command
8225
8432
  ```
8226
8433
 
8227
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/convert/source.ts)_
8434
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/convert/source.ts)_
8228
8435
 
8229
8436
  ## `sf project convert source-behavior`
8230
8437
 
@@ -8283,7 +8490,7 @@ EXAMPLES
8283
8490
  $ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
8284
8491
  ```
8285
8492
 
8286
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/convert/source-behavior.ts)_
8493
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/convert/source-behavior.ts)_
8287
8494
 
8288
8495
  ## `sf project delete source`
8289
8496
 
@@ -8436,7 +8643,7 @@ FLAG DESCRIPTIONS
8436
8643
  - Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
8437
8644
  ```
8438
8645
 
8439
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/delete/source.ts)_
8646
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/delete/source.ts)_
8440
8647
 
8441
8648
  ## `sf project delete tracking`
8442
8649
 
@@ -8473,7 +8680,7 @@ EXAMPLES
8473
8680
  $ sf project delete tracking --target-org my-scratch
8474
8681
  ```
8475
8682
 
8476
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/delete/tracking.ts)_
8683
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/delete/tracking.ts)_
8477
8684
 
8478
8685
  ## `sf project deploy cancel`
8479
8686
 
@@ -8545,7 +8752,7 @@ FLAG DESCRIPTIONS
8545
8752
  project deploy report".
8546
8753
  ```
8547
8754
 
8548
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/cancel.ts)_
8755
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/deploy/cancel.ts)_
8549
8756
 
8550
8757
  ## `sf project deploy preview`
8551
8758
 
@@ -8628,7 +8835,7 @@ FLAG DESCRIPTIONS
8628
8835
  All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
8629
8836
  ```
8630
8837
 
8631
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/preview.ts)_
8838
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/deploy/preview.ts)_
8632
8839
 
8633
8840
  ## `sf project deploy quick`
8634
8841
 
@@ -8721,7 +8928,7 @@ ERROR CODES
8721
8928
  Canceling (69) The deploy is being canceled.
8722
8929
  ```
8723
8930
 
8724
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/quick.ts)_
8931
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/deploy/quick.ts)_
8725
8932
 
8726
8933
  ## `sf project deploy report`
8727
8934
 
@@ -8813,7 +9020,7 @@ FLAG DESCRIPTIONS
8813
9020
  --coverage-formatters lcov --coverage-formatters clover
8814
9021
  ```
8815
9022
 
8816
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/report.ts)_
9023
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/deploy/report.ts)_
8817
9024
 
8818
9025
  ## `sf project deploy resume`
8819
9026
 
@@ -8910,7 +9117,7 @@ ERROR CODES
8910
9117
  Canceling (69) The deploy is being canceled.
8911
9118
  ```
8912
9119
 
8913
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/resume.ts)_
9120
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/deploy/resume.ts)_
8914
9121
 
8915
9122
  ## `sf project deploy start`
8916
9123
 
@@ -9176,7 +9383,7 @@ ERROR CODES
9176
9383
  Canceling (69) The deploy is being canceled.
9177
9384
  ```
9178
9385
 
9179
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/start.ts)_
9386
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/deploy/start.ts)_
9180
9387
 
9181
9388
  ## `sf project deploy validate`
9182
9389
 
@@ -9380,7 +9587,7 @@ ERROR CODES
9380
9587
  Canceling (69) The deploy is being canceled.
9381
9588
  ```
9382
9589
 
9383
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/deploy/validate.ts)_
9590
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/deploy/validate.ts)_
9384
9591
 
9385
9592
  ## `sf project generate manifest`
9386
9593
 
@@ -9476,7 +9683,7 @@ EXAMPLES
9476
9683
  $ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
9477
9684
  ```
9478
9685
 
9479
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/generate/manifest.ts)_
9686
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/generate/manifest.ts)_
9480
9687
 
9481
9688
  ## `sf project list ignored`
9482
9689
 
@@ -9518,7 +9725,7 @@ EXAMPLES
9518
9725
  $ sf project list ignored --source-dir package.xml
9519
9726
  ```
9520
9727
 
9521
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/list/ignored.ts)_
9728
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/list/ignored.ts)_
9522
9729
 
9523
9730
  ## `sf project reset tracking`
9524
9731
 
@@ -9567,7 +9774,7 @@ EXAMPLES
9567
9774
  $ sf project reset tracking --revision 30
9568
9775
  ```
9569
9776
 
9570
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/reset/tracking.ts)_
9777
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/reset/tracking.ts)_
9571
9778
 
9572
9779
  ## `sf project retrieve preview`
9573
9780
 
@@ -9621,7 +9828,7 @@ FLAG DESCRIPTIONS
9621
9828
  production orgs.
9622
9829
  ```
9623
9830
 
9624
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/retrieve/preview.ts)_
9831
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/retrieve/preview.ts)_
9625
9832
 
9626
9833
  ## `sf project retrieve start`
9627
9834
 
@@ -9802,7 +10009,7 @@ ENVIRONMENT VARIABLES
9802
10009
  SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
9803
10010
  ```
9804
10011
 
9805
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.42/src/commands/project/retrieve/start.ts)_
10012
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.44/src/commands/project/retrieve/start.ts)_
9806
10013
 
9807
10014
  ## `sf schema generate field`
9808
10015
 
@@ -9856,7 +10063,7 @@ FLAG DESCRIPTIONS
9856
10063
  If you don't specify this flag, the command prompts you to choose from your local objects.
9857
10064
  ```
9858
10065
 
9859
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.102/src/commands/schema/generate/field.ts)_
10066
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.104/src/commands/schema/generate/field.ts)_
9860
10067
 
9861
10068
  ## `sf schema generate platformevent`
9862
10069
 
@@ -9888,7 +10095,7 @@ EXAMPLES
9888
10095
  $ sf schema generate platformevent --label "My Platform Event"
9889
10096
  ```
9890
10097
 
9891
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.102/src/commands/schema/generate/platformevent.ts)_
10098
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.104/src/commands/schema/generate/platformevent.ts)_
9892
10099
 
9893
10100
  ## `sf schema generate sobject`
9894
10101
 
@@ -9945,7 +10152,7 @@ FLAG DESCRIPTIONS
9945
10152
  - Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
9946
10153
  ```
9947
10154
 
9948
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.102/src/commands/schema/generate/sobject.ts)_
10155
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.104/src/commands/schema/generate/sobject.ts)_
9949
10156
 
9950
10157
  ## `sf schema generate tab`
9951
10158
 
@@ -9993,7 +10200,7 @@ FLAG DESCRIPTIONS
9993
10200
  The API name for a custom object always ends in `__c`, such as `MyObject__c`.
9994
10201
  ```
9995
10202
 
9996
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.102/src/commands/schema/generate/tab.ts)_
10203
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.104/src/commands/schema/generate/tab.ts)_
9997
10204
 
9998
10205
  ## `sf search`
9999
10206
 
@@ -10009,7 +10216,7 @@ DESCRIPTION
10009
10216
  Once you select a command, hit enter and it will show the help for that command.
10010
10217
  ```
10011
10218
 
10012
- _See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.46/src/commands/search.ts)_
10219
+ _See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.47/src/commands/search.ts)_
10013
10220
 
10014
10221
  ## `sf sobject describe`
10015
10222
 
@@ -10056,7 +10263,7 @@ EXAMPLES
10056
10263
  $ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
10057
10264
  ```
10058
10265
 
10059
- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.107/src/commands/sobject/describe.ts)_
10266
+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.109/src/commands/sobject/describe.ts)_
10060
10267
 
10061
10268
  ## `sf sobject list`
10062
10269
 
@@ -10095,7 +10302,7 @@ EXAMPLES
10095
10302
  $ sf sobject list --sobject custom --target-org my-scratch-org
10096
10303
  ```
10097
10304
 
10098
- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.107/src/commands/sobject/list.ts)_
10305
+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.109/src/commands/sobject/list.ts)_
10099
10306
 
10100
10307
  ## `sf template generate analytics template`
10101
10308
 
@@ -10139,7 +10346,7 @@ FLAG DESCRIPTIONS
10139
10346
  directory.
10140
10347
  ```
10141
10348
 
10142
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/analytics/template.ts)_
10349
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/analytics/template.ts)_
10143
10350
 
10144
10351
  ## `sf template generate apex class`
10145
10352
 
@@ -10199,7 +10406,7 @@ FLAG DESCRIPTIONS
10199
10406
  Supplied parameter values or default values are filled into a copy of the template.
10200
10407
  ```
10201
10408
 
10202
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/apex/class.ts)_
10409
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/apex/class.ts)_
10203
10410
 
10204
10411
  ## `sf template generate apex trigger`
10205
10412
 
@@ -10269,7 +10476,7 @@ FLAG DESCRIPTIONS
10269
10476
  Supplied parameter values or default values are filled into a copy of the template.
10270
10477
  ```
10271
10478
 
10272
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/apex/trigger.ts)_
10479
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/apex/trigger.ts)_
10273
10480
 
10274
10481
  ## `sf template generate digital-experience site`
10275
10482
 
@@ -10323,7 +10530,7 @@ FLAG DESCRIPTIONS
10323
10530
  project, defaults to the current directory.
10324
10531
  ```
10325
10532
 
10326
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/digital-experience/site.ts)_
10533
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/digital-experience/site.ts)_
10327
10534
 
10328
10535
  ## `sf template generate flexipage`
10329
10536
 
@@ -10405,7 +10612,7 @@ FLAG DESCRIPTIONS
10405
10612
  'Custom_Object__c'. This sets the `sobjectType` field in the FlexiPage metadata.
10406
10613
  ```
10407
10614
 
10408
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/flexipage/index.ts)_
10615
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/flexipage/index.ts)_
10409
10616
 
10410
10617
  ## `sf template generate lightning app`
10411
10618
 
@@ -10463,7 +10670,7 @@ FLAG DESCRIPTIONS
10463
10670
  field in the DX project's "sfdx-project.json" file.
10464
10671
  ```
10465
10672
 
10466
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/lightning/app.ts)_
10673
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/lightning/app.ts)_
10467
10674
 
10468
10675
  ## `sf template generate lightning component`
10469
10676
 
@@ -10540,7 +10747,7 @@ FLAG DESCRIPTIONS
10540
10747
  field in the DX project's "sfdx-project.json" file.
10541
10748
  ```
10542
10749
 
10543
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/lightning/component.ts)_
10750
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/lightning/component.ts)_
10544
10751
 
10545
10752
  ## `sf template generate lightning event`
10546
10753
 
@@ -10598,7 +10805,7 @@ FLAG DESCRIPTIONS
10598
10805
  field in the DX project's "sfdx-project.json" file.
10599
10806
  ```
10600
10807
 
10601
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/lightning/event.ts)_
10808
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/lightning/event.ts)_
10602
10809
 
10603
10810
  ## `sf template generate lightning interface`
10604
10811
 
@@ -10656,7 +10863,7 @@ FLAG DESCRIPTIONS
10656
10863
  field in the DX project's "sfdx-project.json" file.
10657
10864
  ```
10658
10865
 
10659
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/lightning/interface.ts)_
10866
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/lightning/interface.ts)_
10660
10867
 
10661
10868
  ## `sf template generate lightning test`
10662
10869
 
@@ -10714,7 +10921,7 @@ FLAG DESCRIPTIONS
10714
10921
  field in the DX project's "sfdx-project.json" file.
10715
10922
  ```
10716
10923
 
10717
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/lightning/test.ts)_
10924
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/lightning/test.ts)_
10718
10925
 
10719
10926
  ## `sf template generate project`
10720
10927
 
@@ -10840,7 +11047,7 @@ FLAG DESCRIPTIONS
10840
11047
  server-side type stripping.
10841
11048
  ```
10842
11049
 
10843
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/project/index.ts)_
11050
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/project/index.ts)_
10844
11051
 
10845
11052
  ## `sf template generate static-resource`
10846
11053
 
@@ -10903,7 +11110,7 @@ FLAG DESCRIPTIONS
10903
11110
  etc.
10904
11111
  ```
10905
11112
 
10906
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/static-resource/index.ts)_
11113
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/static-resource/index.ts)_
10907
11114
 
10908
11115
  ## `sf template generate ui-bundle`
10909
11116
 
@@ -10987,7 +11194,7 @@ FLAG DESCRIPTIONS
10987
11194
  Supplied parameter values or default values are filled into a copy of the template.
10988
11195
  ```
10989
11196
 
10990
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/ui-bundle/index.ts)_
11197
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/ui-bundle/index.ts)_
10991
11198
 
10992
11199
  ## `sf template generate visualforce component`
10993
11200
 
@@ -11044,7 +11251,7 @@ FLAG DESCRIPTIONS
11044
11251
  Supplied parameter values or default values are filled into a copy of the template.
11045
11252
  ```
11046
11253
 
11047
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/visualforce/component.ts)_
11254
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/visualforce/component.ts)_
11048
11255
 
11049
11256
  ## `sf template generate visualforce page`
11050
11257
 
@@ -11095,7 +11302,7 @@ FLAG DESCRIPTIONS
11095
11302
  The name can be up to 40 characters and must start with a letter.
11096
11303
  ```
11097
11304
 
11098
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.4/src/commands/template/generate/visualforce/page.ts)_
11305
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.16.6/src/commands/template/generate/visualforce/page.ts)_
11099
11306
 
11100
11307
  ## `sf update [CHANNEL]`
11101
11308
 
@@ -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.37/src/commands/update.ts)_
11137
11344
 
11138
11345
  ## `sf version`
11139
11346
 
@@ -11153,7 +11360,7 @@ FLAG DESCRIPTIONS
11153
11360
  Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
11154
11361
  ```
11155
11362
 
11156
- _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/2.2.43/src/commands/version.ts)_
11363
+ _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/2.2.44/src/commands/version.ts)_
11157
11364
 
11158
11365
  ## `sf which`
11159
11366
 
@@ -11187,7 +11394,7 @@ EXAMPLES
11187
11394
  $ sf which "foo bar baz"
11188
11395
  ```
11189
11396
 
11190
- _See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.51/src/commands/which.ts)_
11397
+ _See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.52/src/commands/which.ts)_
11191
11398
 
11192
11399
  <!-- commandsstop -->
11193
11400