@salesforce/cli 2.45.0 → 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 +67 -76
- package/npm-shrinkwrap.json +53 -53
- package/oclif.lock +62 -62
- 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.45.
|
|
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
|
|
|
@@ -5809,7 +5811,7 @@ FLAGS
|
|
|
5809
5811
|
"sourceBehaviorOption" option in the "sfdx-project.json" file.
|
|
5810
5812
|
<options: decomposeCustomLabelsBeta|decomposePermissionSetBeta|decomposeSharingRulesBeta|dec
|
|
5811
5813
|
omposeWorkflowBeta>
|
|
5812
|
-
-o, --target-org=<value>
|
|
5814
|
+
-o, --target-org=<value> Username or alias of the target org.
|
|
5813
5815
|
--dry-run Display what the command would do, but don't make any actual changes.
|
|
5814
5816
|
--preserve-temp-dir Don't delete the metadata API format temporary directory that this command creates. Useful
|
|
5815
5817
|
for debugging.
|
|
@@ -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
|
|
|
@@ -6038,7 +6040,7 @@ USAGE
|
|
|
6038
6040
|
|
|
6039
6041
|
FLAGS
|
|
6040
6042
|
-i, --job-id=<value> Job ID of the deploy operation you want to cancel.
|
|
6041
|
-
-o, --target-org=<value>
|
|
6043
|
+
-o, --target-org=<value> Username or alias of the target org.
|
|
6042
6044
|
-r, --use-most-recent Use the job ID of the most recent deploy operation.
|
|
6043
6045
|
-w, --wait=<minutes> Number of minutes to wait for the command to complete and display results.
|
|
6044
6046
|
--async Run the command asynchronously.
|
|
@@ -6080,10 +6082,6 @@ FLAG DESCRIPTIONS
|
|
|
6080
6082
|
|
|
6081
6083
|
The job ID is valid for 10 days from when you started the deploy operation.
|
|
6082
6084
|
|
|
6083
|
-
-o, --target-org=<value> Login username or alias for the target org.
|
|
6084
|
-
|
|
6085
|
-
Overrides your default org.
|
|
6086
|
-
|
|
6087
6085
|
-r, --use-most-recent Use the job ID of the most recent deploy operation.
|
|
6088
6086
|
|
|
6089
6087
|
For performance reasons, this flag uses job IDs for deploy operations that started only in the past 3 days or less.
|
|
@@ -6102,7 +6100,7 @@ FLAG DESCRIPTIONS
|
|
|
6102
6100
|
project deploy report".
|
|
6103
6101
|
```
|
|
6104
6102
|
|
|
6105
|
-
_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)_
|
|
6106
6104
|
|
|
6107
6105
|
## `sf project deploy preview`
|
|
6108
6106
|
|
|
@@ -6117,7 +6115,8 @@ FLAGS
|
|
|
6117
6115
|
-c, --ignore-conflicts Don't display conflicts in preview of the deployment.
|
|
6118
6116
|
-d, --source-dir=<value>... Path to the local source files to preview.
|
|
6119
6117
|
-m, --metadata=<value>... Metadata component names to preview.
|
|
6120
|
-
-o, --target-org=<value> (required)
|
|
6118
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
6119
|
+
configuration variable is already set.
|
|
6121
6120
|
-x, --manifest=<value> Full file path for manifest (package.xml) of components to preview.
|
|
6122
6121
|
--concise Show only the changes that will be deployed; omits files that are forceignored.
|
|
6123
6122
|
|
|
@@ -6179,16 +6178,12 @@ FLAG DESCRIPTIONS
|
|
|
6179
6178
|
|
|
6180
6179
|
If you specify this flag, don’t specify --metadata or --manifest.
|
|
6181
6180
|
|
|
6182
|
-
-o, --target-org=<value> Login username or alias for the target org.
|
|
6183
|
-
|
|
6184
|
-
Overrides your default org.
|
|
6185
|
-
|
|
6186
6181
|
-x, --manifest=<value> Full file path for manifest (package.xml) of components to preview.
|
|
6187
6182
|
|
|
6188
6183
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
6189
6184
|
```
|
|
6190
6185
|
|
|
6191
|
-
_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)_
|
|
6192
6187
|
|
|
6193
6188
|
## `sf project deploy quick`
|
|
6194
6189
|
|
|
@@ -6202,7 +6197,7 @@ USAGE
|
|
|
6202
6197
|
FLAGS
|
|
6203
6198
|
-a, --api-version=<value> Target API version for the deploy.
|
|
6204
6199
|
-i, --job-id=<value> Job ID of the deployment you want to quick deploy.
|
|
6205
|
-
-o, --target-org=<value>
|
|
6200
|
+
-o, --target-org=<value> Username or alias of the target org.
|
|
6206
6201
|
-r, --use-most-recent Use the job ID of the most recently validated deployment.
|
|
6207
6202
|
-w, --wait=<minutes> [default: 33 minutes] Number of minutes to wait for the command to complete and display
|
|
6208
6203
|
results.
|
|
@@ -6254,10 +6249,6 @@ FLAG DESCRIPTIONS
|
|
|
6254
6249
|
|
|
6255
6250
|
The job ID is valid for 10 days from when you started the validation.
|
|
6256
6251
|
|
|
6257
|
-
-o, --target-org=<value> Login username or alias for the target org.
|
|
6258
|
-
|
|
6259
|
-
Overrides your default org.
|
|
6260
|
-
|
|
6261
6252
|
-r, --use-most-recent Use the job ID of the most recently validated deployment.
|
|
6262
6253
|
|
|
6263
6254
|
For performance reasons, this flag uses only job IDs that were validated in the past 3 days or less. If your most
|
|
@@ -6285,7 +6276,7 @@ ERROR CODES
|
|
|
6285
6276
|
Canceling (69) The deploy is being canceled.
|
|
6286
6277
|
```
|
|
6287
6278
|
|
|
6288
|
-
_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)_
|
|
6289
6280
|
|
|
6290
6281
|
## `sf project deploy report`
|
|
6291
6282
|
|
|
@@ -6299,7 +6290,7 @@ USAGE
|
|
|
6299
6290
|
|
|
6300
6291
|
FLAGS
|
|
6301
6292
|
-i, --job-id=<value> Job ID of the deploy operation you want to check the status of.
|
|
6302
|
-
-o, --target-org=<value>
|
|
6293
|
+
-o, --target-org=<value> Username or alias of the target org.
|
|
6303
6294
|
-r, --use-most-recent Use the job ID of the most recent deploy operation.
|
|
6304
6295
|
-w, --wait=<minutes> Number of minutes to wait for command to complete and display results.
|
|
6305
6296
|
|
|
@@ -6358,10 +6349,6 @@ FLAG DESCRIPTIONS
|
|
|
6358
6349
|
|
|
6359
6350
|
The job ID is valid for 10 days from when you started the deploy operation.
|
|
6360
6351
|
|
|
6361
|
-
-o, --target-org=<value> Login username or alias for the target org.
|
|
6362
|
-
|
|
6363
|
-
Overrides your default org.
|
|
6364
|
-
|
|
6365
6352
|
-r, --use-most-recent Use the job ID of the most recent deploy operation.
|
|
6366
6353
|
|
|
6367
6354
|
For performance reasons, this flag uses job IDs for deploy operations that started only in the past 3 days or less.
|
|
@@ -6381,7 +6368,7 @@ FLAG DESCRIPTIONS
|
|
|
6381
6368
|
--coverage-formatters lcov --coverage-formatters clover
|
|
6382
6369
|
```
|
|
6383
6370
|
|
|
6384
|
-
_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)_
|
|
6385
6372
|
|
|
6386
6373
|
## `sf project deploy resume`
|
|
6387
6374
|
|
|
@@ -6478,7 +6465,7 @@ ERROR CODES
|
|
|
6478
6465
|
Canceling (69) The deploy is being canceled.
|
|
6479
6466
|
```
|
|
6480
6467
|
|
|
6481
|
-
_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)_
|
|
6482
6469
|
|
|
6483
6470
|
## `sf project deploy start`
|
|
6484
6471
|
|
|
@@ -6497,7 +6484,8 @@ FLAGS
|
|
|
6497
6484
|
-a, --api-version=<value> Target API version for the deploy.
|
|
6498
6485
|
-c, --ignore-conflicts Ignore conflicts and deploy local files, even if they overwrite changes in the org.
|
|
6499
6486
|
-g, --ignore-warnings Ignore warnings and allow a deployment to complete successfully.
|
|
6500
|
-
-o, --target-org=<value> (required)
|
|
6487
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
6488
|
+
configuration variable is already set.
|
|
6501
6489
|
-r, --ignore-errors Ignore any errors and don’t roll back deployment.
|
|
6502
6490
|
-w, --wait=<minutes> Number of minutes to wait for command to complete and display results.
|
|
6503
6491
|
--async Run the command asynchronously.
|
|
@@ -6591,6 +6579,14 @@ EXAMPLES
|
|
|
6591
6579
|
|
|
6592
6580
|
$ sf project deploy start --metadata 'ApexClass:MyApex*' --ignore-warnings
|
|
6593
6581
|
|
|
6582
|
+
Deploy a custom object called ExcitingObject that's in the SBQQ namespace:
|
|
6583
|
+
|
|
6584
|
+
$ sf project deploy start --metadata CustomObject:SBQQ__ExcitingObject
|
|
6585
|
+
|
|
6586
|
+
Deploy all custom objects in the SBQQ namespace by using a wildcard and quotes:
|
|
6587
|
+
|
|
6588
|
+
$ sf project deploy start --metadata 'CustomObject:SBQQ__*'
|
|
6589
|
+
|
|
6594
6590
|
Deploy all custom objects and Apex classes found in all defined package directories (both examples are equivalent):
|
|
6595
6591
|
|
|
6596
6592
|
$ sf project deploy start --metadata CustomObject ApexClass
|
|
@@ -6658,10 +6654,6 @@ FLAG DESCRIPTIONS
|
|
|
6658
6654
|
Deployment](https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_running_tests.htm)
|
|
6659
6655
|
in the "Metadata API Developer Guide".
|
|
6660
6656
|
|
|
6661
|
-
-o, --target-org=<value> Login username or alias for the target org.
|
|
6662
|
-
|
|
6663
|
-
Overrides your default org.
|
|
6664
|
-
|
|
6665
6657
|
-r, --ignore-errors Ignore any errors and don’t roll back deployment.
|
|
6666
6658
|
|
|
6667
6659
|
Never use this flag when deploying to a production org. If you specify it, components without errors are deployed
|
|
@@ -6716,7 +6708,7 @@ ERROR CODES
|
|
|
6716
6708
|
Canceling (69) The deploy is being canceled.
|
|
6717
6709
|
```
|
|
6718
6710
|
|
|
6719
|
-
_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)_
|
|
6720
6712
|
|
|
6721
6713
|
## `sf project deploy validate`
|
|
6722
6714
|
|
|
@@ -6733,7 +6725,8 @@ USAGE
|
|
|
6733
6725
|
FLAGS
|
|
6734
6726
|
-a, --api-version=<value> Target API version for the validation.
|
|
6735
6727
|
-g, --ignore-warnings Ignore warnings and allow a deployment to complete successfully.
|
|
6736
|
-
-o, --target-org=<value> (required)
|
|
6728
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
6729
|
+
configuration variable is already set.
|
|
6737
6730
|
-w, --wait=<minutes> Number of minutes to wait for the command to complete and display results.
|
|
6738
6731
|
--async Run the command asynchronously.
|
|
6739
6732
|
--concise Show concise output of the validation result.
|
|
@@ -6855,10 +6848,6 @@ FLAG DESCRIPTIONS
|
|
|
6855
6848
|
|
|
6856
6849
|
- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.
|
|
6857
6850
|
|
|
6858
|
-
-o, --target-org=<value> Login username or alias for the target org.
|
|
6859
|
-
|
|
6860
|
-
Overrides your default org.
|
|
6861
|
-
|
|
6862
6851
|
-t, --tests=<value>... Apex tests to run when --test-level is RunSpecifiedTests.
|
|
6863
6852
|
|
|
6864
6853
|
If a test name contains a space, enclose it in double quotes.
|
|
@@ -6908,7 +6897,7 @@ ERROR CODES
|
|
|
6908
6897
|
Canceling (69) The deploy is being canceled.
|
|
6909
6898
|
```
|
|
6910
6899
|
|
|
6911
|
-
_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)_
|
|
6912
6901
|
|
|
6913
6902
|
## `sf project generate`
|
|
6914
6903
|
|
|
@@ -7090,7 +7079,7 @@ EXAMPLES
|
|
|
7090
7079
|
$ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
|
|
7091
7080
|
```
|
|
7092
7081
|
|
|
7093
|
-
_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)_
|
|
7094
7083
|
|
|
7095
7084
|
## `sf project list ignored`
|
|
7096
7085
|
|
|
@@ -7132,7 +7121,7 @@ EXAMPLES
|
|
|
7132
7121
|
$ sf project list ignored --source-dir package.xml
|
|
7133
7122
|
```
|
|
7134
7123
|
|
|
7135
|
-
_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)_
|
|
7136
7125
|
|
|
7137
7126
|
## `sf project reset tracking`
|
|
7138
7127
|
|
|
@@ -7181,7 +7170,7 @@ EXAMPLES
|
|
|
7181
7170
|
$ sf project reset tracking --revision 30
|
|
7182
7171
|
```
|
|
7183
7172
|
|
|
7184
|
-
_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)_
|
|
7185
7174
|
|
|
7186
7175
|
## `sf project retrieve preview`
|
|
7187
7176
|
|
|
@@ -7193,7 +7182,8 @@ USAGE
|
|
|
7193
7182
|
|
|
7194
7183
|
FLAGS
|
|
7195
7184
|
-c, --ignore-conflicts Don't display conflicts in the preview of the retrieval.
|
|
7196
|
-
-o, --target-org=<value> (required)
|
|
7185
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
7186
|
+
configuration variable is already set.
|
|
7197
7187
|
--concise Show only the changes that will be retrieved; omits files that are forceignored.
|
|
7198
7188
|
|
|
7199
7189
|
GLOBAL FLAGS
|
|
@@ -7232,13 +7222,9 @@ FLAG DESCRIPTIONS
|
|
|
7232
7222
|
|
|
7233
7223
|
This flag applies only to orgs that allow source tracking. It has no effect on orgs that don't allow it, such as
|
|
7234
7224
|
production orgs.
|
|
7235
|
-
|
|
7236
|
-
-o, --target-org=<value> Login username or alias for the target org.
|
|
7237
|
-
|
|
7238
|
-
Overrides your default org.
|
|
7239
7225
|
```
|
|
7240
7226
|
|
|
7241
|
-
_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)_
|
|
7242
7228
|
|
|
7243
7229
|
## `sf project retrieve start`
|
|
7244
7230
|
|
|
@@ -7257,7 +7243,8 @@ FLAGS
|
|
|
7257
7243
|
-m, --metadata=<value>... Metadata component names to retrieve. Wildcards (`*`) supported as long as you use
|
|
7258
7244
|
quotes, such as `ApexClass:MyClass*`.
|
|
7259
7245
|
-n, --package-name=<value>... Package names to retrieve.
|
|
7260
|
-
-o, --target-org=<value> (required)
|
|
7246
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
7247
|
+
configuration variable is already set.
|
|
7261
7248
|
-r, --output-dir=<value> Directory root for the retrieved source files.
|
|
7262
7249
|
-w, --wait=<value> [default: 33 minutes] Number of minutes to wait for the command to complete and display
|
|
7263
7250
|
results to the terminal window.
|
|
@@ -7323,6 +7310,14 @@ EXAMPLES
|
|
|
7323
7310
|
|
|
7324
7311
|
$ sf project retrieve start --metadata 'ApexClass:MyApex*'
|
|
7325
7312
|
|
|
7313
|
+
Retrieve a custom object called ExcitingObject that's in the SBQQ namespace:
|
|
7314
|
+
|
|
7315
|
+
$ sf project retrieve start --metadata CustomObject:SBQQ__ExcitingObject
|
|
7316
|
+
|
|
7317
|
+
Retrieve all custom objects in the SBQQ namespace by using a wildcard and quotes:
|
|
7318
|
+
|
|
7319
|
+
$ sf project retrieve start --metadata 'CustomObject:SBQQ__*'
|
|
7320
|
+
|
|
7326
7321
|
Retrieve all custom objects and Apex classes found in all defined package directories (both examples are
|
|
7327
7322
|
equivalent):
|
|
7328
7323
|
|
|
@@ -7370,10 +7365,6 @@ FLAG DESCRIPTIONS
|
|
|
7370
7365
|
The supplied paths can be to a single file (in which case the operation is applied to only one file) or to a folder
|
|
7371
7366
|
(in which case the operation is applied to all source files in the directory and its subdirectories).
|
|
7372
7367
|
|
|
7373
|
-
-o, --target-org=<value> Login username or alias for the target org.
|
|
7374
|
-
|
|
7375
|
-
Overrides your default org.
|
|
7376
|
-
|
|
7377
7368
|
-r, --output-dir=<value> Directory root for the retrieved source files.
|
|
7378
7369
|
|
|
7379
7370
|
The root of the directory structure into which the source files are retrieved.
|
|
@@ -7397,7 +7388,7 @@ ENVIRONMENT VARIABLES
|
|
|
7397
7388
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
7398
7389
|
```
|
|
7399
7390
|
|
|
7400
|
-
_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)_
|
|
7401
7392
|
|
|
7402
7393
|
## `sf schema generate field`
|
|
7403
7394
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.45.
|
|
3
|
+
"version": "2.45.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.45.
|
|
9
|
+
"version": "2.45.1",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"@salesforce/plugin-apex": "3.1.13",
|
|
28
28
|
"@salesforce/plugin-auth": "3.6.16",
|
|
29
29
|
"@salesforce/plugin-data": "3.4.3",
|
|
30
|
-
"@salesforce/plugin-deploy-retrieve": "3.8.
|
|
30
|
+
"@salesforce/plugin-deploy-retrieve": "3.8.2",
|
|
31
31
|
"@salesforce/plugin-info": "3.3.3",
|
|
32
32
|
"@salesforce/plugin-limits": "3.3.9",
|
|
33
33
|
"@salesforce/plugin-marketplace": "1.2.8",
|
|
34
|
-
"@salesforce/plugin-org": "4.1.
|
|
34
|
+
"@salesforce/plugin-org": "4.1.16",
|
|
35
35
|
"@salesforce/plugin-packaging": "2.4.5",
|
|
36
36
|
"@salesforce/plugin-schema": "3.3.9",
|
|
37
37
|
"@salesforce/plugin-settings": "2.2.7",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@salesforce/plugin-templates": "56.2.9",
|
|
42
42
|
"@salesforce/plugin-trust": "3.7.3",
|
|
43
43
|
"@salesforce/plugin-user": "3.5.11",
|
|
44
|
-
"@salesforce/sf-plugins-core": "9.0
|
|
44
|
+
"@salesforce/sf-plugins-core": "9.1.0",
|
|
45
45
|
"chalk": "^5.3.0",
|
|
46
46
|
"debug": "^4.3.4",
|
|
47
47
|
"strip-ansi": "^7.1.0"
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@oclif/plugin-command-snapshot": "^4.0.2",
|
|
55
55
|
"@salesforce/dev-scripts": "^9.0.0",
|
|
56
|
-
"@salesforce/plugin-release-management": "^5.
|
|
56
|
+
"@salesforce/plugin-release-management": "^5.4.3",
|
|
57
57
|
"@salesforce/ts-sinon": "^1.4.19",
|
|
58
58
|
"@salesforce/ts-types": "^2.0.9",
|
|
59
59
|
"@types/debug": "^4.1.12",
|
|
@@ -4467,22 +4467,22 @@
|
|
|
4467
4467
|
}
|
|
4468
4468
|
},
|
|
4469
4469
|
"node_modules/@salesforce/cli-plugins-testkit": {
|
|
4470
|
-
"version": "5.
|
|
4471
|
-
"resolved": "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.
|
|
4472
|
-
"integrity": "sha512-
|
|
4470
|
+
"version": "5.3.8",
|
|
4471
|
+
"resolved": "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.3.8.tgz",
|
|
4472
|
+
"integrity": "sha512-A+//ZlAwRPQQylIAPwo2Lob5PfSObyFbiYqYsG/ktBQlF41MASZHkCb/3/qJv1/2gPusVOUbEsmF1LRIj8reNg==",
|
|
4473
4473
|
"dev": true,
|
|
4474
4474
|
"license": "BSD-3-Clause",
|
|
4475
4475
|
"dependencies": {
|
|
4476
|
-
"@salesforce/core": "^7.
|
|
4477
|
-
"@salesforce/kit": "^3.1.
|
|
4476
|
+
"@salesforce/core": "^7.3.9",
|
|
4477
|
+
"@salesforce/kit": "^3.1.2",
|
|
4478
4478
|
"@salesforce/ts-types": "^2.0.9",
|
|
4479
4479
|
"@types/shelljs": "^0.8.15",
|
|
4480
4480
|
"debug": "^4.3.1",
|
|
4481
4481
|
"jszip": "^3.10.1",
|
|
4482
4482
|
"shelljs": "^0.8.4",
|
|
4483
|
-
"sinon": "^17.0.
|
|
4483
|
+
"sinon": "^17.0.2",
|
|
4484
4484
|
"strip-ansi": "6.0.1",
|
|
4485
|
-
"ts-retry-promise": "^0.8.
|
|
4485
|
+
"ts-retry-promise": "^0.8.1"
|
|
4486
4486
|
},
|
|
4487
4487
|
"engines": {
|
|
4488
4488
|
"node": ">=16.0.0"
|
|
@@ -4549,18 +4549,18 @@
|
|
|
4549
4549
|
"license": "MIT"
|
|
4550
4550
|
},
|
|
4551
4551
|
"node_modules/@salesforce/cli-plugins-testkit/node_modules/sinon": {
|
|
4552
|
-
"version": "17.0.
|
|
4553
|
-
"resolved": "https://registry.npmjs.org/sinon/-/sinon-17.0.
|
|
4554
|
-
"integrity": "sha512-
|
|
4552
|
+
"version": "17.0.2",
|
|
4553
|
+
"resolved": "https://registry.npmjs.org/sinon/-/sinon-17.0.2.tgz",
|
|
4554
|
+
"integrity": "sha512-uihLiaB9FhzesElPDFZA7hDcNABzsVHwr3YfmM9sBllVwab3l0ltGlRV1XhpNfIacNDLGD1QRZNLs5nU5+hTuA==",
|
|
4555
4555
|
"dev": true,
|
|
4556
4556
|
"license": "BSD-3-Clause",
|
|
4557
4557
|
"dependencies": {
|
|
4558
|
-
"@sinonjs/commons": "^3.0.
|
|
4558
|
+
"@sinonjs/commons": "^3.0.1",
|
|
4559
4559
|
"@sinonjs/fake-timers": "^11.2.2",
|
|
4560
4560
|
"@sinonjs/samsam": "^8.0.0",
|
|
4561
|
-
"diff": "^5.
|
|
4562
|
-
"nise": "^5.1.
|
|
4563
|
-
"supports-color": "^7
|
|
4561
|
+
"diff": "^5.2.0",
|
|
4562
|
+
"nise": "^5.1.9",
|
|
4563
|
+
"supports-color": "^7"
|
|
4564
4564
|
},
|
|
4565
4565
|
"funding": {
|
|
4566
4566
|
"type": "opencollective",
|
|
@@ -4808,16 +4808,16 @@
|
|
|
4808
4808
|
}
|
|
4809
4809
|
},
|
|
4810
4810
|
"node_modules/@salesforce/plugin-command-reference": {
|
|
4811
|
-
"version": "3.0.
|
|
4812
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.
|
|
4813
|
-
"integrity": "sha512-
|
|
4811
|
+
"version": "3.0.89",
|
|
4812
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.89.tgz",
|
|
4813
|
+
"integrity": "sha512-RcaO7nWwzlmZEuz1FWc3QaYu3gtOfcf594jf9Ns+Xx9NfEJj/KOl0GYpi9tjBIuvXGPdb6m910fORm8NiN5FCg==",
|
|
4814
4814
|
"dev": true,
|
|
4815
4815
|
"license": "BSD-3-Clause",
|
|
4816
4816
|
"dependencies": {
|
|
4817
|
-
"@oclif/core": "^3.26.
|
|
4818
|
-
"@salesforce/core": "^7.
|
|
4819
|
-
"@salesforce/kit": "^3.1.
|
|
4820
|
-
"@salesforce/sf-plugins-core": "^9.0.
|
|
4817
|
+
"@oclif/core": "^3.26.6",
|
|
4818
|
+
"@salesforce/core": "^7.3.9",
|
|
4819
|
+
"@salesforce/kit": "^3.1.1",
|
|
4820
|
+
"@salesforce/sf-plugins-core": "^9.0.13",
|
|
4821
4821
|
"@salesforce/ts-types": "^2.0.9",
|
|
4822
4822
|
"chalk": "^5.3.0",
|
|
4823
4823
|
"debug": "^4.3.4",
|
|
@@ -4856,9 +4856,9 @@
|
|
|
4856
4856
|
"license": "MIT"
|
|
4857
4857
|
},
|
|
4858
4858
|
"node_modules/@salesforce/plugin-deploy-retrieve": {
|
|
4859
|
-
"version": "3.8.
|
|
4860
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.8.
|
|
4861
|
-
"integrity": "sha512-
|
|
4859
|
+
"version": "3.8.2",
|
|
4860
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.8.2.tgz",
|
|
4861
|
+
"integrity": "sha512-7QLkKD1WnMSuP/fvPS+KE2t5rPkBnSNaIgtMkyRtFO1QzS/JsQfGPw8gfarJoK8NRa91H0cKTcS5n6pNrsS3bA==",
|
|
4862
4862
|
"license": "BSD-3-Clause",
|
|
4863
4863
|
"dependencies": {
|
|
4864
4864
|
"@oclif/core": "^3.26.6",
|
|
@@ -4866,7 +4866,7 @@
|
|
|
4866
4866
|
"@salesforce/core": "^7.3.9",
|
|
4867
4867
|
"@salesforce/kit": "^3.1.2",
|
|
4868
4868
|
"@salesforce/plugin-info": "^3.3.0",
|
|
4869
|
-
"@salesforce/sf-plugins-core": "^9.0
|
|
4869
|
+
"@salesforce/sf-plugins-core": "^9.1.0",
|
|
4870
4870
|
"@salesforce/source-deploy-retrieve": "^11.6.3",
|
|
4871
4871
|
"@salesforce/source-tracking": "^6.3.0",
|
|
4872
4872
|
"@salesforce/ts-types": "^2.0.9",
|
|
@@ -4932,9 +4932,9 @@
|
|
|
4932
4932
|
}
|
|
4933
4933
|
},
|
|
4934
4934
|
"node_modules/@salesforce/plugin-org": {
|
|
4935
|
-
"version": "4.1.
|
|
4936
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.1.
|
|
4937
|
-
"integrity": "sha512-
|
|
4935
|
+
"version": "4.1.16",
|
|
4936
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.1.16.tgz",
|
|
4937
|
+
"integrity": "sha512-qu0RA9kOP/O1VbDtpRCh5SrXk6D+zrWmUTwWgdbL0MbVQ3VqwVEzHcEfiZFdHLZZCgOL60JylE3GYlSFhPHzeg==",
|
|
4938
4938
|
"license": "BSD-3-Clause",
|
|
4939
4939
|
"dependencies": {
|
|
4940
4940
|
"@oclif/core": "^3.26.4",
|
|
@@ -4975,24 +4975,24 @@
|
|
|
4975
4975
|
}
|
|
4976
4976
|
},
|
|
4977
4977
|
"node_modules/@salesforce/plugin-release-management": {
|
|
4978
|
-
"version": "5.
|
|
4979
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-release-management/-/plugin-release-management-5.
|
|
4980
|
-
"integrity": "sha512-
|
|
4978
|
+
"version": "5.4.3",
|
|
4979
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-release-management/-/plugin-release-management-5.4.3.tgz",
|
|
4980
|
+
"integrity": "sha512-C/8FVineWodVxSil3adgTKnngejpyxyjBTR5SM4yoybS3OsNI61e1ky7Do4u04JSjRyzMHlwlX54iDIklPGq+Q==",
|
|
4981
4981
|
"dev": true,
|
|
4982
4982
|
"license": "BSD-3-Clause",
|
|
4983
4983
|
"dependencies": {
|
|
4984
|
-
"@oclif/core": "^3.26.
|
|
4984
|
+
"@oclif/core": "^3.26.4",
|
|
4985
4985
|
"@octokit/core": "^4.2.4",
|
|
4986
4986
|
"@octokit/plugin-paginate-rest": "^6.1.2",
|
|
4987
4987
|
"@octokit/plugin-throttling": "^5.2.3",
|
|
4988
|
-
"@salesforce/cli-plugins-testkit": "^5.
|
|
4989
|
-
"@salesforce/core": "^7.
|
|
4988
|
+
"@salesforce/cli-plugins-testkit": "^5.3.4",
|
|
4989
|
+
"@salesforce/core": "^7.3.1",
|
|
4990
4990
|
"@salesforce/kit": "^3.1.0",
|
|
4991
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
|
4992
|
-
"@salesforce/plugin-trust": "^3.
|
|
4993
|
-
"@salesforce/sf-plugins-core": "^9.0.
|
|
4991
|
+
"@salesforce/plugin-command-reference": "^3.0.83",
|
|
4992
|
+
"@salesforce/plugin-trust": "^3.7.0",
|
|
4993
|
+
"@salesforce/sf-plugins-core": "^9.0.7",
|
|
4994
4994
|
"@salesforce/ts-types": "^2.0.9",
|
|
4995
|
-
"aws-sdk": "^2.
|
|
4995
|
+
"aws-sdk": "^2.1623.0",
|
|
4996
4996
|
"chalk": "^5.3.0",
|
|
4997
4997
|
"fast-glob": "^3.3.2",
|
|
4998
4998
|
"got": "^13",
|
|
@@ -5409,9 +5409,9 @@
|
|
|
5409
5409
|
"license": "ISC"
|
|
5410
5410
|
},
|
|
5411
5411
|
"node_modules/@salesforce/sf-plugins-core": {
|
|
5412
|
-
"version": "9.0
|
|
5413
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-9.0.
|
|
5414
|
-
"integrity": "sha512-
|
|
5412
|
+
"version": "9.1.0",
|
|
5413
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-9.1.0.tgz",
|
|
5414
|
+
"integrity": "sha512-tBfbsJ0jUv/UtvbzY8wClNVagBA10mzs61BRI5nMpNlrYppRD3domGIOaOXchldO7XsYkrUnzkJVOuungPgu8A==",
|
|
5415
5415
|
"license": "BSD-3-Clause",
|
|
5416
5416
|
"dependencies": {
|
|
5417
5417
|
"@inquirer/confirm": "^2.0.17",
|
|
@@ -8065,9 +8065,9 @@
|
|
|
8065
8065
|
}
|
|
8066
8066
|
},
|
|
8067
8067
|
"node_modules/aws-sdk": {
|
|
8068
|
-
"version": "2.
|
|
8069
|
-
"resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.
|
|
8070
|
-
"integrity": "sha512-
|
|
8068
|
+
"version": "2.1631.0",
|
|
8069
|
+
"resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1631.0.tgz",
|
|
8070
|
+
"integrity": "sha512-QG1A1bsgy9jKyY20LVxEeB16zEbn3dPIZmVeh/7vk6ukb2+5Vjh0s+E5bVlNHFFXVu6rsviayqGmjr16fJ5I1g==",
|
|
8071
8071
|
"dev": true,
|
|
8072
8072
|
"hasInstallScript": true,
|
|
8073
8073
|
"license": "Apache-2.0",
|
|
@@ -23101,9 +23101,9 @@
|
|
|
23101
23101
|
}
|
|
23102
23102
|
},
|
|
23103
23103
|
"node_modules/ts-retry-promise": {
|
|
23104
|
-
"version": "0.8.
|
|
23105
|
-
"resolved": "https://registry.npmjs.org/ts-retry-promise/-/ts-retry-promise-0.8.
|
|
23106
|
-
"integrity": "sha512
|
|
23104
|
+
"version": "0.8.1",
|
|
23105
|
+
"resolved": "https://registry.npmjs.org/ts-retry-promise/-/ts-retry-promise-0.8.1.tgz",
|
|
23106
|
+
"integrity": "sha512-+AHPUmAhr5bSRRK5CurE9kNH8gZlEHnCgusZ0zy2bjfatUBDX0h6vGQjiT0YrGwSDwRZmU+bapeX6mj55FOPvg==",
|
|
23107
23107
|
"license": "MIT",
|
|
23108
23108
|
"engines": {
|
|
23109
23109
|
"node": ">=6"
|
package/oclif.lock
CHANGED
|
@@ -2023,7 +2023,7 @@
|
|
|
2023
2023
|
proc-log "^4.0.0"
|
|
2024
2024
|
which "^4.0.0"
|
|
2025
2025
|
|
|
2026
|
-
"@oclif/core@^3.26.
|
|
2026
|
+
"@oclif/core@^3.26.2", "@oclif/core@^3.26.3", "@oclif/core@^3.26.4", "@oclif/core@^3.26.5", "@oclif/core@^3.26.6", "@oclif/core@^3.5.0", "@oclif/core@3.26.6":
|
|
2027
2027
|
version "3.26.6"
|
|
2028
2028
|
resolved "https://registry.npmjs.org/@oclif/core/-/core-3.26.6.tgz"
|
|
2029
2029
|
integrity sha512-+FiTw1IPuJTF9tSAlTsY8bGK4sgthehjz7c2SvYdgQncTkxI2xvUch/8QpjNYGLEmUneNygvYMRBax2KJcLccA==
|
|
@@ -2428,21 +2428,21 @@
|
|
|
2428
2428
|
istanbul-lib-report "^3.0.1"
|
|
2429
2429
|
istanbul-reports "^3.1.6"
|
|
2430
2430
|
|
|
2431
|
-
"@salesforce/cli-plugins-testkit@^5.
|
|
2432
|
-
version "5.
|
|
2433
|
-
resolved "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.
|
|
2434
|
-
integrity sha512-
|
|
2431
|
+
"@salesforce/cli-plugins-testkit@^5.3.4":
|
|
2432
|
+
version "5.3.8"
|
|
2433
|
+
resolved "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.3.8.tgz"
|
|
2434
|
+
integrity sha512-A+//ZlAwRPQQylIAPwo2Lob5PfSObyFbiYqYsG/ktBQlF41MASZHkCb/3/qJv1/2gPusVOUbEsmF1LRIj8reNg==
|
|
2435
2435
|
dependencies:
|
|
2436
|
-
"@salesforce/core" "^7.
|
|
2437
|
-
"@salesforce/kit" "^3.1.
|
|
2436
|
+
"@salesforce/core" "^7.3.9"
|
|
2437
|
+
"@salesforce/kit" "^3.1.2"
|
|
2438
2438
|
"@salesforce/ts-types" "^2.0.9"
|
|
2439
2439
|
"@types/shelljs" "^0.8.15"
|
|
2440
2440
|
debug "^4.3.1"
|
|
2441
2441
|
jszip "^3.10.1"
|
|
2442
2442
|
shelljs "^0.8.4"
|
|
2443
|
-
sinon "^17.0.
|
|
2443
|
+
sinon "^17.0.2"
|
|
2444
2444
|
strip-ansi "6.0.1"
|
|
2445
|
-
ts-retry-promise "^0.8.
|
|
2445
|
+
ts-retry-promise "^0.8.1"
|
|
2446
2446
|
|
|
2447
2447
|
"@salesforce/core@^7.0.0", "@salesforce/core@^7.2.0", "@salesforce/core@^7.3.1", "@salesforce/core@^7.3.5", "@salesforce/core@^7.3.6", "@salesforce/core@^7.3.8", "@salesforce/core@^7.3.9":
|
|
2448
2448
|
version "7.3.9"
|
|
@@ -2562,15 +2562,15 @@
|
|
|
2562
2562
|
chalk "^5.3.0"
|
|
2563
2563
|
open "^10.1.0"
|
|
2564
2564
|
|
|
2565
|
-
"@salesforce/plugin-command-reference@^3.0.
|
|
2566
|
-
version "3.0.
|
|
2567
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.
|
|
2568
|
-
integrity sha512-
|
|
2565
|
+
"@salesforce/plugin-command-reference@^3.0.83":
|
|
2566
|
+
version "3.0.89"
|
|
2567
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-command-reference/-/plugin-command-reference-3.0.89.tgz"
|
|
2568
|
+
integrity sha512-RcaO7nWwzlmZEuz1FWc3QaYu3gtOfcf594jf9Ns+Xx9NfEJj/KOl0GYpi9tjBIuvXGPdb6m910fORm8NiN5FCg==
|
|
2569
2569
|
dependencies:
|
|
2570
|
-
"@oclif/core" "^3.26.
|
|
2571
|
-
"@salesforce/core" "^7.
|
|
2572
|
-
"@salesforce/kit" "^3.1.
|
|
2573
|
-
"@salesforce/sf-plugins-core" "^9.0.
|
|
2570
|
+
"@oclif/core" "^3.26.6"
|
|
2571
|
+
"@salesforce/core" "^7.3.9"
|
|
2572
|
+
"@salesforce/kit" "^3.1.1"
|
|
2573
|
+
"@salesforce/sf-plugins-core" "^9.0.13"
|
|
2574
2574
|
"@salesforce/ts-types" "^2.0.9"
|
|
2575
2575
|
chalk "^5.3.0"
|
|
2576
2576
|
debug "^4.3.4"
|
|
@@ -2593,17 +2593,17 @@
|
|
|
2593
2593
|
csv-stringify "^6.5.0"
|
|
2594
2594
|
form-data "^4.0.0"
|
|
2595
2595
|
|
|
2596
|
-
"@salesforce/plugin-deploy-retrieve@3.8.
|
|
2597
|
-
version "3.8.
|
|
2598
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.8.
|
|
2599
|
-
integrity sha512-
|
|
2596
|
+
"@salesforce/plugin-deploy-retrieve@3.8.2":
|
|
2597
|
+
version "3.8.2"
|
|
2598
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.8.2.tgz"
|
|
2599
|
+
integrity sha512-7QLkKD1WnMSuP/fvPS+KE2t5rPkBnSNaIgtMkyRtFO1QzS/JsQfGPw8gfarJoK8NRa91H0cKTcS5n6pNrsS3bA==
|
|
2600
2600
|
dependencies:
|
|
2601
2601
|
"@oclif/core" "^3.26.6"
|
|
2602
2602
|
"@salesforce/apex-node" "^6.0.0"
|
|
2603
2603
|
"@salesforce/core" "^7.3.9"
|
|
2604
2604
|
"@salesforce/kit" "^3.1.2"
|
|
2605
2605
|
"@salesforce/plugin-info" "^3.3.0"
|
|
2606
|
-
"@salesforce/sf-plugins-core" "^9.0
|
|
2606
|
+
"@salesforce/sf-plugins-core" "^9.1.0"
|
|
2607
2607
|
"@salesforce/source-deploy-retrieve" "^11.6.3"
|
|
2608
2608
|
"@salesforce/source-tracking" "^6.3.0"
|
|
2609
2609
|
"@salesforce/ts-types" "^2.0.9"
|
|
@@ -2649,10 +2649,10 @@
|
|
|
2649
2649
|
got "^13.0.0"
|
|
2650
2650
|
proxy-agent "^6.4.0"
|
|
2651
2651
|
|
|
2652
|
-
"@salesforce/plugin-org@4.1.
|
|
2653
|
-
version "4.1.
|
|
2654
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.1.
|
|
2655
|
-
integrity sha512-
|
|
2652
|
+
"@salesforce/plugin-org@4.1.16":
|
|
2653
|
+
version "4.1.16"
|
|
2654
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-4.1.16.tgz"
|
|
2655
|
+
integrity sha512-qu0RA9kOP/O1VbDtpRCh5SrXk6D+zrWmUTwWgdbL0MbVQ3VqwVEzHcEfiZFdHLZZCgOL60JylE3GYlSFhPHzeg==
|
|
2656
2656
|
dependencies:
|
|
2657
2657
|
"@oclif/core" "^3.26.4"
|
|
2658
2658
|
"@salesforce/core" "^7.3.9"
|
|
@@ -2676,23 +2676,23 @@
|
|
|
2676
2676
|
"@salesforce/sf-plugins-core" "^9.0.10"
|
|
2677
2677
|
chalk "^5.3.0"
|
|
2678
2678
|
|
|
2679
|
-
"@salesforce/plugin-release-management@^5.
|
|
2680
|
-
version "5.
|
|
2681
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-release-management/-/plugin-release-management-5.
|
|
2682
|
-
integrity sha512-
|
|
2679
|
+
"@salesforce/plugin-release-management@^5.4.3":
|
|
2680
|
+
version "5.4.3"
|
|
2681
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-release-management/-/plugin-release-management-5.4.3.tgz"
|
|
2682
|
+
integrity sha512-C/8FVineWodVxSil3adgTKnngejpyxyjBTR5SM4yoybS3OsNI61e1ky7Do4u04JSjRyzMHlwlX54iDIklPGq+Q==
|
|
2683
2683
|
dependencies:
|
|
2684
|
-
"@oclif/core" "^3.26.
|
|
2684
|
+
"@oclif/core" "^3.26.4"
|
|
2685
2685
|
"@octokit/core" "^4.2.4"
|
|
2686
2686
|
"@octokit/plugin-paginate-rest" "^6.1.2"
|
|
2687
2687
|
"@octokit/plugin-throttling" "^5.2.3"
|
|
2688
|
-
"@salesforce/cli-plugins-testkit" "^5.
|
|
2689
|
-
"@salesforce/core" "^7.
|
|
2688
|
+
"@salesforce/cli-plugins-testkit" "^5.3.4"
|
|
2689
|
+
"@salesforce/core" "^7.3.1"
|
|
2690
2690
|
"@salesforce/kit" "^3.1.0"
|
|
2691
|
-
"@salesforce/plugin-command-reference" "^3.0.
|
|
2692
|
-
"@salesforce/plugin-trust" "^3.
|
|
2693
|
-
"@salesforce/sf-plugins-core" "^9.0.
|
|
2691
|
+
"@salesforce/plugin-command-reference" "^3.0.83"
|
|
2692
|
+
"@salesforce/plugin-trust" "^3.7.0"
|
|
2693
|
+
"@salesforce/sf-plugins-core" "^9.0.7"
|
|
2694
2694
|
"@salesforce/ts-types" "^2.0.9"
|
|
2695
|
-
aws-sdk "^2.
|
|
2695
|
+
aws-sdk "^2.1623.0"
|
|
2696
2696
|
chalk "^5.3.0"
|
|
2697
2697
|
fast-glob "^3.3.2"
|
|
2698
2698
|
got "^13"
|
|
@@ -2781,7 +2781,7 @@
|
|
|
2781
2781
|
yeoman-environment "^3"
|
|
2782
2782
|
yeoman-generator "^5"
|
|
2783
2783
|
|
|
2784
|
-
"@salesforce/plugin-trust@^3.
|
|
2784
|
+
"@salesforce/plugin-trust@^3.7.0", "@salesforce/plugin-trust@3.7.3":
|
|
2785
2785
|
version "3.7.3"
|
|
2786
2786
|
resolved "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-3.7.3.tgz"
|
|
2787
2787
|
integrity sha512-82Wt2NYUKiRdJsrxsHgzvinlVFDqKFmVSLiZ/BwsRyqq+Lm787k5DHpGhaD5t2CHkJjQlnup6pYlvJaZo0Iiqg==
|
|
@@ -2819,10 +2819,10 @@
|
|
|
2819
2819
|
resolved "https://registry.npmjs.org/@salesforce/schemas/-/schemas-1.9.0.tgz"
|
|
2820
2820
|
integrity sha512-LiN37zG5ODT6z70sL1fxF7BQwtCX9JOWofSU8iliSNIM+WDEeinnoFtVqPInRSNt8I0RiJxIKCrqstsmQRBNvA==
|
|
2821
2821
|
|
|
2822
|
-
"@salesforce/sf-plugins-core@^9.0.
|
|
2823
|
-
version "9.0
|
|
2824
|
-
resolved "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-9.0.
|
|
2825
|
-
integrity sha512-
|
|
2822
|
+
"@salesforce/sf-plugins-core@^9.0.10", "@salesforce/sf-plugins-core@^9.0.11", "@salesforce/sf-plugins-core@^9.0.12", "@salesforce/sf-plugins-core@^9.0.13", "@salesforce/sf-plugins-core@^9.0.14", "@salesforce/sf-plugins-core@^9.0.7", "@salesforce/sf-plugins-core@^9.1.0", "@salesforce/sf-plugins-core@9.1.0":
|
|
2823
|
+
version "9.1.0"
|
|
2824
|
+
resolved "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-9.1.0.tgz"
|
|
2825
|
+
integrity sha512-tBfbsJ0jUv/UtvbzY8wClNVagBA10mzs61BRI5nMpNlrYppRD3domGIOaOXchldO7XsYkrUnzkJVOuungPgu8A==
|
|
2826
2826
|
dependencies:
|
|
2827
2827
|
"@inquirer/confirm" "^2.0.17"
|
|
2828
2828
|
"@inquirer/password" "^1.1.16"
|
|
@@ -3016,7 +3016,7 @@
|
|
|
3016
3016
|
dependencies:
|
|
3017
3017
|
type-detect "4.0.8"
|
|
3018
3018
|
|
|
3019
|
-
"@sinonjs/commons@^3.0.0":
|
|
3019
|
+
"@sinonjs/commons@^3.0.0", "@sinonjs/commons@^3.0.1":
|
|
3020
3020
|
version "3.0.1"
|
|
3021
3021
|
resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz"
|
|
3022
3022
|
integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==
|
|
@@ -4350,10 +4350,10 @@ available-typed-arrays@^1.0.7:
|
|
|
4350
4350
|
dependencies:
|
|
4351
4351
|
possible-typed-array-names "^1.0.0"
|
|
4352
4352
|
|
|
4353
|
-
aws-sdk@^2.
|
|
4354
|
-
version "2.
|
|
4355
|
-
resolved "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.
|
|
4356
|
-
integrity sha512-
|
|
4353
|
+
aws-sdk@^2.1623.0, aws-sdk@^2.1628.0:
|
|
4354
|
+
version "2.1631.0"
|
|
4355
|
+
resolved "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1631.0.tgz"
|
|
4356
|
+
integrity sha512-QG1A1bsgy9jKyY20LVxEeB16zEbn3dPIZmVeh/7vk6ukb2+5Vjh0s+E5bVlNHFFXVu6rsviayqGmjr16fJ5I1g==
|
|
4357
4357
|
dependencies:
|
|
4358
4358
|
buffer "4.9.2"
|
|
4359
4359
|
events "1.1.1"
|
|
@@ -5705,7 +5705,7 @@ diff@^4.0.2:
|
|
|
5705
5705
|
resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz"
|
|
5706
5706
|
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
|
|
5707
5707
|
|
|
5708
|
-
diff@^5.0.0, diff@^5.1.0:
|
|
5708
|
+
diff@^5.0.0, diff@^5.1.0, diff@^5.2.0:
|
|
5709
5709
|
version "5.2.0"
|
|
5710
5710
|
resolved "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz"
|
|
5711
5711
|
integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==
|
|
@@ -9193,7 +9193,7 @@ nise@^4.1.0:
|
|
|
9193
9193
|
just-extend "^4.0.2"
|
|
9194
9194
|
path-to-regexp "^1.7.0"
|
|
9195
9195
|
|
|
9196
|
-
nise@^5.1.
|
|
9196
|
+
nise@^5.1.9:
|
|
9197
9197
|
version "5.1.9"
|
|
9198
9198
|
resolved "https://registry.npmjs.org/nise/-/nise-5.1.9.tgz"
|
|
9199
9199
|
integrity sha512-qOnoujW4SV6e40dYxJOb3uvuoPHtmLzIk4TFo+j0jPJoC+5Z9xja5qH5JZobEPsa8+YYphMrOSwnrshEhG2qww==
|
|
@@ -11193,17 +11193,17 @@ simple-swizzle@^0.2.2:
|
|
|
11193
11193
|
dependencies:
|
|
11194
11194
|
is-arrayish "^0.3.1"
|
|
11195
11195
|
|
|
11196
|
-
sinon@^17.0.
|
|
11197
|
-
version "17.0.
|
|
11198
|
-
resolved "https://registry.npmjs.org/sinon/-/sinon-17.0.
|
|
11199
|
-
integrity sha512-
|
|
11196
|
+
sinon@^17.0.2:
|
|
11197
|
+
version "17.0.2"
|
|
11198
|
+
resolved "https://registry.npmjs.org/sinon/-/sinon-17.0.2.tgz"
|
|
11199
|
+
integrity sha512-uihLiaB9FhzesElPDFZA7hDcNABzsVHwr3YfmM9sBllVwab3l0ltGlRV1XhpNfIacNDLGD1QRZNLs5nU5+hTuA==
|
|
11200
11200
|
dependencies:
|
|
11201
|
-
"@sinonjs/commons" "^3.0.
|
|
11201
|
+
"@sinonjs/commons" "^3.0.1"
|
|
11202
11202
|
"@sinonjs/fake-timers" "^11.2.2"
|
|
11203
11203
|
"@sinonjs/samsam" "^8.0.0"
|
|
11204
|
-
diff "^5.
|
|
11205
|
-
nise "^5.1.
|
|
11206
|
-
supports-color "^7
|
|
11204
|
+
diff "^5.2.0"
|
|
11205
|
+
nise "^5.1.9"
|
|
11206
|
+
supports-color "^7"
|
|
11207
11207
|
|
|
11208
11208
|
sinon@^5.1.1:
|
|
11209
11209
|
version "5.1.1"
|
|
@@ -11646,7 +11646,7 @@ supports-color@^5.4.0:
|
|
|
11646
11646
|
dependencies:
|
|
11647
11647
|
has-flag "^3.0.0"
|
|
11648
11648
|
|
|
11649
|
-
supports-color@^7
|
|
11649
|
+
supports-color@^7, supports-color@^7.0.0, supports-color@^7.1.0:
|
|
11650
11650
|
version "7.2.0"
|
|
11651
11651
|
resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
|
|
11652
11652
|
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
|
|
@@ -11875,10 +11875,10 @@ ts-retry-promise@^0.7.1:
|
|
|
11875
11875
|
resolved "https://registry.npmjs.org/ts-retry-promise/-/ts-retry-promise-0.7.1.tgz"
|
|
11876
11876
|
integrity sha512-NhHOCZ2AQORvH42hOPO5UZxShlcuiRtm7P2jIq2L2RY3PBxw2mLnUsEdHrIslVBFya1v5aZmrR55lWkzo13LrQ==
|
|
11877
11877
|
|
|
11878
|
-
ts-retry-promise@^0.8.0:
|
|
11879
|
-
version "0.8.
|
|
11880
|
-
resolved "https://registry.npmjs.org/ts-retry-promise/-/ts-retry-promise-0.8.
|
|
11881
|
-
integrity sha512
|
|
11878
|
+
ts-retry-promise@^0.8.0, ts-retry-promise@^0.8.1:
|
|
11879
|
+
version "0.8.1"
|
|
11880
|
+
resolved "https://registry.npmjs.org/ts-retry-promise/-/ts-retry-promise-0.8.1.tgz"
|
|
11881
|
+
integrity sha512-+AHPUmAhr5bSRRK5CurE9kNH8gZlEHnCgusZ0zy2bjfatUBDX0h6vGQjiT0YrGwSDwRZmU+bapeX6mj55FOPvg==
|
|
11882
11882
|
|
|
11883
11883
|
tsconfig-paths@^3.15.0:
|
|
11884
11884
|
version "3.15.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.45.
|
|
4
|
+
"version": "2.45.1",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -155,11 +155,11 @@
|
|
|
155
155
|
"@salesforce/plugin-apex": "3.1.13",
|
|
156
156
|
"@salesforce/plugin-auth": "3.6.16",
|
|
157
157
|
"@salesforce/plugin-data": "3.4.3",
|
|
158
|
-
"@salesforce/plugin-deploy-retrieve": "3.8.
|
|
158
|
+
"@salesforce/plugin-deploy-retrieve": "3.8.2",
|
|
159
159
|
"@salesforce/plugin-info": "3.3.3",
|
|
160
160
|
"@salesforce/plugin-limits": "3.3.9",
|
|
161
161
|
"@salesforce/plugin-marketplace": "1.2.8",
|
|
162
|
-
"@salesforce/plugin-org": "4.1.
|
|
162
|
+
"@salesforce/plugin-org": "4.1.16",
|
|
163
163
|
"@salesforce/plugin-packaging": "2.4.5",
|
|
164
164
|
"@salesforce/plugin-schema": "3.3.9",
|
|
165
165
|
"@salesforce/plugin-settings": "2.2.7",
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
"@salesforce/plugin-templates": "56.2.9",
|
|
170
170
|
"@salesforce/plugin-trust": "3.7.3",
|
|
171
171
|
"@salesforce/plugin-user": "3.5.11",
|
|
172
|
-
"@salesforce/sf-plugins-core": "9.0
|
|
172
|
+
"@salesforce/sf-plugins-core": "9.1.0",
|
|
173
173
|
"chalk": "^5.3.0",
|
|
174
174
|
"debug": "^4.3.4",
|
|
175
175
|
"strip-ansi": "^7.1.0"
|
|
@@ -251,7 +251,7 @@
|
|
|
251
251
|
"devDependencies": {
|
|
252
252
|
"@oclif/plugin-command-snapshot": "^4.0.2",
|
|
253
253
|
"@salesforce/dev-scripts": "^9.0.0",
|
|
254
|
-
"@salesforce/plugin-release-management": "^5.
|
|
254
|
+
"@salesforce/plugin-release-management": "^5.4.3",
|
|
255
255
|
"@salesforce/ts-sinon": "^1.4.19",
|
|
256
256
|
"@salesforce/ts-types": "^2.0.9",
|
|
257
257
|
"@types/debug": "^4.1.12",
|