@salesforce/cli 2.44.8 → 2.45.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 +37 -35
- package/npm-shrinkwrap.json +513 -84
- package/oclif.lock +141 -104
- package/oclif.manifest.json +3 -3
- package/package.json +7 -7
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.45.1 linux-x64 node-v20.13.1
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -2649,7 +2649,7 @@ FLAG DESCRIPTIONS
|
|
|
2649
2649
|
sandbox.
|
|
2650
2650
|
```
|
|
2651
2651
|
|
|
2652
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
2652
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/create/sandbox.ts)_
|
|
2653
2653
|
|
|
2654
2654
|
## `sf org create scratch`
|
|
2655
2655
|
|
|
@@ -2803,7 +2803,7 @@ FLAG DESCRIPTIONS
|
|
|
2803
2803
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
2804
2804
|
```
|
|
2805
2805
|
|
|
2806
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
2806
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/create/scratch.ts)_
|
|
2807
2807
|
|
|
2808
2808
|
## `sf org create user`
|
|
2809
2809
|
|
|
@@ -2922,7 +2922,8 @@ USAGE
|
|
|
2922
2922
|
$ sf org delete sandbox -o <value> [--json] [--flags-dir <value>] [-p]
|
|
2923
2923
|
|
|
2924
2924
|
FLAGS
|
|
2925
|
-
-o, --target-org=<value> (required)
|
|
2925
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
2926
|
+
configuration variable is already set.
|
|
2926
2927
|
-p, --no-prompt Don't prompt the user to confirm the deletion.
|
|
2927
2928
|
|
|
2928
2929
|
GLOBAL FLAGS
|
|
@@ -2956,7 +2957,7 @@ EXAMPLES
|
|
|
2956
2957
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
2957
2958
|
```
|
|
2958
2959
|
|
|
2959
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
2960
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/delete/sandbox.ts)_
|
|
2960
2961
|
|
|
2961
2962
|
## `sf org delete scratch`
|
|
2962
2963
|
|
|
@@ -2967,7 +2968,8 @@ USAGE
|
|
|
2967
2968
|
$ sf org delete scratch -o <value> [--json] [--flags-dir <value>] [-p]
|
|
2968
2969
|
|
|
2969
2970
|
FLAGS
|
|
2970
|
-
-o, --target-org=<value> (required)
|
|
2971
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
2972
|
+
configuration variable is already set.
|
|
2971
2973
|
-p, --no-prompt Don't prompt the user to confirm the deletion.
|
|
2972
2974
|
|
|
2973
2975
|
GLOBAL FLAGS
|
|
@@ -2999,7 +3001,7 @@ EXAMPLES
|
|
|
2999
3001
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
3000
3002
|
```
|
|
3001
3003
|
|
|
3002
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
3004
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/delete/scratch.ts)_
|
|
3003
3005
|
|
|
3004
3006
|
## `sf org disable tracking`
|
|
3005
3007
|
|
|
@@ -3038,7 +3040,7 @@ EXAMPLES
|
|
|
3038
3040
|
$ sf org disable tracking
|
|
3039
3041
|
```
|
|
3040
3042
|
|
|
3041
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
3043
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/disable/tracking.ts)_
|
|
3042
3044
|
|
|
3043
3045
|
## `sf org display`
|
|
3044
3046
|
|
|
@@ -3083,7 +3085,7 @@ EXAMPLES
|
|
|
3083
3085
|
$ sf org display --target-org TestOrg1 --verbose
|
|
3084
3086
|
```
|
|
3085
3087
|
|
|
3086
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
3088
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/display.ts)_
|
|
3087
3089
|
|
|
3088
3090
|
## `sf org display user`
|
|
3089
3091
|
|
|
@@ -3164,7 +3166,7 @@ EXAMPLES
|
|
|
3164
3166
|
$ sf org enable tracking
|
|
3165
3167
|
```
|
|
3166
3168
|
|
|
3167
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
3169
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/enable/tracking.ts)_
|
|
3168
3170
|
|
|
3169
3171
|
## `sf org generate password`
|
|
3170
3172
|
|
|
@@ -3270,7 +3272,7 @@ EXAMPLES
|
|
|
3270
3272
|
$ sf org list --clean
|
|
3271
3273
|
```
|
|
3272
3274
|
|
|
3273
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
3275
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/list.ts)_
|
|
3274
3276
|
|
|
3275
3277
|
## `sf org list auth`
|
|
3276
3278
|
|
|
@@ -3409,7 +3411,7 @@ FLAG DESCRIPTIONS
|
|
|
3409
3411
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
3410
3412
|
```
|
|
3411
3413
|
|
|
3412
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
3414
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/list/metadata.ts)_
|
|
3413
3415
|
|
|
3414
3416
|
## `sf org list metadata-types`
|
|
3415
3417
|
|
|
@@ -3464,7 +3466,7 @@ FLAG DESCRIPTIONS
|
|
|
3464
3466
|
Override the api version used for api requests made by this command
|
|
3465
3467
|
```
|
|
3466
3468
|
|
|
3467
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
3469
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/list/metadata-types.ts)_
|
|
3468
3470
|
|
|
3469
3471
|
## `sf org list sobject record-counts`
|
|
3470
3472
|
|
|
@@ -4038,7 +4040,7 @@ EXAMPLES
|
|
|
4038
4040
|
$ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
|
|
4039
4041
|
```
|
|
4040
4042
|
|
|
4041
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
4043
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/open.ts)_
|
|
4042
4044
|
|
|
4043
4045
|
## `sf org refresh sandbox`
|
|
4044
4046
|
|
|
@@ -4115,7 +4117,7 @@ FLAG DESCRIPTIONS
|
|
|
4115
4117
|
By default, a sandbox auto-activates after a refresh. Use this flag to control sandbox activation manually.
|
|
4116
4118
|
```
|
|
4117
4119
|
|
|
4118
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
4120
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/refresh/sandbox.ts)_
|
|
4119
4121
|
|
|
4120
4122
|
## `sf org resume sandbox`
|
|
4121
4123
|
|
|
@@ -4178,7 +4180,7 @@ FLAG DESCRIPTIONS
|
|
|
4178
4180
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
4179
4181
|
```
|
|
4180
4182
|
|
|
4181
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
4183
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/resume/sandbox.ts)_
|
|
4182
4184
|
|
|
4183
4185
|
## `sf org resume scratch`
|
|
4184
4186
|
|
|
@@ -4225,7 +4227,7 @@ FLAG DESCRIPTIONS
|
|
|
4225
4227
|
The job ID is valid for 24 hours after you start the scratch org creation.
|
|
4226
4228
|
```
|
|
4227
4229
|
|
|
4228
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.
|
|
4230
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/4.1.16/src/commands/org/resume/scratch.ts)_
|
|
4229
4231
|
|
|
4230
4232
|
## `sf package create`
|
|
4231
4233
|
|
|
@@ -5719,7 +5721,7 @@ FLAG DESCRIPTIONS
|
|
|
5719
5721
|
If you specify this parameter, don’t specify --metadata or --source-dir.
|
|
5720
5722
|
```
|
|
5721
5723
|
|
|
5722
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
5724
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/convert/mdapi.ts)_
|
|
5723
5725
|
|
|
5724
5726
|
## `sf project convert source`
|
|
5725
5727
|
|
|
@@ -5731,7 +5733,7 @@ USAGE
|
|
|
5731
5733
|
[-p <value> | -x <value> | -m <value>]
|
|
5732
5734
|
|
|
5733
5735
|
FLAGS
|
|
5734
|
-
-d, --output-dir=<value> [default:
|
|
5736
|
+
-d, --output-dir=<value> [default: metadataPackage_1717102577231] Output directory to store the Metadata
|
|
5735
5737
|
API–formatted files in.
|
|
5736
5738
|
-m, --metadata=<value>... Metadata component names to convert.
|
|
5737
5739
|
-n, --package-name=<value> Name of the package to associate with the metadata-formatted files.
|
|
@@ -5792,7 +5794,7 @@ FLAG DESCRIPTIONS
|
|
|
5792
5794
|
Override the api version used for api requests made by this command
|
|
5793
5795
|
```
|
|
5794
5796
|
|
|
5795
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
5797
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/convert/source.ts)_
|
|
5796
5798
|
|
|
5797
5799
|
## `sf project convert source-behavior`
|
|
5798
5800
|
|
|
@@ -5849,7 +5851,7 @@ EXAMPLES
|
|
|
5849
5851
|
$ sf project convert source-behavior --behavior decomposeCustomLabelsBeta --dry-run --preserve-temp-dir
|
|
5850
5852
|
```
|
|
5851
5853
|
|
|
5852
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
5854
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/convert/source-behavior.ts)_
|
|
5853
5855
|
|
|
5854
5856
|
## `sf project delete source`
|
|
5855
5857
|
|
|
@@ -5989,7 +5991,7 @@ FLAG DESCRIPTIONS
|
|
|
5989
5991
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
5990
5992
|
```
|
|
5991
5993
|
|
|
5992
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
5994
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/delete/source.ts)_
|
|
5993
5995
|
|
|
5994
5996
|
## `sf project delete tracking`
|
|
5995
5997
|
|
|
@@ -6026,7 +6028,7 @@ EXAMPLES
|
|
|
6026
6028
|
$ sf project delete tracking --target-org my-scratch
|
|
6027
6029
|
```
|
|
6028
6030
|
|
|
6029
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
6031
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/delete/tracking.ts)_
|
|
6030
6032
|
|
|
6031
6033
|
## `sf project deploy cancel`
|
|
6032
6034
|
|
|
@@ -6098,7 +6100,7 @@ FLAG DESCRIPTIONS
|
|
|
6098
6100
|
project deploy report".
|
|
6099
6101
|
```
|
|
6100
6102
|
|
|
6101
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
6103
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/deploy/cancel.ts)_
|
|
6102
6104
|
|
|
6103
6105
|
## `sf project deploy preview`
|
|
6104
6106
|
|
|
@@ -6181,7 +6183,7 @@ FLAG DESCRIPTIONS
|
|
|
6181
6183
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
6182
6184
|
```
|
|
6183
6185
|
|
|
6184
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
6186
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/deploy/preview.ts)_
|
|
6185
6187
|
|
|
6186
6188
|
## `sf project deploy quick`
|
|
6187
6189
|
|
|
@@ -6274,7 +6276,7 @@ ERROR CODES
|
|
|
6274
6276
|
Canceling (69) The deploy is being canceled.
|
|
6275
6277
|
```
|
|
6276
6278
|
|
|
6277
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
6279
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/deploy/quick.ts)_
|
|
6278
6280
|
|
|
6279
6281
|
## `sf project deploy report`
|
|
6280
6282
|
|
|
@@ -6366,7 +6368,7 @@ FLAG DESCRIPTIONS
|
|
|
6366
6368
|
--coverage-formatters lcov --coverage-formatters clover
|
|
6367
6369
|
```
|
|
6368
6370
|
|
|
6369
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
6371
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/deploy/report.ts)_
|
|
6370
6372
|
|
|
6371
6373
|
## `sf project deploy resume`
|
|
6372
6374
|
|
|
@@ -6463,7 +6465,7 @@ ERROR CODES
|
|
|
6463
6465
|
Canceling (69) The deploy is being canceled.
|
|
6464
6466
|
```
|
|
6465
6467
|
|
|
6466
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
6468
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/deploy/resume.ts)_
|
|
6467
6469
|
|
|
6468
6470
|
## `sf project deploy start`
|
|
6469
6471
|
|
|
@@ -6706,7 +6708,7 @@ ERROR CODES
|
|
|
6706
6708
|
Canceling (69) The deploy is being canceled.
|
|
6707
6709
|
```
|
|
6708
6710
|
|
|
6709
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
6711
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/deploy/start.ts)_
|
|
6710
6712
|
|
|
6711
6713
|
## `sf project deploy validate`
|
|
6712
6714
|
|
|
@@ -6895,7 +6897,7 @@ ERROR CODES
|
|
|
6895
6897
|
Canceling (69) The deploy is being canceled.
|
|
6896
6898
|
```
|
|
6897
6899
|
|
|
6898
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
6900
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/deploy/validate.ts)_
|
|
6899
6901
|
|
|
6900
6902
|
## `sf project generate`
|
|
6901
6903
|
|
|
@@ -7077,7 +7079,7 @@ EXAMPLES
|
|
|
7077
7079
|
$ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
|
|
7078
7080
|
```
|
|
7079
7081
|
|
|
7080
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
7082
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/generate/manifest.ts)_
|
|
7081
7083
|
|
|
7082
7084
|
## `sf project list ignored`
|
|
7083
7085
|
|
|
@@ -7119,7 +7121,7 @@ EXAMPLES
|
|
|
7119
7121
|
$ sf project list ignored --source-dir package.xml
|
|
7120
7122
|
```
|
|
7121
7123
|
|
|
7122
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
7124
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/list/ignored.ts)_
|
|
7123
7125
|
|
|
7124
7126
|
## `sf project reset tracking`
|
|
7125
7127
|
|
|
@@ -7168,7 +7170,7 @@ EXAMPLES
|
|
|
7168
7170
|
$ sf project reset tracking --revision 30
|
|
7169
7171
|
```
|
|
7170
7172
|
|
|
7171
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
7173
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/reset/tracking.ts)_
|
|
7172
7174
|
|
|
7173
7175
|
## `sf project retrieve preview`
|
|
7174
7176
|
|
|
@@ -7222,7 +7224,7 @@ FLAG DESCRIPTIONS
|
|
|
7222
7224
|
production orgs.
|
|
7223
7225
|
```
|
|
7224
7226
|
|
|
7225
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
7227
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/retrieve/preview.ts)_
|
|
7226
7228
|
|
|
7227
7229
|
## `sf project retrieve start`
|
|
7228
7230
|
|
|
@@ -7386,7 +7388,7 @@ ENVIRONMENT VARIABLES
|
|
|
7386
7388
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
7387
7389
|
```
|
|
7388
7390
|
|
|
7389
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.
|
|
7391
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.8.2/src/commands/project/retrieve/start.ts)_
|
|
7390
7392
|
|
|
7391
7393
|
## `sf schema generate field`
|
|
7392
7394
|
|