@salesforce/cli 2.129.4 → 2.129.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md 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.129.4 linux-x64 node-v22.22.1
28
+ @salesforce/cli/2.129.6 linux-x64 node-v22.22.1
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -109,6 +109,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
109
109
  - [`sf logic run test`](#sf-logic-run-test)
110
110
  - [`sf org assign permset`](#sf-org-assign-permset)
111
111
  - [`sf org assign permsetlicense`](#sf-org-assign-permsetlicense)
112
+ - [`sf org create agent-user`](#sf-org-create-agent-user)
112
113
  - [`sf org create sandbox`](#sf-org-create-sandbox)
113
114
  - [`sf org create scratch`](#sf-org-create-scratch)
114
115
  - [`sf org create user`](#sf-org-create-user)
@@ -264,7 +265,7 @@ EXAMPLES
264
265
  $ sf agent activate --api-name Resort_Manager --version 2 --target-org my-org
265
266
  ```
266
267
 
267
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/activate.ts)_
268
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/activate.ts)_
268
269
 
269
270
  ## `sf agent create`
270
271
 
@@ -331,7 +332,7 @@ EXAMPLES
331
332
  $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
332
333
  ```
333
334
 
334
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/create.ts)_
335
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/create.ts)_
335
336
 
336
337
  ## `sf agent deactivate`
337
338
 
@@ -372,7 +373,7 @@ EXAMPLES
372
373
  $ sf agent deactivate --api-name Resort_Manager --target-org my-org
373
374
  ```
374
375
 
375
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/deactivate.ts)_
376
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/deactivate.ts)_
376
377
 
377
378
  ## `sf agent generate agent-spec`
378
379
 
@@ -479,7 +480,7 @@ EXAMPLES
479
480
  $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
480
481
  ```
481
482
 
482
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/generate/agent-spec.ts)_
483
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/generate/agent-spec.ts)_
483
484
 
484
485
  ## `sf agent generate authoring-bundle`
485
486
 
@@ -556,7 +557,7 @@ EXAMPLES
556
557
  other-package-dir/main/default --target-org my-dev-org
557
558
  ```
558
559
 
559
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/generate/authoring-bundle.ts)_
560
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/generate/authoring-bundle.ts)_
560
561
 
561
562
  ## `sf agent generate template`
562
563
 
@@ -604,7 +605,7 @@ EXAMPLES
604
605
  force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
605
606
  ```
606
607
 
607
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/generate/template.ts)_
608
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/generate/template.ts)_
608
609
 
609
610
  ## `sf agent generate test-spec`
610
611
 
@@ -669,7 +670,7 @@ EXAMPLES
669
670
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
670
671
  ```
671
672
 
672
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/generate/test-spec.ts)_
673
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/generate/test-spec.ts)_
673
674
 
674
675
  ## `sf agent preview`
675
676
 
@@ -742,7 +743,7 @@ EXAMPLES
742
743
  $ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
743
744
  ```
744
745
 
745
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/preview.ts)_
746
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/preview.ts)_
746
747
 
747
748
  ## `sf agent preview end`
748
749
 
@@ -797,7 +798,7 @@ EXAMPLES
797
798
  $ sf agent preview end --authoring-bundle My_Local_Agent
798
799
  ```
799
800
 
800
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/preview/end.ts)_
801
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/preview/end.ts)_
801
802
 
802
803
  ## `sf agent preview send`
803
804
 
@@ -855,7 +856,7 @@ EXAMPLES
855
856
  $ sf agent preview send --utterance "what can you help me with?" --authoring-bundle My_Local_Agent
856
857
  ```
857
858
 
858
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/preview/send.ts)_
859
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/preview/send.ts)_
859
860
 
860
861
  ## `sf agent preview sessions`
861
862
 
@@ -888,7 +889,7 @@ EXAMPLES
888
889
  $ sf agent preview sessions
889
890
  ```
890
891
 
891
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/preview/sessions.ts)_
892
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/preview/sessions.ts)_
892
893
 
893
894
  ## `sf agent preview start`
894
895
 
@@ -945,7 +946,7 @@ EXAMPLES
945
946
  $ sf agent preview start --api-name My_Published_Agent
946
947
  ```
947
948
 
948
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/preview/start.ts)_
949
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/preview/start.ts)_
949
950
 
950
951
  ## `sf agent publish authoring-bundle`
951
952
 
@@ -994,7 +995,7 @@ EXAMPLES
994
995
  $ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
995
996
  ```
996
997
 
997
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/publish/authoring-bundle.ts)_
998
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/publish/authoring-bundle.ts)_
998
999
 
999
1000
  ## `sf agent test create`
1000
1001
 
@@ -1049,7 +1050,7 @@ EXAMPLES
1049
1050
  $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
1050
1051
  ```
