@salesforce/cli 2.49.0 → 2.49.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
24
24
  $ sf COMMAND
25
25
  running command...
26
26
  $ sf (--version|-v)
27
- @salesforce/cli/2.49.0 linux-x64 node-v20.14.0
27
+ @salesforce/cli/2.49.2 linux-x64 node-v20.15.0
28
28
  $ sf --help [COMMAND]
29
29
  USAGE
30
30
  $ sf COMMAND
@@ -519,7 +519,7 @@ FLAG DESCRIPTIONS
519
519
  directory.
520
520
  ```
521
521
 
522
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/get/log.ts)_
522
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/get/log.ts)_
523
523
 
524
524
  ## `sf apex get test`
525
525
 
@@ -570,10 +570,10 @@ EXAMPLES
570
570
  default org):
571
571
 
572
572
  $ sf apex get test --test-run-id <test run id> --code-coverage --output-dir <path to outputdir> --target-org \
573
- me@myorg',
573
+ me@myorg'
574
574
  ```
575
575
 
576
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/get/test.ts)_
576
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/get/test.ts)_
577
577
 
578
578
  ## `sf apex list log`
579
579
 
@@ -613,7 +613,7 @@ EXAMPLES
613
613
  $ sf apex list log --target-org me@my.org
614
614
  ```
615
615
 
616
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/list/log.ts)_
616
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/list/log.ts)_
617
617
 
618
618
  ## `sf apex run`
619
619
 
@@ -660,7 +660,7 @@ EXAMPLES
660
660
  $ sf apex run
661
661
  ```
662
662
 
663
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/run.ts)_
663
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/run.ts)_
664
664
 
665
665
  ## `sf apex run test`
666
666
 
@@ -740,14 +740,45 @@ EXAMPLES
740
740
 
741
741
  $ sf apex run test --test-level RunLocalTests --output-dir <path to outputdir> --target-org me@my.org
742
742
 
743
+ Run all tests in the org asynchronously:
744
+
745
+ $ sf apex run test --target-org myscratch
746
+
747
+ Run all tests synchronously; the command waits to display the test results until all tests finish:
748
+
749
+ $ sf apex run test --synchronous
750
+
751
+ Run specific tests using the --test-level flag:
752
+
753
+ $ sf apex run test --test-level RunLocalTests
754
+
755
+ Run Apex tests on all the methods in the specified class; output results in Test Anything Protocol (TAP) format and
756
+ request code coverage results:
757
+
758
+ $ sf apex run test --class-names TestA --class-names TestB --result-format tap --code-coverage
759
+
760
+ Run Apex tests on methods specified using the standard Class.method notation; if you specify a test class without a
761
+ method, the command runs all methods in the class:
762
+
763
+ $ sf apex run test --tests TestA.excitingMethod --tests TestA.boringMethod --tests TestB
764
+
765
+ Run Apex tests on methods specified using the standard Class.method notation with a namespace:
766
+
767
+ $ sf apex run test --tests ns.TestA.excitingMethod --tests ns.TestA.boringMethod --tests ns.TestB
768
+
743
769
  FLAG DESCRIPTIONS
744
770
  -l, --test-level=RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests Level of tests to run; default is RunLocalTests.
745
771
 
746
772
  Here's what the levels mean:
747
773
 
748
- - RunSpecifiedTests — Only the tests that you specify are run.
749
- - RunLocalTests All tests in your org are run, except the ones that originate from installed managed packages.
750
- - RunAllTestsInOrg All tests are in your org and in installed managed packages are run
774
+ - RunSpecifiedTests — Only the tests that you specify in the runTests option are run. Code coverage requirements
775
+ differ from the default coverage requirements when using this test level. The executed tests must cover each class
776
+ and trigger in the deployment package for a minimum of 75% code coverage. This coverage is computed for each class
777
+ and triggers individually, and is different than the overall coverage percentage.
778
+ - RunLocalTests — All local tests in your org, including tests that originate from no-namespaced unlocked packages,
779
+ are run. The tests that originate from installed managed packages and namespaced unlocked packages aren't run. This
780
+ test level is the default for production deployments that include Apex classes or triggers.
781
+ - RunAllTestsInOrg — All tests are run. The tests include all tests in your org.
751
782
 
752
783
  -n, --class-names=<value>... Apex test class names to run; default is all classes.
753
784
 
@@ -770,7 +801,7 @@ FLAG DESCRIPTIONS
770
801
  --tests Test1 --tests Test2
771
802
  ```
772
803
 
773
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/run/test.ts)_
804
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/run/test.ts)_
774
805
 
775
806
  ## `sf apex tail log`
776
807
 
@@ -813,7 +844,7 @@ EXAMPLES
813
844
  $ sf apex tail log --color --skip-trace-flag
814
845
  ```
815
846
 
816
- _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.0/src/commands/apex/tail/log.ts)_
847
+ _See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.2.1/src/commands/apex/tail/log.ts)_
817
848
 
818
849
  ## `sf autocomplete [SHELL]`
819
850
 
@@ -2660,7 +2691,7 @@ FLAG DESCRIPTIONS
2660
2691
  sandbox.
2661
2692
  ```
2662
2693
 
2663
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/create/sandbox.ts)_
2694
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/create/sandbox.ts)_
2664
2695
 
2665
2696
  ## `sf org create scratch`
2666
2697
 
@@ -2814,7 +2845,7 @@ FLAG DESCRIPTIONS
2814
2845
  Omit this flag to have Salesforce generate a unique username for your org.
2815
2846
  ```
2816
2847
 
2817
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/create/scratch.ts)_
2848
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/create/scratch.ts)_
2818
2849
 
2819
2850
  ## `sf org create user`
2820
2851
 
@@ -2968,7 +2999,7 @@ EXAMPLES
2968
2999
  $ sf org delete sandbox --target-org my-sandbox --no-prompt
