@salesforce/cli 2.61.8 → 2.62.1

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.61.8 linux-x64 node-v20.17.0
27
+ @salesforce/cli/2.62.1 linux-x64 node-v20.17.0
28
28
  $ sf --help [COMMAND]
29
29
  USAGE
30
30
  $ sf COMMAND
@@ -54,7 +54,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
54
54
  - [`sf apex run test`](#sf-apex-run-test)
55
55
  - [`sf apex tail log`](#sf-apex-tail-log)
56
56
  - [`sf api request graphql`](#sf-api-request-graphql)
57
- - [`sf api request rest ENDPOINT`](#sf-api-request-rest-endpoint)
57
+ - [`sf api request rest [URL]`](#sf-api-request-rest-url)
58
58
  - [`sf autocomplete [SHELL]`](#sf-autocomplete-shell)
59
59
  - [`sf commands`](#sf-commands)
60
60
  - [`sf config get`](#sf-config-get)
@@ -903,31 +903,33 @@ EXAMPLES
903
903
  $ sf api request graphql --body example.txt --stream-to-file output.txt --include
904
904
  ```
905
905
 
906
- _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.2.2/src/commands/api/request/graphql.ts)_
906
+ _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.0/src/commands/api/request/graphql.ts)_
907
907
 
908
- ## `sf api request rest ENDPOINT`
908
+ ## `sf api request rest [URL]`
909
909
 
910
910
  Make an authenticated HTTP request using the Salesforce REST API.
911
911
 
912
912
  ```
913
913
  USAGE
914
- $ sf api request rest ENDPOINT -o <value> [--flags-dir <value>] [--api-version <value>] [-i | -S Example:
915
- report.xlsx] [-X GET|POST|PUT|PATCH|HEAD|DELETE|OPTIONS|TRACE] [-H key:value...] [--body file]
914
+ $ sf api request rest [URL] -o <value> [--flags-dir <value>] [--api-version <value>] [-i | -S Example: report.xlsx]
915
+ [-X GET|POST|PUT|PATCH|HEAD|DELETE|OPTIONS|TRACE] [-H key:value...] [-f file] [-b file]
916
916
 
917
917
  ARGUMENTS
918
- ENDPOINT Salesforce API endpoint
918
+ URL Salesforce API endpoint
919
919
 
920
920
  FLAGS
921
921
  -H, --header=key:value... HTTP header in "key:value" format.
922
922
  -S, --stream-to-file=Example: report.xlsx Stream responses to a file.
923
- -X, --method=<option> [default: GET] HTTP method for the request.
923
+ -X, --method=<option> HTTP method for the request.
924
924
  <options: GET|POST|PUT|PATCH|HEAD|DELETE|OPTIONS|TRACE>
925
+ -b, --body=file File or content for the body of the HTTP request. Specify "-" to read from
926
+ standard input or "" for an empty body.
927
+ -f, --file=file JSON file that contains values for the request header, body, method, and
928
+ URL.
925
929
  -i, --include Include the HTTP response status and headers in the output.
926
930
  -o, --target-org=<value> (required) Username or alias of the target org. Not required if the
927
931
  `target-org` configuration variable is already set.
928
932
  --api-version=<value> Override the api version used for api requests made by this command
929
- --body=file File or content for the body of the HTTP request. Specify "-" to read from
930
- standard input or "" for an empty body.
931
933
 
932
934
  GLOBAL FLAGS
933
935
  --flags-dir=<value> Import flag values from a directory.
@@ -957,7 +959,7 @@ EXAMPLES
957
959
 
958
960
  Create an account record using the POST method; specify the request details directly in the "--body" flag:
959
961
 
960
- $ sf api request rest 'sobjects/account' --body "{\"Name\" : \"Account from REST API\",\"ShippingCity\" : \
962
+ $ sf api request rest sobjects/account --body "{\"Name\" : \"Account from REST API\",\"ShippingCity\" : \
961
963
  \"Boise\"}" --method POST
962
964
 
963
965
  Create an account record using the information in a file called "info.json":
@@ -968,9 +970,49 @@ EXAMPLES
968
970
 
969
971
  $ sf api request rest 'sobjects/account/<Account ID>' --body "{\"BillingCity\": \"San Francisco\"}" --method \
970
972
  PATCH
973
+
974
+ Store the values for the request header, body, and so on, in a file, which you then specify with the --file flag;
975
+ see the description of --file for more information:
976
+
977
+ $ sf api request rest --file myFile.json
978
+
979
+ FLAG DESCRIPTIONS
980
+ -f, --file=file JSON file that contains values for the request header, body, method, and URL.
981
+
982
+ Use this flag instead of specifying the request details with individual flags, such as --body or --method. This
983
+ schema defines how to create the JSON file:
984
+
985
+ {
986
+ url: { raw: string } | string;
987
+ method: 'GET', 'POST', 'PUT', 'PATCH', 'HEAD', 'DELETE', 'OPTIONS', 'TRACE';
988
+ description?: string;
989
+ header: string | Array<Record<string, string>>;
990
+ body: { mode: 'raw' | 'formdata'; raw: string; formdata: FormData };
991
+ }
992
+
993
+ Salesforce CLI defined this schema to be mimic Postman schemas; both share similar properties. The CLI's schema also
994
+ supports Postman Collections to reuse and share requests. As a result, you can build an API call using Postman,
995
+ export and save it to a file, and then use the file as a value to this flag. For information about Postman, see
996
+ https://learning.postman.com/.
997
+
998
+ Here's a simple example of a JSON file that contains values for the request URL, method, and body:
999
+
1000
+ {
1001
+ "url": "sobjects/Account/<Account ID>",
1002
+ "method": "PATCH",
1003
+ "body" : {
1004
+ "mode": "raw",
1005
+ "raw": {
1006
+ "BillingCity": "Boise"
1007
+ }
1008
+ }
1009
+ }
1010
+
1011
+ See more examples in the plugin-api test directory, including JSON files that use "formdata" to define collections:
1012
+ https://github.com/salesforcecli/plugin-api/tree/main/test/test-files/data-project.
971
1013
  ```
972
1014
 
973
- _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.2.2/src/commands/api/request/rest.ts)_
1015
+ _See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.3.0/src/commands/api/request/rest.ts)_
974
1016
 
975
1017
  ## `sf autocomplete [SHELL]`
976
1018
 
@@ -5888,7 +5930,7 @@ FLAG DESCRIPTIONS
5888
5930
  If you specify this parameter, don’t specify --metadata or --source-dir.
5889
5931
  ```
5890
5932
 
5891
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/convert/mdapi.ts)_
5933
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/convert/mdapi.ts)_
5892
5934
 
5893
5935
  ## `sf project convert source`
5894
5936
 
@@ -5961,7 +6003,7 @@ FLAG DESCRIPTIONS
5961
6003
  Override the api version used for api requests made by this command
5962
6004
  ```
5963
6005
 
5964
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/convert/source.ts)_
6006
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/convert/source.ts)_
5965
6007
 
5966
6008
  ## `sf project convert source-behavior`
5967
6009
 
@@ -6019,7 +6061,7 @@ EXAMPLES
6019
6061
  $ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
6020
6062
  ```
6021
6063
 
6022
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/convert/source-behavior.ts)_
6064
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/convert/source-behavior.ts)_
6023
6065
 
6024
6066
  ## `sf project delete source`
6025
6067
 
@@ -6159,7 +6201,7 @@ FLAG DESCRIPTIONS
6159
6201
  - Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
6160
6202
  ```
6161
6203
 
6162
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/delete/source.ts)_
6204
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/delete/source.ts)_
6163
6205
 
6164
6206
  ## `sf project delete tracking`
6165
6207
 
@@ -6196,7 +6238,7 @@ EXAMPLES
6196
6238
  $ sf project delete tracking --target-org my-scratch
6197
6239
  ```
6198
6240
 
6199
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/delete/tracking.ts)_
6241
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/delete/tracking.ts)_
6200
6242
 
6201
6243
  ## `sf project deploy cancel`
6202
6244
 
@@ -6268,7 +6310,7 @@ FLAG DESCRIPTIONS
6268
6310
  project deploy report".
6269
6311
  ```
6270
6312
 
6271
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/deploy/cancel.ts)_
6313
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/deploy/cancel.ts)_
6272
6314
 
6273
6315
  ## `sf project deploy preview`
6274
6316
 
@@ -6351,7 +6393,7 @@ FLAG DESCRIPTIONS
6351
6393
  All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
6352
6394
  ```
6353
6395
 
6354
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/deploy/preview.ts)_
6396
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/deploy/preview.ts)_
6355
6397
 
