@salesforce/cli 2.57.0 → 2.57.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 +108 -46
- package/npm-shrinkwrap.json +11 -10
- package/oclif.lock +9 -8
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
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.57.
|
|
27
|
+
@salesforce/cli/2.57.1 linux-x64 node-v20.16.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -53,6 +53,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
53
53
|
- [`sf apex run`](#sf-apex-run)
|
|
54
54
|
- [`sf apex run test`](#sf-apex-run-test)
|
|
55
55
|
- [`sf apex tail log`](#sf-apex-tail-log)
|
|
56
|
+
- [`sf api request graphql`](#sf-api-request-graphql)
|
|
56
57
|
- [`sf api request rest ENDPOINT`](#sf-api-request-rest-endpoint)
|
|
57
58
|
- [`sf autocomplete [SHELL]`](#sf-autocomplete-shell)
|
|
58
59
|
- [`sf commands`](#sf-commands)
|
|
@@ -846,50 +847,111 @@ EXAMPLES
|
|
|
846
847
|
|
|
847
848
|
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.4.2/src/commands/apex/tail/log.ts)_
|
|
848
849
|
|
|
849
|
-
## `sf api request
|
|
850
|
+
## `sf api request graphql`
|
|
850
851
|
|
|
851
|
-
|
|
852
|
+
Execute GraphQL statements
|
|
852
853
|
|
|
853
854
|
````
|
|
854
855
|
USAGE
|
|
855
|
-
$ sf api request
|
|
856
|
-
report.xlsx
|
|
857
|
-
|
|
858
|
-
ARGUMENTS
|
|
859
|
-
ENDPOINT Salesforce API endpoint
|
|
856
|
+
$ sf api request graphql -o <value> --body file [--json] [--flags-dir <value>] [--api-version <value>] [-S Example:
|
|
857
|
+
report.xlsx | -i]
|
|
860
858
|
|
|
861
859
|
FLAGS
|
|
862
|
-
-H, --header=key:value... HTTP header in "key:value" format.
|
|
863
860
|
-S, --stream-to-file=Example: report.xlsx Stream responses to a file.
|
|
864
|
-
-X, --method=<option> [default: GET] HTTP method for the request.
|
|
865
|
-
<options: GET|POST|PUT|PATCH|HEAD|DELETE|OPTIONS|TRACE>
|
|
866
861
|
-i, --include Include the HTTP response status and headers in the output.
|
|
867
862
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the
|
|
868
863
|
`target-org` configuration variable is already set.
|
|
869
864
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
870
|
-
--body=file File
|
|
871
|
-
input
|
|
865
|
+
--body=file (required) File or content with GraphQL statement. Specify "-" to read from
|
|
866
|
+
standard input.
|
|
872
867
|
|
|
873
868
|
GLOBAL FLAGS
|
|
874
869
|
--flags-dir=<value> Import flag values from a directory.
|
|
870
|
+
--json Format output as json.
|
|
875
871
|
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
-
|
|
884
|
-
sf api request
|
|
885
|
-
-
|
|
886
|
-
```
|
|
887
|
-
{
|
|
888
|
-
|
|
889
|
-
|
|
872
|
+
DESCRIPTION
|
|
873
|
+
Execute GraphQL statements
|
|
874
|
+
|
|
875
|
+
Run any valid GraphQL statement via the /graphql
|
|
876
|
+
[API](https://developer.salesforce.com/docs/platform/graphql/guide/graphql-about.html)
|
|
877
|
+
|
|
878
|
+
EXAMPLES
|
|
879
|
+
- Runs the graphql query directly via the command line
|
|
880
|
+
sf api request graphql --body "query accounts { uiapi { query { Account { edges { node { Id \n Name { value } } } } } } }"
|
|
881
|
+
- Runs a mutation to create an Account, with an `example.txt` file, containing
|
|
882
|
+
```text
|
|
883
|
+
mutation AccountExample{
|
|
884
|
+
uiapi {
|
|
885
|
+
AccountCreate(input: {
|
|
886
|
+
Account: {
|
|
887
|
+
Name: "Trailblazer Express"
|
|
888
|
+
}
|
|
889
|
+
}) {
|
|
890
|
+
Record {
|
|
891
|
+
Id
|
|
892
|
+
Name {
|
|
893
|
+
value
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
}
|
|
897
|
+
}
|
|
890
898
|
}
|
|
891
899
|
````
|
|
892
900
|
|
|
901
|
+
$ sf api request graphql --body example.txt
|
|
902
|
+
will create a new account returning specified fields (Id, Name)
|
|
903
|
+
|
|
904
|
+
```
|
|
905
|
+
|
|
906
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.2.0/src/commands/api/request/graphql.ts)_
|
|
907
|
+
|
|
908
|
+
## `sf api request rest ENDPOINT`
|
|
909
|
+
|
|
910
|
+
Make an authenticated HTTP request to Salesforce REST API and print the response.
|
|
911
|
+
|
|
912
|
+
```
|
|
913
|
+
|
|
914
|
+
USAGE
|
|
915
|
+
$ sf api request rest ENDPOINT -o <value> [--flags-dir <value>] [--api-version <value>] [-i | -S Example:
|
|
916
|
+
report.xlsx] [-X GET|POST|PUT|PATCH|HEAD|DELETE|OPTIONS|TRACE] [-H key:value...] [--body file]
|
|
917
|
+
|
|
918
|
+
ARGUMENTS
|
|
919
|
+
ENDPOINT Salesforce API endpoint
|
|
920
|
+
|
|
921
|
+
FLAGS
|
|
922
|
+
-H, --header=key:value... HTTP header in "key:value" format.
|
|
923
|
+
-S, --stream-to-file=Example: report.xlsx Stream responses to a file.
|
|
924
|
+
-X, --method=<option> [default: GET] HTTP method for the request.
|
|
925
|
+
<options: GET|POST|PUT|PATCH|HEAD|DELETE|OPTIONS|TRACE>
|
|
926
|
+
-i, --include Include the HTTP response status and headers in the output.
|
|
927
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the
|
|
928
|
+
`target-org` configuration variable is already set.
|
|
929
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
930
|
+
--body=file File to use as the body for the request. Specify "-" to read from standard
|
|
931
|
+
input; specify "" for an empty body.
|
|
932
|
+
|
|
933
|
+
GLOBAL FLAGS
|
|
934
|
+
--flags-dir=<value> Import flag values from a directory.
|
|
935
|
+
|
|
936
|
+
EXAMPLES
|
|
937
|
+
|
|
938
|
+
- List information about limits in the org with alias "my-org":
|
|
939
|
+
sf api request rest 'limits' --target-org my-org
|
|
940
|
+
- List all endpoints
|
|
941
|
+
sf api request rest '/'
|
|
942
|
+
- Get the response in XML format by specifying the "Accept" HTTP header:
|
|
943
|
+
sf api request rest 'limits' --target-org my-org --header 'Accept: application/xml'
|
|
944
|
+
- POST to create an Account object
|
|
945
|
+
sf api request rest 'sobjects/account' --body "{\"Name\" : \"Account from REST API\",\"ShippingCity\" : \"Boise\"}" --method POST
|
|
946
|
+
- or with a file 'info.json' containing
|
|
947
|
+
|
|
948
|
+
```json
|
|
949
|
+
{
|
|
950
|
+
"Name": "Demo",
|
|
951
|
+
"ShippingCity": "Boise"
|
|
952
|
+
}
|
|
953
|
+
```
|
|
954
|
+
|
|
893
955
|
$ sf api request rest 'sobjects/account' --body info.json --method POST
|
|
894
956
|
|
|
895
957
|
- Update object
|
|
@@ -897,7 +959,7 @@ $ sf api request rest 'sobjects/account' --body info.json --method POST
|
|
|
897
959
|
|
|
898
960
|
```
|
|
899
961
|
|
|
900
|
-
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.
|
|
962
|
+
_See code: [@salesforce/plugin-api](https://github.com/salesforcecli/plugin-api/blob/1.2.0/src/commands/api/request/rest.ts)_
|
|
901
963
|
|
|
902
964
|
## `sf autocomplete [SHELL]`
|
|
903
965
|
|
|
@@ -5995,7 +6057,7 @@ FLAG DESCRIPTIONS
|
|
|
5995
6057
|
|
|
5996
6058
|
```
|
|
5997
6059
|
|
|
5998
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
6060
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/convert/mdapi.ts)_
|
|
5999
6061
|
|
|
6000
6062
|
## `sf project convert source`
|
|
6001
6063
|
|
|
@@ -6008,7 +6070,7 @@ $ sf project convert source [--json] [--flags-dir <value>] [--api-version <value
|
|
|
6008
6070
|
[-p <value>... | -x <value> | -m <value>...]
|
|
6009
6071
|
|
|
6010
6072
|
FLAGS
|
|
6011
|
-
-d, --output-dir=<value> [default:
|
|
6073
|
+
-d, --output-dir=<value> [default: metadataPackage_1724350918433] Output directory to store the Metadata
|
|
6012
6074
|
API–formatted files in.
|
|
6013
6075
|
-m, --metadata=<value>... Metadata component names to convert.
|
|
6014
6076
|
-n, --package-name=<value> Name of the package to associate with the metadata-formatted files.
|
|
@@ -6070,7 +6132,7 @@ FLAG DESCRIPTIONS
|
|
|
6070
6132
|
|
|
6071
6133
|
```
|
|
6072
6134
|
|
|
6073
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
6135
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/convert/source.ts)_
|
|
6074
6136
|
|
|
6075
6137
|
## `sf project convert source-behavior`
|
|
6076
6138
|
|
|
@@ -6129,7 +6191,7 @@ Keep the temporary directory that contains the interim metadata API formatted fi
|
|
|
6129
6191
|
|
|
6130
6192
|
```
|
|
6131
6193
|
|
|
6132
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
6194
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/convert/source-behavior.ts)_
|
|
6133
6195
|
|
|
6134
6196
|
## `sf project delete source`
|
|
6135
6197
|
|
|
@@ -6271,7 +6333,7 @@ FLAG DESCRIPTIONS
|
|
|
6271
6333
|
|
|
6272
6334
|
```
|
|
6273
6335
|
|
|
6274
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
6336
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/delete/source.ts)_
|
|
6275
6337
|
|
|
6276
6338
|
## `sf project delete tracking`
|
|
6277
6339
|
|
|
@@ -6310,7 +6372,7 @@ Delete local source tracking for the org with alias "my-scratch":
|
|
|
6310
6372
|
|
|
6311
6373
|
```
|
|
6312
6374
|
|
|
6313
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
6375
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/delete/tracking.ts)_
|
|
6314
6376
|
|
|
6315
6377
|
## `sf project deploy cancel`
|
|
6316
6378
|
|
|
@@ -6384,7 +6446,7 @@ FLAG DESCRIPTIONS
|
|
|
6384
6446
|
|
|
6385
6447
|
```
|
|
6386
6448
|
|
|
6387
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
6449
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/deploy/cancel.ts)_
|
|
6388
6450
|
|
|
6389
6451
|
## `sf project deploy preview`
|
|
6390
6452
|
|
|
@@ -6469,7 +6531,7 @@ FLAG DESCRIPTIONS
|
|
|
6469
6531
|
|
|
6470
6532
|
```
|
|
6471
6533
|
|
|
6472
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
6534
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/deploy/preview.ts)_
|
|
6473
6535
|
|
|
6474
6536
|
## `sf project deploy quick`
|
|
6475
6537
|
|
|
@@ -6564,7 +6626,7 @@ Canceling (69) The deploy is being canceled.
|
|
|
6564
6626
|
|
|
6565
6627
|
```
|
|
6566
6628
|
|
|
6567
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
6629
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/deploy/quick.ts)_
|
|
6568
6630
|
|
|
6569
6631
|
## `sf project deploy report`
|
|
6570
6632
|
|
|
@@ -6658,7 +6720,7 @@ FLAG DESCRIPTIONS
|
|
|
6658
6720
|
|
|
6659
6721
|
```
|
|
6660
6722
|
|
|
6661
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
6723
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/deploy/report.ts)_
|
|
6662
6724
|
|
|
6663
6725
|
## `sf project deploy resume`
|
|
6664
6726
|
|
|
@@ -6757,7 +6819,7 @@ Canceling (69) The deploy is being canceled.
|
|
|
6757
6819
|
|
|
6758
6820
|
```
|
|
6759
6821
|
|
|
6760
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
6822
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/deploy/resume.ts)_
|
|
6761
6823
|
|
|
6762
6824
|
## `sf project deploy start`
|
|
6763
6825
|
|
|
@@ -7012,7 +7074,7 @@ Canceling (69) The deploy is being canceled.
|
|
|
7012
7074
|
|
|
7013
7075
|
```
|
|
7014
7076
|
|
|
7015
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
7077
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/deploy/start.ts)_
|
|
7016
7078
|
|
|
7017
7079
|
## `sf project deploy validate`
|
|
7018
7080
|
|
|
@@ -7204,7 +7266,7 @@ Canceling (69) The deploy is being canceled.
|
|
|
7204
7266
|
|
|
7205
7267
|
```
|
|
7206
7268
|
|
|
7207
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
7269
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/deploy/validate.ts)_
|
|
7208
7270
|
|
|
7209
7271
|
## `sf project generate`
|
|
7210
7272
|
|
|
@@ -7390,7 +7452,7 @@ Create a manifest from the metadata components in the specified org and include
|
|
|
7390
7452
|
|
|
7391
7453
|
```
|
|
7392
7454
|
|
|
7393
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
7455
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/generate/manifest.ts)_
|
|
7394
7456
|
|
|
7395
7457
|
## `sf project list ignored`
|
|
7396
7458
|
|
|
@@ -7434,7 +7496,7 @@ Check if a particular file is ignored:
|
|
|
7434
7496
|
|
|
7435
7497
|
```
|
|
7436
7498
|
|
|
7437
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
7499
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/list/ignored.ts)_
|
|
7438
7500
|
|
|
7439
7501
|
## `sf project reset tracking`
|
|
7440
7502
|
|
|
@@ -7485,7 +7547,7 @@ Reset source tracking to revision number 30 for your default org:
|
|
|
7485
7547
|
|
|
7486
7548
|
```
|
|
7487
7549
|
|
|
7488
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
7550
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/reset/tracking.ts)_
|
|
7489
7551
|
|
|
7490
7552
|
## `sf project retrieve preview`
|
|
7491
7553
|
|
|
@@ -7541,7 +7603,7 @@ FLAG DESCRIPTIONS
|
|
|
7541
7603
|
|
|
7542
7604
|
```
|
|
7543
7605
|
|
|
7544
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
7606
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/retrieve/preview.ts)_
|
|
7545
7607
|
|
|
7546
7608
|
## `sf project retrieve start`
|
|
7547
7609
|
|
|
@@ -7720,7 +7782,7 @@ SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the me
|
|
|
7720
7782
|
|
|
7721
7783
|
```
|
|
7722
7784
|
|
|
7723
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.
|
|
7785
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.11.1/src/commands/project/retrieve/start.ts)_
|
|
7724
7786
|
|
|
7725
7787
|
## `sf schema generate field`
|
|
7726
7788
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.57.
|
|
3
|
+
"version": "2.57.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.57.
|
|
9
|
+
"version": "2.57.1",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"@salesforce/core": "^8.2.3",
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
27
|
"@salesforce/plugin-apex": "3.4.2",
|
|
28
|
-
"@salesforce/plugin-api": "1.
|
|
28
|
+
"@salesforce/plugin-api": "1.2.0",
|
|
29
29
|
"@salesforce/plugin-auth": "3.6.48",
|
|
30
30
|
"@salesforce/plugin-data": "3.6.1",
|
|
31
|
-
"@salesforce/plugin-deploy-retrieve": "3.11.
|
|
31
|
+
"@salesforce/plugin-deploy-retrieve": "3.11.1",
|
|
32
32
|
"@salesforce/plugin-info": "3.3.29",
|
|
33
33
|
"@salesforce/plugin-limits": "3.3.25",
|
|
34
34
|
"@salesforce/plugin-marketplace": "1.2.22",
|
|
@@ -4331,15 +4331,16 @@
|
|
|
4331
4331
|
}
|
|
4332
4332
|
},
|
|
4333
4333
|
"node_modules/@salesforce/plugin-api": {
|
|
4334
|
-
"version": "1.
|
|
4335
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.
|
|
4336
|
-
"integrity": "sha512-
|
|
4334
|
+
"version": "1.2.0",
|
|
4335
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.2.0.tgz",
|
|
4336
|
+
"integrity": "sha512-xpfSjrTTJ0AzvAZTlEkbVRPgZDWTr6ySyUckqEYDqv9EtfESB0CQdaK9KP6/q0+v5adfnJMADNOEBQk7cogdmQ==",
|
|
4337
4337
|
"license": "BSD-3-Clause",
|
|
4338
4338
|
"dependencies": {
|
|
4339
4339
|
"@oclif/core": "^4",
|
|
4340
4340
|
"@salesforce/core": "^8.4.0",
|
|
4341
4341
|
"@salesforce/kit": "^3.2.1",
|
|
4342
4342
|
"@salesforce/sf-plugins-core": "^11.3.2",
|
|
4343
|
+
"@salesforce/ts-types": "^2.0.12",
|
|
4343
4344
|
"ansis": "^3.3.2",
|
|
4344
4345
|
"got": "^13.0.0",
|
|
4345
4346
|
"proxy-agent": "^6.4.0"
|
|
@@ -4423,9 +4424,9 @@
|
|
|
4423
4424
|
}
|
|
4424
4425
|
},
|
|
4425
4426
|
"node_modules/@salesforce/plugin-deploy-retrieve": {
|
|
4426
|
-
"version": "3.11.
|
|
4427
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.11.
|
|
4428
|
-
"integrity": "sha512-
|
|
4427
|
+
"version": "3.11.1",
|
|
4428
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.11.1.tgz",
|
|
4429
|
+
"integrity": "sha512-ZzgKukbgU0wGSm6zD2E9IzNtbhDEFoqUwg+Dd2ctFmZM7Yl6MURpUcbdwNjSDdG7ywhXxZX59kctrP3sN9OE1A==",
|
|
4429
4430
|
"license": "BSD-3-Clause",
|
|
4430
4431
|
"dependencies": {
|
|
4431
4432
|
"@oclif/core": "^4.0.17",
|
package/oclif.lock
CHANGED
|
@@ -2158,15 +2158,16 @@
|
|
|
2158
2158
|
"@salesforce/sf-plugins-core" "^11.3.2"
|
|
2159
2159
|
ansis "^3.3.1"
|
|
2160
2160
|
|
|
2161
|
-
"@salesforce/plugin-api@1.
|
|
2162
|
-
version "1.
|
|
2163
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.
|
|
2164
|
-
integrity sha512-
|
|
2161
|
+
"@salesforce/plugin-api@1.2.0":
|
|
2162
|
+
version "1.2.0"
|
|
2163
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-api/-/plugin-api-1.2.0.tgz"
|
|
2164
|
+
integrity sha512-xpfSjrTTJ0AzvAZTlEkbVRPgZDWTr6ySyUckqEYDqv9EtfESB0CQdaK9KP6/q0+v5adfnJMADNOEBQk7cogdmQ==
|
|
2165
2165
|
dependencies:
|
|
2166
2166
|
"@oclif/core" "^4"
|
|
2167
2167
|
"@salesforce/core" "^8.4.0"
|
|
2168
2168
|
"@salesforce/kit" "^3.2.1"
|
|
2169
2169
|
"@salesforce/sf-plugins-core" "^11.3.2"
|
|
2170
|
+
"@salesforce/ts-types" "^2.0.12"
|
|
2170
2171
|
ansis "^3.3.2"
|
|
2171
2172
|
got "^13.0.0"
|
|
2172
2173
|
proxy-agent "^6.4.0"
|
|
@@ -2216,10 +2217,10 @@
|
|
|
2216
2217
|
csv-stringify "^6.5.1"
|
|
2217
2218
|
form-data "^4.0.0"
|
|
2218
2219
|
|
|
2219
|
-
"@salesforce/plugin-deploy-retrieve@3.11.
|
|
2220
|
-
version "3.11.
|
|
2221
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.11.
|
|
2222
|
-
integrity sha512-
|
|
2220
|
+
"@salesforce/plugin-deploy-retrieve@3.11.1":
|
|
2221
|
+
version "3.11.1"
|
|
2222
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.11.1.tgz"
|
|
2223
|
+
integrity sha512-ZzgKukbgU0wGSm6zD2E9IzNtbhDEFoqUwg+Dd2ctFmZM7Yl6MURpUcbdwNjSDdG7ywhXxZX59kctrP3sN9OE1A==
|
|
2223
2224
|
dependencies:
|
|
2224
2225
|
"@oclif/core" "^4.0.17"
|
|
2225
2226
|
"@oclif/multi-stage-output" "^0.3.0"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.57.
|
|
4
|
+
"version": "2.57.1",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -154,10 +154,10 @@
|
|
|
154
154
|
"@salesforce/core": "^8.2.3",
|
|
155
155
|
"@salesforce/kit": "^3.1.6",
|
|
156
156
|
"@salesforce/plugin-apex": "3.4.2",
|
|
157
|
-
"@salesforce/plugin-api": "1.
|
|
157
|
+
"@salesforce/plugin-api": "1.2.0",
|
|
158
158
|
"@salesforce/plugin-auth": "3.6.48",
|
|
159
159
|
"@salesforce/plugin-data": "3.6.1",
|
|
160
|
-
"@salesforce/plugin-deploy-retrieve": "3.11.
|
|
160
|
+
"@salesforce/plugin-deploy-retrieve": "3.11.1",
|
|
161
161
|
"@salesforce/plugin-info": "3.3.29",
|
|
162
162
|
"@salesforce/plugin-limits": "3.3.25",
|
|
163
163
|
"@salesforce/plugin-marketplace": "1.2.22",
|