2969
3000
  ```
2970
3001
 
2971
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/delete/sandbox.ts)_
3002
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/delete/sandbox.ts)_
2972
3003
 
2973
3004
  ## `sf org delete scratch`
2974
3005
 
@@ -3012,7 +3043,7 @@ EXAMPLES
3012
3043
  $ sf org delete scratch --target-org my-scratch-org --no-prompt
3013
3044
  ```
3014
3045
 
3015
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/delete/scratch.ts)_
3046
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/delete/scratch.ts)_
3016
3047
 
3017
3048
  ## `sf org disable tracking`
3018
3049
 
@@ -3051,7 +3082,7 @@ EXAMPLES
3051
3082
  $ sf org disable tracking
3052
3083
  ```
3053
3084
 
3054
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/disable/tracking.ts)_
3085
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/disable/tracking.ts)_
3055
3086
 
3056
3087
  ## `sf org display`
3057
3088
 
@@ -3096,7 +3127,7 @@ EXAMPLES
3096
3127
  $ sf org display --target-org TestOrg1 --verbose
3097
3128
  ```
3098
3129
 
3099
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/display.ts)_
3130
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/display.ts)_
3100
3131
 
3101
3132
  ## `sf org display user`
3102
3133
 
@@ -3177,7 +3208,7 @@ EXAMPLES
3177
3208
  $ sf org enable tracking
3178
3209
  ```
3179
3210
 
3180
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/enable/tracking.ts)_
3211
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/enable/tracking.ts)_
3181
3212
 
3182
3213
  ## `sf org generate password`
3183
3214
 
@@ -3283,7 +3314,7 @@ EXAMPLES
3283
3314
  $ sf org list --clean
3284
3315
  ```
3285
3316
 
3286
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/list.ts)_
3317
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/list.ts)_
3287
3318
 
3288
3319
  ## `sf org list auth`
3289
3320
 
@@ -3422,7 +3453,7 @@ FLAG DESCRIPTIONS
3422
3453
  Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
3423
3454
  ```
3424
3455
 
3425
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/list/metadata.ts)_
3456
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/list/metadata.ts)_
3426
3457
 
3427
3458
  ## `sf org list metadata-types`
3428
3459
 
@@ -3477,7 +3508,7 @@ FLAG DESCRIPTIONS
3477
3508
  Override the api version used for api requests made by this command
3478
3509
  ```
3479
3510
 
3480
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/list/metadata-types.ts)_
3511
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/list/metadata-types.ts)_
3481
3512
 
3482
3513
  ## `sf org list sobject record-counts`
3483
3514
 
@@ -4051,7 +4082,7 @@ EXAMPLES
4051
4082
  $ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
4052
4083
  ```
4053
4084
 
4054
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/open.ts)_
4085
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/open.ts)_
4055
4086
 
4056
4087
  ## `sf org refresh sandbox`
4057
4088
 
@@ -4130,7 +4161,7 @@ FLAG DESCRIPTIONS
4130
4161
  By default, a sandbox auto-activates after a refresh. Use this flag to control sandbox activation manually.
4131
4162
  ```
4132
4163
 
4133
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/refresh/sandbox.ts)_
4164
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/refresh/sandbox.ts)_
4134
4165
 
4135
4166
  ## `sf org resume sandbox`
4136
4167
 
@@ -4193,7 +4224,7 @@ FLAG DESCRIPTIONS
4193
4224
  returns the job ID. To resume checking the sandbox creation, rerun this command.
4194
4225
  ```
4195
4226
 
4196
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/resume/sandbox.ts)_
4227
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/resume/sandbox.ts)_
4197
4228
 
4198
4229
  ## `sf org resume scratch`
4199
4230
 
@@ -4240,7 +4271,7 @@ FLAG DESCRIPTIONS
4240
4271
  The job ID is valid for 24 hours after you start the scratch org creation.
4241
4272
  ```
4242
4273
 
4243
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.0/src/commands/org/resume/scratch.ts)_
4274
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.3.1/src/commands/org/resume/scratch.ts)_
4244
4275
 
4245
4276
  ## `sf package create`
4246
4277
 
@@ -4319,7 +4350,7 @@ FLAG DESCRIPTIONS
4319
4350
  Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
4320
4351
  ```
4321
4352
 
4322
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/create.ts)_
4353
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/create.ts)_
4323
4354
 
4324
4355
  ## `sf package delete`
4325
4356
 
@@ -4361,7 +4392,7 @@ EXAMPLES
4361
4392
  $ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
4362
4393
  ```
4363
4394
 
4364
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/delete.ts)_
4395
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/delete.ts)_
4365
4396
 
4366
4397
  ## `sf package install`
4367
4398
 
@@ -4459,7 +4490,7 @@ FLAG DESCRIPTIONS
4459
4490
  specify DeprecateOnly or Delete only for unlocked package upgrades.
4460
4491
  ```
4461
4492
 
4462
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/install.ts)_
4493
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/install.ts)_
4463
4494
 
4464
4495
  ## `sf package install report`
4465
4496
 
@@ -4492,7 +4523,7 @@ EXAMPLES
4492
4523
  $ sf package install report --request-id 0Hf... --target-org me@example.com
4493
4524
  ```
4494
4525
 
4495
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/install/report.ts)_
4526
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/install/report.ts)_
4496
4527
 
4497
4528
  ## `sf package installed list`
4498
4529
 
@@ -4524,7 +4555,7 @@ EXAMPLES
4524
4555
  $ sf package installed list --target-org me@example.com
4525
4556
  ```
4526
4557
 
4527
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/installed/list.ts)_
4558
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/installed/list.ts)_
4528
4559
 
4529
4560
  ## `sf package list`
4530
4561
 
@@ -4562,7 +4593,7 @@ EXAMPLES
4562
4593
  $ sf package list --target-dev-hub devhub@example.com --verbose
4563
4594
  ```
4564
4595
 
4565
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/list.ts)_
4596
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/list.ts)_
4566
4597
 
4567
4598
  ## `sf package uninstall`
4568
4599
 
@@ -4610,7 +4641,7 @@ EXAMPLES
4610
4641
  $ sf package uninstall --package "Undesirable Package Alias"
