@salesforce/cli 2.130.3 → 2.130.5

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.130.3 linux-x64 node-v22.22.1
28
+ @salesforce/cli/2.130.5 linux-x64 node-v22.22.1
29
29
  $ sf --help [COMMAND]
30
30
  USAGE
31
31
  $ sf COMMAND
@@ -212,6 +212,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
212
212
  - [`sf template generate lightning test`](#sf-template-generate-lightning-test)
213
213
  - [`sf template generate project`](#sf-template-generate-project)
214
214
  - [`sf template generate static-resource`](#sf-template-generate-static-resource)
215
+ - [`sf template generate ui-bundle`](#sf-template-generate-ui-bundle)
215
216
  - [`sf template generate visualforce component`](#sf-template-generate-visualforce-component)
216
217
  - [`sf template generate visualforce page`](#sf-template-generate-visualforce-page)
217
218
  - [`sf update [CHANNEL]`](#sf-update-channel)
@@ -265,7 +266,7 @@ EXAMPLES
265
266
  $ sf agent activate --api-name Resort_Manager --version 2 --target-org my-org
266
267
  ```
267
268
 
268
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/activate.ts)_
269
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/activate.ts)_
269
270
 
270
271
  ## `sf agent create`
271
272
 
@@ -332,7 +333,7 @@ EXAMPLES
332
333
  $ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
333
334
  ```
334
335
 
335
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/create.ts)_
336
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/create.ts)_
336
337
 
337
338
  ## `sf agent deactivate`
338
339
 
@@ -373,7 +374,7 @@ EXAMPLES
373
374
  $ sf agent deactivate --api-name Resort_Manager --target-org my-org
374
375
  ```
375
376
 
376
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/deactivate.ts)_
377
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/deactivate.ts)_
377
378
 
378
379
  ## `sf agent generate agent-spec`
379
380
 
@@ -480,7 +481,7 @@ EXAMPLES
480
481
  $ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
481
482
  ```
482
483
 
483
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/generate/agent-spec.ts)_
484
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/generate/agent-spec.ts)_
484
485
 
485
486
  ## `sf agent generate authoring-bundle`
486
487
 
@@ -557,7 +558,7 @@ EXAMPLES
557
558
  other-package-dir/main/default --target-org my-dev-org
558
559
  ```
559
560
 
560
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/generate/authoring-bundle.ts)_
561
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/generate/authoring-bundle.ts)_
561
562
 
562
563
  ## `sf agent generate template`
563
564
 
@@ -619,7 +620,7 @@ EXAMPLES
619
620
  my-package --source-org my-scratch-org
620
621
  ```
621
622
 
622
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/generate/template.ts)_
623
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/generate/template.ts)_
623
624
 
624
625
  ## `sf agent generate test-spec`
625
626
 
@@ -684,7 +685,7 @@ EXAMPLES
684
685
  force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
685
686
  ```
686
687
 
687
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/generate/test-spec.ts)_
688
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/generate/test-spec.ts)_
688
689
 
689
690
  ## `sf agent preview`
690
691
 
@@ -757,7 +758,7 @@ EXAMPLES
757
758
  $ sf agent preview --use-live-actions --apex-debug --output-dir transcripts/my-preview
758
759
  ```
759
760
 
760
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/preview.ts)_
761
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/preview.ts)_
761
762
 
762
763
  ## `sf agent preview end`
763
764
 
@@ -812,7 +813,7 @@ EXAMPLES
812
813
  $ sf agent preview end --authoring-bundle My_Local_Agent
813
814
  ```
814
815
 
815
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/preview/end.ts)_
816
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/preview/end.ts)_
816
817
 
817
818
  ## `sf agent preview send`
818
819
 
@@ -870,7 +871,7 @@ EXAMPLES
870
871
  $ sf agent preview send --utterance "what can you help me with?" --authoring-bundle My_Local_Agent
871
872
  ```
872
873
 
873
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/preview/send.ts)_
874
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/preview/send.ts)_
874
875
 
875
876
  ## `sf agent preview sessions`
876
877
 
@@ -903,7 +904,7 @@ EXAMPLES
903
904
  $ sf agent preview sessions
904
905
  ```
905
906
 
906
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/preview/sessions.ts)_
907
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/preview/sessions.ts)_
907
908
 
908
909
  ## `sf agent preview start`
909
910
 
@@ -960,7 +961,7 @@ EXAMPLES
960
961
  $ sf agent preview start --api-name My_Published_Agent
961
962
  ```
962
963
 
963
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/preview/start.ts)_
964
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/preview/start.ts)_
964
965
 
965
966
  ## `sf agent publish authoring-bundle`
966
967
 
@@ -1009,7 +1010,7 @@ EXAMPLES
1009
1010
  $ sf agent publish authoring-bundle --api-name MyAuthoringbundle --target-org my-dev-org
1010
1011
  ```
1011
1012
 
1012
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/publish/authoring-bundle.ts)_
1013
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/publish/authoring-bundle.ts)_
1013
1014
 
1014
1015
  ## `sf agent test create`
1015
1016
 
@@ -1064,7 +1065,7 @@ EXAMPLES
1064
1065
  $ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
1065
1066
  ```
1066
1067
 
1067
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/test/create.ts)_
1068
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/test/create.ts)_
1068
1069
 
1069
1070
  ## `sf agent test list`
1070
1071
 
@@ -1099,7 +1100,7 @@ EXAMPLES
1099
1100
  $ sf agent test list --target-org my-org
1100
1101
  ```
1101
1102
 
1102
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/test/list.ts)_
1103
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/test/list.ts)_
1103
1104
 
1104
1105
  ## `sf agent test results`
1105
1106
 
@@ -1165,7 +1166,7 @@ FLAG DESCRIPTIONS
1165
1166
  expression when using custom evaluations.
1166
1167
  ```
1167
1168
 
1168
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/test/results.ts)_
1169
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/test/results.ts)_
1169
1170
 
1170
1171
  ## `sf agent test resume`
1171
1172
 
@@ -1238,7 +1239,7 @@ FLAG DESCRIPTIONS
1238
1239
  expression when using custom evaluations.
1239
1240
  ```
1240
1241
 
1241
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/test/resume.ts)_
1242
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/test/resume.ts)_
1242
1243
 
1243
1244
  ## `sf agent test run`
1244
1245
 
@@ -1312,7 +1313,7 @@ FLAG DESCRIPTIONS
1312
1313
  expression when using custom evaluations.
1313
1314
  ```
1314
1315
 
1315
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/test/run.ts)_
1316
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/test/run.ts)_
1316
1317
 
1317
1318
  ## `sf agent validate authoring-bundle`
1318
1319
 
@@ -1359,7 +1360,7 @@ EXAMPLES
1359
1360
  $ sf agent validate authoring-bundle --api-name MyAuthoringBundle --target-org my-dev-org
1360
1361
  ```
1361
1362
 
1362
- _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.12/src/commands/agent/validate/authoring-bundle.ts)_
1363
+ _See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.32.14/src/commands/agent/validate/authoring-bundle.ts)_
1363
1364
 
1364
1365
  ## `sf alias list`
1365
1366
 
@@ -1532,7 +1533,7 @@ FLAG DESCRIPTIONS
1532
1533
  directory.
1533
1534
  ```
