@salesforce/cli 2.31.6 → 2.31.7

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.31.6 linux-x64 node-v20.11.1
27
+ @salesforce/cli/2.31.7 linux-x64 node-v20.11.1
28
28
  $ sf --help [COMMAND]
29
29
  USAGE
30
30
  $ sf COMMAND
@@ -111,6 +111,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
111
111
  - [`sf org login web`](#sf-org-login-web)
112
112
  - [`sf org logout`](#sf-org-logout)
113
113
  - [`sf org open`](#sf-org-open)
114
+ - [`sf org refresh sandbox`](#sf-org-refresh-sandbox)
114
115
  - [`sf org resume sandbox`](#sf-org-resume-sandbox)
115
116
  - [`sf org resume scratch`](#sf-org-resume-scratch)
116
117
  - [`sf package1 version create`](#sf-package1-version-create)
@@ -2453,6 +2454,9 @@ DESCRIPTION
2453
2454
  --name and --license-type flags to specify the two required options. If you want to set an option other than name or
2454
2455
  license type, such as apexClassId, you must use a definition file.
2455
2456
 
2457
+ You can also use this command to clone an existing sandbox. Use the --clone flag to specify the existing sandbox name
2458
+ and the --name flag to the name of the new sandbox.
2459
+
2456
2460
  ALIASES
2457
2461
  $ sf env create sandbox
2458
2462
 
@@ -2460,7 +2464,7 @@ EXAMPLES
2460
2464
  Create a sandbox org using a definition file and give it the alias "MyDevSandbox". The production org that contains
2461
2465
  the sandbox license has the alias "prodOrg".
2462
2466
 
2463
- $ sf org create sandbox -f config/dev-sandbox-def.json --alias MyDevSandbox --target-org prodOrg
2467
+ $ sf org create sandbox --definition-file config/dev-sandbox-def.json --alias MyDevSandbox --target-org prodOrg
2464
2468
 
2465
2469
  Create a sandbox org by directly specifying its name and type of license (Developer) instead of using a definition
2466
2470
  file. Set the sandbox org as your default.
@@ -2468,6 +2472,12 @@ EXAMPLES
2468
2472
  $ sf org create sandbox --name mysandbox --license-type Developer --alias MyDevSandbox --target-org prodOrg \
2469
2473
  --set-default
2470
2474
 
2475
+ Clone the existing sandbox with name "ExistingSandbox" and name the new sandbox "NewClonedSandbox". Set the new
2476
+ sandbox as your default org. Wait for 30 minutes for the sandbox creation to complete.
2477
+
2478
+ $ sf org create sandbox --clone ExistingSandbox --name NewClonedSandbox --target-org prodOrg --alias \
2479
+ MyDevSandbox --set-default --wait 30
2480
+
2471
2481
  FLAG DESCRIPTIONS
2472
2482
  -a, --alias=<value> Alias for the sandbox org.
2473
2483
 
@@ -2479,14 +2489,15 @@ FLAG DESCRIPTIONS
2479
2489
 
2480
2490
  -c, --clone=<value> Name of the sandbox org to clone.
2481
2491
 
2482
- The value of clone must be an existing sandbox in the same target-org.
2492
+ The value of --clone must be an existing sandbox. The existing sandbox, and the new sandbox specified with the
2493
+ --name flag, must both be associated with the production org (--target-org) that contains the sandbox licenses.
2483
2494
 
2484
2495
  -f, --definition-file=<value> Path to a sandbox definition file.
2485
2496
 
2486
2497
  The sandbox definition file is a blueprint for the sandbox. You can create different definition files for each
2487
2498
  sandbox type that you use in the development process. See
2488
2499
  <https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_sandbox_definition.htm> for all
2489
- the options you can specify in the defintion file.
2500
+ the options you can specify in the definition file.
2490
2501
 
2491
2502
  -n, --name=<value> Name of the sandbox org.
2492
2503
 
@@ -2522,7 +2533,7 @@ FLAG DESCRIPTIONS
2522
2533
  sandbox.
2523
2534
  ```
2524
2535
 
2525
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/create/sandbox.ts)_
2536
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/create/sandbox.ts)_
2526
2537
 
2527
2538
  ## `sf org create scratch`
2528
2539
 
@@ -2675,7 +2686,7 @@ FLAG DESCRIPTIONS
2675
2686
  Omit this flag to have Salesforce generate a unique username for your org.
2676
2687
  ```
2677
2688
 
2678
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/create/scratch.ts)_
2689
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/create/scratch.ts)_
2679
2690
 
2680
2691
  ## `sf org create user`
2681
2692
 
@@ -2825,7 +2836,7 @@ EXAMPLES
2825
2836
  $ sf org delete sandbox --target-org my-sandbox --no-prompt
2826
2837
  ```
2827
2838
 
2828
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/delete/sandbox.ts)_
2839
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/delete/sandbox.ts)_
2829
2840
 
2830
2841
  ## `sf org delete scratch`
2831
2842
 
@@ -2867,7 +2878,7 @@ EXAMPLES
2867
2878
  $ sf org delete scratch --target-org my-scratch-org --no-prompt
2868
2879
  ```
2869
2880
 
2870
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/delete/scratch.ts)_
2881
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/delete/scratch.ts)_
2871
2882
 
2872
2883
  ## `sf org disable tracking`
2873
2884
 
@@ -2905,7 +2916,7 @@ EXAMPLES
2905
2916
  $ sf org disable tracking
2906
2917
  ```
2907
2918
 
2908
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/disable/tracking.ts)_
2919
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/disable/tracking.ts)_
2909
2920
 
2910
2921
  ## `sf org display`
2911
2922
 
@@ -2949,7 +2960,7 @@ EXAMPLES
2949
2960
  $ sf org display --target-org TestOrg1 --verbose
2950
2961
  ```
2951
2962
 
2952
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/display.ts)_
2963
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/display.ts)_
2953
2964
 
2954
2965
  ## `sf org display user`
2955
2966
 
@@ -3028,7 +3039,7 @@ EXAMPLES
3028
3039
  $ sf org enable tracking
3029
3040
  ```
3030
3041
 
3031
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/enable/tracking.ts)_
3042
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/enable/tracking.ts)_
3032
3043
 
3033
3044
  ## `sf org generate password`
3034
3045
 
@@ -3131,7 +3142,7 @@ EXAMPLES
3131
3142
  $ sf org list --clean
3132
3143
  ```
3133
3144
 
3134
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/list.ts)_
3145
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/list.ts)_
3135
3146
 