4611
4642
  ```
4612
4643
 
4613
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/uninstall.ts)_
4644
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/uninstall.ts)_
4614
4645
 
4615
4646
  ## `sf package uninstall report`
4616
4647
 
@@ -4643,7 +4674,7 @@ EXAMPLES
4643
4674
  $ sf package uninstall report --request-id 06y... --target-org me@example.com
4644
4675
  ```
4645
4676
 
4646
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/uninstall/report.ts)_
4677
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/uninstall/report.ts)_
4647
4678
 
4648
4679
  ## `sf package update`
4649
4680
 
@@ -4698,7 +4729,7 @@ FLAG DESCRIPTIONS
4698
4729
  associated with your package.
4699
4730
  ```
4700
4731
 
4701
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/update.ts)_
4732
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/update.ts)_
4702
4733
 
4703
4734
  ## `sf package version create`
4704
4735
 
@@ -4865,7 +4896,7 @@ FLAG DESCRIPTIONS
4865
4896
  periods of no output from commands.
4866
4897
  ```
4867
4898
 
4868
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/version/create.ts)_
4899
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/version/create.ts)_
4869
4900
 
4870
4901
  ## `sf package version create list`
4871
4902
 
@@ -4926,7 +4957,7 @@ EXAMPLES
4926
4957
  $ sf package version create list --created-last-days 0 --status Success
4927
4958
  ```
4928
4959
 
4929
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/version/create/list.ts)_
4960
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/version/create/list.ts)_
4930
4961
 
4931
4962
  ## `sf package version create report`
4932
4963
 
@@ -4969,7 +5000,7 @@ EXAMPLES
4969
5000
  $ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
4970
5001
  ```
4971
5002
 
4972
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/version/create/report.ts)_
5003
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/version/create/report.ts)_
4973
5004
 
4974
5005
  ## `sf package version delete`
4975
5006
 
@@ -5008,7 +5039,7 @@ EXAMPLES
5008
5039
  $ sf package version delete --package 04t... --target-org devhub@example.com
5009
5040
  ```
5010
5041
 
5011
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/version/delete.ts)_
5042
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/version/delete.ts)_
5012
5043
 
5013
5044
  ## `sf package version displayancestry`
5014
5045
 
@@ -5068,7 +5099,7 @@ FLAG DESCRIPTIONS
5068
5099
  You can use the DOT code output in graph visualization software to create tree visualizations.
5069
5100
  ```
5070
5101
 
5071
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/version/displayancestry.ts)_
5102
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/version/displayancestry.ts)_
5072
5103
 
5073
5104
  ## `sf package version list`
5074
5105
 
@@ -5144,7 +5175,7 @@ EXAMPLES
5144
5175
  $ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
5145
5176
  ```
5146
5177
 
5147
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/version/list.ts)_
5178
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/version/list.ts)_
5148
5179
 
5149
5180
  ## `sf package version promote`
5150
5181
 
@@ -5188,7 +5219,7 @@ EXAMPLES
5188
5219
  $ sf package version promote --package "Awesome Package Alias"
5189
5220
  ```
5190
5221
 
5191
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/version/promote.ts)_
5222
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/version/promote.ts)_
5192
5223
 
5193
5224
  ## `sf package version report`
5194
5225
 
@@ -5228,7 +5259,7 @@ EXAMPLES
5228
5259
  $ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
5229
5260
  ```
5230
5261
 
5231
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/version/report.ts)_
5262
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/version/report.ts)_
5232
5263
 
5233
5264
  ## `sf package version update`
5234
5265
 
@@ -5281,7 +5312,7 @@ EXAMPLES
5281
5312
  $ sf package version update --package 04t... --version-description "New Package Version Description"
5282
5313
  ```
5283
5314
 
5284
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package/version/update.ts)_
5315
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package/version/update.ts)_
5285
5316
 
5286
5317
  ## `sf package1 version create`
5287
5318
 
@@ -5348,7 +5379,7 @@ FLAG DESCRIPTIONS
5348
5379
  subscribers.
5349
5380
  ```
5350
5381
 
5351
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package1/version/create.ts)_
5382
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package1/version/create.ts)_
5352
5383
 
5353
5384
  ## `sf package1 version create get`
5354
5385
 
@@ -5381,7 +5412,7 @@ EXAMPLES
5381
5412
  $ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
5382
5413
  ```
5383
5414
 
5384
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package1/version/create/get.ts)_
5415
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package1/version/create/get.ts)_
5385
5416
 
5386
5417
  ## `sf package1 version display`
5387
5418
 
@@ -5415,7 +5446,7 @@ EXAMPLES
5415
5446
  $ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
5416
5447
  ```
5417
5448
 
5418
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package1/version/display.ts)_
5449
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package1/version/display.ts)_
5419
5450
 
5420
5451
  ## `sf package1 version list`
5421
5452
 
@@ -5453,7 +5484,7 @@ FLAG DESCRIPTIONS
5453
5484
  If not specified, shows all versions for all packages (managed and unmanaged) in the org.
5454
5485
  ```
5455
5486
 
5456
- _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.6.1/src/commands/package1/version/list.ts)_
5487
+ _See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/2.7.0/src/commands/package1/version/list.ts)_
5457
5488
 
5458
5489
  ## `sf plugins`
5459
5490
 
@@ -5753,7 +5784,7 @@ FLAG DESCRIPTIONS
5753
5784
  If you specify this parameter, don’t specify --metadata or --source-dir.
5754
5785
  ```
5755
5786
 
5756
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/convert/mdapi.ts)_
5787
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/convert/mdapi.ts)_
5757
5788
 
5758
5789
  ## `sf project convert source`
5759
5790
 
@@ -5765,7 +5796,7 @@ USAGE
5765
5796
  [-p <value>... | -x <value> | -m <value>...]
5766
5797
 
5767
5798
  FLAGS
5768
- -d, --output-dir=<value> [default: metadataPackage_1719035221354] Output directory to store the Metadata
5799
+ -d, --output-dir=<value> [default: metadataPackage_1719527499222] Output directory to store the Metadata
5769
5800
  API–formatted files in.
5770
5801
  -m, --metadata=<value>... Metadata component names to convert.
5771
5802
  -n, --package-name=<value> Name of the package to associate with the metadata-formatted files.
@@ -5826,7 +5857,7 @@ FLAG DESCRIPTIONS
5826
5857
  Override the api version used for api requests made by this command
5827
5858
  ```