1534
1535
 
1535
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.16/src/commands/apex/get/log.ts)_
1536
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.17/src/commands/apex/get/log.ts)_
1536
1537
 
1537
1538
  ## `sf apex get test`
1538
1539
 
@@ -1592,7 +1593,7 @@ EXAMPLES
1592
1593
  me@myorg'
1593
1594
  ```
1594
1595
 
1595
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.16/src/commands/apex/get/test.ts)_
1596
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.17/src/commands/apex/get/test.ts)_
1596
1597
 
1597
1598
  ## `sf apex list log`
1598
1599
 
@@ -1632,7 +1633,7 @@ EXAMPLES
1632
1633
  $ sf apex list log --target-org me@my.org
1633
1634
  ```
1634
1635
 
1635
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.16/src/commands/apex/list/log.ts)_
1636
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.17/src/commands/apex/list/log.ts)_
1636
1637
 
1637
1638
  ## `sf apex run`
1638
1639
 
@@ -1679,7 +1680,7 @@ EXAMPLES
1679
1680
  $ sf apex run
1680
1681
  ```
1681
1682
 
1682
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.16/src/commands/apex/run.ts)_
1683
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.17/src/commands/apex/run.ts)_
1683
1684
 
1684
1685
  ## `sf apex run test`
1685
1686
 
@@ -1826,7 +1827,7 @@ FLAG DESCRIPTIONS
1826
1827
  --tests Test1 --tests Test2
1827
1828
  ```
1828
1829
 
1829
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.16/src/commands/apex/run/test.ts)_
1830
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.17/src/commands/apex/run/test.ts)_
1830
1831
 
1831
1832
  ## `sf apex tail log`
1832
1833
 
@@ -1869,7 +1870,7 @@ EXAMPLES
1869
1870
  $ sf apex tail log --color --skip-trace-flag
1870
1871
  ```
1871
1872
 
1872
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.16/src/commands/apex/tail/log.ts)_
1873
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.17/src/commands/apex/tail/log.ts)_
1873
1874
 
1874
1875
  ## `sf api request graphql`
1875
1876
 
@@ -1922,7 +1923,7 @@ EXAMPLES
1922
1923
  $ sf api request graphql --body example.txt --stream-to-file output.txt --include
1923
1924
  ```
1924
1925
 
1925
- _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.13/src/commands/api/request/graphql.ts)_
1926
+ _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.14/src/commands/api/request/graphql.ts)_
1926
1927
 
1927
1928
  ## `sf api request rest [URL]`
1928
1929
 
@@ -2031,7 +2032,7 @@ FLAG DESCRIPTIONS
2031
2032
  https://github.com/salesforcecli/plugin-api/tree/main/test/test-files/data-project.
2032
2033
  ```
2033
2034
 
2034
- _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.13/src/commands/api/request/rest.ts)_
2035
+ _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.14/src/commands/api/request/rest.ts)_
2035
2036
 
2036
2037
  ## `sf autocomplete [SHELL]`
2037
2038
 
@@ -2062,7 +2063,7 @@ EXAMPLES
2062
2063
  $ sf autocomplete --refresh-cache
2063
2064
  ```
2064
2065
 
2065
- _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.42/src/commands/autocomplete/index.ts)_
2066
+ _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.43/src/commands/autocomplete/index.ts)_
2066
2067
 
2067
2068
  ## `sf commands`
2068
2069
 
@@ -2344,7 +2345,7 @@ EXAMPLES
2344
2345
  $ sf data bulk results --job-id 7507i000fake341G --target-org my-scratch
2345
2346
  ```
2346
2347
 
2347
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/bulk/results.ts)_
2348
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/bulk/results.ts)_
2348
2349
 
2349
2350
  ## `sf data create file`
2350
2351
 
@@ -2393,7 +2394,7 @@ EXAMPLES
2393
2394
  $ sf data create file --file path/to/astro.png --parent-id a03fakeLoJWPIA3
2394
2395
  ```
2395
2396
 
2396
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/create/file.ts)_
2397
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/create/file.ts)_
2397
2398
 
2398
2399
  ## `sf data create record`
2399
2400
 
@@ -2449,7 +2450,7 @@ EXAMPLES
2449
2450
  TracedEntityId=01p17000000R6bLAAS"
2450
2451
  ```
2451
2452
 
2452
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/create/record.ts)_
2453
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/create/record.ts)_
2453
2454
 
2454
2455
  ## `sf data delete bulk`
2455
2456
 
@@ -2508,7 +2509,7 @@ FLAG DESCRIPTIONS
2508
2509
  and can be enabled only by a system administrator.
2509
2510
  ```
2510
2511
 
2511
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/delete/bulk.ts)_
2512
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/delete/bulk.ts)_
2512
2513
 
2513
2514
  ## `sf data delete record`
2514
2515
 
@@ -2569,7 +2570,7 @@ EXAMPLES
2569
2570
  $ sf data delete record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
2570
2571
  ```
2571
2572
 
2572
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/delete/record.ts)_
2573
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/delete/record.ts)_
2573
2574
 
2574
2575
  ## `sf data delete resume`
2575
2576
 
@@ -2608,7 +2609,7 @@ EXAMPLES
2608
2609
  $ sf data delete resume --use-most-recent --target-org my-scratch
2609
2610
  ```
2610
2611
 
2611
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/delete/resume.ts)_
2612
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/delete/resume.ts)_
2612
2613
 
2613
2614
  ## `sf data export bulk`
2614
2615
 
@@ -2675,7 +2676,7 @@ EXAMPLES
2675
2676
  --result-format json --wait 10 --all-rows
2676
2677
  ```
2677
2678
 
2678
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/export/bulk.ts)_
2679
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/export/bulk.ts)_
2679
2680
 
2680
2681
  ## `sf data export resume`
2681
2682
 
@@ -2714,7 +2715,7 @@ EXAMPLES
2714
2715
  $ sf data export resume --use-most-recent
2715
2716
  ```
2716
2717
 
2717
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/export/resume.ts)_
2718
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/export/resume.ts)_
2718
2719
 
2719
2720
  ## `sf data export tree`
2720
2721
 
@@ -2774,7 +2775,7 @@ EXAMPLES
2774
2775
  my-scratch
2775
2776
  ```
2776
2777
 
2777
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/export/tree.ts)_
2778
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/export/tree.ts)_
2778
2779
 
2779
2780
  ## `sf data get record`
2780
2781
 
@@ -2838,7 +2839,7 @@ EXAMPLES
2838
2839
  $ sf data get record --use-tooling-api --sobject TraceFlag --record-id 7tf8c
2839
2840
  ```
2840
2841
 
2841
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/get/record.ts)_
2842
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/get/record.ts)_
2842
2843
 
2843
2844
  ## `sf data import bulk`
2844
2845
 
@@ -2890,7 +2891,7 @@ EXAMPLES
2890
2891
  $ sf data import bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