3136
3147
  ## `sf org list auth`
3137
3148
 
@@ -3266,7 +3277,7 @@ FLAG DESCRIPTIONS
3266
3277
  Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
3267
3278
  ```
3268
3279
 
3269
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/list/metadata.ts)_
3280
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/list/metadata.ts)_
3270
3281
 
3271
3282
  ## `sf org list metadata-types`
3272
3283
 
@@ -3320,7 +3331,7 @@ FLAG DESCRIPTIONS
3320
3331
  Override the api version used for api requests made by this command
3321
3332
  ```
3322
3333
 
3323
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/list/metadata-types.ts)_
3334
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/list/metadata-types.ts)_
3324
3335
 
3325
3336
  ## `sf org list sobject record-counts`
3326
3337
 
@@ -3884,7 +3895,79 @@ EXAMPLES
3884
3895
  $ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
3885
3896
  ```
3886
3897
 
3887
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/open.ts)_
3898
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/open.ts)_
3899
+
3900
+ ## `sf org refresh sandbox`
3901
+
3902
+ Refresh a sandbox org using the sandbox name.
3903
+
3904
+ ```
3905
+ USAGE
3906
+ $ sf org refresh sandbox -o <value> [--json] [--auto-activate] [-w <value> | --async] [-i <value> | ] [-n <value>] [-f
3907
+ <value>] [--no-prompt]
3908
+
3909
+ FLAGS
3910
+ -f, --definition-file=<value> Path to a sandbox definition file for overriding its configuration when you refresh it.
3911
+ -i, --poll-interval=<seconds> [default: [object Object]] Number of seconds to wait between status polling requests.
3912
+ -n, --name=<value> Name of the existing sandbox org in your production org that you want to refresh.
3913
+ -o, --target-org=<value> (required) Username or alias of the production org that contains the sandbox license.
3914
+ -w, --wait=<minutes> [default: [object Object]] Number of minutes to poll for sandbox refresh status.
3915
+ --async Request the sandbox refresh, but don't wait for it to complete.
3916
+ --[no-]auto-activate Activates the sandbox after a successful refresh.
3917
+ --no-prompt Don't prompt for confirmation about the sandbox refresh.
3918
+
3919
+ GLOBAL FLAGS
3920
+ --json Format output as json.
3921
+
3922
+ DESCRIPTION
3923
+ Refresh a sandbox org using the sandbox name.
3924
+
3925
+ Refreshing a sandbox copies the metadata, and optionally data, from your production org to the refreshed sandbox org.
3926
+ You can optionally specify a definition file if you want to change the configuration of the refreshed sandbox, such as
3927
+ its license type or template ID.
3928
+
3929
+ You're not allowed to change the sandbox name when you refresh it with this command. If you want to change the sandbox
3930
+ name, first delete it with the "org delete sandbox" command. And then recreate it with the "org create sandbox"
3931
+ command and give it a new name.
3932
+
3933
+ EXAMPLES
3934
+ Refresh the sandbox named "devSbx1". The production org that contains the sandbox license has the alias "prodOrg".
3935
+
3936
+ $ sf org refresh sandbox --name devSbx1 --target-org prodOrg
3937
+
3938
+ Refresh the sandbox named "devSbx2", and override the configuration of the refreshed sandbox with the properties in
3939
+ the specified defintion file. The default target org is the production org, so you don't need to specify the
3940
+ `--target-org` flag in this case.
3941
+
3942
+ $ sf org refresh sandbox --name devSbx2 --definition-file devSbx2-config.json
3943
+
3944
+ Refresh the sandbox using the name defined in the definition file. The production org that contains the sandbox
3945
+ license has the alias "prodOrg".
3946
+
3947
+ $ sf org refresh sandbox --definition-file devSbx3-config.json --target-org prodOrg
3948
+
3949
+ FLAG DESCRIPTIONS
3950
+ -f, --definition-file=<value> Path to a sandbox definition file for overriding its configuration when you refresh it.
3951
+
3952
+ The sandbox definition file is a blueprint for the sandbox; use the file to change the sandbox configuration during
3953
+ a refresh. If you don't want to change the sandbox configuration when you refresh it, then simply use the --name
3954
+ flag to specify the sandbox and don't use this flag. See
3955
+ <https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_sandbox_definition.htm> for all
3956
+ the options you can specify in the definition file.
3957
+
3958
+ -w, --wait=<minutes> Number of minutes to poll for sandbox refresh status.
3959
+
3960
+ If the command continues to run after the wait period, the CLI returns control of the terminal to you and displays
3961
+ the "sf org resume sandbox" command for you run to check the status of the refresh. The displayed command includes
3962
+ the job ID for the running sandbox refresh.
3963
+
3964
+ --async Request the sandbox refresh, but don't wait for it to complete.
3965
+
3966
+ The command immediately displays the job ID and returns control of the terminal to you. This way, you can continue
3967
+ to use the CLI. To check the status of the sandbox refresh, run "sf org resume sandbox".
3968
+ ```
3969
+
3970
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/refresh/sandbox.ts)_
3888
3971
 
3889
3972
  ## `sf org resume sandbox`
3890
3973
 
@@ -3946,7 +4029,7 @@ FLAG DESCRIPTIONS
3946
4029
  returns the job ID. To resume checking the sandbox creation, rerun this command.
3947
4030
  ```