5828
5859
 
5829
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/convert/source.ts)_
5860
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/convert/source.ts)_
5830
5861
 
5831
5862
  ## `sf project convert source-behavior`
5832
5863
 
@@ -5883,7 +5914,7 @@ EXAMPLES
5883
5914
  $ sf project convert source-behavior --behavior decomposeCustomLabelsBeta --dry-run --preserve-temp-dir
5884
5915
  ```
5885
5916
 
5886
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/convert/source-behavior.ts)_
5917
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/convert/source-behavior.ts)_
5887
5918
 
5888
5919
  ## `sf project delete source`
5889
5920
 
@@ -6023,7 +6054,7 @@ FLAG DESCRIPTIONS
6023
6054
  - Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
6024
6055
  ```
6025
6056
 
6026
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/delete/source.ts)_
6057
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/delete/source.ts)_
6027
6058
 
6028
6059
  ## `sf project delete tracking`
6029
6060
 
@@ -6060,7 +6091,7 @@ EXAMPLES
6060
6091
  $ sf project delete tracking --target-org my-scratch
6061
6092
  ```
6062
6093
 
6063
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/delete/tracking.ts)_
6094
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/delete/tracking.ts)_
6064
6095
 
6065
6096
  ## `sf project deploy cancel`
6066
6097
 
@@ -6132,7 +6163,7 @@ FLAG DESCRIPTIONS
6132
6163
  project deploy report".
6133
6164
  ```
6134
6165
 
6135
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/cancel.ts)_
6166
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/cancel.ts)_
6136
6167
 
6137
6168
  ## `sf project deploy preview`
6138
6169
 
@@ -6215,7 +6246,7 @@ FLAG DESCRIPTIONS
6215
6246
  All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
6216
6247
  ```
6217
6248
 
6218
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/preview.ts)_
6249
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/preview.ts)_
6219
6250
 
6220
6251
  ## `sf project deploy quick`
6221
6252
 
@@ -6308,7 +6339,7 @@ ERROR CODES
6308
6339
  Canceling (69) The deploy is being canceled.
6309
6340
  ```
6310
6341
 
6311
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/quick.ts)_
6342
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/quick.ts)_
6312
6343
 
6313
6344
  ## `sf project deploy report`
6314
6345
 
@@ -6400,7 +6431,7 @@ FLAG DESCRIPTIONS
6400
6431
  --coverage-formatters lcov --coverage-formatters clover
6401
6432
  ```
6402
6433
 
6403
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/report.ts)_
6434
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/report.ts)_
6404
6435
 
6405
6436
  ## `sf project deploy resume`
6406
6437
 
@@ -6497,7 +6528,7 @@ ERROR CODES
6497
6528
  Canceling (69) The deploy is being canceled.
6498
6529
  ```
6499
6530
 
6500
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/resume.ts)_
6531
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/resume.ts)_
6501
6532
 
6502
6533
  ## `sf project deploy start`
6503
6534
 
@@ -6507,8 +6538,8 @@ Deploy metadata to an org from your local project.
6507
6538
  USAGE
6508
6539
  $ sf project deploy start -o <value> [--json] [--flags-dir <value>] [-a <value>] [--async | -w <minutes>] [--concise |
6509
6540
  --verbose] [--dry-run] [-c] [-r] [-g] [--single-package ] [-t <value>...] [-l
6510
- NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg] [--purge-on-delete [-x <value> | -d <value>... | -m
6511
- <value>... | --metadata-dir <value>]] [--pre-destructive-changes <value> ] [--post-destructive-changes <value> ]
6541
+ NoTestRun|RunSpecifiedTests|RunLocalTests|RunAllTestsInOrg] [--purge-on-delete] [--pre-destructive-changes <value>
6542
+ [-x <value> | -d <value>... | -m <value>... | --metadata-dir <value>]] [--post-destructive-changes <value> ]
6512
6543
  [--coverage-formatters clover|cobertura|html-spa|html|json|json-summary|lcovonly|none|teamcity|text|text-summary...]
6513
6544
  [--junit] [--results-dir <value>]
6514
6545
 
@@ -6636,6 +6667,16 @@ EXAMPLES
6636
6667
 
6637
6668
  $ sf project deploy start --metadata ApexClass --test-level RunLocalTests
6638
6669
 
6670
+ Deploy all metadata formatted files in the "MDAPI" directory:
6671
+
6672
+ $ sf project deploy start --metadata-dir MDAPI
6673
+
6674
+ Deploy all metadata formatted files in the "MDAPI" directory; items listed in the MDAPI/destructiveChangesPre.xml
6675
+ and MDAPI/destructiveChangesPost.xml manifests are immediately eligible for deletion rather than stored in the
6676
+ Recycle Bin:
6677
+
6678
+ $ sf project deploy start --metadata-dir MDAPI --purge-on-delete
6679
+
6639
6680
  FLAG DESCRIPTIONS
6640
6681
  -a, --api-version=<value> Target API version for the deploy.
6641
6682
 
@@ -6740,7 +6781,7 @@ ERROR CODES
6740
6781
  Canceling (69) The deploy is being canceled.
6741
6782
  ```
6742
6783
 
6743
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/start.ts)_
6784
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/start.ts)_
6744
6785
 
6745
6786
  ## `sf project deploy validate`
6746
6787
 
@@ -6930,7 +6971,7 @@ ERROR CODES
6930
6971
  Canceling (69) The deploy is being canceled.
6931
6972
  ```
6932
6973
 
6933
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/deploy/validate.ts)_
6974
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/deploy/validate.ts)_
6934
6975
 