6356
6398
  ## `sf project deploy quick`
6357
6399
 
@@ -6444,7 +6486,7 @@ ERROR CODES
6444
6486
  Canceling (69) The deploy is being canceled.
6445
6487
  ```
6446
6488
 
6447
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/deploy/quick.ts)_
6489
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/deploy/quick.ts)_
6448
6490
 
6449
6491
  ## `sf project deploy report`
6450
6492
 
@@ -6536,7 +6578,7 @@ FLAG DESCRIPTIONS
6536
6578
  --coverage-formatters lcov --coverage-formatters clover
6537
6579
  ```
6538
6580
 
6539
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/deploy/report.ts)_
6581
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/deploy/report.ts)_
6540
6582
 
6541
6583
  ## `sf project deploy resume`
6542
6584
 
@@ -6633,7 +6675,7 @@ ERROR CODES
6633
6675
  Canceling (69) The deploy is being canceled.
6634
6676
  ```
6635
6677
 
6636
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/deploy/resume.ts)_
6678
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/deploy/resume.ts)_
6637
6679
 
6638
6680
  ## `sf project deploy start`
6639
6681
 
@@ -6886,7 +6928,7 @@ ERROR CODES
6886
6928
  Canceling (69) The deploy is being canceled.
6887
6929
  ```