1051
1052
 
1052
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/test/create.ts)_
1053
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/test/create.ts)_
1053
1054
 
1054
1055
  ## `sf agent test list`
1055
1056
 
@@ -1084,7 +1085,7 @@ EXAMPLES
1084
1085
  $ sf agent test list --target-org my-org
1085
1086
  ```
1086
1087
 
1087
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/test/list.ts)_
1088
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/test/list.ts)_
1088
1089
 
1089
1090
  ## `sf agent test results`
1090
1091
 
@@ -1150,7 +1151,7 @@ FLAG DESCRIPTIONS
1150
1151
  expression when using custom evaluations.
1151
1152
  ```
1152
1153
 
1153
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/test/results.ts)_
1154
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/test/results.ts)_
1154
1155
 
1155
1156
  ## `sf agent test resume`
1156
1157
 
@@ -1223,7 +1224,7 @@ FLAG DESCRIPTIONS
1223
1224
  expression when using custom evaluations.
1224
1225
  ```
1225
1226
 
1226
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/test/resume.ts)_
1227
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/test/resume.ts)_
1227
1228
 
1228
1229
  ## `sf agent test run`
1229
1230
 
@@ -1297,7 +1298,7 @@ FLAG DESCRIPTIONS
1297
1298
  expression when using custom evaluations.
1298
1299
  ```
1299
1300
 
1300
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/test/run.ts)_
1301
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/test/run.ts)_
1301
1302
 
1302
1303
  ## `sf agent validate authoring-bundle`
1303
1304
 
@@ -1344,7 +1345,7 @@ EXAMPLES
1344
1345
  $ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
1345
1346
  ```
1346
1347
 
1347
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.7/src/commands/agent/validate/authoring-bundle.ts)_
1348
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.10/src/commands/agent/validate/authoring-bundle.ts)_
1348
1349
 
1349
1350
  ## `sf alias list`
1350
1351
 
@@ -1372,7 +1373,7 @@ EXAMPLES
1372
1373
  $ sf alias list
1373
1374
  ```
1374
1375
 
1375
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.61/src/commands/alias/list.ts)_
1376
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.62/src/commands/alias/list.ts)_
1376
1377
 
1377
1378
  ## `sf alias set`
1378
1379
 
@@ -1421,7 +1422,7 @@ EXAMPLES
1421
1422
  $ sf alias set my-scratch-org test-ss0xut7txzxf@example.com
1422
1423
  ```
1423
1424
 
1424
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.61/src/commands/alias/set.ts)_
1425
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.62/src/commands/alias/set.ts)_
1425
1426
 
1426
1427
  ## `sf alias unset`
1427
1428
 
@@ -1461,7 +1462,7 @@ EXAMPLES
1461
1462
  $ sf alias unset --all [--no-prompt]
1462
1463
  ```
1463
1464
 
1464
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.61/src/commands/alias/unset.ts)_
1465
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.62/src/commands/alias/unset.ts)_
1465
1466
 
1466
1467
  ## `sf apex get log`
1467
1468
 
@@ -1517,7 +1518,7 @@ FLAG DESCRIPTIONS
1517
1518
  directory.
1518
1519
  ```
1519
1520
 
1520
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.14/src/commands/apex/get/log.ts)_
1521
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.15/src/commands/apex/get/log.ts)_
1521
1522
 
1522
1523
  ## `sf apex get test`
1523
1524
 
@@ -1577,7 +1578,7 @@ EXAMPLES
1577
1578
  me@myorg'
1578
1579
  ```
1579
1580
 
1580
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.14/src/commands/apex/get/test.ts)_
1581
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.15/src/commands/apex/get/test.ts)_
1581
1582
 
1582
1583
  ## `sf apex list log`
1583
1584
 
@@ -1617,7 +1618,7 @@ EXAMPLES
1617
1618
  $ sf apex list log --target-org me@my.org
1618
1619
  ```
1619
1620
 
1620
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.14/src/commands/apex/list/log.ts)_
1621
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.15/src/commands/apex/list/log.ts)_
1621
1622
 
1622
1623
  ## `sf apex run`
1623
1624
 
@@ -1664,7 +1665,7 @@ EXAMPLES
1664
1665
  $ sf apex run
1665
1666
  ```
1666
1667
 
1667
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.14/src/commands/apex/run.ts)_
1668
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.15/src/commands/apex/run.ts)_
1668
1669
 
1669
1670
  ## `sf apex run test`
1670
1671
 
@@ -1811,7 +1812,7 @@ FLAG DESCRIPTIONS
1811
1812
  --tests Test1 --tests Test2