2891
2892
  ```
2892
2893
 
2893
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/import/bulk.ts)_
2894
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/import/bulk.ts)_
2894
2895
 
2895
2896
  ## `sf data import resume`
2896
2897
 
@@ -2926,7 +2927,7 @@ EXAMPLES
2926
2927
  $ sf data import resume --use-most-recent --target-org my-scratch
2927
2928
  ```
2928
2929
 
2929
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/import/resume.ts)_
2930
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/import/resume.ts)_
2930
2931
 
2931
2932
  ## `sf data import tree`
2932
2933
 
@@ -2990,7 +2991,7 @@ FLAG DESCRIPTIONS
2990
2991
  - files(array) - Files: An array of files paths to load
2991
2992
  ```
2992
2993
 
2993
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/import/tree.ts)_
2994
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/import/tree.ts)_
2994
2995
 
2995
2996
  ## `sf data query`
2996
2997
 
@@ -3043,7 +3044,7 @@ EXAMPLES
3043
3044
  $ sf data query --query "SELECT Name FROM ApexTrigger" --use-tooling-api
3044
3045
  ```
3045
3046
 
3046
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/query.ts)_
3047
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/query.ts)_
3047
3048
 
3048
3049
  ## `sf data resume`
3049
3050
 
@@ -3080,7 +3081,7 @@ EXAMPLES
3080
3081
  $ sf data resume --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA
3081
3082
  ```
3082
3083
 
3083
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/resume.ts)_
3084
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/resume.ts)_
3084
3085
 
3085
3086
  ## `sf data search`
3086
3087
 
@@ -3130,7 +3131,7 @@ EXAMPLES
3130
3131
  $ sf data search --file query.txt --target-org my-scratch --result-format csv
3131
3132
  ```
3132
3133
 
3133
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/search.ts)_
3134
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/search.ts)_
3134
3135
 
3135
3136
  ## `sf data update bulk`
3136
3137
 
@@ -3185,7 +3186,7 @@ EXAMPLES
3185
3186
  $ sf data update bulk --file accounts.csv --sobject Account --wait 10 --target-org my-scratch
3186
3187
  ```
3187
3188
 
3188
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/update/bulk.ts)_
3189
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/update/bulk.ts)_
3189
3190
 
3190
3191
  ## `sf data update record`
3191
3192
 
@@ -3247,7 +3248,7 @@ EXAMPLES
3247
3248
  "ExpirationDate=2017-12-01T00:58:04.000+0000"
3248
3249
  ```
3249
3250
 
3250
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/update/record.ts)_
3251
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/update/record.ts)_
3251
3252
 
3252
3253
  ## `sf data update resume`
3253
3254
 
@@ -3286,7 +3287,7 @@ EXAMPLES
3286
3287
  $ sf data update resume --use-most-recent
3287
3288
  ```
3288
3289
 
3289
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/update/resume.ts)_
3290
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/update/resume.ts)_
3290
3291
 
3291
3292
  ## `sf data upsert bulk`
3292
3293
 
@@ -3342,7 +3343,7 @@ EXAMPLES
3342
3343
  my-scratch
3343
3344
  ```
3344
3345
 
3345
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/upsert/bulk.ts)_
3346
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/upsert/bulk.ts)_
3346
3347
 
3347
3348
  ## `sf data upsert resume`
3348
3349
 
@@ -3381,7 +3382,7 @@ EXAMPLES
3381
3382
  $ sf data upsert resume --use-most-recent --target-org my-scratch
3382
3383
  ```
3383
3384
 
3384
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/data/upsert/resume.ts)_
3385
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/data/upsert/resume.ts)_
3385
3386
 
3386
3387
  ## `sf doctor`
3387
3388
 
@@ -3476,7 +3477,7 @@ EXAMPLES
3476
3477
  $ sf force data bulk delete --sobject MyObject__c --file files/delete.csv --wait 5 --target-org my-scratch
3477
3478
  ```
3478
3479
 
3479
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/force/data/bulk/delete.ts)_
3480
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/force/data/bulk/delete.ts)_
3480
3481
 
3481
3482
  ## `sf force data bulk status`
3482
3483
 
@@ -3513,7 +3514,7 @@ EXAMPLES
3513
3514
  $ sf force data bulk status --job-id 750xx000000005sAAA --batch-id 751xx000000005nAAA --target-org my-scratch
3514
3515
  ```
3515
3516
 
3516
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/force/data/bulk/status.ts)_
3517
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/force/data/bulk/status.ts)_
3517
3518
 
3518
3519
  ## `sf force data bulk upsert`
3519
3520
 
@@ -3571,7 +3572,7 @@ EXAMPLES
3571
3572
  --target-org my-scratch
3572
3573
  ```
3573
3574
 
3574
- _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.84/src/commands/force/data/bulk/upsert.ts)_
3575
+ _See code: [@salesforce/plugin-data](https://github.com/salesforcecli/plugin-data/blob/4.0.85/src/commands/force/data/bulk/upsert.ts)_
3575
3576
 
3576
3577
  ## `sf help [COMMAND]`
3577
3578
 
@@ -3591,7 +3592,7 @@ DESCRIPTION
3591
3592
  Display help for sf.
3592
3593
  ```
3593
3594
 
3594
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.40/src/commands/help.ts)_
3595
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.41/src/commands/help.ts)_
3595
3596
 
3596
3597
  ## `sf info releasenotes display`
3597
3598
 
@@ -3679,7 +3680,7 @@ EXAMPLES
3679
3680
  $ sf logic get test --test-run-id <test run id> --result-format junit --target-org my-scratch
3680
3681
  ```
3681
3682
 
3682
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.16/src/commands/logic/get/test.ts)_
3683
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.17/src/commands/logic/get/test.ts)_
3683
3684
 
3684
3685
  ## `sf logic run test`
3685
3686
 
@@ -3801,7 +3802,7 @@ FLAG DESCRIPTIONS
3801
3802
  --tests Test1 --tests Test2
3802
3803
  ```
3803
3804
 
3804
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.16/src/commands/logic/run/test.ts)_
3805
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.9.17/src/commands/logic/run/test.ts)_
3805
3806
 
3806
3807
  ## `sf org assign permset`
3807
3808
 
@@ -3972,7 +3973,7 @@ FLAG DESCRIPTIONS
3972
3973
  "agent.user.<GUID>@your-org-domain.com".
3973
3974
  ```
3974
3975
 
3975
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/create/agent-user.ts)_
3976
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/create/agent-user.ts)_
3976
3977
 
3977
3978
  ## `sf org create sandbox`
3978
3979
 
@@ -4106,7 +4107,7 @@ FLAG DESCRIPTIONS
4106
4107
  You can specify either --source-sandbox-name or --source-id when cloning an existing sandbox, but not both.
4107
4108
  ```
4108
4109
 
4109
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/create/sandbox.ts)_
4110
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/create/sandbox.ts)_
4110
4111
 
4111
4112
  ## `sf org create scratch`
4112
4113
 
@@ -4288,7 +4289,7 @@ FLAG DESCRIPTIONS
4288
4289
  Omit this flag to have Salesforce generate a unique username for your org.
4289
4290
  ```
4290
4291
 