6888
6930
 
6889
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/deploy/start.ts)_
6931
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/deploy/start.ts)_
6890
6932
 
6891
6933
  ## `sf project deploy validate`
6892
6934
 
@@ -7076,7 +7118,7 @@ ERROR CODES
7076
7118
  Canceling (69) The deploy is being canceled.
7077
7119
  ```
7078
7120
 
7079
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/deploy/validate.ts)_
7121
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/deploy/validate.ts)_
7080
7122
 
7081
7123
  ## `sf project generate`
7082
7124
 
@@ -7258,7 +7300,7 @@ EXAMPLES
7258
7300
  $ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
7259
7301
  ```
7260
7302
 
7261
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/generate/manifest.ts)_
7303
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/generate/manifest.ts)_
7262
7304
 
7263
7305
  ## `sf project list ignored`
7264
7306
 
@@ -7300,7 +7342,7 @@ EXAMPLES
7300
7342
  $ sf project list ignored --source-dir package.xml
7301
7343
  ```
7302
7344
 
7303
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/list/ignored.ts)_
7345
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/list/ignored.ts)_
7304
7346
 
7305
7347
  ## `sf project reset tracking`
7306
7348
 
@@ -7349,7 +7391,7 @@ EXAMPLES
7349
7391
  $ sf project reset tracking --revision 30
7350
7392
  ```
7351
7393
 
7352
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/reset/tracking.ts)_
7394
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/reset/tracking.ts)_
7353
7395
 
7354
7396
  ## `sf project retrieve preview`
7355
7397
 
@@ -7403,7 +7445,7 @@ FLAG DESCRIPTIONS
7403
7445
  production orgs.
7404
7446
  ```
7405
7447
 
7406
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/retrieve/preview.ts)_
7448
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/retrieve/preview.ts)_
7407
7449
 
7408
7450
  ## `sf project retrieve start`
7409
7451
 
@@ -7580,7 +7622,7 @@ ENVIRONMENT VARIABLES
7580
7622
  SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
7581
7623
  ```
7582
7624
 
7583
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.15/src/commands/project/retrieve/start.ts)_
7625
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.12.16/src/commands/project/retrieve/start.ts)_
7584
7626
 
7585
7627
  ## `sf schema generate field`
7586
7628
 
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "2.61.8",
3
+ "version": "2.62.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "2.61.8",
9
+ "version": "2.62.1",
10
10
  "hasInstallScript": true,
11
11
  "license": "BSD-3-Clause",