1812
1813
  ```
1813
1814
 
1814
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.14/src/commands/apex/run/test.ts)_
1815
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.15/src/commands/apex/run/test.ts)_
1815
1816
 
1816
1817
  ## `sf apex tail log`
1817
1818
 
@@ -1854,7 +1855,7 @@ EXAMPLES
1854
1855
  $ sf apex tail log --color --skip-trace-flag
1855
1856
  ```
1856
1857
 
1857
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.14/src/commands/apex/tail/log.ts)_
1858
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.15/src/commands/apex/tail/log.ts)_
1858
1859
 
1859
1860
  ## `sf api request graphql`
1860
1861
 
@@ -2125,7 +2126,7 @@ CONFIGURATION VARIABLES
2125
2126
  org-capitalize-record-types Whether record types are capitalized on scratch org creation.
2126
2127
  ```
2127
2128
 
2128
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.61/src/commands/config/get.ts)_
2129
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.62/src/commands/config/get.ts)_
2129
2130
 
2130
2131
  ## `sf config list`
2131
2132
 
@@ -2165,7 +2166,7 @@ EXAMPLES
2165
2166
  $ sf config list
2166
2167
  ```
2167
2168
 
2168
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.61/src/commands/config/list.ts)_
2169
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.62/src/commands/config/list.ts)_
2169
2170
 
2170
2171
  ## `sf config set`
2171
2172
 
@@ -2234,7 +2235,7 @@ CONFIGURATION VARIABLES
2234
2235
  org-capitalize-record-types Whether record types are capitalized on scratch org creation.
2235
2236
  ```
2236
2237
 
2237
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.61/src/commands/config/set.ts)_
2238
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.62/src/commands/config/set.ts)_
2238
2239
 
2239
2240
  ## `sf config unset`
2240
2241
 
@@ -2284,7 +2285,7 @@ CONFIGURATION VARIABLES
2284
2285
  org-capitalize-record-types Whether record types are capitalized on scratch org creation.
2285
2286
  ```
2286
2287
 
2287
- _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.61/src/commands/config/unset.ts)_
2288
+ _See code: [@salesforce/plugin-settings](https://github.com/salesforcecli/plugin-settings/blob/2.4.62/src/commands/config/unset.ts)_
2288
2289
 
2289
2290
  ## `sf data bulk results`
2290
2291
 
@@ -2329,7 +2330,7 @@ EXAMPLES
2329
2330
  $ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
2330
2331
  ```
2331
2332
 
2332
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/bulk/results.ts)_
2333
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/bulk/results.ts)_
2333
2334
 
2334
2335
  ## `sf data create file`
2335
2336
 
@@ -2378,7 +2379,7 @@ EXAMPLES
2378
2379
  $ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
2379
2380
  ```
2380
2381
 
2381
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/create/file.ts)_
2382
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/create/file.ts)_
2382
2383
 
2383
2384
  ## `sf data create record`
2384
2385
 
@@ -2434,7 +2435,7 @@ EXAMPLES
2434
2435
  TracedEntityId=01p17000000R6bLAAS"
2435
2436
  ```
2436
2437
 
2437
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/create/record.ts)_
2438
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/create/record.ts)_
2438
2439
 
2439
2440
  ## `sf data delete bulk`
2440
2441
 
@@ -2493,7 +2494,7 @@ FLAG DESCRIPTIONS
2493
2494
  and can be enabled only by a system administrator.
2494
2495
  ```
2495
2496
 
2496
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/delete/bulk.ts)_
2497
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/delete/bulk.ts)_
2497
2498
 
2498
2499
  ## `sf data delete record`
2499
2500
 
@@ -2554,7 +2555,7 @@ EXAMPLES
2554
2555
  $ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
2555
2556
  ```
2556
2557
 
2557
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/delete/record.ts)_
2558
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/delete/record.ts)_
2558
2559
 
2559
2560
  ## `sf data delete resume`
2560
2561
 
@@ -2593,7 +2594,7 @@ EXAMPLES
2593
2594
  $ sf data delete resume --use-most-recent --target-org my-scratch
2594
2595
  ```
2595
2596
 
2596
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/delete/resume.ts)_
2597
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/delete/resume.ts)_
2597
2598
 
2598
2599
  ## `sf data export bulk`
2599
2600
 
@@ -2660,7 +2661,7 @@ EXAMPLES
2660
2661
  --result-format json --wait 10 --all-rows
2661
2662
  ```
2662
2663
 
2663
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/export/bulk.ts)_
2664
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/export/bulk.ts)_
2664
2665
 
2665
2666
  ## `sf data export resume`
2666
2667
 
@@ -2699,7 +2700,7 @@ EXAMPLES
2699
2700
  $ sf data export resume --use-most-recent
2700
2701
  ```
2701
2702
 
2702
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/export/resume.ts)_
2703
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/export/resume.ts)_
2703
2704
 
2704
2705
  ## `sf data export tree`
2705
2706
 