6935
6976
  ## `sf project generate`
6936
6977
 
@@ -7112,7 +7153,7 @@ EXAMPLES
7112
7153
  $ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
7113
7154
  ```
7114
7155
 
7115
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/generate/manifest.ts)_
7156
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/generate/manifest.ts)_
7116
7157
 
7117
7158
  ## `sf project list ignored`
7118
7159
 
@@ -7154,7 +7195,7 @@ EXAMPLES
7154
7195
  $ sf project list ignored --source-dir package.xml
7155
7196
  ```
7156
7197
 
7157
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/list/ignored.ts)_
7198
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/list/ignored.ts)_
7158
7199
 
7159
7200
  ## `sf project reset tracking`
7160
7201
 
@@ -7203,7 +7244,7 @@ EXAMPLES
7203
7244
  $ sf project reset tracking --revision 30
7204
7245
  ```
7205
7246
 
7206
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/reset/tracking.ts)_
7247
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/reset/tracking.ts)_
7207
7248
 
7208
7249
  ## `sf project retrieve preview`
7209
7250
 
@@ -7257,7 +7298,7 @@ FLAG DESCRIPTIONS
7257
7298
  production orgs.
7258
7299
  ```
7259
7300
 
7260
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/retrieve/preview.ts)_
7301
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/retrieve/preview.ts)_
7261
7302
 
7262
7303
  ## `sf project retrieve start`
7263
7304
 
@@ -7424,7 +7465,7 @@ ENVIRONMENT VARIABLES
7424
7465
  SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
7425
7466
  ```
7426
7467
 
7427
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.9/src/commands/project/retrieve/start.ts)_
7468
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.9.11/src/commands/project/retrieve/start.ts)_
7428
7469
 
7429
7470
  ## `sf schema generate field`
7430
7471
 
@@ -7816,7 +7857,7 @@ EXAMPLES
7816
7857
  $ sf update --available
7817
7858
  ```
7818
7859
 
7819
- _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.4.3/src/commands/update.ts)_
7860
+ _See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.4.4/src/commands/update.ts)_
7820
7861
 
7821
7862
  ## `sf version`
7822
7863
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.49.0",
3
+ "version": "2.49.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.49.0",
9
+ "version": "2.49.2",
10
10
  "hasInstallScript": true,
11
11
  "license": "BSD-3-Clause",
12
12
  "dependencies": {
@@ -18,21 +18,21 @@
18
18
  "@oclif/plugin-not-found": "3.2.6",
19
19
  "@oclif/plugin-plugins": "5.3.2",
20
20
  "@oclif/plugin-search": "1.2.0",
21
- "@oclif/plugin-update": "4.4.3",
21
+ "@oclif/plugin-update": "4.4.4",
22
22
  "@oclif/plugin-version": "2.2.4",
23
23
  "@oclif/plugin-warn-if-update-available": "3.1.6",
24
24
  "@oclif/plugin-which": "3.2.4",
25
25
  "@salesforce/core": "^8.0.2",
26
26
  "@salesforce/kit": "^3.1.0",
27
- "@salesforce/plugin-apex": "3.2.0",
27
+ "@salesforce/plugin-apex": "3.2.1",
28
28
  "@salesforce/plugin-auth": "3.6.27",
29
29
  "@salesforce/plugin-data": "3.5.2",
30
- "@salesforce/plugin-deploy-retrieve": "3.9.9",
30
+ "@salesforce/plugin-deploy-retrieve": "3.9.11",
31
31
  "@salesforce/plugin-info": "3.3.11",
32
32
  "@salesforce/plugin-limits": "3.3.15",
33
33
  "@salesforce/plugin-marketplace": "1.2.17",
34
- "@salesforce/plugin-org": "4.3.0",
35
- "@salesforce/plugin-packaging": "2.6.1",
34
+ "@salesforce/plugin-org": "4.3.1",
35
+ "@salesforce/plugin-packaging": "2.7.0",
36
36
  "@salesforce/plugin-schema": "3.3.16",
37
37
  "@salesforce/plugin-settings": "2.3.6",
38
38
  "@salesforce/plugin-sobject": "1.4.14",
@@ -4376,9 +4376,9 @@
4376
4376
  }
4377
4377
  },
4378
4378
  "node_modules/@oclif/plugin-update": {
4379
- "version": "4.4.3",
4380
- "resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.4.3.tgz",
4381
- "integrity": "sha512-hJyAht6Vhxs4tX1T0Kud1OH8/12agrGZtyS/klLv/H0LKA/XlTRomTD8FYyEXGjHlNvraDxgnVWqGtDCul6i1Q==",
4379
+ "version": "4.4.4",
4380
+ "resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.4.4.tgz",
4381
+ "integrity": "sha512-Qfj4jkDVcxV3u1XuDKFMkXFKgTNO7tJzHVxGMj8VBA2qVSouRzgQ5itdc459T5tT344ixxKwYxdE4GrFGOoB0A==",
4382
4382
  "license": "MIT",
4383
4383
  "dependencies": {
4384
4384
  "@inquirer/select": "^2.3.6",
@@ -4970,18 +4970,18 @@
4970
4970
  }
4971
4971
  },