12
12
  "dependencies": {
13
13
  "@inquirer/select": "^2.3.5",
14
- "@oclif/core": "4.0.25",
14
+ "@oclif/core": "4.0.27",
15
15
  "@oclif/plugin-autocomplete": "3.2.5",
16
16
  "@oclif/plugin-commands": "4.0.16",
17
17
  "@oclif/plugin-help": "6.2.13",
@@ -25,10 +25,10 @@
25
25
  "@salesforce/core": "^8.2.3",
26
26
  "@salesforce/kit": "^3.1.6",
27
27
  "@salesforce/plugin-apex": "3.5.0",
28
- "@salesforce/plugin-api": "1.2.2",
28
+ "@salesforce/plugin-api": "1.3.0",
29
29
  "@salesforce/plugin-auth": "3.6.65",
30
30
  "@salesforce/plugin-data": "3.6.8",
31
- "@salesforce/plugin-deploy-retrieve": "3.12.15",
31
+ "@salesforce/plugin-deploy-retrieve": "3.12.16",
32
32
  "@salesforce/plugin-info": "3.4.9",
33
33
  "@salesforce/plugin-limits": "3.3.32",
34
34
  "@salesforce/plugin-marketplace": "1.2.26",
@@ -56,7 +56,7 @@
56
56
  "@salesforce/ts-sinon": "^1.4.27",
57
57
  "@salesforce/ts-types": "^2.0.10",
58
58
  "aws-sdk": "^2.1691.0",
59
- "oclif": "^4.15.0",
59
+ "oclif": "^4.15.1",
60
60
  "ts-node": "^10.9.2",
61
61
  "typescript": "^5.6.2"
62
62
  },
@@ -4033,9 +4033,9 @@
4033
4033
  }
4034
4034
  },
4035
4035
  "node_modules/@oclif/core": {
4036
- "version": "4.0.25",
4037
- "resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.0.25.tgz",
4038
- "integrity": "sha512-3rX1dA40cZWzH6NKcNJGXrJn30XaxnkFXfapLMX0wwSWvBfXE/zIduHt03kLRxeFuEBUR5FBnU64odDWKhtFKg==",
4036
+ "version": "4.0.27",
4037
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.0.27.tgz",
4038
+ "integrity": "sha512-9j92jHr6k2tjQ6/mIwNi46Gqw+qbPFQ02mxT5T8/nxO2fgsPL3qL0kb9SR1il5AVfqpgLIG3uLUcw87rgaioUg==",
4039
4039
  "license": "MIT",
4040
4040
  "dependencies": {
4041
4041
  "ansi-escapes": "^4.3.2",
@@ -4047,7 +4047,7 @@
4047
4047
  "get-package-type": "^0.1.0",
4048
4048
  "globby": "^11.1.0",
4049
4049
  "indent-string": "^4.0.0",
4050
- "is-wsl": "^2.2.0",
4050
+ "is-wsl": "^3",
4051
4051
  "lilconfig": "^3.1.2",
4052
4052
  "minimatch": "^9.0.5",
4053
4053
  "semver": "^7.6.3",
@@ -4061,18 +4061,6 @@
4061
4061
  "node": ">=18.0.0"
4062
4062
  }
4063
4063
  },
4064
- "node_modules/@oclif/core/node_modules/is-wsl": {
4065
- "version": "2.2.0",
4066
- "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
4067
- "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
4068
- "license": "MIT",
4069
- "dependencies": {
4070
- "is-docker": "^2.0.0"
4071
- },
4072
- "engines": {
4073
- "node": ">=8"
4074
- }
4075
- },
4076
4064
  "node_modules/@oclif/core/node_modules/supports-color": {
4077
4065
  "version": "8.1.1",
4078
4066
  "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
@@ -4960,9 +4948,9 @@
4960
4948
  }
4961
4949
  },
4962
4950
  "node_modules/@salesforce/plugin-api": {
4963
- "version": "1.2.2",
4964
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.2.2.tgz",
4965
- "integrity": "sha512-DYcvSvK1J/C0oin9CZltk/UT4d9dOtRBztMxHVUJDR2VC5iJhlx+cjOs76V2/D+7g7Maon0lARYtY0JX+3FZnA==",
4951
+ "version": "1.3.0",
4952
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.3.0.tgz",
4953
+ "integrity": "sha512-DtCgRjlTUbxQAuCSo4g4xhbOotQcWY3dCOz3es7ihTtpevGj09vczs5acE7u8If25+XCnIdstOO1IyNoJIAzXg==",
4966
4954
  "license": "BSD-3-Clause",
4967
4955
  "dependencies": {
4968
4956
  "@oclif/core": "^4",
@@ -4971,6 +4959,7 @@
4971
4959
  "@salesforce/sf-plugins-core": "^11.3.2",
4972
4960
  "@salesforce/ts-types": "^2.0.12",
4973
4961
  "ansis": "^3.3.2",
4962
+ "form-data": "^4.0.0",
4974
4963
  "got": "^13.0.0",
4975
4964
  "proxy-agent": "^6.4.0"
4976
4965
  },
@@ -5059,9 +5048,9 @@
5059
5048
  "license": "MIT"
5060
5049
  },