@@ -2759,7 +2760,7 @@ EXAMPLES
2759
2760
  my-scratch
2760
2761
  ```
2761
2762
 
2762
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/export/tree.ts)_
2763
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/export/tree.ts)_
2763
2764
 
2764
2765
  ## `sf data get record`
2765
2766
 
@@ -2823,7 +2824,7 @@ EXAMPLES
2823
2824
  $ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
2824
2825
  ```
2825
2826
 
2826
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/get/record.ts)_
2827
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/get/record.ts)_
2827
2828
 
2828
2829
  ## `sf data import bulk`
2829
2830
 
@@ -2875,7 +2876,7 @@ EXAMPLES
2875
2876
  $ sf data import bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
2876
2877
  ```
2877
2878
 
2878
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/import/bulk.ts)_
2879
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/import/bulk.ts)_
2879
2880
 
2880
2881
  ## `sf data import resume`
2881
2882
 
@@ -2911,7 +2912,7 @@ EXAMPLES
2911
2912
  $ sf data import resume --use-most-recent --target-org my-scratch
2912
2913
  ```
2913
2914
 
2914
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/import/resume.ts)_
2915
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/import/resume.ts)_
2915
2916
 
2916
2917
  ## `sf data import tree`
2917
2918
 
@@ -2975,7 +2976,7 @@ FLAG DESCRIPTIONS
2975
2976
  - files(array) - Files: An array of files paths to load
2976
2977
  ```
2977
2978
 
2978
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/import/tree.ts)_
2979
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/import/tree.ts)_
2979
2980
 
2980
2981
  ## `sf data query`
2981
2982
 
@@ -3028,7 +3029,7 @@ EXAMPLES
3028
3029
  $ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api
3029
3030
  ```
3030
3031
 
3031
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/query.ts)_
3032
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/query.ts)_
3032
3033
 
3033
3034
  ## `sf data resume`
3034
3035
 
@@ -3065,7 +3066,7 @@ EXAMPLES
3065
3066
  $ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
3066
3067
  ```
3067
3068
 
3068
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/resume.ts)_
3069
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/resume.ts)_
3069
3070
 
3070
3071
  ## `sf data search`
3071
3072
 
@@ -3115,7 +3116,7 @@ EXAMPLES
3115
3116
  $ sf data search --file query.txt --target-org my-scratch --result-format csv
3116
3117
  ```
3117
3118
 
3118
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/search.ts)_
3119
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/search.ts)_
3119
3120
 
3120
3121
  ## `sf data update bulk`
3121
3122
 
@@ -3170,7 +3171,7 @@ EXAMPLES
3170
3171
  $ sf data update bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
3171
3172
  ```
3172
3173
 
3173
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/update/bulk.ts)_
3174
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/update/bulk.ts)_
3174
3175
 
3175
3176
  ## `sf data update record`
3176
3177
 
@@ -3232,7 +3233,7 @@ EXAMPLES
3232
3233
  "ExpirationDate=2017-12-01T00:58:04.000+0000"
3233
3234
  ```
3234
3235
 
3235
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/update/record.ts)_
3236
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/update/record.ts)_
3236
3237
 
3237
3238
  ## `sf data update resume`
3238
3239
 
@@ -3271,7 +3272,7 @@ EXAMPLES
3271
3272
  $ sf data update resume --use-most-recent
3272
3273
  ```
3273
3274
 
3274
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/update/resume.ts)_
3275
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/update/resume.ts)_
3275
3276
 
3276
3277
  ## `sf data upsert bulk`
3277
3278
 
@@ -3327,7 +3328,7 @@ EXAMPLES
3327
3328
  my-scratch
3328
3329
  ```
3329
3330
 
3330
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/upsert/bulk.ts)_
3331
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/upsert/bulk.ts)_
3331
3332
 
3332
3333
  ## `sf data upsert resume`
3333
3334
 
@@ -3366,7 +3367,7 @@ EXAMPLES
3366
3367
  $ sf data upsert resume --use-most-recent --target-org my-scratch
3367
3368
  ```
3368
3369
 
3369
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/data/upsert/resume.ts)_
3370
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/data/upsert/resume.ts)_
3370
3371
 
3371
3372
  ## `sf doctor`
3372
3373
 
@@ -3414,7 +3415,7 @@ EXAMPLES
3414
3415
  $ sf doctor --plugin @salesforce/plugin-source
3415
3416
  ```
3416
3417
 
3417
- _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.112/src/commands/doctor.ts)_
3418
+ _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.114/src/commands/doctor.ts)_
3418
3419
 
3419
3420
  ## `sf force data bulk delete`
3420
3421
 
@@ -3461,7 +3462,7 @@ EXAMPLES
3461
3462
  $ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