4972
4972
  "node_modules/@salesforce/packaging": {
4973
- "version": "4.0.3",
4974
- "resolved": "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.0.3.tgz",
4975
- "integrity": "sha512-rASSaRkEgr7nXJixeeNAATHmTnOv9qPl7Sc0ylzhnjBDvBb6UedxiTxv97zJzINIV+hdyBDXqvwqmedoIXEc6A==",
4973
+ "version": "4.1.0",
4974
+ "resolved": "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.1.0.tgz",
4975
+ "integrity": "sha512-fLIbpoP885fL1FgkM+5aHxAjXQlIBEBamHGHeqTF/BzXbK7Y2bo/Gqdj2FVIw6KACGnowRK83GJNfD961J0CsQ==",
4976
4976
  "license": "BSD-3-Clause",
4977
4977
  "dependencies": {
4978
4978
  "@jsforce/jsforce-node": "^3.2.0",
4979
- "@salesforce/core": "^8.0.2",
4979
+ "@salesforce/core": "^8.0.3",
4980
4980
  "@salesforce/kit": "^3.1.6",
4981
4981
  "@salesforce/schemas": "^1.9.0",
4982
4982
  "@salesforce/source-deploy-retrieve": "^12.0.1",
4983
- "@salesforce/ts-types": "^2.0.9",
4984
- "@salesforce/types": "^1.1.0",
4983
+ "@salesforce/ts-types": "^2.0.10",
4984
+ "@salesforce/types": "^1.2.0",
4985
4985
  "fast-xml-parser": "^4.4.0",
4986
4986
  "globby": "^11",
4987
4987
  "graphology": "^0.25.4",
@@ -5004,9 +5004,9 @@
5004
5004
  }
5005
5005
  },