4291
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/create/scratch.ts)_
4292
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/create/scratch.ts)_
4292
4293
 
4293
4294
  ## `sf org create user`
4294
4295
 
@@ -4442,7 +4443,7 @@ EXAMPLES
4442
4443
  $ sf org delete sandbox --target-org my-sandbox --no-prompt
4443
4444
  ```
4444
4445
 
4445
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/delete/sandbox.ts)_
4446
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/delete/sandbox.ts)_
4446
4447
 
4447
4448
  ## `sf org delete scratch`
4448
4449
 
@@ -4486,7 +4487,7 @@ EXAMPLES
4486
4487
  $ sf org delete scratch --target-org my-scratch-org --no-prompt
4487
4488
  ```
4488
4489
 
4489
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/delete/scratch.ts)_
4490
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/delete/scratch.ts)_
4490
4491
 
4491
4492
  ## `sf org disable tracking`
4492
4493
 
@@ -4525,7 +4526,7 @@ EXAMPLES
4525
4526
  $ sf org disable tracking
4526
4527
  ```
4527
4528
 
4528
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/disable/tracking.ts)_
4529
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/disable/tracking.ts)_
4529
4530
 
4530
4531
  ## `sf org display`
4531
4532
 
@@ -4570,7 +4571,7 @@ EXAMPLES
4570
4571
  $ sf org display --target-org TestOrg1 --verbose
4571
4572
  ```
4572
4573
 
4573
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/display.ts)_
4574
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/display.ts)_
4574
4575
 
4575
4576
  ## `sf org display user`
4576
4577
 
@@ -4651,7 +4652,7 @@ EXAMPLES
4651
4652
  $ sf org enable tracking
4652
4653
  ```
4653
4654
 
4654
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/enable/tracking.ts)_
4655
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/enable/tracking.ts)_
4655
4656
 
4656
4657
  ## `sf org generate password`
4657
4658
 
@@ -4757,7 +4758,7 @@ EXAMPLES
4757
4758
  $ sf org list --clean
4758
4759
  ```
4759
4760
 
4760
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/list.ts)_
4761
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/list.ts)_
4761
4762
 
4762
4763
  ## `sf org list auth`
4763
4764
 
@@ -4829,7 +4830,7 @@ EXAMPLES
4829
4830
  $ sf org list limits --target-org my-scratch-org
4830
4831
  ```
4831
4832
 
4832
- _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.82/src/commands/org/list/limits.ts)_
4833
+ _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.83/src/commands/org/list/limits.ts)_
4833
4834
 
4834
4835
  ## `sf org list metadata`
4835
4836
 
@@ -4896,7 +4897,7 @@ FLAG DESCRIPTIONS
4896
4897
  Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
4897
4898
  ```
4898
4899
 
4899
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/list/metadata.ts)_
4900
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/list/metadata.ts)_
4900
4901
 
4901
4902
  ## `sf org list metadata-types`
4902
4903
 
@@ -4951,7 +4952,7 @@ FLAG DESCRIPTIONS
4951
4952
  Override the api version used for api requests made by this command
4952
4953
  ```
4953
4954
 
4954
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/list/metadata-types.ts)_
4955
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/list/metadata-types.ts)_
4955
4956
 
4956
4957
  ## `sf org list sobject record-counts`
4957
4958
 
@@ -4997,7 +4998,7 @@ EXAMPLES
4997
4998
  $ sf org list sobject record-counts --sobject Account --sobject Lead --target-org my-scratch-org
4998
4999
  ```
4999
5000
 
5000
- _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.82/src/commands/org/list/sobject/record-counts.ts)_
5001
+ _See code: [@salesforce/plugin-limits](https://github.com/salesforcecli/plugin-limits/blob/3.3.83/src/commands/org/list/sobject/record-counts.ts)_
5001
5002
 
5002
5003
  ## `sf org list users`
5003
5004
 
@@ -5497,7 +5498,7 @@ EXAMPLES
5497
5498
  $ sf org open --source-file force-app/main/default/bots/Coral_Cloud_Agent/Coral_Cloud_Agent.bot-meta.xml
5498
5499
  ```
5499
5500
 
5500
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/open.ts)_
5501
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/open.ts)_
5501
5502
 
5502
5503
  ## `sf org open agent`
5503
5504
 
@@ -5548,7 +5549,7 @@ EXAMPLES
5548
5549
  $ sf org open agent --target-org MyTestOrg1 --browser firefox --api-name Coral_Cloud_Agent
5549
5550
  ```
5550
5551
 
5551
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/open/agent.ts)_
5552
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/open/agent.ts)_
5552
5553
 
5553
5554
  ## `sf org open authoring-bundle`
5554
5555
 
@@ -5594,7 +5595,7 @@ EXAMPLES
5594
5595
  $ sf org open authoring-bundle --target-org MyTestOrg1 --browser firefox
5595
5596
  ```
5596
5597
 
5597
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/open/authoring-bundle.ts)_
5598
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/open/authoring-bundle.ts)_
5598
5599
 
5599
5600
  ## `sf org refresh sandbox`
5600
5601
 
@@ -5697,7 +5698,7 @@ FLAG DESCRIPTIONS
5697
5698
  You can specify either --source-sandbox-name or --source-id when refreshing an existing sandbox, but not both.
5698
5699
  ```
5699
5700
 
5700
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/refresh/sandbox.ts)_
5701
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/refresh/sandbox.ts)_
5701
5702
 
5702
5703
  ## `sf org resume sandbox`
5703
5704
 
@@ -5760,7 +5761,7 @@ FLAG DESCRIPTIONS
5760
5761
  returns the job ID. To resume checking the sandbox creation, rerun this command.
5761
5762
  ```
5762
5763
 
5763
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/resume/sandbox.ts)_
5764
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/resume/sandbox.ts)_
5764
5765
 
5765
5766
  ## `sf org resume scratch`
5766
5767
 
@@ -5813,7 +5814,7 @@ FLAG DESCRIPTIONS
5813
5814
  returns the job ID. To resume checking the scratch creation, rerun this command.
5814
5815
  ```
5815
5816
 
5816
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.77/src/commands/org/resume/scratch.ts)_
5817
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/5.9.78/src/commands/org/resume/scratch.ts)_
5817
5818
 
5818
5819
  ## `sf package convert`
5819
5820
 
@@ -5910,7 +5911,7 @@ FLAG DESCRIPTIONS
5910
5911
  --installation-key-bypass flag is required.
5911
5912
  ```
5912
5913
 
5913
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/convert.ts)_
5914
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/convert.ts)_
5914
5915
 
5915
5916
  ## `sf package create`
5916
5917
 
@@ -5989,7 +5990,7 @@ FLAG DESCRIPTIONS
5989
5990
  Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
5990
5991
  ```
5991
5992
 
5992
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/create.ts)_
5993
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/create.ts)_
5993
5994
 
5994
5995
  ## `sf package delete`
5995
5996
 
@@ -6031,7 +6032,7 @@ EXAMPLES
6031
6032
  $ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