3462
3463
  ```
3463
3464
 
3464
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/force/data/bulk/delete.ts)_
3465
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/force/data/bulk/delete.ts)_
3465
3466
 
3466
3467
  ## `sf force data bulk status`
3467
3468
 
@@ -3498,7 +3499,7 @@ EXAMPLES
3498
3499
  $ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
3499
3500
  ```
3500
3501
 
3501
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/force/data/bulk/status.ts)_
3502
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/force/data/bulk/status.ts)_
3502
3503
 
3503
3504
  ## `sf force data bulk upsert`
3504
3505
 
@@ -3556,7 +3557,7 @@ EXAMPLES
3556
3557
  --target-org my-scratch
3557
3558
  ```
3558
3559
 
3559
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.80/src/commands/force/data/bulk/upsert.ts)_
3560
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.83/src/commands/force/data/bulk/upsert.ts)_
3560
3561
 
3561
3562
  ## `sf help [COMMAND]`
3562
3563
 
@@ -3576,7 +3577,7 @@ DESCRIPTION
3576
3577
  Display help for sf.
3577
3578
  ```
3578
3579
 
3579
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.39/src/commands/help.ts)_
3580
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.40/src/commands/help.ts)_
3580
3581
 
3581
3582
  ## `sf info releasenotes display`
3582
3583
 
@@ -3616,7 +3617,7 @@ EXAMPLES
3616
3617
  $ sf info releasenotes display --version latest
3617
3618
  ```
3618
3619
 
3619
- _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.112/src/commands/info/releasenotes/display.ts)_
3620
+ _See code: [@salesforce/plugin-info](https://github.com/salesforcecli/plugin-info/blob/3.4.114/src/commands/info/releasenotes/display.ts)_
3620
3621
 
3621
3622
  ## `sf logic get test`
3622
3623
 
@@ -3664,7 +3665,7 @@ EXAMPLES
3664
3665
  $ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
3665
3666
  ```
3666
3667
 
3667
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.14/src/commands/logic/get/test.ts)_
3668
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.15/src/commands/logic/get/test.ts)_
3668
3669
 
3669
3670
  ## `sf logic run test`
3670
3671
 
@@ -3786,7 +3787,7 @@ FLAG DESCRIPTIONS
3786
3787
  --tests Test1 --tests Test2
3787
3788
  ```
3788
3789
 
3789
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.14/src/commands/logic/run/test.ts)_
3790
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.15/src/commands/logic/run/test.ts)_
3790
3791
 
3791
3792
  ## `sf org assign permset`
3792
3793
 
@@ -3881,6 +3882,84 @@ EXAMPLES
3881
3882
 
3882
3883
  _See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.8.0/src/commands/org/assign/permsetlicense.ts)_
3883
3884
 
3885
+ ## `sf org create agent-user`
3886
+
3887
+ Create the default Salesforce user that is used to run an agent.
3888
+
3889
+ ```
3890
+ USAGE
3891
+ $ sf org create agent-user -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [--base-username <value>]
3892
+ [--first-name <value>] [--last-name <value>]
3893
+
3894
+ FLAGS
3895
+ -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
3896
+ configuration variable is already set.
3897
+ --api-version=<value> Override the api version used for api requests made by this command
3898
+ --base-username=<value> Base username pattern. A unique ID is appended to ensure global uniqueness of the
3899
+ usename.
3900
+ --first-name=<value> [default: Agent] First name for the agent user.
3901
+ --last-name=<value> [default: User] Last name for the agent user.
3902
+
3903
+ GLOBAL FLAGS
3904
+ --flags-dir=<value> Import flag values from a directory.
3905
+ --json Format output as json.
3906
+
3907
+ DESCRIPTION
3908
+ Create the default Salesforce user that is used to run an agent.
3909
+
3910
+ You specify this user in the agent's Agent Script file using the "default_agent_user" parameter in the "config" block.
3911
+
3912
+ By default, this command:
3913
+
3914
+ - Generates a user called "Agent User" with a globally unique username. Use flags to change these default names.
3915
+ - Sets the user's email to the new username.
3916
+ - Assigns the user the "Einstein Agent User" profile.
3917
+ - Assigns the user these required permission sets: AgentforceServiceAgentBase, AgentforceServiceAgentUser,
3918
+ EinsteinGPTPromptTemplateUser
3919
+ - Checks that the user licenses required by the profile and permission sets are available in your org.
3920
+
3921
+ The generated user doesn't have a password. You can’t log into Salesforce using the agent user's username. Only
3922
+ Salesforce users with admin permissions can view or edit an agent user in Setup.
3923
+
3924
+ To assign additional permission sets or licenses after the user was created, use the "org assign permset" or "org
3925
+ assign
3926
+ permsetlicense" commands.
3927
+
3928
+ When the command completes, it displays a summary of what it did, including the new agent user's username and ID, the
3929
+ available licenses associated with the Einstein Agent User profile, and the profile and permission sets assigned to
3930
+ the
3931
+ agent user.
3932
+
3933
+ EXAMPLES
3934
+ Create an agent user with an auto-generated username; create the user in the org with alias "myorg":
3935
+
3936
+ $ sf org create agent-user --target-org myorg
3937
+
3938
+ Create an agent user by specifying a base username pattern; to make the username unique, the command appends a unique
3939
+ identifier:
3940
+ $ sf org create agent-user --base-username service-agent@corp.com --target-org myorg
3941
+
3942
+ Create an agent user with an auto-generated username but the custom name "Service Agent"; create the user in your
3943
+ default org:
3944
+ $ sf org create agent-user --first-name Service --last-name Agent
3945
+
3946
+ FLAG DESCRIPTIONS
3947
+ --base-username=<value> Base username pattern. A unique ID is appended to ensure global uniqueness of the usename.
3948
+
3949
+ Specify a base username in email format, such as "service-agent@corp.com". The command then appends a 12-character
3950
+ globally unique ID (GUID) to the name before the "@" sign, which ensures that the username is globally unique across
3951
+ all
3952
+ Salesforce orgs and sandboxes.
3953
+
3954
+ For example, if you specify "service-agent@corp.com", then the username might be
3955
+ "service-agent.a1b2c3d4e5f6@corp.com".
3956
+
3957
+ If not specified, the command auto-generates the username using this pattern:
3958
+ "agent.user.<GUID>@your-org-domain.com".
3959
+ ```
3960
+
3961
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/create/agent-user.ts)_
3962
+
3884
3963
  ## `sf org create sandbox`
3885
3964
 
3886
3965
  Create a sandbox org.
@@ -4013,7 +4092,7 @@ FLAG DESCRIPTIONS
4013
4092
  You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
4014
4093
  ```