5006
5006
  "node_modules/@salesforce/plugin-apex": {
5007
- "version": "3.2.0",
5008
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.2.0.tgz",
5009
- "integrity": "sha512-H/KY/8faIiskb6yGEgMR5zFYRbGJ34zqs890LTMVm+HJgwCmOCM738OXsxOWqYW0MvMj3v6t2v3TaE4jFpv8cQ==",
5007
+ "version": "3.2.1",
5008
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.2.1.tgz",
5009
+ "integrity": "sha512-lPmc10izyyzaItlXlgCHrI8qk7EthMzvAIFDWhAXlfTDYI1ODsSOoroWv57Dyjl3pXPrnCH39inc3+LtJjCFjg==",
5010
5010
  "license": "BSD-3-Clause",
5011
5011
  "dependencies": {
5012
5012
  "@oclif/core": "^4",
@@ -5239,14 +5239,14 @@
5239
5239
  "license": "MIT"
5240
5240
  },
5241
5241
  "node_modules/@salesforce/plugin-deploy-retrieve": {
5242
- "version": "3.9.9",
5243
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.9.9.tgz",
5244
- "integrity": "sha512-orDEUFRDf/fwAA2avW2gMFQIydWI1FlZxm9qVDAUbIQ2Oa8ZsNKOac2SIXjv5ppCxpMqnx972LHESQBRuYSQzg==",
5242
+ "version": "3.9.11",
5243
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.9.11.tgz",
5244
+ "integrity": "sha512-rFhkGfp8scILfEsAlgkzRAs9QJoJkEv3SdmQ6pB5gzefMwz1IEdKjARLnwUBgj0+W+fQjL/w4q+7mgM+a8X8/g==",
5245
5245
  "license": "BSD-3-Clause",
5246
5246
  "dependencies": {
5247
5247
  "@oclif/core": "^4.0.3",
5248
5248
  "@salesforce/apex-node": "^6.2.0",
5249
- "@salesforce/core": "^8.0.1",
5249
+ "@salesforce/core": "^8.0.3",
5250
5250
  "@salesforce/kit": "^3.1.6",
5251
5251
  "@salesforce/plugin-info": "^3.3.10",
5252
5252
  "@salesforce/sf-plugins-core": "^11.1.1",
@@ -5312,9 +5312,9 @@
5312
5312
  }
5313
5313
  },
5314
5314
  "node_modules/@salesforce/plugin-org": {
5315
- "version": "4.3.0",
5316
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.3.0.tgz",
5317
- "integrity": "sha512-wPWq7T9nD0tTTYXgJGefKpAdeVF19Qng7nq1qQ/ytOnlKX5uZ3gVtNclESPuHmc2rdEtiCb5cGt5rTm1yViOXw==",
5315
+ "version": "4.3.1",
5316
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.3.1.tgz",
5317
+ "integrity": "sha512-Cl+5C65UEFvfQGPryAgm37OzH4R3yLaYvDhYz8WuGfWa6nsPD+kXRPdHp8nmzs+MWWjETG3xdsyPJ2RI2V9++w==",
5318
5318
  "license": "BSD-3-Clause",
5319
5319
  "dependencies": {
5320
5320
  "@oclif/core": "^4.0.6",
@@ -5338,15 +5338,15 @@
5338
5338
  "license": "MIT"
5339
5339
  },
5340
5340
  "node_modules/@salesforce/plugin-packaging": {
5341
- "version": "2.6.1",
5342
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.6.1.tgz",
5343
- "integrity": "sha512-NVfda1ETRNsXv585qG7+elO1jSmwL502nMgSduoBaqkEPKdkm49ggvczEcrWnmS6seHAHacR6YyO65TotZB5tg==",
5341
+ "version": "2.7.0",
5342
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.7.0.tgz",
5343
+ "integrity": "sha512-s6kDsptCjoeUqGNsej2oVPdzzWnC7rhLtd7zojdTr/kClSTM+QViC7dZG9aVjLy7x3E/hiD9TSd60KrINi7ohQ==",
5344
5344
  "license": "BSD-3-Clause",
5345
5345
  "dependencies": {
5346
5346
  "@oclif/core": "^4",
5347
5347
  "@salesforce/core": "^8.0.1",
5348
5348
  "@salesforce/kit": "^3.1.6",
5349
- "@salesforce/packaging": "^4.0.3",
5349
+ "@salesforce/packaging": "^4.1.0",
5350
5350
  "@salesforce/sf-plugins-core": "^11.1.2",
5351
5351
  "chalk": "^5.3.0"
5352
5352
  },
@@ -6298,9 +6298,9 @@
6298
6298
  }
6299
6299
  },
6300
6300
  "node_modules/@salesforce/types": {
6301
- "version": "1.1.0",
6302
- "resolved": "https://registry.npmjs.org/@salesforce/types/-/types-1.1.0.tgz",
6303
- "integrity": "sha512-nYxyX9cR9A+ltELXHDJNKTjOgGrLj3URVUpAfpPlmEMjTYXkitz/4bJchIsN2r1Ud2kBcxUYtjvPOvKBnP9eiQ==",
6301
+ "version": "1.2.0",
6302
+ "resolved": "https://registry.npmjs.org/@salesforce/types/-/types-1.2.0.tgz",
6303
+ "integrity": "sha512-HHey9SlkmElyNWBoo3DRQMDBkj9cAAwUItkGgzgXo4pCt6DdP1tEkB3QPHElE4KAHk8FVxHGoofs53gFZzEVZg==",
6304
6304
  "license": "BSD-3-Clause",
6305
6305
  "engines": {
6306
6306
  "node": ">=18"
package/oclif.lock CHANGED
@@ -2047,10 +2047,10 @@
2047
2047
  ansi-escapes "^7.0.0"
2048
2048
  inquirer-autocomplete-standalone "^0.8.1"
2049
2049
 
2050
- "@oclif/plugin-update@4.4.3":
2051
- version "4.4.3"
2052
- resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.4.3.tgz"
2053
- integrity sha512-hJyAht6Vhxs4tX1T0Kud1OH8/12agrGZtyS/klLv/H0LKA/XlTRomTD8FYyEXGjHlNvraDxgnVWqGtDCul6i1Q==
2050
+ "@oclif/plugin-update@4.4.4":
2051
+ version "4.4.4"
2052
+ resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.4.4.tgz"
2053
+ integrity sha512-Qfj4jkDVcxV3u1XuDKFMkXFKgTNO7tJzHVxGMj8VBA2qVSouRzgQ5itdc459T5tT344ixxKwYxdE4GrFGOoB0A==
2054
2054
  dependencies:
2055
2055
  "@inquirer/select" "^2.3.6"
2056
2056
  "@oclif/core" "^4"
@@ -2425,18 +2425,18 @@
2425
2425
  dependencies:
2426
2426
  "@salesforce/ts-types" "^2.0.10"
2427
2427
 
2428
- "@salesforce/packaging@^4.0.3":
2429
- version "4.0.3"
2430
- resolved "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.0.3.tgz"
2431
- integrity sha512-rASSaRkEgr7nXJixeeNAATHmTnOv9qPl7Sc0ylzhnjBDvBb6UedxiTxv97zJzINIV+hdyBDXqvwqmedoIXEc6A==
2428
+ "@salesforce/packaging@^4.1.0":
2429
+ version "4.1.0"
2430
+ resolved "https://registry.npmjs.org/@salesforce/packaging/-/packaging-4.1.0.tgz"
2431
+ integrity sha512-fLIbpoP885fL1FgkM+5aHxAjXQlIBEBamHGHeqTF/BzXbK7Y2bo/Gqdj2FVIw6KACGnowRK83GJNfD961J0CsQ==
2432
2432
  dependencies:
2433
2433
  "@jsforce/jsforce-node" "^3.2.0"
2434
- "@salesforce/core" "^8.0.2"
2434
+ "@salesforce/core" "^8.0.3"
2435
2435
  "@salesforce/kit" "^3.1.6"
2436
2436
  "@salesforce/schemas" "^1.9.0"
2437
2437
  "@salesforce/source-deploy-retrieve" "^12.0.1"
2438
- "@salesforce/ts-types" "^2.0.9"
2439
- "@salesforce/types" "^1.1.0"
2438
+ "@salesforce/ts-types" "^2.0.10"
2439
+ "@salesforce/types" "^1.2.0"
2440
2440
  fast-xml-parser "^4.4.0"
2441
2441
  globby "^11"
2442
2442
  graphology "^0.25.4"
@@ -2445,10 +2445,10 @@
2445
2445
  jszip "^3.10.1"
2446
2446
  object-treeify "^2"
2447
2447
 
2448
- "@salesforce/plugin-apex@3.2.0":
2449
- version "3.2.0"
2450
- resolved "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.2.0.tgz"
2451
- integrity sha512-H/KY/8faIiskb6yGEgMR5zFYRbGJ34zqs890LTMVm+HJgwCmOCM738OXsxOWqYW0MvMj3v6t2v3TaE4jFpv8cQ==
2448
+ "@salesforce/plugin-apex@3.2.1":
2449
+ version "3.2.1"
2450
+ resolved "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.2.1.tgz"
2451
+ integrity sha512-lPmc10izyyzaItlXlgCHrI8qk7EthMzvAIFDWhAXlfTDYI1ODsSOoroWv57Dyjl3pXPrnCH39inc3+LtJjCFjg==
2452
2452
  dependencies:
2453
2453
  "@oclif/core" "^4"
2454
2454
  "@salesforce/apex-node" "^6.1.2"
@@ -2503,14 +2503,14 @@
2503
2503
  csv-stringify "^6.5.0"
2504
2504
  form-data "^4.0.0"
2505
2505
 
2506
- "@salesforce/plugin-deploy-retrieve@3.9.9":
2507
- version "3.9.9"
2508
- resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.9.9.tgz"
2509
- integrity sha512-orDEUFRDf/fwAA2avW2gMFQIydWI1FlZxm9qVDAUbIQ2Oa8ZsNKOac2SIXjv5ppCxpMqnx972LHESQBRuYSQzg==
2506
+ "@salesforce/plugin-deploy-retrieve@3.9.11":
2507
+ version "3.9.11"
2508
+ resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.9.11.tgz"
2509
+ integrity sha512-rFhkGfp8scILfEsAlgkzRAs9QJoJkEv3SdmQ6pB5gzefMwz1IEdKjARLnwUBgj0+W+fQjL/w4q+7mgM+a8X8/g==
2510
2510
  dependencies:
2511
2511
  "@oclif/core" "^4.0.3"
2512
2512
  "@salesforce/apex-node" "^6.2.0"
2513
- "@salesforce/core" "^8.0.1"
2513
+ "@salesforce/core" "^8.0.3"
2514
2514
  "@salesforce/kit" "^3.1.6"
2515
2515
  "@salesforce/plugin-info" "^3.3.10"
2516
2516
  "@salesforce/sf-plugins-core" "^11.1.1"
@@ -2556,10 +2556,10 @@
2556
2556
  got "^13.0.0"
2557
2557
  proxy-agent "^6.4.0"
2558
2558
 
2559
- "@salesforce/plugin-org@4.3.0":
2560
- version "4.3.0"
2561
- resolved "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.3.0.tgz"
2562
- integrity sha512-wPWq7T9nD0tTTYXgJGefKpAdeVF19Qng7nq1qQ/ytOnlKX5uZ3gVtNclESPuHmc2rdEtiCb5cGt5rTm1yViOXw==
2559
+ "@salesforce/plugin-org@4.3.1":
2560
+ version "4.3.1"
2561
+ resolved "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.3.1.tgz"
2562
+ integrity sha512-Cl+5C65UEFvfQGPryAgm37OzH4R3yLaYvDhYz8WuGfWa6nsPD+kXRPdHp8nmzs+MWWjETG3xdsyPJ2RI2V9++w==
2563
2563
  dependencies:
2564
2564
  "@oclif/core" "^4.0.6"
2565
2565
  "@salesforce/core" "^8.0.3"
@@ -2571,15 +2571,15 @@
2571
2571
  is-wsl "^3.1.0"
2572
2572
  open "^10.1.0"
2573
2573
 
2574
- "@salesforce/plugin-packaging@2.6.1":
2575
- version "2.6.1"
2576
- resolved "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.6.1.tgz"
2577
- integrity sha512-NVfda1ETRNsXv585qG7+elO1jSmwL502nMgSduoBaqkEPKdkm49ggvczEcrWnmS6seHAHacR6YyO65TotZB5tg==
2574
+ "@salesforce/plugin-packaging@2.7.0":
2575
+ version "2.7.0"
2576
+ resolved "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.7.0.tgz"
2577
+ integrity sha512-s6kDsptCjoeUqGNsej2oVPdzzWnC7rhLtd7zojdTr/kClSTM+QViC7dZG9aVjLy7x3E/hiD9TSd60KrINi7ohQ==
2578
2578
  dependencies:
2579
2579
  "@oclif/core" "^4"
2580
2580
  "@salesforce/core" "^8.0.1"
2581
2581
  "@salesforce/kit" "^3.1.6"
2582
- "@salesforce/packaging" "^4.0.3"
2582
+ "@salesforce/packaging" "^4.1.0"
2583
2583
  "@salesforce/sf-plugins-core" "^11.1.2"
2584
2584
  chalk "^5.3.0"
2585
2585
 
@@ -2851,10 +2851,10 @@
2851
2851
  resolved "https://registry.npmjs.org/@salesforce/ts-types/-/ts-types-2.0.10.tgz"
2852
2852
  integrity sha512-ulGQ1oUGXrmSUi6NGbxZZ7ykSDv439x+WYZpkMgFLC8Dx0TxJXfUAJYeZh7eKO5xI/ob3iyvN+RBcBkp4KFN1w==
2853
2853
 
2854
- "@salesforce/types@^1.1.0":
2855
- version "1.1.0"
2856
- resolved "https://registry.npmjs.org/@salesforce/types/-/types-1.1.0.tgz"
2857
- integrity sha512-nYxyX9cR9A+ltELXHDJNKTjOgGrLj3URVUpAfpPlmEMjTYXkitz/4bJchIsN2r1Ud2kBcxUYtjvPOvKBnP9eiQ==
2854
+ "@salesforce/types@^1.2.0":
2855
+ version "1.2.0"
2856
+ resolved "https://registry.npmjs.org/@salesforce/types/-/types-1.2.0.tgz"
2857
+ integrity sha512-HHey9SlkmElyNWBoo3DRQMDBkj9cAAwUItkGgzgXo4pCt6DdP1tEkB3QPHElE4KAHk8FVxHGoofs53gFZzEVZg==
2858
2858
 
2859
2859
  "@sigstore/bundle@^2.3.0", "@sigstore/bundle@^2.3.1":
2860
2860
  version "2.3.1"
@@ -5337,5 +5337,5 @@
5337
5337
  ]
5338
5338
  }
5339
5339
  },