6032
6033
  ```
6033
6034
 
6034
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/delete.ts)_
6035
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/delete.ts)_
6035
6036
 
6036
6037
  ## `sf package install`
6037
6038
 
@@ -6130,7 +6131,7 @@ FLAG DESCRIPTIONS
6130
6131
  - Delete: Delete removed components, except for custom objects and custom fields, that don't have dependencies.
6131
6132
  ```
6132
6133
 
6133
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/install.ts)_
6134
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/install.ts)_
6134
6135
 
6135
6136
  ## `sf package install report`
6136
6137
 
@@ -6163,7 +6164,7 @@ EXAMPLES
6163
6164
  $ sf package install report --request-id 0Hf... --target-org me@example.com
6164
6165
  ```
6165
6166
 
6166
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/install/report.ts)_
6167
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/install/report.ts)_
6167
6168
 
6168
6169
  ## `sf package installed list`
6169
6170
 
@@ -6195,7 +6196,7 @@ EXAMPLES
6195
6196
  $ sf package installed list --target-org me@example.com
6196
6197
  ```
6197
6198
 
6198
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/installed/list.ts)_
6199
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/installed/list.ts)_
6199
6200
 
6200
6201
  ## `sf package list`
6201
6202
 
@@ -6233,7 +6234,7 @@ EXAMPLES
6233
6234
  $ sf package list --target-dev-hub devhub@example.com --verbose
6234
6235
  ```
6235
6236
 
6236
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/list.ts)_
6237
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/list.ts)_
6237
6238
 
6238
6239
  ## `sf package push-upgrade abort`
6239
6240
 
@@ -6272,7 +6273,7 @@ EXAMPLES
6272
6273
  $ sf package push-upgrade abort --push-request-id 0DV... --target-dev-hub devhub@example.com
6273
6274
  ```
6274
6275
 
6275
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/push-upgrade/abort.ts)_
6276
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/push-upgrade/abort.ts)_
6276
6277
 
6277
6278
  ## `sf package push-upgrade list`
6278
6279
 
@@ -6331,7 +6332,7 @@ EXAMPLES
6331
6332
  $ sf package push-upgrade list --package 033xyz –-status Failed
6332
6333
  ```
6333
6334
 
6334
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/push-upgrade/list.ts)_
6335
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/push-upgrade/list.ts)_
6335
6336
 
6336
6337
  ## `sf package push-upgrade report`
6337
6338
 
@@ -6373,7 +6374,7 @@ EXAMPLES
6373
6374
  $ sf package push-upgrade report --push-request-id 0DV... --target-dev-hub devhub@example.com
6374
6375
  ```
6375
6376
 
6376
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/push-upgrade/report.ts)_
6377
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/push-upgrade/report.ts)_
6377
6378
 
6378
6379
  ## `sf package push-upgrade schedule`
6379
6380
 
@@ -6460,7 +6461,7 @@ FLAG DESCRIPTIONS
6460
6461
  Overrides the value of the target-dev-hub configuration variable, if set.
6461
6462
  ```
6462
6463
 
6463
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/push-upgrade/schedule.ts)_
6464
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/push-upgrade/schedule.ts)_
6464
6465
 
6465
6466
  ## `sf package uninstall`
6466
6467
 
@@ -6508,7 +6509,7 @@ EXAMPLES
6508
6509
  $ sf package uninstall --package "Undesirable Package Alias"
6509
6510
  ```
6510
6511
 
6511
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/uninstall.ts)_
6512
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/uninstall.ts)_
6512
6513
 
6513
6514
  ## `sf package uninstall report`
6514
6515
 
@@ -6541,7 +6542,7 @@ EXAMPLES
6541
6542
  $ sf package uninstall report --request-id 06y... --target-org me@example.com
6542
6543
  ```
6543
6544
 
6544
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/uninstall/report.ts)_
6545
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/uninstall/report.ts)_
6545
6546
 
6546
6547
  ## `sf package update`
6547
6548
 
@@ -6609,7 +6610,7 @@ FLAG DESCRIPTIONS
6609
6610
  the Installed Packages page. Only released package versions can be set as the recommended version.
6610
6611
  ```
6611
6612
 
6612
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/update.ts)_
6613
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/update.ts)_
6613
6614
 
6614
6615
  ## `sf package version create`
6615
6616
 
@@ -6786,7 +6787,7 @@ FLAG DESCRIPTIONS
6786
6787
  periods of no output from commands.
6787
6788
  ```
6788
6789
 
6789
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/create.ts)_
6790
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/create.ts)_
6790
6791
 
6791
6792
  ## `sf package version create list`
6792
6793
 
@@ -6847,7 +6848,7 @@ EXAMPLES
6847
6848
  $ sf package version create list --created-last-days 0 --status Success
6848
6849
  ```
6849
6850
 
6850
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/create/list.ts)_
6851
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/create/list.ts)_
6851
6852
 
6852
6853
  ## `sf package version create report`
6853
6854
 
@@ -6890,7 +6891,7 @@ EXAMPLES
6890
6891
  $ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
6891
6892
  ```
6892
6893
 
6893
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/create/report.ts)_
6894
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/create/report.ts)_
6894
6895
 
6895
6896
  ## `sf package version delete`
6896
6897
 
@@ -6931,7 +6932,7 @@ EXAMPLES
6931
6932
  $ sf package version delete --package 04t... --target-org devhub@example.com
6932
6933
  ```
6933
6934
 
6934
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/delete.ts)_
6935
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/delete.ts)_
6935
6936
 
6936
6937
  ## `sf package version displayancestry`
6937
6938
 
@@ -6991,7 +6992,7 @@ FLAG DESCRIPTIONS
6991
6992
  You can use the DOT code output in graph visualization software to create tree visualizations.
6992
6993
  ```
6993
6994
 
6994
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/displayancestry.ts)_
6995
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/displayancestry.ts)_
6995
6996
 
6996
6997
  ## `sf package version displaydependencies`
6997
6998
 
@@ -7053,7 +7054,7 @@ FLAG DESCRIPTIONS
7053
7054
  package, which must be installed last.
7054
7055
  ```
7055
7056
 
7056
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/displaydependencies.ts)_
7057
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/displaydependencies.ts)_
7057
7058
 
7058
7059
  ## `sf package version list`
7059
7060
 
@@ -7129,7 +7130,7 @@ EXAMPLES
7129
7130
  $ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
7130
7131
  ```
7131
7132
 
7132
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/list.ts)_
7133
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/list.ts)_
7133
7134
 
7134
7135
  ## `sf package version promote`
7135
7136
 
@@ -7173,7 +7174,7 @@ EXAMPLES
7173
7174
  $ sf package version promote --package "Awesome Package Alias"
7174
7175
  ```
7175
7176
 
7176
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/promote.ts)_
7177
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/promote.ts)_
7177
7178
 
7178
7179
  ## `sf package version report`
7179
7180
 
@@ -7213,7 +7214,7 @@ EXAMPLES
7213
7214
  $ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
7214
7215
  ```
7215
7216
 
7216
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/report.ts)_
7217
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/report.ts)_
7217
7218
 
7218
7219
  ## `sf package version retrieve`
7219
7220
 
@@ -7258,7 +7259,7 @@ EXAMPLES
7258
7259
  $ sf package version retrieve --package 04tXXX --output-dir my-directory/ --target-dev-hub devhub@example.com
7259
7260
  ```