4015
4094
 
4016
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/create/sandbox.ts)_
4095
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/create/sandbox.ts)_
4017
4096
 
4018
4097
  ## `sf org create scratch`
4019
4098
 
@@ -4195,7 +4274,7 @@ FLAG DESCRIPTIONS
4195
4274
  Omit this flag to have Salesforce generate a unique username for your org.
4196
4275
  ```
4197
4276
 
4198
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/create/scratch.ts)_
4277
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/create/scratch.ts)_
4199
4278
 
4200
4279
  ## `sf org create user`
4201
4280
 
@@ -4349,7 +4428,7 @@ EXAMPLES
4349
4428
  $ sf org delete sandbox --target-org my-sandbox --no-prompt
4350
4429
  ```
4351
4430
 
4352
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/delete/sandbox.ts)_
4431
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/delete/sandbox.ts)_
4353
4432
 
4354
4433
  ## `sf org delete scratch`
4355
4434
 
@@ -4393,7 +4472,7 @@ EXAMPLES
4393
4472
  $ sf org delete scratch --target-org my-scratch-org --no-prompt
4394
4473
  ```
4395
4474
 
4396
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/delete/scratch.ts)_
4475
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/delete/scratch.ts)_
4397
4476
 
4398
4477
  ## `sf org disable tracking`
4399
4478
 
@@ -4432,7 +4511,7 @@ EXAMPLES
4432
4511
  $ sf org disable tracking
4433
4512
  ```
4434
4513
 
4435
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/disable/tracking.ts)_
4514
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/disable/tracking.ts)_
4436
4515
 
4437
4516
  ## `sf org display`
4438
4517
 
@@ -4477,7 +4556,7 @@ EXAMPLES
4477
4556
  $ sf org display --target-org TestOrg1 --verbose
4478
4557
  ```
4479
4558
 
4480
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/display.ts)_
4559
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/display.ts)_
4481
4560
 
4482
4561
  ## `sf org display user`
4483
4562
 
@@ -4558,7 +4637,7 @@ EXAMPLES
4558
4637
  $ sf org enable tracking
4559
4638
  ```
4560
4639
 
4561
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/enable/tracking.ts)_
4640
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/enable/tracking.ts)_
4562
4641
 
4563
4642
  ## `sf org generate password`
4564
4643
 
@@ -4664,7 +4743,7 @@ EXAMPLES
4664
4743
  $ sf org list --clean
4665
4744
  ```
4666
4745
 
4667
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/list.ts)_
4746
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/list.ts)_
4668
4747
 
4669
4748
  ## `sf org list auth`
4670
4749
 
@@ -4803,7 +4882,7 @@ FLAG DESCRIPTIONS
4803
4882
  Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
4804
4883
  ```
4805
4884
 
4806
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/list/metadata.ts)_
4885
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/list/metadata.ts)_
4807
4886
 
4808
4887
  ## `sf org list metadata-types`
4809
4888
 