3948
4031
 
3949
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/resume/sandbox.ts)_
4032
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/resume/sandbox.ts)_
3950
4033
 
3951
4034
  ## `sf org resume scratch`
3952
4035
 
@@ -3992,7 +4075,7 @@ FLAG DESCRIPTIONS
3992
4075
  The job ID is valid for 24 hours after you start the scratch org creation.
3993
4076
  ```
3994
4077
 
3995
- _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.3.16/src/commands/org/resume/scratch.ts)_
4078
+ _See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.4.0/src/commands/org/resume/scratch.ts)_
3996
4079
 
3997
4080
  ## `sf package1 version create`
3998
4081
 
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.31.6",
3
+ "version": "2.31.7",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.31.6",
9
+ "version": "2.31.7",
10
10
  "hasInstallScript": true,
11
11
  "license": "BSD-3-Clause",
12
12
  "dependencies": {
13
13
  "@inquirer/select": "^1.3.1",
14
- "@oclif/core": "3.19.7",
14
+ "@oclif/core": "3.20.0",
15
15
  "@oclif/plugin-autocomplete": "3.0.11",
16
16
  "@oclif/plugin-commands": "3.1.6",
17
17
  "@oclif/plugin-help": "6.0.14",
@@ -30,7 +30,7 @@
30
30
  "@salesforce/plugin-info": "3.0.28",
31
31
  "@salesforce/plugin-limits": "3.1.12",
32
32
  "@salesforce/plugin-marketplace": "1.0.26",
33
- "@salesforce/plugin-org": "3.3.16",
33
+ "@salesforce/plugin-org": "3.4.0",
34
34
  "@salesforce/plugin-packaging": "2.1.11",
35
35
  "@salesforce/plugin-schema": "3.1.6",
36
36
  "@salesforce/plugin-settings": "2.0.29",
@@ -40,7 +40,7 @@
40
40
  "@salesforce/plugin-templates": "56.0.19",
41
41
  "@salesforce/plugin-trust": "3.3.14",
42
42
  "@salesforce/plugin-user": "3.3.0",
43
- "@salesforce/sf-plugins-core": "7.1.13",
43
+ "@salesforce/sf-plugins-core": "7.1.14",
44
44
  "chalk": "^5.3.0",
45
45
  "debug": "^4.3.4",
46
46
  "strip-ansi": "^7.1.0"
@@ -56,7 +56,7 @@
56
56
  "@salesforce/ts-sinon": "^1.4.19",
57
57
  "@types/debug": "^4.1.12",
58
58
  "aws-sdk": "^2.1565.0",
59
- "oclif": "^4.4.16",
59
+ "oclif": "^4.4.19",
60
60
  "ts-node": "^10.9.1",
61
61
  "typescript": "^5"
62
62
  },
@@ -3997,9 +3997,9 @@
3997
3997
  }
3998
3998
  },
3999
3999
  "node_modules/@oclif/core": {
4000
- "version": "3.19.7",
4001
- "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.19.7.tgz",
4002
- "integrity": "sha512-8Vq2shLqRd7+3CpAEG8VZ8b8F6ldkzhNh8pEFPPeY4bTO0xOGJB3WiggZ/zQ30EvLhZQwU/eJpN8Vw7M2x6NcA==",
4000
+ "version": "3.20.0",
4001
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.20.0.tgz",
4002
+ "integrity": "sha512-8BajhglY8frYGAS1whAukeouFZUN9MgQoLfNXtScPVEAjPlaD2BbSIAYQH2yF2qb/iVvbj/1DwYS3gqicYOq1A==",
4003
4003
  "license": "MIT",
4004
4004
  "dependencies": {
4005
4005
  "@types/cli-progress": "^3.11.5",
@@ -7931,9 +7931,9 @@
7931
7931
  }
7932
7932
  },
7933
7933
  "node_modules/@salesforce/core": {
7934
- "version": "6.5.6",
7935
- "resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.5.6.tgz",
7936
- "integrity": "sha512-ycUvOQi5MYVbDcdYgQ+99ym0FxrSo3c//2IHNkEYX0XdaTapN/63WKZ8hQufKYyucGnGZsPEhVWvrOR6oUV8qQ==",
7934
+ "version": "6.6.0",
7935
+ "resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.6.0.tgz",
7936
+ "integrity": "sha512-bewX4fU3vTyCmcrRC74FstDaJI22itWaglFPlOiU4q8Z5sbu6SSHu5BmJ5ok/4BsEhQ8hzh1xvrmmLqwXcTRfg==",
7937
7937
  "license": "BSD-3-Clause",
7938
7938
  "dependencies": {
7939
7939
  "@salesforce/kit": "^3.0.15",
@@ -8734,15 +8734,15 @@
8734
8734
  }
8735
8735
  },
8736
8736
  "node_modules/@salesforce/plugin-org": {
8737
- "version": "3.3.16",
8738
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-3.3.16.tgz",
8739
- "integrity": "sha512-lPeCA/zr7JMXij2Jo+DMaMdpishfhIHE/iFafsIbT/DrEz+FypwcNmBfoREYvQj01gsFp8dYk7ihZBH3tNQZIw==",
8737
+ "version": "3.4.0",
8738
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-3.4.0.tgz",
8739
+ "integrity": "sha512-JQ/MTOmdslfpPzNr/FeglVLTmBnGwsfsJ1o5MOOPgXgZQTVnVIZdof4nZPfFq9nRo2EjIhYaUVLy2MaMD7eqUg==",
8740
8740
  "license": "BSD-3-Clause",
8741
8741
  "dependencies": {
8742
8742
  "@oclif/core": "^3.18.1",
8743
- "@salesforce/core": "^6.5.1",
8743
+ "@salesforce/core": "^6.6.0",
8744
8744
  "@salesforce/kit": "^3.0.15",
8745
- "@salesforce/sf-plugins-core": "^7.1.12",
8745
+ "@salesforce/sf-plugins-core": "^7.1.14",
8746
8746
  "@salesforce/source-deploy-retrieve": "^10.3.8",
8747
8747
  "chalk": "^5.3.0",
8748
8748
  "change-case": "^5.4.3",
@@ -9197,15 +9197,15 @@
9197
9197
  "license": "ISC"
9198
9198
  },
9199
9199
  "node_modules/@salesforce/sf-plugins-core": {
9200
- "version": "7.1.13",
9201
- "resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.13.tgz",
9202
- "integrity": "sha512-JQpxdzHg1vfOKRMYVEmEQ0efXCSmExzCoyFDpHQ8plngQ7jLjYKT6GrwLoAf25DbU0mA8l2duhnzInwL4SN2eA==",
9200
+ "version": "7.1.14",
9201
+ "resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-7.1.14.tgz",
9202
+ "integrity": "sha512-KDX9vYDeVOkozRrsjVh4Pvzay++7bWWKmaHtGOwkZrBHb3mVEdCp0ryF0WaDTfaEvgNKn7kiZEDSO7oEhJSzug==",
9203
9203
  "license": "BSD-3-Clause",
9204
9204
  "dependencies": {
9205
9205
  "@inquirer/confirm": "^2.0.17",
9206
9206
  "@inquirer/password": "^1.1.16",
9207
9207
  "@oclif/core": "^3.19.6",
9208
- "@salesforce/core": "^6.5.6",
9208
+ "@salesforce/core": "^6.6.0",
9209
9209
  "@salesforce/kit": "^3.0.15",
9210
9210
  "@salesforce/ts-types": "^2.0.9",
9211
9211
  "chalk": "^5.3.0"
@@ -15871,6 +15871,19 @@
15871
15871
  "xtend": "~4.0.1"
15872
15872
  }
15873
15873
  },
15874
+ "node_modules/get-stdin": {
15875
+ "version": "9.0.0",
15876
+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz",
15877
+ "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==",
15878
+ "dev": true,
15879
+ "license": "MIT",
15880
+ "engines": {
15881
+ "node": ">=12"
15882
+ },
15883
+ "funding": {
15884
+ "url": "https://github.com/sponsors/sindresorhus"
15885
+ }
15886
+ },
15874
15887
  "node_modules/get-stream": {
15875
15888
  "version": "6.0.1",
15876
15889
  "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
@@ -15915,6 +15928,16 @@
15915
15928
  "node": ">= 14"
15916
15929
  }
15917
15930
  },
15931
+ "node_modules/git-hooks-list": {
15932
+ "version": "3.1.0",
15933
+ "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-3.1.0.tgz",
15934
+ "integrity": "sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==",
15935
+ "dev": true,
15936
+ "license": "MIT",
15937
+ "funding": {
15938
+ "url": "https://github.com/fisker/git-hooks-list?sponsor=1"
15939
+ }
15940
+ },
15918
15941
  "node_modules/git-raw-commits": {
15919
15942
  "version": "2.0.11",
15920
15943
  "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz",
@@ -23743,9 +23766,9 @@
23743
23766
  "license": "MIT"
23744
23767
  },
23745
23768
  "node_modules/oclif": {
23746
- "version": "4.4.16",
23747
- "resolved": "https://registry.npmjs.org/oclif/-/oclif-4.4.16.tgz",
23748
- "integrity": "sha512-4qNgN8ZhLZV2k92HXBiIvFGDM2HKgXrB8auVe9EpNQPlZr/PXeW7CTYpkEm3VYrmtohe2p3ma5jIR/Nyuu/v6g==",
23769
+ "version": "4.4.19",
23770
+ "resolved": "https://registry.npmjs.org/oclif/-/oclif-4.4.19.tgz",
23771
+ "integrity": "sha512-hVF9OX7dLqKyUEmMOEZEk4ix5GXT9aWai23NkJDwc4qNrva3WigdcjC/t+E7BkKg/3IrX+/oACMaRFjVj12+Lg==",
23749
23772
  "dev": true,
23750
23773
  "license": "MIT",
23751
23774
  "dependencies": {
@@ -23754,7 +23777,7 @@
23754
23777
  "@oclif/core": "^3.19.2",
23755
23778
  "@oclif/plugin-help": "^6.0.12",
23756
23779
  "@oclif/plugin-not-found": "^3.0.10",
23757
- "@oclif/plugin-warn-if-update-available": "^3.0.10",
23780
+ "@oclif/plugin-warn-if-update-available": "^3.0.12",
23758
23781
  "async-retry": "^1.3.3",
23759
23782
  "change-case": "^4",
23760
23783
  "debug": "^4.3.3",
@@ -23765,6 +23788,7 @@
23765
23788
  "lodash.template": "^4.5.0",
23766
23789
  "normalize-package-data": "^3.0.3",
23767
23790
  "semver": "^7.6.0",
23791
+ "sort-package-json": "^2.8.0",
23768
23792
  "yeoman-environment": "^3.15.1",
23769
23793
  "yeoman-generator": "^5.8.0"
23770
23794
  },
@@ -26338,6 +26362,101 @@
26338
26362
  "url": "https://github.com/sponsors/sindresorhus"
26339
26363
  }
26340
26364
  },
26365
+ "node_modules/sort-object-keys": {
26366
+ "version": "1.1.3",
26367
+ "resolved": "https://registry.npmjs.org/sort-object-keys/-/sort-object-keys-1.1.3.tgz",
26368
+ "integrity": "sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==",
26369
+ "dev": true,
26370
+ "license": "MIT"
26371
+ },
26372
+ "node_modules/sort-package-json": {
26373
+ "version": "2.8.0",
26374
+ "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.8.0.tgz",
26375
+ "integrity": "sha512-PxeNg93bTJWmDGnu0HADDucoxfFiKkIr73Kv85EBThlI1YQPdc0XovBgg2llD0iABZbu2SlKo8ntGmOP9wOj/g==",
26376
+ "dev": true,
26377
+ "license": "MIT",
26378
+ "dependencies": {
26379
+ "detect-indent": "^7.0.1",
26380
+ "detect-newline": "^4.0.0",
26381
+ "get-stdin": "^9.0.0",
26382
+ "git-hooks-list": "^3.0.0",
26383
+ "globby": "^13.1.2",
26384
+ "is-plain-obj": "^4.1.0",
26385
+ "sort-object-keys": "^1.1.3"
26386
+ },
26387
+ "bin": {
26388
+ "sort-package-json": "cli.js"
26389
+ }
26390
+ },
26391
+ "node_modules/sort-package-json/node_modules/detect-indent": {
26392
+ "version": "7.0.1",
26393
+ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz",
26394
+ "integrity": "sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==",
26395
+ "dev": true,
26396
+ "license": "MIT",
26397
+ "engines": {
26398
+ "node": ">=12.20"
26399
+ }
26400
+ },
26401
+ "node_modules/sort-package-json/node_modules/detect-newline": {
26402
+ "version": "4.0.1",
26403
+ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-4.0.1.tgz",
26404
+ "integrity": "sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==",
26405
+ "dev": true,
26406
+ "license": "MIT",
26407
+ "engines": {
26408
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
26409
+ },
26410
+ "funding": {
26411
+ "url": "https://github.com/sponsors/sindresorhus"
26412
+ }
26413
+ },
26414
+ "node_modules/sort-package-json/node_modules/globby": {
26415
+ "version": "13.2.2",
26416
+ "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz",
26417
+ "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==",
26418
+ "dev": true,
26419
+ "license": "MIT",
26420
+ "dependencies": {
26421
+ "dir-glob": "^3.0.1",
26422
+ "fast-glob": "^3.3.0",
26423
+ "ignore": "^5.2.4",
26424
+ "merge2": "^1.4.1",
26425
+ "slash": "^4.0.0"
26426
+ },
26427
+ "engines": {
26428
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
26429
+ },
26430
+ "funding": {
26431
+ "url": "https://github.com/sponsors/sindresorhus"
26432
+ }
26433
+ },
26434
+ "node_modules/sort-package-json/node_modules/is-plain-obj": {
26435
+ "version": "4.1.0",
26436
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
26437
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
26438
+ "dev": true,
26439
+ "license": "MIT",
26440
+ "engines": {
26441
+ "node": ">=12"
26442
+ },
26443
+ "funding": {
26444
+ "url": "https://github.com/sponsors/sindresorhus"
26445
+ }
26446
+ },
26447
+ "node_modules/sort-package-json/node_modules/slash": {
26448
+ "version": "4.0.0",
26449
+ "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
26450
+ "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
26451
+ "dev": true,
26452
+ "license": "MIT",
26453
+ "engines": {
26454
+ "node": ">=12"
26455
+ },
26456
+ "funding": {
26457
+ "url": "https://github.com/sponsors/sindresorhus"
26458
+ }
26459
+ },
26341
26460
  "node_modules/source-map": {
26342
26461
  "version": "0.6.1",
26343
26462
  "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
@@ -5051,5 +5051,5 @@
5051
5051
  ]
5052
5052
  }
5053
5053
  },
5054
- "version": "2.31.6"
5054
+ "version": "2.31.7"
5055
5055
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.31.6",
4
+ "version": "2.31.7",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -136,7 +136,7 @@
136
136
  },
137
137
  "dependencies": {
138
138
  "@inquirer/select": "^1.3.1",
139
- "@oclif/core": "3.19.7",
139
+ "@oclif/core": "3.20.0",
140
140
  "@oclif/plugin-autocomplete": "3.0.11",
141
141
  "@oclif/plugin-commands": "3.1.6",
142
142
  "@oclif/plugin-help": "6.0.14",
@@ -155,7 +155,7 @@
155
155
  "@salesforce/plugin-info": "3.0.28",
156
156
  "@salesforce/plugin-limits": "3.1.12",
157
157
  "@salesforce/plugin-marketplace": "1.0.26",
158
- "@salesforce/plugin-org": "3.3.16",
158
+ "@salesforce/plugin-org": "3.4.0",
159
159
  "@salesforce/plugin-packaging": "2.1.11",
160
160
  "@salesforce/plugin-schema": "3.1.6",
161
161
  "@salesforce/plugin-settings": "2.0.29",
@@ -165,7 +165,7 @@
165
165
  "@salesforce/plugin-templates": "56.0.19",
166
166
  "@salesforce/plugin-trust": "3.3.14",
167
167
  "@salesforce/plugin-user": "3.3.0",
168
- "@salesforce/sf-plugins-core": "7.1.13",
168
+ "@salesforce/sf-plugins-core": "7.1.14",
169
169
  "chalk": "^5.3.0",
170
170
  "debug": "^4.3.4",
171
171
  "strip-ansi": "^7.1.0"
@@ -255,7 +255,7 @@
255
255
  "@salesforce/ts-sinon": "^1.4.19",
256
256
  "@types/debug": "^4.1.12",
257
257
  "aws-sdk": "^2.1565.0",
258
- "oclif": "^4.4.16",
258
+ "oclif": "^4.4.19",
259
259
  "ts-node": "^10.9.1",
260
260
  "typescript": "^5"
261
261
  },