5340
- "version": "2.49.0"
5340
+ "version": "2.49.2"
5341
5341
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.49.0",
4
+ "version": "2.49.2",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -146,21 +146,21 @@
146
146
  "@oclif/plugin-not-found": "3.2.6",
147
147
  "@oclif/plugin-plugins": "5.3.2",
148
148
  "@oclif/plugin-search": "1.2.0",
149
- "@oclif/plugin-update": "4.4.3",
149
+ "@oclif/plugin-update": "4.4.4",
150
150
  "@oclif/plugin-version": "2.2.4",
151
151
  "@oclif/plugin-warn-if-update-available": "3.1.6",
152
152
  "@oclif/plugin-which": "3.2.4",
153
153
  "@salesforce/core": "^8.0.2",
154
154
  "@salesforce/kit": "^3.1.0",
155
- "@salesforce/plugin-apex": "3.2.0",
155
+ "@salesforce/plugin-apex": "3.2.1",
156
156
  "@salesforce/plugin-auth": "3.6.27",
157
157
  "@salesforce/plugin-data": "3.5.2",
158
- "@salesforce/plugin-deploy-retrieve": "3.9.9",
158
+ "@salesforce/plugin-deploy-retrieve": "3.9.11",
159
159
  "@salesforce/plugin-info": "3.3.11",
160
160
  "@salesforce/plugin-limits": "3.3.15",
161
161
  "@salesforce/plugin-marketplace": "1.2.17",
162
- "@salesforce/plugin-org": "4.3.0",
163
- "@salesforce/plugin-packaging": "2.6.1",
162
+ "@salesforce/plugin-org": "4.3.1",
163
+ "@salesforce/plugin-packaging": "2.7.0",
164
164
  "@salesforce/plugin-schema": "3.3.16",
165
165
  "@salesforce/plugin-settings": "2.3.6",
166
166
  "@salesforce/plugin-sobject": "1.4.14",