@@ -4858,7 +4937,7 @@ FLAG DESCRIPTIONS
4858
4937
  Override the api version used for api requests made by this command
4859
4938
  ```
4860
4939
 
4861
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/list/metadata-types.ts)_
4940
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/list/metadata-types.ts)_
4862
4941
 
4863
4942
  ## `sf org list sobject record-counts`
4864
4943
 
@@ -5404,7 +5483,7 @@ EXAMPLES
5404
5483
  $ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
5405
5484
  ```
5406
5485
 
5407
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/open.ts)_
5486
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/open.ts)_
5408
5487
 
5409
5488
  ## `sf org open agent`
5410
5489
 
@@ -5455,7 +5534,7 @@ EXAMPLES
5455
5534
  $ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
5456
5535
  ```
5457
5536
 
5458
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/open/agent.ts)_
5537
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/open/agent.ts)_
5459
5538
 
5460
5539
  ## `sf org open authoring-bundle`
5461
5540
 
@@ -5501,7 +5580,7 @@ EXAMPLES
5501
5580
  $ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
5502
5581
  ```
5503
5582
 
5504
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/open/authoring-bundle.ts)_
5583
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/open/authoring-bundle.ts)_
5505
5584
 
5506
5585
  ## `sf org refresh sandbox`
5507
5586
 
@@ -5604,7 +5683,7 @@ FLAG DESCRIPTIONS
5604
5683
  You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
5605
5684
  ```
5606
5685
 
5607
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/refresh/sandbox.ts)_
5686
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/refresh/sandbox.ts)_
5608
5687
 
5609
5688
  ## `sf org resume sandbox`
5610
5689
 
@@ -5667,7 +5746,7 @@ FLAG DESCRIPTIONS
5667
5746
  returns the job ID. To resume checking the sandbox creation, rerun this command.
5668
5747
  ```
5669
5748
 
5670
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/resume/sandbox.ts)_
5749
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/resume/sandbox.ts)_
5671
5750
 
5672
5751
  ## `sf org resume scratch`
5673
5752
 
@@ -5720,7 +5799,7 @@ FLAG DESCRIPTIONS
5720
5799
  returns the job ID. To resume checking the scratch creation, rerun this command.
5721
5800
  ```
5722
5801
 
5723
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.73/src/commands/org/resume/scratch.ts)_
5802
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.75/src/commands/org/resume/scratch.ts)_
5724
5803
 
5725
5804
  ## `sf package convert`
5726
5805
 
@@ -9549,7 +9628,7 @@ DESCRIPTION
9549
9628
  Once you select a command, hit enter and it will show the help for that command.
9550
9629
  ```
9551
9630
 
9552
- _See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.40/src/commands/search.ts)_
9631
+ _See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.41/src/commands/search.ts)_
9553
9632
 
9554
9633
  ## `sf sobject describe`
9555
9634
 
@@ -9596,7 +9675,7 @@ EXAMPLES
9596
9675
  $ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
9597
9676
  ```
9598
9677
 
9599
- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.99/src/commands/sobject/describe.ts)_
9678
+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.100/src/commands/sobject/describe.ts)_
9600
9679
 
9601
9680
  ## `sf sobject list`
9602
9681
 
@@ -9635,7 +9714,7 @@ EXAMPLES
9635
9714
  $ sf sobject list --sobject custom --target-org my-scratch-org
9636
9715
  ```
9637
9716
 
9638
- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.99/src/commands/sobject/list.ts)_
9717
+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.100/src/commands/sobject/list.ts)_
9639
9718
 
9640
9719
  ## `sf template generate analytics template`
9641
9720
 
@@ -9679,7 +9758,7 @@ FLAG DESCRIPTIONS
9679
9758
  directory.
9680
9759
  ```
9681
9760
 
9682
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/analytics/template.ts)_
9761
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/analytics/template.ts)_
9683
9762
 
9684
9763
  ## `sf template generate apex class`
9685
9764
 
@@ -9739,7 +9818,7 @@ FLAG DESCRIPTIONS
9739
9818
  Supplied parameter values or default values are filled into a copy of the template.
9740
9819
  ```
9741
9820
 
9742
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/apex/class.ts)_
9821
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/apex/class.ts)_
9743
9822
 
9744
9823
  ## `sf template generate apex trigger`
9745
9824
 
@@ -9809,7 +9888,7 @@ FLAG DESCRIPTIONS
9809
9888
  Supplied parameter values or default values are filled into a copy of the template.
9810
9889
  ```
9811
9890
 
9812
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/apex/trigger.ts)_
9891
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/apex/trigger.ts)_
9813
9892
 
9814
9893
  ## `sf template generate digital-experience site`
9815
9894
 
@@ -9863,7 +9942,7 @@ FLAG DESCRIPTIONS
9863
9942
  project, defaults to the current directory.
9864
9943
  ```