7260
7261
 
7261
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/retrieve.ts)_
7262
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/retrieve.ts)_
7262
7263
 
7263
7264
  ## `sf package version update`
7264
7265
 
@@ -7311,7 +7312,7 @@ EXAMPLES
7311
7312
  $ sf package version update --package 04t... --version-description "New Package Version Description"
7312
7313
  ```
7313
7314
 
7314
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package/version/update.ts)_
7315
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package/version/update.ts)_
7315
7316
 
7316
7317
  ## `sf package1 version create`
7317
7318
 
@@ -7378,7 +7379,7 @@ FLAG DESCRIPTIONS
7378
7379
  subscribers.
7379
7380
  ```
7380
7381
 
7381
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package1/version/create.ts)_
7382
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package1/version/create.ts)_
7382
7383
 
7383
7384
  ## `sf package1 version create get`
7384
7385
 
@@ -7411,7 +7412,7 @@ EXAMPLES
7411
7412
  $ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
7412
7413
  ```
7413
7414
 
7414
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package1/version/create/get.ts)_
7415
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package1/version/create/get.ts)_
7415
7416
 
7416
7417
  ## `sf package1 version display`
7417
7418
 
@@ -7445,7 +7446,7 @@ EXAMPLES
7445
7446
  $ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
7446
7447
  ```
7447
7448
 
7448
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package1/version/display.ts)_
7449
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package1/version/display.ts)_
7449
7450
 
7450
7451
  ## `sf package1 version list`
7451
7452
 
@@ -7483,7 +7484,7 @@ FLAG DESCRIPTIONS
7483
7484
  If not specified, shows all versions for all packages (managed and unmanaged) in the org.
7484
7485
  ```
7485
7486
 
7486
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.25.17/src/commands/package1/version/list.ts)_
7487
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.26.0/src/commands/package1/version/list.ts)_
7487
7488
 
7488
7489
  ## `sf plugins`
7489
7490
 
@@ -7675,7 +7676,7 @@ EXAMPLES
7675
7676
  $ sf plugins trust verify --npm @scope/npmName
7676
7677
  ```
7677
7678
 
7678
- _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.7.118/src/commands/plugins/trust/verify.ts)_
7679
+ _See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.7.119/src/commands/plugins/trust/verify.ts)_
7679
7680
 
7680
7681
  ## `sf plugins uninstall [PLUGIN]`
7681
7682
 
@@ -7784,7 +7785,7 @@ FLAG DESCRIPTIONS
7784
7785
  If you specify this flag, don’t specify --metadata or --source-dir.
7785
7786
  ```
7786
7787
 
7787
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/convert/mdapi.ts)_
7788
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/convert/mdapi.ts)_
7788
7789
 
7789
7790
  ## `sf project convert source`
7790
7791
 
@@ -7857,7 +7858,7 @@ FLAG DESCRIPTIONS
7857
7858
  Override the api version used for api requests made by this command
7858
7859
  ```
7859
7860
 
7860
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/convert/source.ts)_
7861
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/convert/source.ts)_
7861
7862
 
7862
7863
  ## `sf project convert source-behavior`
7863
7864
 
@@ -7916,7 +7917,7 @@ EXAMPLES
7916
7917
  $ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
7917
7918
  ```
7918
7919
 
7919
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/convert/source-behavior.ts)_
7920
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/convert/source-behavior.ts)_
7920
7921
 
7921
7922
  ## `sf project delete source`
7922
7923
 
@@ -8069,7 +8070,7 @@ FLAG DESCRIPTIONS
8069
8070
  - Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
8070
8071
  ```
8071
8072
 
8072
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/delete/source.ts)_
8073
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/delete/source.ts)_
8073
8074
 
8074
8075
  ## `sf project delete tracking`
8075
8076
 
@@ -8106,7 +8107,7 @@ EXAMPLES
8106
8107
  $ sf project delete tracking --target-org my-scratch
8107
8108
  ```
8108
8109
 
8109
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/delete/tracking.ts)_
8110
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/delete/tracking.ts)_
8110
8111
 
8111
8112
  ## `sf project deploy cancel`
8112
8113
 
@@ -8178,7 +8179,7 @@ FLAG DESCRIPTIONS
8178
8179
  project deploy report".
8179
8180
  ```
8180
8181
 
8181
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/deploy/cancel.ts)_
8182
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/deploy/cancel.ts)_
8182
8183
 
8183
8184
  ## `sf project deploy preview`
8184
8185
 
@@ -8261,7 +8262,7 @@ FLAG DESCRIPTIONS
8261
8262
  All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
8262
8263
  ```
8263
8264
 
8264
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/deploy/preview.ts)_
8265
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/deploy/preview.ts)_
8265
8266
 
8266
8267
  ## `sf project deploy quick`
8267
8268
 
@@ -8354,7 +8355,7 @@ ERROR CODES
8354
8355
  Canceling (69) The deploy is being canceled.
8355
8356
  ```
8356
8357
 
8357
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/deploy/quick.ts)_
8358
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/deploy/quick.ts)_
8358
8359
 
8359
8360
  ## `sf project deploy report`
8360
8361
 
@@ -8446,7 +8447,7 @@ FLAG DESCRIPTIONS
8446
8447
  --coverage-formatters lcov --coverage-formatters clover
8447
8448
  ```
8448
8449
 
8449
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/deploy/report.ts)_
8450
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/deploy/report.ts)_
8450
8451
 
8451
8452
  ## `sf project deploy resume`
8452
8453
 
@@ -8543,7 +8544,7 @@ ERROR CODES
8543
8544
  Canceling (69) The deploy is being canceled.
8544
8545
  ```
8545
8546
 
8546
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/deploy/resume.ts)_
8547
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/deploy/resume.ts)_
8547
8548
 
8548
8549
  ## `sf project deploy start`
8549
8550
 
@@ -8809,7 +8810,7 @@ ERROR CODES
8809
8810
  Canceling (69) The deploy is being canceled.
8810
8811
  ```
8811
8812
 
8812
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/deploy/start.ts)_
8813
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/deploy/start.ts)_
8813
8814
 
8814
8815
  ## `sf project deploy validate`
8815
8816
 
@@ -9013,7 +9014,7 @@ ERROR CODES
9013
9014
  Canceling (69) The deploy is being canceled.
9014
9015
  ```
9015
9016
 
9016
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/deploy/validate.ts)_
9017
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/deploy/validate.ts)_
9017
9018
 
9018
9019
  ## `sf project generate manifest`
9019
9020
 
@@ -9109,7 +9110,7 @@ EXAMPLES
9109
9110
  $ sf project generate manifest --from-org test@myorg.com --excluded-metadata StandardValueSet
9110
9111
  ```
9111
9112
 
9112
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/generate/manifest.ts)_
9113
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/generate/manifest.ts)_
9113
9114
 
9114
9115
  ## `sf project list ignored`
9115
9116
 
@@ -9151,7 +9152,7 @@ EXAMPLES
9151
9152
  $ sf project list ignored --source-dir package.xml
9152
9153
  ```