5061
5050
  "node_modules/@salesforce/plugin-deploy-retrieve": {
5062
- "version": "3.12.15",
5063
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.12.15.tgz",
5064
- "integrity": "sha512-OXMxRSLMukLKBTlccTCchB17w2VinmERjhJcjrQpgWkOFpxLCLJqSR+Emy/l2kscz088mH1tUmH1omg8vIlh2g==",
5051
+ "version": "3.12.16",
5052
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.12.16.tgz",
5053
+ "integrity": "sha512-dIUKn72ilrf8lG3kneXlpkW938TjNRhPRr/xN7YjJ7h9jkwY9KS8T+l7Cylf/Dhcjn7JV9I/3qYsUI1S6weIVA==",
5065
5054
  "license": "BSD-3-Clause",
5066
5055
  "dependencies": {
5067
5056
  "@oclif/core": "^4.0.18",
@@ -13020,15 +13009,15 @@
13020
13009
  }
13021
13010
  },
13022
13011
  "node_modules/is-docker": {
13023
- "version": "2.2.1",
13024
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
13025
- "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
13012
+ "version": "3.0.0",
13013
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
13014
+ "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
13026
13015
  "license": "MIT",
13027
13016
  "bin": {
13028
13017
  "is-docker": "cli.js"
13029
13018
  },
13030
13019
  "engines": {
13031
- "node": ">=8"
13020
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
13032
13021
  },
13033
13022
  "funding": {
13034
13023
  "url": "https://github.com/sponsors/sindresorhus"
@@ -13098,21 +13087,6 @@
13098
13087
  "url": "https://github.com/sponsors/sindresorhus"
13099
13088
  }
13100
13089
  },
13101
- "node_modules/is-inside-container/node_modules/is-docker": {
13102
- "version": "3.0.0",
13103
- "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
13104
- "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
13105
- "license": "MIT",
13106
- "bin": {
13107
- "is-docker": "cli.js"
13108
- },
13109
- "engines": {
13110
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
13111
- },
13112
- "funding": {
13113
- "url": "https://github.com/sponsors/sindresorhus"
13114
- }
13115
- },
13116
13090
  "node_modules/is-lambda": {
13117
13091
  "version": "1.0.1",
13118
13092
  "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz",
@@ -18628,9 +18602,9 @@
18628
18602
  "license": "MIT"
18629
18603
  },