9865
9944
 
9866
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/digital-experience/site.ts)_
9945
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/digital-experience/site.ts)_
9867
9946
 
9868
9947
  ## `sf template generate flexipage`
9869
9948
 
@@ -9945,7 +10024,7 @@ FLAG DESCRIPTIONS
9945
10024
  'Custom_Object__c'. This sets the `sobjectType` field in the FlexiPage metadata.
9946
10025
  ```
9947
10026
 
9948
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/flexipage/index.ts)_
10027
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/flexipage/index.ts)_
9949
10028
 
9950
10029
  ## `sf template generate lightning app`
9951
10030
 
@@ -10001,7 +10080,7 @@ FLAG DESCRIPTIONS
10001
10080
  Supplied parameter values or default values are filled into a copy of the template.
10002
10081
  ```
10003
10082
 
10004
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/lightning/app.ts)_
10083
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/lightning/app.ts)_
10005
10084
 
10006
10085
  ## `sf template generate lightning component`
10007
10086
 
@@ -10071,7 +10150,7 @@ FLAG DESCRIPTIONS
10071
10150
  Supplied parameter values or default values are filled into a copy of the template.
10072
10151
  ```
10073
10152
 
10074
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/lightning/component.ts)_
10153
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/lightning/component.ts)_
10075
10154
 
10076
10155
  ## `sf template generate lightning event`
10077
10156
 
@@ -10127,7 +10206,7 @@ FLAG DESCRIPTIONS
10127
10206
  Supplied parameter values or default values are filled into a copy of the template.
10128
10207
  ```
10129
10208
 
10130
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/lightning/event.ts)_
10209
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/lightning/event.ts)_
10131
10210
 
10132
10211
  ## `sf template generate lightning interface`
10133
10212
 
@@ -10183,7 +10262,7 @@ FLAG DESCRIPTIONS
10183
10262
  Supplied parameter values or default values are filled into a copy of the template.
10184
10263
  ```
10185
10264
 
10186
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/lightning/interface.ts)_
10265
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/lightning/interface.ts)_
10187
10266
 
10188
10267
  ## `sf template generate lightning test`
10189
10268
 
@@ -10239,7 +10318,7 @@ FLAG DESCRIPTIONS
10239
10318
  Supplied parameter values or default values are filled into a copy of the template.
10240
10319
  ```
10241
10320
 
10242
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/lightning/test.ts)_
10321
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/lightning/test.ts)_
10243
10322
 
10244
10323
  ## `sf template generate project`
10245
10324
 
@@ -10352,7 +10431,7 @@ FLAG DESCRIPTIONS
10352
10431
  Override the api version used for api requests made by this command
10353
10432
  ```
10354
10433
 
10355
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/project/index.ts)_
10434
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/project/index.ts)_
10356
10435
 
10357
10436
  ## `sf template generate static-resource`
10358
10437
 
@@ -10415,7 +10494,7 @@ FLAG DESCRIPTIONS
10415
10494
  etc.
10416
10495
  ```
10417
10496
 
10418
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/static-resource/index.ts)_
10497
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/static-resource/index.ts)_
10419
10498
 
10420
10499
  ## `sf template generate visualforce component`
10421
10500
 
@@ -10472,7 +10551,7 @@ FLAG DESCRIPTIONS
10472
10551
  Supplied parameter values or default values are filled into a copy of the template.
10473
10552
  ```
10474
10553
 
10475
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/visualforce/component.ts)_
10554
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/visualforce/component.ts)_
10476
10555
 
10477
10556
  ## `sf template generate visualforce page`
10478
10557
 
@@ -10523,7 +10602,7 @@ FLAG DESCRIPTIONS
10523
10602
  The name can be up to 40 characters and must start with a letter.
10524
10603
  ```
10525
10604
 
10526
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.1/src/commands/template/generate/visualforce/page.ts)_
10605
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.11.4/src/commands/template/generate/visualforce/page.ts)_
10527
10606
 
10528
10607
  ## `sf update [CHANNEL]`
10529
10608
 
@@ -10561,7 +10640,7 @@ EXAMPLES
10561
10640
  $ sf update --available
10562
10641
  ```
10563
10642
 
10564
- _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.24/src/commands/update.ts)_
10643
+ _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.26/src/commands/update.ts)_
10565
10644
 
10566
10645
  ## `sf version`
10567
10646
 
@@ -10615,7 +10694,7 @@ EXAMPLES
10615
10694
  $ sf which "foo bar baz"
10616
10695
  ```
10617
10696
 
10618
- _See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.45/src/commands/which.ts)_
10697
+ _See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.46/src/commands/which.ts)_
10619
10698
 
10620
10699
  <!-- commandsstop -->
10621
10700