9153
9154
 
9154
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/list/ignored.ts)_
9155
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/list/ignored.ts)_
9155
9156
 
9156
9157
  ## `sf project reset tracking`
9157
9158
 
@@ -9200,7 +9201,7 @@ EXAMPLES
9200
9201
  $ sf project reset tracking --revision 30
9201
9202
  ```
9202
9203
 
9203
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/reset/tracking.ts)_
9204
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/reset/tracking.ts)_
9204
9205
 
9205
9206
  ## `sf project retrieve preview`
9206
9207
 
@@ -9254,7 +9255,7 @@ FLAG DESCRIPTIONS
9254
9255
  production orgs.
9255
9256
  ```
9256
9257
 
9257
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/retrieve/preview.ts)_
9258
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/retrieve/preview.ts)_
9258
9259
 
9259
9260
  ## `sf project retrieve start`
9260
9261
 
@@ -9435,7 +9436,7 @@ ENVIRONMENT VARIABLES
9435
9436
  SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
9436
9437
  ```
9437
9438
 
9438
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.21/src/commands/project/retrieve/start.ts)_
9439
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.24.23/src/commands/project/retrieve/start.ts)_
9439
9440
 
9440
9441
  ## `sf schema generate field`
9441
9442
 
@@ -9489,7 +9490,7 @@ FLAG DESCRIPTIONS
9489
9490
  If you don't specify this flag, the command prompts you to choose from your local objects.
9490
9491
  ```
9491
9492
 
9492
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.91/src/commands/schema/generate/field.ts)_
9493
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.93/src/commands/schema/generate/field.ts)_
9493
9494
 
9494
9495
  ## `sf schema generate platformevent`
9495
9496
 
@@ -9521,7 +9522,7 @@ EXAMPLES
9521
9522
  $ sf schema generate platformevent --label "My Platform Event"
9522
9523
  ```
9523
9524
 
9524
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.91/src/commands/schema/generate/platformevent.ts)_
9525
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.93/src/commands/schema/generate/platformevent.ts)_
9525
9526
 
9526
9527
  ## `sf schema generate sobject`
9527
9528
 
@@ -9578,7 +9579,7 @@ FLAG DESCRIPTIONS
9578
9579
  - Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
9579
9580
  ```
9580
9581
 
9581
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.91/src/commands/schema/generate/sobject.ts)_
9582
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.93/src/commands/schema/generate/sobject.ts)_
9582
9583
 
9583
9584
  ## `sf schema generate tab`
9584
9585
 
@@ -9626,7 +9627,7 @@ FLAG DESCRIPTIONS
9626
9627
  The API name for a custom object always ends in `__c`, such as `MyObject__c`.
9627
9628
  ```
9628
9629
 
9629
- _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.91/src/commands/schema/generate/tab.ts)_
9630
+ _See code: [@salesforce/plugin-sobject](https://github.com/salesforcecli/plugin-sobject/blob/1.4.93/src/commands/schema/generate/tab.ts)_
9630
9631
 
9631
9632
  ## `sf search`
9632
9633
 
@@ -9642,7 +9643,7 @@ DESCRIPTION
9642
9643
  Once you select a command, hit enter and it will show the help for that command.
9643
9644
  ```
9644
9645
 
9645
- _See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.41/src/commands/search.ts)_
9646
+ _See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.42/src/commands/search.ts)_
9646
9647
 
9647
9648
  ## `sf sobject describe`
9648
9649
 
@@ -9689,7 +9690,7 @@ EXAMPLES
9689
9690
  $ sf sobject describe --sobject ApexCodeCoverage --use-tooling-api
9690
9691
  ```
9691
9692
 
9692
- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.101/src/commands/sobject/describe.ts)_
9693
+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.102/src/commands/sobject/describe.ts)_
9693
9694
 
9694
9695
  ## `sf sobject list`
9695
9696
 
@@ -9728,7 +9729,7 @@ EXAMPLES
9728
9729
  $ sf sobject list --sobject custom --target-org my-scratch-org
9729
9730
  ```
9730
9731
 
9731
- _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.101/src/commands/sobject/list.ts)_
9732
+ _See code: [@salesforce/plugin-schema](https://github.com/salesforcecli/plugin-schema/blob/3.3.102/src/commands/sobject/list.ts)_
9732
9733
 
9733
9734
  ## `sf template generate analytics template`
9734
9735
 
@@ -9772,7 +9773,7 @@ FLAG DESCRIPTIONS
9772
9773
  directory.
9773
9774
  ```
9774
9775
 
9775
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/analytics/template.ts)_
9776
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/analytics/template.ts)_
9776
9777
 
9777
9778
  ## `sf template generate apex class`
9778
9779
 
@@ -9832,7 +9833,7 @@ FLAG DESCRIPTIONS
9832
9833
  Supplied parameter values or default values are filled into a copy of the template.
9833
9834
  ```
9834
9835
 
9835
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/apex/class.ts)_
9836
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/apex/class.ts)_
9836
9837
 
9837
9838
  ## `sf template generate apex trigger`
9838
9839
 
@@ -9902,7 +9903,7 @@ FLAG DESCRIPTIONS
9902
9903
  Supplied parameter values or default values are filled into a copy of the template.
9903
9904
  ```
9904
9905
 
9905
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/apex/trigger.ts)_
9906
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/apex/trigger.ts)_
9906
9907
 
9907
9908
  ## `sf template generate digital-experience site`
9908
9909
 
@@ -9956,7 +9957,7 @@ FLAG DESCRIPTIONS
9956
9957
  project, defaults to the current directory.
9957
9958
  ```
9958
9959
 
9959
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/digital-experience/site.ts)_
9960
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/digital-experience/site.ts)_
9960
9961
 
9961
9962
  ## `sf template generate flexipage`
9962
9963
 
@@ -10038,7 +10039,7 @@ FLAG DESCRIPTIONS
10038
10039
  'Custom_Object__c'. This sets the `sobjectType` field in the FlexiPage metadata.
10039
10040
  ```
10040
10041
 
10041
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/flexipage/index.ts)_
10042
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/flexipage/index.ts)_
10042
10043
 
10043
10044
  ## `sf template generate lightning app`
10044
10045
 
@@ -10094,7 +10095,7 @@ FLAG DESCRIPTIONS
10094
10095
  Supplied parameter values or default values are filled into a copy of the template.
10095
10096
  ```
10096
10097
 
10097
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/lightning/app.ts)_
10098
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/lightning/app.ts)_
10098
10099
 
10099
10100
  ## `sf template generate lightning component`
10100
10101
 
@@ -10164,7 +10165,7 @@ FLAG DESCRIPTIONS
10164
10165
  Supplied parameter values or default values are filled into a copy of the template.
10165
10166
  ```
10166
10167
 
10167
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/lightning/component.ts)_
10168
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/lightning/component.ts)_
10168
10169
 
10169
10170
  ## `sf template generate lightning event`
10170
10171
 
@@ -10220,7 +10221,7 @@ FLAG DESCRIPTIONS
10220
10221
  Supplied parameter values or default values are filled into a copy of the template.
10221
10222
  ```
10222
10223
 