18630
18604
  "node_modules/oclif": {
18631
- "version": "4.15.0",
18632
- "resolved": "https://registry.npmjs.org/oclif/-/oclif-4.15.0.tgz",
18633
- "integrity": "sha512-o0gq69z5DrKl7KD5Ib/0csB92ewCougttbXfSoyFOvAD2GbR+RVZUptqCDry5xVM0vq49syOT5EWczJsfj5r2w==",
18605
+ "version": "4.15.1",
18606
+ "resolved": "https://registry.npmjs.org/oclif/-/oclif-4.15.1.tgz",
18607
+ "integrity": "sha512-YCElE3iM7MUDIS62UNcjH0kHWJ+VIrujgkJAFeeNQMWmpN+rdSkE0UWdKfsaHHpYKLEYrEJfHMSQm/YrekCOMQ==",
18634
18608
  "dev": true,
18635
18609
  "license": "MIT",
18636
18610
  "dependencies": {
package/oclif.lock CHANGED
@@ -1874,10 +1874,10 @@
1874
1874
  proc-log "^4.0.0"
1875
1875
  which "^4.0.0"
1876
1876
 
1877
- "@oclif/core@^4", "@oclif/core@^4.0.16", "@oclif/core@^4.0.18", "@oclif/core@^4.0.19", "@oclif/core@^4.0.20", "@oclif/core@^4.0.23", "@oclif/core@^4.0.6", "@oclif/core@4.0.25":
1878
- version "4.0.25"
1879
- resolved "https://registry.npmjs.org/@oclif/core/-/core-4.0.25.tgz"
1880
- integrity sha512-3rX1dA40cZWzH6NKcNJGXrJn30XaxnkFXfapLMX0wwSWvBfXE/zIduHt03kLRxeFuEBUR5FBnU64odDWKhtFKg==
1877
+ "@oclif/core@^4", "@oclif/core@^4.0.16", "@oclif/core@^4.0.18", "@oclif/core@^4.0.19", "@oclif/core@^4.0.20", "@oclif/core@^4.0.23", "@oclif/core@^4.0.6", "@oclif/core@4.0.27":
1878
+ version "4.0.27"
1879
+ resolved "https://registry.npmjs.org/@oclif/core/-/core-4.0.27.tgz"
1880
+ integrity sha512-9j92jHr6k2tjQ6/mIwNi46Gqw+qbPFQ02mxT5T8/nxO2fgsPL3qL0kb9SR1il5AVfqpgLIG3uLUcw87rgaioUg==
1881
1881
  dependencies:
1882
1882
  ansi-escapes "^4.3.2"
1883
1883
  ansis "^3.3.2"
@@ -1888,7 +1888,7 @@
1888
1888
  get-package-type "^0.1.0"
1889
1889
  globby "^11.1.0"
1890
1890
  indent-string "^4.0.0"
1891
- is-wsl "^2.2.0"
1891
+ is-wsl "^3"
1892
1892
  lilconfig "^3.1.2"
1893
1893
  minimatch "^9.0.5"
1894
1894
  semver "^7.6.3"
@@ -2312,10 +2312,10 @@
2312
2312
  "@salesforce/sf-plugins-core" "^11.3.7"
2313
2313
  ansis "^3.3.1"
2314
2314
 
2315
- "@salesforce/plugin-api@1.2.2":
2316
- version "1.2.2"
2317
- resolved "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.2.2.tgz"
2318
- integrity sha512-DYcvSvK1J/C0oin9CZltk/UT4d9dOtRBztMxHVUJDR2VC5iJhlx+cjOs76V2/D+7g7Maon0lARYtY0JX+3FZnA==
2315
+ "@salesforce/plugin-api@1.3.0":
2316
+ version "1.3.0"
2317
+ resolved "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.3.0.tgz"
2318
+ integrity sha512-DtCgRjlTUbxQAuCSo4g4xhbOotQcWY3dCOz3es7ihTtpevGj09vczs5acE7u8If25+XCnIdstOO1IyNoJIAzXg==
2319
2319
  dependencies:
2320
2320
  "@oclif/core" "^4"
2321
2321
  "@salesforce/core" "^8.4.0"
@@ -2323,6 +2323,7 @@
2323
2323
  "@salesforce/sf-plugins-core" "^11.3.2"
2324
2324
  "@salesforce/ts-types" "^2.0.12"
2325
2325
  ansis "^3.3.2"
2326
+ form-data "^4.0.0"
2326
2327
  got "^13.0.0"
2327
2328
  proxy-agent "^6.4.0"
2328
2329
 
@@ -2371,10 +2372,10 @@
2371
2372
  csv-stringify "^6.5.1"
2372
2373
  form-data "^4.0.0"
2373
2374
 
2374
- "@salesforce/plugin-deploy-retrieve@3.12.15":
2375
- version "3.12.15"
2376
- resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.12.15.tgz"
2377
- integrity sha512-OXMxRSLMukLKBTlccTCchB17w2VinmERjhJcjrQpgWkOFpxLCLJqSR+Emy/l2kscz088mH1tUmH1omg8vIlh2g==
2375
+ "@salesforce/plugin-deploy-retrieve@3.12.16":
2376
+ version "3.12.16"
2377
+ resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.12.16.tgz"
2378
+ integrity sha512-dIUKn72ilrf8lG3kneXlpkW938TjNRhPRr/xN7YjJ7h9jkwY9KS8T+l7Cylf/Dhcjn7JV9I/3qYsUI1S6weIVA==
2378
2379
  dependencies:
2379
2380
  "@oclif/core" "^4.0.18"
2380
2381
  "@salesforce/apex-node" "^8.1.9"
@@ -7027,11 +7028,6 @@ is-date-object@^1.0.1:
7027
7028
  dependencies:
7028
7029
  has-tostringtag "^1.0.0"
7029
7030
 
7030
- is-docker@^2.0.0:
7031
- version "2.2.1"
7032
- resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz"
7033
- integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
7034
-
7035
7031
  is-docker@^3.0.0:
7036
7032
  version "3.0.0"
7037
7033
  resolved "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz"
@@ -7207,14 +7203,7 @@ is-windows@^1.0.2:
7207
7203
  resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"
7208
7204
  integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
7209
7205
 
7210
- is-wsl@^2.2.0:
7211
- version "2.2.0"
7212
- resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz"
7213
- integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
7214
- dependencies:
7215
- is-docker "^2.0.0"
7216
-
7217
- is-wsl@^3.1.0:
7206
+ is-wsl@^3, is-wsl@^3.1.0:
7218
7207
  version "3.1.0"
7219
7208
  resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz"
7220
7209
  integrity sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==
@@ -8789,10 +8778,10 @@ obliterator@^2.0.1, obliterator@^2.0.2:
8789
8778
  resolved "https://registry.npmjs.org/obliterator/-/obliterator-2.0.4.tgz"
8790
8779
  integrity sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==
8791
8780
 
8792
- oclif@^4.15.0:
8793
- version "4.15.0"
8794
- resolved "https://registry.npmjs.org/oclif/-/oclif-4.15.0.tgz"
8795
- integrity sha512-o0gq69z5DrKl7KD5Ib/0csB92ewCougttbXfSoyFOvAD2GbR+RVZUptqCDry5xVM0vq49syOT5EWczJsfj5r2w==
8781
+ oclif@^4.15.1:
8782
+ version "4.15.1"
8783
+ resolved "https://registry.npmjs.org/oclif/-/oclif-4.15.1.tgz"
8784
+ integrity sha512-YCElE3iM7MUDIS62UNcjH0kHWJ+VIrujgkJAFeeNQMWmpN+rdSkE0UWdKfsaHHpYKLEYrEJfHMSQm/YrekCOMQ==
8796
8785
  dependencies:
8797
8786
  "@aws-sdk/client-cloudfront" "^3.645.0"
8798
8787
  "@aws-sdk/client-s3" "^3.651.1"
@@ -5370,5 +5370,5 @@
5370
5370
  ]
5371
5371
  }
