@salesforce/cli 2.56.6 → 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 +122 -60
- package/npm-shrinkwrap.json +24 -22
- package/oclif.lock +23 -21
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
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.
|
|
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
|
|
|
@@ -2778,7 +2840,7 @@ FLAG DESCRIPTIONS
|
|
|
2778
2840
|
|
|
2779
2841
|
```
|
|
2780
2842
|
|
|
2781
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
2843
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/create/sandbox.ts)_
|
|
2782
2844
|
|
|
2783
2845
|
## `sf org create scratch`
|
|
2784
2846
|
|
|
@@ -2934,7 +2996,7 @@ FLAG DESCRIPTIONS
|
|
|
2934
2996
|
|
|
2935
2997
|
```
|
|
2936
2998
|
|
|
2937
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
2999
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/create/scratch.ts)_
|
|
2938
3000
|
|
|
2939
3001
|
## `sf org create user`
|
|
2940
3002
|
|
|
@@ -3092,7 +3154,7 @@ Delete the sandbox without prompting to confirm:
|
|
|
3092
3154
|
|
|
3093
3155
|
```
|
|
3094
3156
|
|
|
3095
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
3157
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/delete/sandbox.ts)_
|
|
3096
3158
|
|
|
3097
3159
|
## `sf org delete scratch`
|
|
3098
3160
|
|
|
@@ -3138,7 +3200,7 @@ Delete the scratch org without prompting to confirm :
|
|
|
3138
3200
|
|
|
3139
3201
|
```
|
|
3140
3202
|
|
|
3141
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
3203
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/delete/scratch.ts)_
|
|
3142
3204
|
|
|
3143
3205
|
## `sf org disable tracking`
|
|
3144
3206
|
|
|
@@ -3179,7 +3241,7 @@ Disable source tracking for your default org:
|
|
|
3179
3241
|
|
|
3180
3242
|
```
|
|
3181
3243
|
|
|
3182
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
3244
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/disable/tracking.ts)_
|
|
3183
3245
|
|
|
3184
3246
|
## `sf org display`
|
|
3185
3247
|
|
|
@@ -3226,7 +3288,7 @@ Display information, including the sfdxAuthUrl property, about the org with alia
|
|
|
3226
3288
|
|
|
3227
3289
|
```
|
|
3228
3290
|
|
|
3229
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
3291
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/display.ts)_
|
|
3230
3292
|
|
|
3231
3293
|
## `sf org display user`
|
|
3232
3294
|
|
|
@@ -3311,7 +3373,7 @@ Enable source tracking for your default org:
|
|
|
3311
3373
|
|
|
3312
3374
|
```
|
|
3313
3375
|
|
|
3314
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
3376
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/enable/tracking.ts)_
|
|
3315
3377
|
|
|
3316
3378
|
## `sf org generate password`
|
|
3317
3379
|
|
|
@@ -3421,7 +3483,7 @@ List orgs and remove local org authorization info about non-active scratch orgs:
|
|
|
3421
3483
|
|
|
3422
3484
|
```
|
|
3423
3485
|
|
|
3424
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
3486
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/list.ts)_
|
|
3425
3487
|
|
|
3426
3488
|
## `sf org list auth`
|
|
3427
3489
|
|
|
@@ -3566,7 +3628,7 @@ FLAG DESCRIPTIONS
|
|
|
3566
3628
|
|
|
3567
3629
|
```
|
|
3568
3630
|
|
|
3569
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
3631
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/list/metadata.ts)_
|
|
3570
3632
|
|
|
3571
3633
|
## `sf org list metadata-types`
|
|
3572
3634
|
|
|
@@ -3623,7 +3685,7 @@ FLAG DESCRIPTIONS
|
|
|
3623
3685
|
|
|
3624
3686
|
```
|
|
3625
3687
|
|
|
3626
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
3688
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/list/metadata-types.ts)_
|
|
3627
3689
|
|
|
3628
3690
|
## `sf org list sobject record-counts`
|
|
3629
3691
|
|
|
@@ -4215,7 +4277,7 @@ Open a local Flow in Flow Builder:
|
|
|
4215
4277
|
|
|
4216
4278
|
```
|
|
4217
4279
|
|
|
4218
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
4280
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/open.ts)_
|
|
4219
4281
|
|
|
4220
4282
|
## `sf org refresh sandbox`
|
|
4221
4283
|
|
|
@@ -4294,7 +4356,7 @@ FLAG DESCRIPTIONS
|
|
|
4294
4356
|
|
|
4295
4357
|
```
|
|
4296
4358
|
|
|
4297
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
4359
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/refresh/sandbox.ts)_
|
|
4298
4360
|
|
|
4299
4361
|
## `sf org resume sandbox`
|
|
4300
4362
|
|
|
@@ -4359,7 +4421,7 @@ FLAG DESCRIPTIONS
|
|
|
4359
4421
|
|
|
4360
4422
|
```
|
|
4361
4423
|
|
|
4362
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
4424
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/resume/sandbox.ts)_
|
|
4363
4425
|
|
|
4364
4426
|
## `sf org resume scratch`
|
|
4365
4427
|
|
|
@@ -4408,7 +4470,7 @@ FLAG DESCRIPTIONS
|
|
|
4408
4470
|
|
|
4409
4471
|
```
|
|
4410
4472
|
|
|
4411
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.
|
|
4473
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.5.1/src/commands/org/resume/scratch.ts)_
|
|
4412
4474
|
|
|
4413
4475
|
## `sf package create`
|
|
4414
4476
|
|
|
@@ -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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.
|
|
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.
|
|
9
|
+
"version": "2.57.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.
|
|
14
|
+
"@oclif/core": "4.0.18",
|
|
15
15
|
"@oclif/plugin-autocomplete": "3.2.0",
|
|
16
16
|
"@oclif/plugin-commands": "4.0.11",
|
|
17
17
|
"@oclif/plugin-help": "6.2.8",
|
|
@@ -25,14 +25,14 @@
|
|
|
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.
|
|
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",
|
|
35
|
-
"@salesforce/plugin-org": "4.5.
|
|
35
|
+
"@salesforce/plugin-org": "4.5.1",
|
|
36
36
|
"@salesforce/plugin-packaging": "2.8.0",
|
|
37
37
|
"@salesforce/plugin-schema": "3.3.24",
|
|
38
38
|
"@salesforce/plugin-settings": "2.3.13",
|
|
@@ -3367,9 +3367,9 @@
|
|
|
3367
3367
|
}
|
|
3368
3368
|
},
|
|
3369
3369
|
"node_modules/@oclif/core": {
|
|
3370
|
-
"version": "4.0.
|
|
3371
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.0.
|
|
3372
|
-
"integrity": "sha512-
|
|
3370
|
+
"version": "4.0.18",
|
|
3371
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.0.18.tgz",
|
|
3372
|
+
"integrity": "sha512-3EP4zJ+1ndc92UxdNmGX4HhFK5Xh94fWvUeOW1Tu/Ed+/jAljIsbmZyjVhDoE0vV5cftT+3QaVB/LFxaXxty/w==",
|
|
3373
3373
|
"license": "MIT",
|
|
3374
3374
|
"dependencies": {
|
|
3375
3375
|
"ansi-escapes": "^4.3.2",
|
|
@@ -3454,9 +3454,9 @@
|
|
|
3454
3454
|
}
|
|
3455
3455
|
},
|
|
3456
3456
|
"node_modules/@oclif/multi-stage-output": {
|
|
3457
|
-
"version": "0.3.
|
|
3458
|
-
"resolved": "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.3.
|
|
3459
|
-
"integrity": "sha512-
|
|
3457
|
+
"version": "0.3.1",
|
|
3458
|
+
"resolved": "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.3.1.tgz",
|
|
3459
|
+
"integrity": "sha512-CBE8Cesd3Pxd0n+9GUqaml1yHKi93dNGvP5ksS0SnUfkfFVI6AMPWDzFLmMiqNxl1k78+IklKoMygw0rqaZCvA==",
|
|
3460
3460
|
"license": "MIT",
|
|
3461
3461
|
"dependencies": {
|
|
3462
3462
|
"@oclif/core": "^4",
|
|
@@ -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,12 +4424,13 @@
|
|
|
4423
4424
|
}
|
|
4424
4425
|
},
|
|
4425
4426
|
"node_modules/@salesforce/plugin-deploy-retrieve": {
|
|
4426
|
-
"version": "3.
|
|
4427
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.
|
|
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",
|
|
4433
|
+
"@oclif/multi-stage-output": "^0.3.0",
|
|
4432
4434
|
"@salesforce/apex-node": "^8.1.3",
|
|
4433
4435
|
"@salesforce/core": "^8.4.0",
|
|
4434
4436
|
"@salesforce/kit": "^3.2.1",
|
|
@@ -4496,13 +4498,13 @@
|
|
|
4496
4498
|
}
|
|
4497
4499
|
},
|
|
4498
4500
|
"node_modules/@salesforce/plugin-org": {
|
|
4499
|
-
"version": "4.5.
|
|
4500
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.5.
|
|
4501
|
-
"integrity": "sha512-
|
|
4501
|
+
"version": "4.5.1",
|
|
4502
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.5.1.tgz",
|
|
4503
|
+
"integrity": "sha512-T8X7ZBo6Egw3pXKRhUj2Y9iOwRkfshdZayx6iqs1bTC9cRqY8N1AqVDnCUxzJKSPax7kdqAQ09lez9sh3dx9xA==",
|
|
4502
4504
|
"license": "BSD-3-Clause",
|
|
4503
4505
|
"dependencies": {
|
|
4504
4506
|
"@oclif/core": "^4.0.16",
|
|
4505
|
-
"@oclif/multi-stage-output": "^0.3.
|
|
4507
|
+
"@oclif/multi-stage-output": "^0.3.1",
|
|
4506
4508
|
"@salesforce/core": "^8.4.0",
|
|
4507
4509
|
"@salesforce/kit": "^3.2.0",
|
|
4508
4510
|
"@salesforce/sf-plugins-core": "^11.3.3",
|
package/oclif.lock
CHANGED
|
@@ -1730,10 +1730,10 @@
|
|
|
1730
1730
|
proc-log "^4.0.0"
|
|
1731
1731
|
which "^4.0.0"
|
|
1732
1732
|
|
|
1733
|
-
"@oclif/core@^4", "@oclif/core@^4.0.16", "@oclif/core@^4.0.17", "@oclif/core@^4.0.6", "@oclif/core@4.0.
|
|
1734
|
-
version "4.0.
|
|
1735
|
-
resolved "https://registry.npmjs.org/@oclif/core/-/core-4.0.
|
|
1736
|
-
integrity sha512-
|
|
1733
|
+
"@oclif/core@^4", "@oclif/core@^4.0.16", "@oclif/core@^4.0.17", "@oclif/core@^4.0.6", "@oclif/core@4.0.18":
|
|
1734
|
+
version "4.0.18"
|
|
1735
|
+
resolved "https://registry.npmjs.org/@oclif/core/-/core-4.0.18.tgz"
|
|
1736
|
+
integrity sha512-3EP4zJ+1ndc92UxdNmGX4HhFK5Xh94fWvUeOW1Tu/Ed+/jAljIsbmZyjVhDoE0vV5cftT+3QaVB/LFxaXxty/w==
|
|
1737
1737
|
dependencies:
|
|
1738
1738
|
ansi-escapes "^4.3.2"
|
|
1739
1739
|
ansis "^3.3.2"
|
|
@@ -1753,10 +1753,10 @@
|
|
|
1753
1753
|
wordwrap "^1.0.0"
|
|
1754
1754
|
wrap-ansi "^7.0.0"
|
|
1755
1755
|
|
|
1756
|
-
"@oclif/multi-stage-output@^0.3.0":
|
|
1757
|
-
version "0.3.
|
|
1758
|
-
resolved "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.3.
|
|
1759
|
-
integrity sha512-
|
|
1756
|
+
"@oclif/multi-stage-output@^0.3.0", "@oclif/multi-stage-output@^0.3.1":
|
|
1757
|
+
version "0.3.1"
|
|
1758
|
+
resolved "https://registry.npmjs.org/@oclif/multi-stage-output/-/multi-stage-output-0.3.1.tgz"
|
|
1759
|
+
integrity sha512-CBE8Cesd3Pxd0n+9GUqaml1yHKi93dNGvP5ksS0SnUfkfFVI6AMPWDzFLmMiqNxl1k78+IklKoMygw0rqaZCvA==
|
|
1760
1760
|
dependencies:
|
|
1761
1761
|
"@oclif/core" "^4"
|
|
1762
1762
|
"@types/react" "^18.3.3"
|
|
@@ -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,12 +2217,13 @@
|
|
|
2216
2217
|
csv-stringify "^6.5.1"
|
|
2217
2218
|
form-data "^4.0.0"
|
|
2218
2219
|
|
|
2219
|
-
"@salesforce/plugin-deploy-retrieve@3.
|
|
2220
|
-
version "3.
|
|
2221
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.
|
|
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"
|
|
2226
|
+
"@oclif/multi-stage-output" "^0.3.0"
|
|
2225
2227
|
"@salesforce/apex-node" "^8.1.3"
|
|
2226
2228
|
"@salesforce/core" "^8.4.0"
|
|
2227
2229
|
"@salesforce/kit" "^3.2.1"
|
|
@@ -2269,13 +2271,13 @@
|
|
|
2269
2271
|
got "^13.0.0"
|
|
2270
2272
|
proxy-agent "^6.4.0"
|
|
2271
2273
|
|
|
2272
|
-
"@salesforce/plugin-org@4.5.
|
|
2273
|
-
version "4.5.
|
|
2274
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.5.
|
|
2275
|
-
integrity sha512-
|
|
2274
|
+
"@salesforce/plugin-org@4.5.1":
|
|
2275
|
+
version "4.5.1"
|
|
2276
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.5.1.tgz"
|
|
2277
|
+
integrity sha512-T8X7ZBo6Egw3pXKRhUj2Y9iOwRkfshdZayx6iqs1bTC9cRqY8N1AqVDnCUxzJKSPax7kdqAQ09lez9sh3dx9xA==
|
|
2276
2278
|
dependencies:
|
|
2277
2279
|
"@oclif/core" "^4.0.16"
|
|
2278
|
-
"@oclif/multi-stage-output" "^0.3.
|
|
2280
|
+
"@oclif/multi-stage-output" "^0.3.1"
|
|
2279
2281
|
"@salesforce/core" "^8.4.0"
|
|
2280
2282
|
"@salesforce/kit" "^3.2.0"
|
|
2281
2283
|
"@salesforce/sf-plugins-core" "^11.3.3"
|
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.
|
|
4
|
+
"version": "2.57.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.
|
|
143
|
+
"@oclif/core": "4.0.18",
|
|
144
144
|
"@oclif/plugin-autocomplete": "3.2.0",
|
|
145
145
|
"@oclif/plugin-commands": "4.0.11",
|
|
146
146
|
"@oclif/plugin-help": "6.2.8",
|
|
@@ -154,14 +154,14 @@
|
|
|
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.
|
|
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",
|
|
164
|
-
"@salesforce/plugin-org": "4.5.
|
|
164
|
+
"@salesforce/plugin-org": "4.5.1",
|
|
165
165
|
"@salesforce/plugin-packaging": "2.8.0",
|
|
166
166
|
"@salesforce/plugin-schema": "3.3.24",
|
|
167
167
|
"@salesforce/plugin-settings": "2.3.13",
|