10223
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/lightning/event.ts)_
10224
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/lightning/event.ts)_
10224
10225
 
10225
10226
  ## `sf template generate lightning interface`
10226
10227
 
@@ -10276,7 +10277,7 @@ FLAG DESCRIPTIONS
10276
10277
  Supplied parameter values or default values are filled into a copy of the template.
10277
10278
  ```
10278
10279
 
10279
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/lightning/interface.ts)_
10280
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/lightning/interface.ts)_
10280
10281
 
10281
10282
  ## `sf template generate lightning test`
10282
10283
 
@@ -10332,7 +10333,7 @@ FLAG DESCRIPTIONS
10332
10333
  Supplied parameter values or default values are filled into a copy of the template.
10333
10334
  ```
10334
10335
 
10335
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/lightning/test.ts)_
10336
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/lightning/test.ts)_
10336
10337
 
10337
10338
  ## `sf template generate project`
10338
10339
 
@@ -10430,7 +10431,7 @@ FLAG DESCRIPTIONS
10430
10431
  The analytics template provides similar files and the force-app/main/default/waveTemplates directory.
10431
10432
 
10432
10433
  The reactinternalapp and reactexternalapp templates provide React-based project scaffolding for internal and
10433
- external web application use cases.
10434
+ external UI bundle use cases.
10434
10435
 
10435
10436
  The agent template provides project scaffolding for building Agentforce agents and includes a sample agent called
10436
10437
  Local Info Agent.
@@ -10445,7 +10446,7 @@ FLAG DESCRIPTIONS
10445
10446
  Override the api version used for api requests made by this command
10446
10447
  ```
10447
10448
 
10448
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/project/index.ts)_
10449
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/project/index.ts)_
10449
10450
 
10450
10451
  ## `sf template generate static-resource`
10451
10452
 
@@ -10508,7 +10509,85 @@ FLAG DESCRIPTIONS
10508
10509
  etc.
10509
10510
  ```
10510
10511
 
10511
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/static-resource/index.ts)_
10512
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/static-resource/index.ts)_
10513
+
10514
+ ## `sf template generate ui-bundle`
10515
+
10516
+ Generate a UI bundle.
10517
+
10518
+ ```
10519
+ USAGE
10520
+ $ sf template generate ui-bundle -n <value> [--json] [--flags-dir <value>] [-t default|reactbasic] [-l <value>] [-d <value>]
10521
+ [--api-version <value>]
10522
+
10523
+ FLAGS
10524
+ -d, --output-dir=<value> Directory for saving the created files.
10525
+ -l, --label=<value> Master label for the UI bundle.
10526
+ -n, --name=<value> (required) Name of the generated UI bundle.
10527
+ -t, --template=<option> [default: default] Template to use for file creation.
10528
+ <options: default|reactbasic>
10529
+ --api-version=<value> Override the api version used for api requests made by this command
10530
+
10531
+ GLOBAL FLAGS
10532
+ --flags-dir=<value> Import flag values from a directory.
10533
+ --json Format output as json.
10534
+
10535
+ DESCRIPTION
10536
+ Generate a UI bundle.
10537
+
10538
+ Generates a UI bundle in the specified directory or the current working directory. The UI bundle files are created in
10539
+ a folder with the designated name. UI bundle files must be contained in a parent directory called "uiBundles" in your
10540
+ package directory. Either run this command from an existing directory of this name, or use the --output-dir flag to
10541
+ create one or point to an existing one.
10542
+
10543
+ ALIASES
10544
+ $ sf ui-bundle generate
10545
+
10546
+ EXAMPLES
10547
+ Generate a UI bundle called MyUiBundle in the current directory:
10548
+
10549
+ $ sf template generate ui-bundle --name MyUiBundle
10550
+
10551
+ Generate a React-based UI bundle:
10552
+
10553
+ $ sf template generate ui-bundle --name MyReactApp --template reactbasic
10554
+
10555
+ Generate the UI bundle in the "force-app/main/default/uiBundles" directory:
10556
+
10557
+ $ sf template generate ui-bundle --name MyUiBundle --output-dir force-app/main/default/uiBundles
10558
+
10559
+ FLAG DESCRIPTIONS
10560
+ -d, --output-dir=<value> Directory for saving the created files.
10561
+
10562
+ The location can be an absolute path or relative to the current working directory.
10563
+
10564
+ **Important:** The generator automatically ensures the output directory ends with "uiBundles". If your specified
10565
+ path doesn't end with "uiBundles", it's automatically appended. The UI bundle is created at "<output-dir>/<name>".
10566
+
10567
+ **Examples:**
10568
+
10569
+ - "--output-dir force-app/main/default" → Creates a UI bundle at "force-app/main/default/uiBundles/MyUiBundle/"
10570
+ - "--output-dir force-app/main/default/uiBundles" → Creates a UI bundle at
10571
+ "force-app/main/default/uiBundles/MyUiBundle/" (no change)
10572
+
10573
+ If not specified, the command reads your sfdx-project.json and defaults to "uiBundles" directory within your default
10574
+ package directory. When running outside a Salesforce DX project, defaults to the current directory.
10575
+
10576
+ -l, --label=<value> Master label for the UI bundle.
10577
+
10578
+ If not specified, the label is derived from the name.
10579
+
10580
+ -n, --name=<value> Name of the generated UI bundle.
10581
+
10582
+ This name can contain only underscores and alphanumeric characters, and must be unique in your org. It must begin
10583
+ with a letter, not include spaces, not end with an underscore, and not contain two consecutive underscores.
10584
+
10585
+ -t, --template=default|reactbasic Template to use for file creation.
10586
+
10587
+ Supplied parameter values or default values are filled into a copy of the template.
10588
+ ```
10589
+
10590
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/ui-bundle/index.ts)_
10512
10591
 
10513
10592
  ## `sf template generate visualforce component`
10514
10593
 
@@ -10565,7 +10644,7 @@ FLAG DESCRIPTIONS
10565
10644
  Supplied parameter values or default values are filled into a copy of the template.
10566
10645
  ```
10567
10646
 
10568
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/visualforce/component.ts)_
10647
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/visualforce/component.ts)_
10569
10648
 
10570
10649
  ## `sf template generate visualforce page`
10571
10650
 
@@ -10616,7 +10695,7 @@ FLAG DESCRIPTIONS
10616
10695
  The name can be up to 40 characters and must start with a letter.
10617
10696
  ```
10618
10697
 
10619
- _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.12.1/src/commands/template/generate/visualforce/page.ts)_
10698
+ _See code: [@salesforce/plugin-templates](https://github.com/salesforcecli/plugin-templates/blob/56.13.1/src/commands/template/generate/visualforce/page.ts)_
10620
10699
 
10621
10700
  ## `sf update [CHANNEL]`
10622
10701
 
@@ -10708,7 +10787,7 @@ EXAMPLES
10708
10787
  $ sf which "foo bar baz"
10709
10788
  ```
10710
10789
 
10711
- _See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.46/src/commands/which.ts)_
10790
+ _See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.47/src/commands/which.ts)_
10712
10791
 
10713
10792
  <!-- commandsstop -->
10714
10793