5372
5372
  },
5373
- "version": "2.61.8"
5373
+ "version": "2.62.1"
5374
5374
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "2.61.8",
4
+ "version": "2.62.1",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run.js",
@@ -140,7 +140,7 @@
140
140
  },
141
141
  "dependencies": {
142
142
  "@inquirer/select": "^2.3.5",
143
- "@oclif/core": "4.0.25",
143
+ "@oclif/core": "4.0.27",
144
144
  "@oclif/plugin-autocomplete": "3.2.5",
145
145
  "@oclif/plugin-commands": "4.0.16",
146
146
  "@oclif/plugin-help": "6.2.13",
@@ -154,10 +154,10 @@
154
154
  "@salesforce/core": "^8.2.3",
155
155
  "@salesforce/kit": "^3.1.6",
156
156
  "@salesforce/plugin-apex": "3.5.0",
157
- "@salesforce/plugin-api": "1.2.2",
157
+ "@salesforce/plugin-api": "1.3.0",
158
158
  "@salesforce/plugin-auth": "3.6.65",
159
159
  "@salesforce/plugin-data": "3.6.8",
160
- "@salesforce/plugin-deploy-retrieve": "3.12.15",
160
+ "@salesforce/plugin-deploy-retrieve": "3.12.16",
161
161
  "@salesforce/plugin-info": "3.4.9",
162
162
  "@salesforce/plugin-limits": "3.3.32",
163
163
  "@salesforce/plugin-marketplace": "1.2.26",
@@ -256,7 +256,7 @@
256
256
  "@salesforce/ts-sinon": "^1.4.27",
257
257
  "@salesforce/ts-types": "^2.0.10",
258
258
  "aws-sdk": "^2.1691.0",
259
- "oclif": "^4.15.0",
259
+ "oclif": "^4.15.1",
260
260
  "ts-node": "^10.9.2",
261
261
  "typescript": "^5.6.2"
262
262
  },