@salesforce/cli 2.56.1 → 2.56.3
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 +43 -41
- package/npm-shrinkwrap.json +95 -194
- package/oclif.lock +80 -112
- package/oclif.manifest.json +1 -1
- 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.56.
|
|
27
|
+
@salesforce/cli/2.56.3 linux-x64 node-v20.16.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -518,7 +518,7 @@ FLAG DESCRIPTIONS
|
|
|
518
518
|
directory.
|
|
519
519
|
```
|
|
520
520
|
|
|
521
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.
|
|
521
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/get/log.ts)_
|
|
522
522
|
|
|
523
523
|
## `sf apex get test`
|
|
524
524
|
|
|
@@ -527,7 +527,7 @@ Display test results for a specific asynchronous test run.
|
|
|
527
527
|
```
|
|
528
528
|
USAGE
|
|
529
529
|
$ sf apex get test -o <value> -i <value> [--json] [--flags-dir <value>] [--api-version <value>] [-c] [-d <value>]
|
|
530
|
-
[-r human|tap|junit|json]
|
|
530
|
+
[-r human|tap|junit|json] [--concise]
|
|
531
531
|
|
|
532
532
|
FLAGS
|
|
533
533
|
-c, --code-coverage Retrieve code coverage results.
|
|
@@ -538,6 +538,7 @@ FLAGS
|
|
|
538
538
|
-r, --result-format=<option> [default: human] Format of the test results.
|
|
539
539
|
<options: human|tap|junit|json>
|
|
540
540
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
541
|
+
--concise Display only failed test results; works with human-readable output only.
|
|
541
542
|
|
|
542
543
|
GLOBAL FLAGS
|
|
543
544
|
--flags-dir=<value> Import flag values from a directory.
|
|
@@ -572,7 +573,7 @@ EXAMPLES
|
|
|
572
573
|
me@myorg'
|
|
573
574
|
```
|
|
574
575
|
|
|
575
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.
|
|
576
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/get/test.ts)_
|
|
576
577
|
|
|
577
578
|
## `sf apex list log`
|
|
578
579
|
|
|
@@ -612,7 +613,7 @@ EXAMPLES
|
|
|
612
613
|
$ sf apex list log --target-org me@my.org
|
|
613
614
|
```
|
|
614
615
|
|
|
615
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.
|
|
616
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/list/log.ts)_
|
|
616
617
|
|
|
617
618
|
## `sf apex run`
|
|
618
619
|
|
|
@@ -659,7 +660,7 @@ EXAMPLES
|
|
|
659
660
|
$ sf apex run
|
|
660
661
|
```
|
|
661
662
|
|
|
662
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.
|
|
663
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/run.ts)_
|
|
663
664
|
|
|
664
665
|
## `sf apex run test`
|
|
665
666
|
|
|
@@ -669,7 +670,7 @@ Invoke Apex tests in an org.
|
|
|
669
670
|
USAGE
|
|
670
671
|
$ sf apex run test -o <value> [--json] [--flags-dir <value>] [--api-version <value>] [-d <value>] [-l
|
|
671
672
|
RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests] [-n <value>... | -s <value>... | -t <value>...] [-r
|
|
672
|
-
human|tap|junit|json] [-w <value>] [-y] [-v -c]
|
|
673
|
+
human|tap|junit|json] [-w <value>] [-y] [-v -c] [--concise]
|
|
673
674
|
|
|
674
675
|
FLAGS
|
|
675
676
|
-c, --code-coverage Retrieve code coverage results.
|
|
@@ -690,6 +691,7 @@ FLAGS
|
|
|
690
691
|
-y, --synchronous Runs test methods from a single Apex class synchronously; if not specified, tests are
|
|
691
692
|
run asynchronously.
|
|
692
693
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
694
|
+
--concise Display only failed test results; works with human-readable output only.
|
|
693
695
|
|
|
694
696
|
GLOBAL FLAGS
|
|
695
697
|
--flags-dir=<value> Import flag values from a directory.
|
|
@@ -798,7 +800,7 @@ FLAG DESCRIPTIONS
|
|
|
798
800
|
--tests Test1 --tests Test2
|
|
799
801
|
```
|
|
800
802
|
|
|
801
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.
|
|
803
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/run/test.ts)_
|
|
802
804
|
|
|
803
805
|
## `sf apex tail log`
|
|
804
806
|
|
|
@@ -841,7 +843,7 @@ EXAMPLES
|
|
|
841
843
|
$ sf apex tail log --color --skip-trace-flag
|
|
842
844
|
```
|
|
843
845
|
|
|
844
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.
|
|
846
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.4.0/src/commands/apex/tail/log.ts)_
|
|
845
847
|
|
|
846
848
|
## `sf autocomplete [SHELL]`
|
|
847
849
|
|
|
@@ -2489,7 +2491,7 @@ EXAMPLES
|
|
|
2489
2491
|
$ sf org assign permset --name DreamHouse --on-behalf-of user1@my.org --on-behalf-of user2 --on-behalf-of user
|
|
2490
2492
|
```
|
|
2491
2493
|
|
|
2492
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.
|
|
2494
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.24/src/commands/org/assign/permset.ts)_
|
|
2493
2495
|
|
|
2494
2496
|
## `sf org assign permsetlicense`
|
|
2495
2497
|
|
|
@@ -2535,7 +2537,7 @@ EXAMPLES
|
|
|
2535
2537
|
user3
|
|
2536
2538
|
```
|
|
2537
2539
|
|
|
2538
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.
|
|
2540
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.24/src/commands/org/assign/permsetlicense.ts)_
|
|
2539
2541
|
|
|
2540
2542
|
## `sf org create sandbox`
|
|
2541
2543
|
|
|
@@ -2914,7 +2916,7 @@ FLAG DESCRIPTIONS
|
|
|
2914
2916
|
might be different than what you specify in the definition file.
|
|
2915
2917
|
```
|
|
2916
2918
|
|
|
2917
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.
|
|
2919
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.24/src/commands/org/create/user.ts)_
|
|
2918
2920
|
|
|
2919
2921
|
## `sf org delete sandbox`
|
|
2920
2922
|
|
|
@@ -3127,7 +3129,7 @@ EXAMPLES
|
|
|
3127
3129
|
$ sf org display user --target-org me@my.org --json
|
|
3128
3130
|
```
|
|
3129
3131
|
|
|
3130
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.
|
|
3132
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.24/src/commands/org/display/user.ts)_
|
|
3131
3133
|
|
|
3132
3134
|
## `sf org enable tracking`
|
|
3133
3135
|
|
|
@@ -3236,7 +3238,7 @@ EXAMPLES
|
|
|
3236
3238
|
$ sf org generate password --on-behalf-of user1@my.org --on-behalf-of user2@my.org --on-behalf-of user3@my.org
|
|
3237
3239
|
```
|
|
3238
3240
|
|
|
3239
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.
|
|
3241
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.24/src/commands/org/generate/password.ts)_
|
|
3240
3242
|
|
|
3241
3243
|
## `sf org list`
|
|
3242
3244
|
|
|
@@ -3553,7 +3555,7 @@ EXAMPLES
|
|
|
3553
3555
|
$ sf org list users --target-org me@my.org
|
|
3554
3556
|
```
|
|
3555
3557
|
|
|
3556
|
-
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.
|
|
3558
|
+
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.5.24/src/commands/org/list/users.ts)_
|
|
3557
3559
|
|
|
3558
3560
|
## `sf org login access-token`
|
|
3559
3561
|
|
|
@@ -5754,7 +5756,7 @@ FLAG DESCRIPTIONS
|
|
|
5754
5756
|
If you specify this parameter, don’t specify --metadata or --source-dir.
|
|
5755
5757
|
```
|
|
5756
5758
|
|
|
5757
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
5759
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/convert/mdapi.ts)_
|
|
5758
5760
|
|
|
5759
5761
|
## `sf project convert source`
|
|
5760
5762
|
|
|
@@ -5766,7 +5768,7 @@ USAGE
|
|
|
5766
5768
|
[-p <value>... | -x <value> | -m <value>...]
|
|
5767
5769
|
|
|
5768
5770
|
FLAGS
|
|
5769
|
-
-d, --output-dir=<value> [default:
|
|
5771
|
+
-d, --output-dir=<value> [default: metadataPackage_1723827060626] Output directory to store the Metadata
|
|
5770
5772
|
API–formatted files in.
|
|
5771
5773
|
-m, --metadata=<value>... Metadata component names to convert.
|
|
5772
5774
|
-n, --package-name=<value> Name of the package to associate with the metadata-formatted files.
|
|
@@ -5827,7 +5829,7 @@ FLAG DESCRIPTIONS
|
|
|
5827
5829
|
Override the api version used for api requests made by this command
|
|
5828
5830
|
```
|
|
5829
5831
|
|
|
5830
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
5832
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/convert/source.ts)_
|
|
5831
5833
|
|
|
5832
5834
|
## `sf project convert source-behavior`
|
|
5833
5835
|
|
|
@@ -5836,14 +5838,14 @@ Enable a behavior of your project source files, and then update your Salesforce
|
|
|
5836
5838
|
```
|
|
5837
5839
|
USAGE
|
|
5838
5840
|
$ sf project convert source-behavior -b
|
|
5839
|
-
decomposeCustomLabelsBeta|decomposePermissionSetBeta|decomposeSharingRulesBeta|
|
|
5840
|
-
[--flags-dir <value>] [--dry-run] [--preserve-temp-dir] [-o <value>]
|
|
5841
|
+
decomposeCustomLabelsBeta2|decomposeCustomLabelsBeta|decomposePermissionSetBeta|decomposeSharingRulesBeta|decomposeW
|
|
5842
|
+
orkflowBeta [--json] [--flags-dir <value>] [--dry-run] [--preserve-temp-dir] [-o <value>]
|
|
5841
5843
|
|
|
5842
5844
|
FLAGS
|
|
5843
5845
|
-b, --behavior=<option> (required) Behavior to enable; the values correspond to the possible values of the
|
|
5844
5846
|
"sourceBehaviorOption" option in the "sfdx-project.json" file.
|
|
5845
|
-
<options: decomposeCustomLabelsBeta|decomposePermissionSetBeta|
|
|
5846
|
-
|
|
5847
|
+
<options: decomposeCustomLabelsBeta2|decomposeCustomLabelsBeta|decomposePermissionSetBeta|de
|
|
5848
|
+
composeSharingRulesBeta|decomposeWorkflowBeta>
|
|
5847
5849
|
-o, --target-org=<value> Username or alias of the target org.
|
|
5848
5850
|
--dry-run Display what the command would do, but don't make any actual changes.
|
|
5849
5851
|
--preserve-temp-dir Don't delete the metadata API format temporary directory that this command creates. Useful
|
|
@@ -5871,20 +5873,20 @@ DESCRIPTION
|
|
|
5871
5873
|
https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_ws_config.htm topic.
|
|
5872
5874
|
|
|
5873
5875
|
EXAMPLES
|
|
5874
|
-
Update your Salesforce DX project to decompose custom
|
|
5876
|
+
Update your Salesforce DX project to decompose custom permission sets:
|
|
5875
5877
|
|
|
5876
|
-
$ sf project convert source-behavior --behavior
|
|
5878
|
+
$ sf project convert source-behavior --behavior decomposePermissionSetBeta
|
|
5877
5879
|
|
|
5878
5880
|
Display what the command would do, but don't change any existing files:
|
|
5879
5881
|
|
|
5880
|
-
$ sf project convert source-behavior --behavior
|
|
5882
|
+
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run
|
|
5881
5883
|
|
|
5882
5884
|
Keep the temporary directory that contains the interim metadata API formatted files:
|
|
5883
5885
|
|
|
5884
|
-
$ sf project convert source-behavior --behavior
|
|
5886
|
+
$ sf project convert source-behavior --behavior decomposePermissionSetBeta --dry-run --preserve-temp-dir
|
|
5885
5887
|
```
|
|
5886
5888
|
|
|
5887
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
5889
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/convert/source-behavior.ts)_
|
|
5888
5890
|
|
|
5889
5891
|
## `sf project delete source`
|
|
5890
5892
|
|
|
@@ -6024,7 +6026,7 @@ FLAG DESCRIPTIONS
|
|
|
6024
6026
|
- Separate the test names with spaces: --tests Test1 Test2 "Test With Space"
|
|
6025
6027
|
```
|
|
6026
6028
|
|
|
6027
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
6029
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/delete/source.ts)_
|
|
6028
6030
|
|
|
6029
6031
|
## `sf project delete tracking`
|
|
6030
6032
|
|
|
@@ -6061,7 +6063,7 @@ EXAMPLES
|
|
|
6061
6063
|
$ sf project delete tracking --target-org my-scratch
|
|
6062
6064
|
```
|
|
6063
6065
|
|
|
6064
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
6066
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/delete/tracking.ts)_
|
|
6065
6067
|
|
|
6066
6068
|
## `sf project deploy cancel`
|
|
6067
6069
|
|
|
@@ -6133,7 +6135,7 @@ FLAG DESCRIPTIONS
|
|
|
6133
6135
|
project deploy report".
|
|
6134
6136
|
```
|
|
6135
6137
|
|
|
6136
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
6138
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/deploy/cancel.ts)_
|
|
6137
6139
|
|
|
6138
6140
|
## `sf project deploy preview`
|
|
6139
6141
|
|
|
@@ -6216,7 +6218,7 @@ FLAG DESCRIPTIONS
|
|
|
6216
6218
|
All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
|
|
6217
6219
|
```
|
|
6218
6220
|
|
|
6219
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
6221
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/deploy/preview.ts)_
|
|
6220
6222
|
|
|
6221
6223
|
## `sf project deploy quick`
|
|
6222
6224
|
|
|
@@ -6309,7 +6311,7 @@ ERROR CODES
|
|
|
6309
6311
|
Canceling (69) The deploy is being canceled.
|
|
6310
6312
|
```
|
|
6311
6313
|
|
|
6312
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
6314
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/deploy/quick.ts)_
|
|
6313
6315
|
|
|
6314
6316
|
## `sf project deploy report`
|
|
6315
6317
|
|
|
@@ -6401,7 +6403,7 @@ FLAG DESCRIPTIONS
|
|
|
6401
6403
|
--coverage-formatters lcov --coverage-formatters clover
|
|
6402
6404
|
```
|
|
6403
6405
|
|
|
6404
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
6406
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/deploy/report.ts)_
|
|
6405
6407
|
|
|
6406
6408
|
## `sf project deploy resume`
|
|
6407
6409
|
|
|
@@ -6498,7 +6500,7 @@ ERROR CODES
|
|
|
6498
6500
|
Canceling (69) The deploy is being canceled.
|
|
6499
6501
|
```
|
|
6500
6502
|
|
|
6501
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
6503
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/deploy/resume.ts)_
|
|
6502
6504
|
|
|
6503
6505
|
## `sf project deploy start`
|
|
6504
6506
|
|
|
@@ -6751,7 +6753,7 @@ ERROR CODES
|
|
|
6751
6753
|
Canceling (69) The deploy is being canceled.
|
|
6752
6754
|
```
|
|
6753
6755
|
|
|
6754
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
6756
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/deploy/start.ts)_
|
|
6755
6757
|
|
|
6756
6758
|
## `sf project deploy validate`
|
|
6757
6759
|
|
|
@@ -6941,7 +6943,7 @@ ERROR CODES
|
|
|
6941
6943
|
Canceling (69) The deploy is being canceled.
|
|
6942
6944
|
```
|
|
6943
6945
|
|
|
6944
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
6946
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/deploy/validate.ts)_
|
|
6945
6947
|
|
|
6946
6948
|
## `sf project generate`
|
|
6947
6949
|
|
|
@@ -7123,7 +7125,7 @@ EXAMPLES
|
|
|
7123
7125
|
$ sf project generate manifest --from-org test@myorg.com --include-packages unlocked
|
|
7124
7126
|
```
|
|
7125
7127
|
|
|
7126
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
7128
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/generate/manifest.ts)_
|
|
7127
7129
|
|
|
7128
7130
|
## `sf project list ignored`
|
|
7129
7131
|
|
|
@@ -7165,7 +7167,7 @@ EXAMPLES
|
|
|
7165
7167
|
$ sf project list ignored --source-dir package.xml
|
|
7166
7168
|
```
|
|
7167
7169
|
|
|
7168
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
7170
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/list/ignored.ts)_
|
|
7169
7171
|
|
|
7170
7172
|
## `sf project reset tracking`
|
|
7171
7173
|
|
|
@@ -7214,7 +7216,7 @@ EXAMPLES
|
|
|
7214
7216
|
$ sf project reset tracking --revision 30
|
|
7215
7217
|
```
|
|
7216
7218
|
|
|
7217
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
7219
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/reset/tracking.ts)_
|
|
7218
7220
|
|
|
7219
7221
|
## `sf project retrieve preview`
|
|
7220
7222
|
|
|
@@ -7268,7 +7270,7 @@ FLAG DESCRIPTIONS
|
|
|
7268
7270
|
production orgs.
|
|
7269
7271
|
```
|
|
7270
7272
|
|
|
7271
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
7273
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/retrieve/preview.ts)_
|
|
7272
7274
|
|
|
7273
7275
|
## `sf project retrieve start`
|
|
7274
7276
|
|
|
@@ -7445,7 +7447,7 @@ ENVIRONMENT VARIABLES
|
|
|
7445
7447
|
SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
|
|
7446
7448
|
```
|
|
7447
7449
|
|
|
7448
|
-
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.
|
|
7450
|
+
_See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/3.10.0/src/commands/project/retrieve/start.ts)_
|
|
7449
7451
|
|
|
7450
7452
|
## `sf schema generate field`
|
|
7451
7453
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.56.
|
|
3
|
+
"version": "2.56.3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.56.
|
|
9
|
+
"version": "2.56.3",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"@oclif/plugin-which": "3.2.10",
|
|
25
25
|
"@salesforce/core": "^8.2.3",
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
|
-
"@salesforce/plugin-apex": "3.
|
|
27
|
+
"@salesforce/plugin-apex": "3.4.0",
|
|
28
28
|
"@salesforce/plugin-auth": "3.6.47",
|
|
29
29
|
"@salesforce/plugin-data": "3.6.0",
|
|
30
|
-
"@salesforce/plugin-deploy-retrieve": "3.
|
|
30
|
+
"@salesforce/plugin-deploy-retrieve": "3.10.0",
|
|
31
31
|
"@salesforce/plugin-info": "3.3.28",
|
|
32
32
|
"@salesforce/plugin-limits": "3.3.24",
|
|
33
33
|
"@salesforce/plugin-marketplace": "1.2.22",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"@salesforce/plugin-schema": "3.3.22",
|
|
37
37
|
"@salesforce/plugin-settings": "2.3.11",
|
|
38
38
|
"@salesforce/plugin-sobject": "1.4.28",
|
|
39
|
-
"@salesforce/plugin-source": "3.5.
|
|
40
|
-
"@salesforce/plugin-telemetry": "3.6.
|
|
39
|
+
"@salesforce/plugin-source": "3.5.14",
|
|
40
|
+
"@salesforce/plugin-telemetry": "3.6.7",
|
|
41
41
|
"@salesforce/plugin-templates": "56.3.11",
|
|
42
42
|
"@salesforce/plugin-trust": "3.7.22",
|
|
43
|
-
"@salesforce/plugin-user": "3.5.
|
|
43
|
+
"@salesforce/plugin-user": "3.5.24",
|
|
44
44
|
"@salesforce/sf-plugins-core": "11.3.2",
|
|
45
45
|
"ansis": "^3.3.0"
|
|
46
46
|
},
|
|
@@ -1917,15 +1917,15 @@
|
|
|
1917
1917
|
}
|
|
1918
1918
|
},
|
|
1919
1919
|
"node_modules/@azure/abort-controller": {
|
|
1920
|
-
"version": "
|
|
1921
|
-
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-
|
|
1922
|
-
"integrity": "sha512-
|
|
1920
|
+
"version": "2.1.2",
|
|
1921
|
+
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
|
1922
|
+
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
|
1923
1923
|
"license": "MIT",
|
|
1924
1924
|
"dependencies": {
|
|
1925
|
-
"tslib": "^2.2
|
|
1925
|
+
"tslib": "^2.6.2"
|
|
1926
1926
|
},
|
|
1927
1927
|
"engines": {
|
|
1928
|
-
"node": ">=
|
|
1928
|
+
"node": ">=18.0.0"
|
|
1929
1929
|
}
|
|
1930
1930
|
},
|
|
1931
1931
|
"node_modules/@azure/core-auth": {
|
|
@@ -1942,76 +1942,23 @@
|
|
|
1942
1942
|
"node": ">=18.0.0"
|
|
1943
1943
|
}
|
|
1944
1944
|
},
|
|
1945
|
-
"node_modules/@azure/core-auth/node_modules/@azure/abort-controller": {
|
|
1946
|
-
"version": "2.1.2",
|
|
1947
|
-
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
|
1948
|
-
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
|
1949
|
-
"license": "MIT",
|
|
1950
|
-
"dependencies": {
|
|
1951
|
-
"tslib": "^2.6.2"
|
|
1952
|
-
},
|
|
1953
|
-
"engines": {
|
|
1954
|
-
"node": ">=18.0.0"
|
|
1955
|
-
}
|
|
1956
|
-
},
|
|
1957
1945
|
"node_modules/@azure/core-rest-pipeline": {
|
|
1958
|
-
"version": "1.
|
|
1959
|
-
"resolved": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.
|
|
1960
|
-
"integrity": "sha512-
|
|
1946
|
+
"version": "1.16.3",
|
|
1947
|
+
"resolved": "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.16.3.tgz",
|
|
1948
|
+
"integrity": "sha512-VxLk4AHLyqcHsfKe4MZ6IQ+D+ShuByy+RfStKfSjxJoL3WBWq17VNmrz8aT8etKzqc2nAeIyLxScjpzsS4fz8w==",
|
|
1961
1949
|
"license": "MIT",
|
|
1962
1950
|
"dependencies": {
|
|
1963
|
-
"@azure/abort-controller": "^
|
|
1951
|
+
"@azure/abort-controller": "^2.0.0",
|
|
1964
1952
|
"@azure/core-auth": "^1.4.0",
|
|
1965
1953
|
"@azure/core-tracing": "^1.0.1",
|
|
1966
|
-
"@azure/core-util": "^1.
|
|
1954
|
+
"@azure/core-util": "^1.9.0",
|
|
1967
1955
|
"@azure/logger": "^1.0.0",
|
|
1968
|
-
"
|
|
1969
|
-
"
|
|
1970
|
-
"
|
|
1971
|
-
"tslib": "^2.2.0",
|
|
1972
|
-
"uuid": "^8.3.0"
|
|
1973
|
-
},
|
|
1974
|
-
"engines": {
|
|
1975
|
-
"node": ">=14.0.0"
|
|
1976
|
-
}
|
|
1977
|
-
},
|
|
1978
|
-
"node_modules/@azure/core-rest-pipeline/node_modules/agent-base": {
|
|
1979
|
-
"version": "6.0.2",
|
|
1980
|
-
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
|
|
1981
|
-
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
|
|
1982
|
-
"license": "MIT",
|
|
1983
|
-
"dependencies": {
|
|
1984
|
-
"debug": "4"
|
|
1985
|
-
},
|
|
1986
|
-
"engines": {
|
|
1987
|
-
"node": ">= 6.0.0"
|
|
1988
|
-
}
|
|
1989
|
-
},
|
|
1990
|
-
"node_modules/@azure/core-rest-pipeline/node_modules/http-proxy-agent": {
|
|
1991
|
-
"version": "5.0.0",
|
|
1992
|
-
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz",
|
|
1993
|
-
"integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==",
|
|
1994
|
-
"license": "MIT",
|
|
1995
|
-
"dependencies": {
|
|
1996
|
-
"@tootallnate/once": "2",
|
|
1997
|
-
"agent-base": "6",
|
|
1998
|
-
"debug": "4"
|
|
1999
|
-
},
|
|
2000
|
-
"engines": {
|
|
2001
|
-
"node": ">= 6"
|
|
2002
|
-
}
|
|
2003
|
-
},
|
|
2004
|
-
"node_modules/@azure/core-rest-pipeline/node_modules/https-proxy-agent": {
|
|
2005
|
-
"version": "5.0.1",
|
|
2006
|
-
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
|
|
2007
|
-
"integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
|
|
2008
|
-
"license": "MIT",
|
|
2009
|
-
"dependencies": {
|
|
2010
|
-
"agent-base": "6",
|
|
2011
|
-
"debug": "4"
|
|
1956
|
+
"http-proxy-agent": "^7.0.0",
|
|
1957
|
+
"https-proxy-agent": "^7.0.0",
|
|
1958
|
+
"tslib": "^2.6.2"
|
|
2012
1959
|
},
|
|
2013
1960
|
"engines": {
|
|
2014
|
-
"node": ">=
|
|
1961
|
+
"node": ">=18.0.0"
|
|
2015
1962
|
}
|
|
2016
1963
|
},
|
|
2017
1964
|
"node_modules/@azure/core-tracing": {
|
|
@@ -2027,9 +1974,9 @@
|
|
|
2027
1974
|
}
|
|
2028
1975
|
},
|
|
2029
1976
|
"node_modules/@azure/core-util": {
|
|
2030
|
-
"version": "1.9.
|
|
2031
|
-
"resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.9.
|
|
2032
|
-
"integrity": "sha512-
|
|
1977
|
+
"version": "1.9.2",
|
|
1978
|
+
"resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.9.2.tgz",
|
|
1979
|
+
"integrity": "sha512-l1Qrqhi4x1aekkV+OlcqsJa4AnAkj5p0JV8omgwjaV9OAbP41lvrMvs+CptfetKkeEaGRGSzby7sjPZEX7+kkQ==",
|
|
2033
1980
|
"license": "MIT",
|
|
2034
1981
|
"dependencies": {
|
|
2035
1982
|
"@azure/abort-controller": "^2.0.0",
|
|
@@ -2039,18 +1986,6 @@
|
|
|
2039
1986
|
"node": ">=18.0.0"
|
|
2040
1987
|
}
|
|
2041
1988
|
},
|
|
2042
|
-
"node_modules/@azure/core-util/node_modules/@azure/abort-controller": {
|
|
2043
|
-
"version": "2.1.2",
|
|
2044
|
-
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz",
|
|
2045
|
-
"integrity": "sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==",
|
|
2046
|
-
"license": "MIT",
|
|
2047
|
-
"dependencies": {
|
|
2048
|
-
"tslib": "^2.6.2"
|
|
2049
|
-
},
|
|
2050
|
-
"engines": {
|
|
2051
|
-
"node": ">=18.0.0"
|
|
2052
|
-
}
|
|
2053
|
-
},
|
|
2054
1989
|
"node_modules/@azure/logger": {
|
|
2055
1990
|
"version": "1.1.2",
|
|
2056
1991
|
"resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.1.2.tgz",
|
|
@@ -4556,12 +4491,12 @@
|
|
|
4556
4491
|
}
|
|
4557
4492
|
},
|
|
4558
4493
|
"node_modules/@salesforce/apex-node": {
|
|
4559
|
-
"version": "8.1.
|
|
4560
|
-
"resolved": "https://registry.npmjs.org/@salesforce/apex-node/-/apex-node-8.1.
|
|
4561
|
-
"integrity": "sha512-
|
|
4494
|
+
"version": "8.1.3",
|
|
4495
|
+
"resolved": "https://registry.npmjs.org/@salesforce/apex-node/-/apex-node-8.1.3.tgz",
|
|
4496
|
+
"integrity": "sha512-fADSmOfJuPwOFEb3zmVjgpgtgd/pjcCGMccT28NdIKbfWKMRH0wwUeEW5U0tOn/m+Y4moShp6Vn1f+wihG/CZQ==",
|
|
4562
4497
|
"license": "BSD-3-Clause",
|
|
4563
4498
|
"dependencies": {
|
|
4564
|
-
"@jsforce/jsforce-node": "^3.4.
|
|
4499
|
+
"@jsforce/jsforce-node": "^3.4.1",
|
|
4565
4500
|
"@salesforce/core": "^8.2.8",
|
|
4566
4501
|
"@salesforce/kit": "^3.2.1",
|
|
4567
4502
|
"@types/istanbul-reports": "^3.0.4",
|
|
@@ -4840,9 +4775,9 @@
|
|
|
4840
4775
|
}
|
|
4841
4776
|
},
|
|
4842
4777
|
"node_modules/@salesforce/plugin-apex": {
|
|
4843
|
-
"version": "3.
|
|
4844
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.
|
|
4845
|
-
"integrity": "sha512-
|
|
4778
|
+
"version": "3.4.0",
|
|
4779
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.4.0.tgz",
|
|
4780
|
+
"integrity": "sha512-1+FCNWly9f/vFLH7hNDl8SI0VGgQ+0O9kbEufxBtvkhIplXWL0Z9XE6vhiLG1UXcAcg1NDWuv6Xs8CgI35ZxbQ==",
|
|
4846
4781
|
"license": "BSD-3-Clause",
|
|
4847
4782
|
"dependencies": {
|
|
4848
4783
|
"@salesforce/apex-node": "^8.1.1",
|
|
@@ -4936,19 +4871,19 @@
|
|
|
4936
4871
|
"license": "MIT"
|
|
4937
4872
|
},
|
|
4938
4873
|
"node_modules/@salesforce/plugin-deploy-retrieve": {
|
|
4939
|
-
"version": "3.
|
|
4940
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.
|
|
4941
|
-
"integrity": "sha512-
|
|
4874
|
+
"version": "3.10.0",
|
|
4875
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.10.0.tgz",
|
|
4876
|
+
"integrity": "sha512-UNlOyWA99ZPyGgWu2AkUmKUmTRa9ELj2XDriV6OmW6RRDCS+tMDJlv5M22sn3/YInJWB2vKUgpemamXWXml+2w==",
|
|
4942
4877
|
"license": "BSD-3-Clause",
|
|
4943
4878
|
"dependencies": {
|
|
4944
|
-
"@oclif/core": "^4.0.
|
|
4945
|
-
"@salesforce/apex-node": "^8.1.
|
|
4946
|
-
"@salesforce/core": "^8.
|
|
4947
|
-
"@salesforce/kit": "^3.1
|
|
4948
|
-
"@salesforce/plugin-info": "^3.3.
|
|
4949
|
-
"@salesforce/sf-plugins-core": "^11.3.
|
|
4950
|
-
"@salesforce/source-deploy-retrieve": "^12.
|
|
4951
|
-
"@salesforce/source-tracking": "^7.1.
|
|
4879
|
+
"@oclif/core": "^4.0.17",
|
|
4880
|
+
"@salesforce/apex-node": "^8.1.3",
|
|
4881
|
+
"@salesforce/core": "^8.4.0",
|
|
4882
|
+
"@salesforce/kit": "^3.2.1",
|
|
4883
|
+
"@salesforce/plugin-info": "^3.3.28",
|
|
4884
|
+
"@salesforce/sf-plugins-core": "^11.3.2",
|
|
4885
|
+
"@salesforce/source-deploy-retrieve": "^12.4.0",
|
|
4886
|
+
"@salesforce/source-tracking": "^7.1.7",
|
|
4952
4887
|
"@salesforce/ts-types": "^2.0.12",
|
|
4953
4888
|
"ansis": "^3.3.2"
|
|
4954
4889
|
},
|
|
@@ -5164,17 +5099,17 @@
|
|
|
5164
5099
|
}
|
|
5165
5100
|
},
|
|
5166
5101
|
"node_modules/@salesforce/plugin-source": {
|
|
5167
|
-
"version": "3.5.
|
|
5168
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-source/-/plugin-source-3.5.
|
|
5169
|
-
"integrity": "sha512-
|
|
5102
|
+
"version": "3.5.14",
|
|
5103
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-source/-/plugin-source-3.5.14.tgz",
|
|
5104
|
+
"integrity": "sha512-xNTSmZfLd779ljcOVCl2G4ZBJAbgeGd6B0kyCD+IaHq5Ks95AOakhBp5cflKE2rg+Xm9m/fLbUCsKyvrPAAFiw==",
|
|
5170
5105
|
"license": "BSD-3-Clause",
|
|
5171
5106
|
"dependencies": {
|
|
5172
5107
|
"@oclif/core": "^4",
|
|
5173
5108
|
"@salesforce/apex-node": "^8.1.2",
|
|
5174
5109
|
"@salesforce/core": "^8.2.8",
|
|
5175
5110
|
"@salesforce/kit": "^3.1.6",
|
|
5176
|
-
"@salesforce/sf-plugins-core": "^11.2
|
|
5177
|
-
"@salesforce/source-deploy-retrieve": "^12.
|
|
5111
|
+
"@salesforce/sf-plugins-core": "^11.3.2",
|
|
5112
|
+
"@salesforce/source-deploy-retrieve": "^12.4.0",
|
|
5178
5113
|
"@salesforce/source-tracking": "^7.1.2",
|
|
5179
5114
|
"@salesforce/ts-types": "^2.0.11",
|
|
5180
5115
|
"chalk": "^5.3.0",
|
|
@@ -5199,16 +5134,16 @@
|
|
|
5199
5134
|
}
|
|
5200
5135
|
},
|
|
5201
5136
|
"node_modules/@salesforce/plugin-telemetry": {
|
|
5202
|
-
"version": "3.6.
|
|
5203
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.6.
|
|
5204
|
-
"integrity": "sha512-
|
|
5137
|
+
"version": "3.6.7",
|
|
5138
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.6.7.tgz",
|
|
5139
|
+
"integrity": "sha512-Nr1b+ABfc4Mkq0fY7G9pvMNH0q9SWGV4jxL0rhNPufRFdZqZjbgMRS/HMwQ7+2EMThQOF2WhGuHnvk19nsmcFQ==",
|
|
5205
5140
|
"license": "BSD-3-Clause",
|
|
5206
5141
|
"dependencies": {
|
|
5207
5142
|
"@oclif/core": "^4.0.16",
|
|
5208
5143
|
"@salesforce/core": "^8.2.7",
|
|
5209
5144
|
"@salesforce/kit": "^3.1.6",
|
|
5210
5145
|
"@salesforce/sf-plugins-core": "^11.2.4",
|
|
5211
|
-
"@salesforce/telemetry": "^6.0.
|
|
5146
|
+
"@salesforce/telemetry": "^6.0.23",
|
|
5212
5147
|
"@salesforce/ts-types": "^2.0.11",
|
|
5213
5148
|
"debug": "^4.3.4"
|
|
5214
5149
|
},
|
|
@@ -5256,12 +5191,12 @@
|
|
|
5256
5191
|
}
|
|
5257
5192
|
},
|
|
5258
5193
|
"node_modules/@salesforce/plugin-user": {
|
|
5259
|
-
"version": "3.5.
|
|
5260
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.5.
|
|
5261
|
-
"integrity": "sha512-
|
|
5194
|
+
"version": "3.5.24",
|
|
5195
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.5.24.tgz",
|
|
5196
|
+
"integrity": "sha512-0Y8evO3r8p03H1ZsTZ9Ickdd0V9KQvU0tifroq3TqjuN38QlUCxAdjIifOzb8Q0zDTCSYA29ag3oMLwAaytakg==",
|
|
5262
5197
|
"license": "BSD-3-Clause",
|
|
5263
5198
|
"dependencies": {
|
|
5264
|
-
"@salesforce/core": "^8.
|
|
5199
|
+
"@salesforce/core": "^8.4.0",
|
|
5265
5200
|
"@salesforce/kit": "^3.2.1",
|
|
5266
5201
|
"@salesforce/sf-plugins-core": "^11.3.0",
|
|
5267
5202
|
"@salesforce/ts-types": "^2.0.11"
|
|
@@ -5493,17 +5428,17 @@
|
|
|
5493
5428
|
}
|
|
5494
5429
|
},
|
|
5495
5430
|
"node_modules/@salesforce/source-tracking": {
|
|
5496
|
-
"version": "7.1.
|
|
5497
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.1.
|
|
5498
|
-
"integrity": "sha512-
|
|
5431
|
+
"version": "7.1.7",
|
|
5432
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.1.7.tgz",
|
|
5433
|
+
"integrity": "sha512-qsuP15HqldepAtIdlprlP+hBBtqku1wVEq24nlfGMirHTfaOXZgCKxvbk9JhYrpjNRIdJCyrdBq3et6Z7WJdAA==",
|
|
5499
5434
|
"license": "BSD-3-Clause",
|
|
5500
5435
|
"dependencies": {
|
|
5501
5436
|
"@oclif/core": "^4.0.17",
|
|
5502
|
-
"@salesforce/core": "^8.
|
|
5503
|
-
"@salesforce/kit": "^3.1
|
|
5504
|
-
"@salesforce/source-deploy-retrieve": "^12.
|
|
5437
|
+
"@salesforce/core": "^8.4.0",
|
|
5438
|
+
"@salesforce/kit": "^3.2.1",
|
|
5439
|
+
"@salesforce/source-deploy-retrieve": "^12.4.0",
|
|
5505
5440
|
"@salesforce/ts-types": "^2.0.12",
|
|
5506
|
-
"fast-xml-parser": "^4.4.
|
|
5441
|
+
"fast-xml-parser": "^4.4.1",
|
|
5507
5442
|
"graceful-fs": "^4.2.11",
|
|
5508
5443
|
"isomorphic-git": "^1.27.1",
|
|
5509
5444
|
"ts-retry-promise": "^0.8.1"
|
|
@@ -5513,14 +5448,14 @@
|
|
|
5513
5448
|
}
|
|
5514
5449
|
},
|
|
5515
5450
|
"node_modules/@salesforce/telemetry": {
|
|
5516
|
-
"version": "6.0.
|
|
5517
|
-
"resolved": "https://registry.npmjs.org/@salesforce/telemetry/-/telemetry-6.0.
|
|
5518
|
-
"integrity": "sha512-
|
|
5451
|
+
"version": "6.0.25",
|
|
5452
|
+
"resolved": "https://registry.npmjs.org/@salesforce/telemetry/-/telemetry-6.0.25.tgz",
|
|
5453
|
+
"integrity": "sha512-CKX/cqSyZ8zr9htHLTII3n6u0xXi+Bt6cb11Giv9iU17V+JychoX69VcARnuYTFBimka+WiK3nhWrGQW8g+HtA==",
|
|
5519
5454
|
"license": "BSD-3-Clause",
|
|
5520
5455
|
"dependencies": {
|
|
5521
|
-
"@salesforce/core": "^8.
|
|
5456
|
+
"@salesforce/core": "^8.4.0",
|
|
5522
5457
|
"@salesforce/kit": "^3.2.1",
|
|
5523
|
-
"applicationinsights": "^2.9.
|
|
5458
|
+
"applicationinsights": "^2.9.6",
|
|
5524
5459
|
"got": "^11",
|
|
5525
5460
|
"proxy-agent": "^6.4.0"
|
|
5526
5461
|
},
|
|
@@ -6324,20 +6259,6 @@
|
|
|
6324
6259
|
"node": ">=16.0.0"
|
|
6325
6260
|
}
|
|
6326
6261
|
},
|
|
6327
|
-
"node_modules/@smithy/middleware-retry/node_modules/uuid": {
|
|
6328
|
-
"version": "9.0.1",
|
|
6329
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
|
|
6330
|
-
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
|
|
6331
|
-
"dev": true,
|
|
6332
|
-
"funding": [
|
|
6333
|
-
"https://github.com/sponsors/broofa",
|
|
6334
|
-
"https://github.com/sponsors/ctavan"
|
|
6335
|
-
],
|
|
6336
|
-
"license": "MIT",
|
|
6337
|
-
"bin": {
|
|
6338
|
-
"uuid": "dist/bin/uuid"
|
|
6339
|
-
}
|
|
6340
|
-
},
|
|
6341
6262
|
"node_modules/@smithy/middleware-serde": {
|
|
6342
6263
|
"version": "3.0.3",
|
|
6343
6264
|
"resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz",
|
|
@@ -6777,15 +6698,6 @@
|
|
|
6777
6698
|
"node": ">=14.16"
|
|
6778
6699
|
}
|
|
6779
6700
|
},
|
|
6780
|
-
"node_modules/@tootallnate/once": {
|
|
6781
|
-
"version": "2.0.0",
|
|
6782
|
-
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz",
|
|
6783
|
-
"integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==",
|
|
6784
|
-
"license": "MIT",
|
|
6785
|
-
"engines": {
|
|
6786
|
-
"node": ">= 10"
|
|
6787
|
-
}
|
|
6788
|
-
},
|
|
6789
6701
|
"node_modules/@tootallnate/quickjs-emscripten": {
|
|
6790
6702
|
"version": "0.23.0",
|
|
6791
6703
|
"resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz",
|
|
@@ -7497,14 +7409,13 @@
|
|
|
7497
7409
|
}
|
|
7498
7410
|
},
|
|
7499
7411
|
"node_modules/applicationinsights": {
|
|
7500
|
-
"version": "2.9.
|
|
7501
|
-
"resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.9.
|
|
7502
|
-
"integrity": "sha512-
|
|
7412
|
+
"version": "2.9.6",
|
|
7413
|
+
"resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.9.6.tgz",
|
|
7414
|
+
"integrity": "sha512-BLeBYJUZaKmnzqG/6Q/IFSCqpiVECjSTIvwozLex/1ZZpSxOjPiBxGMev+iIBfNZ2pc7vvnV7DuPOtsoG2DJeQ==",
|
|
7503
7415
|
"license": "MIT",
|
|
7504
7416
|
"dependencies": {
|
|
7505
|
-
"@azure/core-auth": "
|
|
7506
|
-
"@azure/core-rest-pipeline": "1.
|
|
7507
|
-
"@azure/core-util": "1.2.0",
|
|
7417
|
+
"@azure/core-auth": "1.7.2",
|
|
7418
|
+
"@azure/core-rest-pipeline": "1.16.3",
|
|
7508
7419
|
"@azure/opentelemetry-instrumentation-azure-sdk": "^1.0.0-beta.5",
|
|
7509
7420
|
"@microsoft/applicationinsights-web-snippet": "1.0.1",
|
|
7510
7421
|
"@opentelemetry/api": "^1.7.0",
|
|
@@ -7528,19 +7439,6 @@
|
|
|
7528
7439
|
}
|
|
7529
7440
|
}
|
|
7530
7441
|
},
|
|
7531
|
-
"node_modules/applicationinsights/node_modules/@azure/core-util": {
|
|
7532
|
-
"version": "1.2.0",
|
|
7533
|
-
"resolved": "https://registry.npmjs.org/@azure/core-util/-/core-util-1.2.0.tgz",
|
|
7534
|
-
"integrity": "sha512-ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng==",
|
|
7535
|
-
"license": "MIT",
|
|
7536
|
-
"dependencies": {
|
|
7537
|
-
"@azure/abort-controller": "^1.0.0",
|
|
7538
|
-
"tslib": "^2.2.0"
|
|
7539
|
-
},
|
|
7540
|
-
"engines": {
|
|
7541
|
-
"node": ">=14.0.0"
|
|
7542
|
-
}
|
|
7543
|
-
},
|
|
7544
7442
|
"node_modules/aproba": {
|
|
7545
7443
|
"version": "2.0.0",
|
|
7546
7444
|
"resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
|
|
@@ -11508,20 +11406,6 @@
|
|
|
11508
11406
|
"node": ">=14"
|
|
11509
11407
|
}
|
|
11510
11408
|
},
|
|
11511
|
-
"node_modules/gaxios/node_modules/uuid": {
|
|
11512
|
-
"version": "9.0.1",
|
|
11513
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
|
|
11514
|
-
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
|
|
11515
|
-
"dev": true,
|
|
11516
|
-
"funding": [
|
|
11517
|
-
"https://github.com/sponsors/broofa",
|
|
11518
|
-
"https://github.com/sponsors/ctavan"
|
|
11519
|
-
],
|
|
11520
|
-
"license": "MIT",
|
|
11521
|
-
"bin": {
|
|
11522
|
-
"uuid": "dist/bin/uuid"
|
|
11523
|
-
}
|
|
11524
|
-
},
|
|
11525
11409
|
"node_modules/gensync": {
|
|
11526
11410
|
"version": "1.0.0-beta.2",
|
|
11527
11411
|
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
|
|
@@ -12392,9 +12276,9 @@
|
|
|
12392
12276
|
}
|
|
12393
12277
|
},
|
|
12394
12278
|
"node_modules/https-proxy-agent": {
|
|
12395
|
-
"version": "7.0.
|
|
12396
|
-
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.
|
|
12397
|
-
"integrity": "sha512-
|
|
12279
|
+
"version": "7.0.5",
|
|
12280
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz",
|
|
12281
|
+
"integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==",
|
|
12398
12282
|
"license": "MIT",
|
|
12399
12283
|
"dependencies": {
|
|
12400
12284
|
"agent-base": "^7.0.2",
|
|
@@ -13399,6 +13283,16 @@
|
|
|
13399
13283
|
"node": ">=8"
|
|
13400
13284
|
}
|
|
13401
13285
|
},
|
|
13286
|
+
"node_modules/istanbul-lib-processinfo/node_modules/uuid": {
|
|
13287
|
+
"version": "8.3.2",
|
|
13288
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
|
|
13289
|
+
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
|
|
13290
|
+
"dev": true,
|
|
13291
|
+
"license": "MIT",
|
|
13292
|
+
"bin": {
|
|
13293
|
+
"uuid": "dist/bin/uuid"
|
|
13294
|
+
}
|
|
13295
|
+
},
|
|
13402
13296
|
"node_modules/istanbul-lib-report": {
|
|
13403
13297
|
"version": "3.0.1",
|
|
13404
13298
|
"resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
|
|
@@ -16679,6 +16573,8 @@
|
|
|
16679
16573
|
},
|
|
16680
16574
|
"node_modules/npm/node_modules/https-proxy-agent": {
|
|
16681
16575
|
"version": "7.0.5",
|
|
16576
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz",
|
|
16577
|
+
"integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==",
|
|
16682
16578
|
"inBundle": true,
|
|
16683
16579
|
"license": "MIT",
|
|
16684
16580
|
"dependencies": {
|
|
@@ -22459,9 +22355,14 @@
|
|
|
22459
22355
|
"license": "MIT"
|
|
22460
22356
|
},
|
|
22461
22357
|
"node_modules/uuid": {
|
|
22462
|
-
"version": "
|
|
22463
|
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-
|
|
22464
|
-
"integrity": "sha512
|
|
22358
|
+
"version": "9.0.1",
|
|
22359
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
|
|
22360
|
+
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
|
|
22361
|
+
"dev": true,
|
|
22362
|
+
"funding": [
|
|
22363
|
+
"https://github.com/sponsors/broofa",
|
|
22364
|
+
"https://github.com/sponsors/ctavan"
|
|
22365
|
+
],
|
|
22465
22366
|
"license": "MIT",
|
|
22466
22367
|
"bin": {
|
|
22467
22368
|
"uuid": "dist/bin/uuid"
|
package/oclif.lock
CHANGED
|
@@ -933,13 +933,6 @@
|
|
|
933
933
|
"@smithy/types" "^3.3.0"
|
|
934
934
|
tslib "^2.6.2"
|
|
935
935
|
|
|
936
|
-
"@azure/abort-controller@^1.0.0":
|
|
937
|
-
version "1.1.0"
|
|
938
|
-
resolved "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-1.1.0.tgz"
|
|
939
|
-
integrity sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==
|
|
940
|
-
dependencies:
|
|
941
|
-
tslib "^2.2.0"
|
|
942
|
-
|
|
943
936
|
"@azure/abort-controller@^2.0.0":
|
|
944
937
|
version "2.1.2"
|
|
945
938
|
resolved "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-2.1.2.tgz"
|
|
@@ -947,7 +940,7 @@
|
|
|
947
940
|
dependencies:
|
|
948
941
|
tslib "^2.6.2"
|
|
949
942
|
|
|
950
|
-
"@azure/core-auth@^1.4.0", "@azure/core-auth
|
|
943
|
+
"@azure/core-auth@^1.4.0", "@azure/core-auth@1.7.2":
|
|
951
944
|
version "1.7.2"
|
|
952
945
|
resolved "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.7.2.tgz"
|
|
953
946
|
integrity sha512-Igm/S3fDYmnMq1uKS38Ae1/m37B3zigdlZw+kocwEhh5GjyKjPrXKO2J6rzpC1wAxrNil/jX9BJRqBshyjnF3g==
|
|
@@ -956,21 +949,19 @@
|
|
|
956
949
|
"@azure/core-util" "^1.1.0"
|
|
957
950
|
tslib "^2.6.2"
|
|
958
951
|
|
|
959
|
-
"@azure/core-rest-pipeline@1.
|
|
960
|
-
version "1.
|
|
961
|
-
resolved "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.
|
|
962
|
-
integrity sha512-
|
|
952
|
+
"@azure/core-rest-pipeline@1.16.3":
|
|
953
|
+
version "1.16.3"
|
|
954
|
+
resolved "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.16.3.tgz"
|
|
955
|
+
integrity sha512-VxLk4AHLyqcHsfKe4MZ6IQ+D+ShuByy+RfStKfSjxJoL3WBWq17VNmrz8aT8etKzqc2nAeIyLxScjpzsS4fz8w==
|
|
963
956
|
dependencies:
|
|
964
|
-
"@azure/abort-controller" "^
|
|
957
|
+
"@azure/abort-controller" "^2.0.0"
|
|
965
958
|
"@azure/core-auth" "^1.4.0"
|
|
966
959
|
"@azure/core-tracing" "^1.0.1"
|
|
967
|
-
"@azure/core-util" "^1.
|
|
960
|
+
"@azure/core-util" "^1.9.0"
|
|
968
961
|
"@azure/logger" "^1.0.0"
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
tslib "^2.2.0"
|
|
973
|
-
uuid "^8.3.0"
|
|
962
|
+
http-proxy-agent "^7.0.0"
|
|
963
|
+
https-proxy-agent "^7.0.0"
|
|
964
|
+
tslib "^2.6.2"
|
|
974
965
|
|
|
975
966
|
"@azure/core-tracing@^1.0.0", "@azure/core-tracing@^1.0.1":
|
|
976
967
|
version "1.1.2"
|
|
@@ -979,22 +970,14 @@
|
|
|
979
970
|
dependencies:
|
|
980
971
|
tslib "^2.6.2"
|
|
981
972
|
|
|
982
|
-
"@azure/core-util@^1.
|
|
983
|
-
version "1.9.
|
|
984
|
-
resolved "https://registry.npmjs.org/@azure/core-util/-/core-util-1.9.
|
|
985
|
-
integrity sha512-
|
|
973
|
+
"@azure/core-util@^1.1.0", "@azure/core-util@^1.9.0":
|
|
974
|
+
version "1.9.2"
|
|
975
|
+
resolved "https://registry.npmjs.org/@azure/core-util/-/core-util-1.9.2.tgz"
|
|
976
|
+
integrity sha512-l1Qrqhi4x1aekkV+OlcqsJa4AnAkj5p0JV8omgwjaV9OAbP41lvrMvs+CptfetKkeEaGRGSzby7sjPZEX7+kkQ==
|
|
986
977
|
dependencies:
|
|
987
978
|
"@azure/abort-controller" "^2.0.0"
|
|
988
979
|
tslib "^2.6.2"
|
|
989
980
|
|
|
990
|
-
"@azure/core-util@1.2.0":
|
|
991
|
-
version "1.2.0"
|
|
992
|
-
resolved "https://registry.npmjs.org/@azure/core-util/-/core-util-1.2.0.tgz"
|
|
993
|
-
integrity sha512-ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng==
|
|
994
|
-
dependencies:
|
|
995
|
-
"@azure/abort-controller" "^1.0.0"
|
|
996
|
-
tslib "^2.2.0"
|
|
997
|
-
|
|
998
981
|
"@azure/logger@^1.0.0":
|
|
999
982
|
version "1.1.2"
|
|
1000
983
|
resolved "https://registry.npmjs.org/@azure/logger/-/logger-1.1.2.tgz"
|
|
@@ -1816,7 +1799,7 @@
|
|
|
1816
1799
|
proc-log "^4.0.0"
|
|
1817
1800
|
which "^4.0.0"
|
|
1818
1801
|
|
|
1819
|
-
"@oclif/core@^4", "@oclif/core@^4.0.
|
|
1802
|
+
"@oclif/core@^4", "@oclif/core@^4.0.15", "@oclif/core@^4.0.16", "@oclif/core@^4.0.17", "@oclif/core@^4.0.6", "@oclif/core@4.0.17":
|
|
1820
1803
|
version "4.0.17"
|
|
1821
1804
|
resolved "https://registry.npmjs.org/@oclif/core/-/core-4.0.17.tgz"
|
|
1822
1805
|
integrity sha512-zfdSRip9DVMOklMojWCLZEB4iOzy7LDTABCDzCXqmpZGS+o1e1xts4jGhnte3mi0WV0YthNfYqF16tqk6CWITA==
|
|
@@ -2100,12 +2083,12 @@
|
|
|
2100
2083
|
resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz"
|
|
2101
2084
|
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
|
|
2102
2085
|
|
|
2103
|
-
"@salesforce/apex-node@^8.1.1", "@salesforce/apex-node@^8.1.2":
|
|
2104
|
-
version "8.1.
|
|
2105
|
-
resolved "https://registry.npmjs.org/@salesforce/apex-node/-/apex-node-8.1.
|
|
2106
|
-
integrity sha512-
|
|
2086
|
+
"@salesforce/apex-node@^8.1.1", "@salesforce/apex-node@^8.1.2", "@salesforce/apex-node@^8.1.3":
|
|
2087
|
+
version "8.1.3"
|
|
2088
|
+
resolved "https://registry.npmjs.org/@salesforce/apex-node/-/apex-node-8.1.3.tgz"
|
|
2089
|
+
integrity sha512-fADSmOfJuPwOFEb3zmVjgpgtgd/pjcCGMccT28NdIKbfWKMRH0wwUeEW5U0tOn/m+Y4moShp6Vn1f+wihG/CZQ==
|
|
2107
2090
|
dependencies:
|
|
2108
|
-
"@jsforce/jsforce-node" "^3.4.
|
|
2091
|
+
"@jsforce/jsforce-node" "^3.4.1"
|
|
2109
2092
|
"@salesforce/core" "^8.2.8"
|
|
2110
2093
|
"@salesforce/kit" "^3.2.1"
|
|
2111
2094
|
"@types/istanbul-reports" "^3.0.4"
|
|
@@ -2220,10 +2203,10 @@
|
|
|
2220
2203
|
jszip "^3.10.1"
|
|
2221
2204
|
object-treeify "^2"
|
|
2222
2205
|
|
|
2223
|
-
"@salesforce/plugin-apex@3.
|
|
2224
|
-
version "3.
|
|
2225
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.
|
|
2226
|
-
integrity sha512-
|
|
2206
|
+
"@salesforce/plugin-apex@3.4.0":
|
|
2207
|
+
version "3.4.0"
|
|
2208
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.4.0.tgz"
|
|
2209
|
+
integrity sha512-1+FCNWly9f/vFLH7hNDl8SI0VGgQ+0O9kbEufxBtvkhIplXWL0Z9XE6vhiLG1UXcAcg1NDWuv6Xs8CgI35ZxbQ==
|
|
2227
2210
|
dependencies:
|
|
2228
2211
|
"@salesforce/apex-node" "^8.1.1"
|
|
2229
2212
|
"@salesforce/core" "^8.2.7"
|
|
@@ -2276,23 +2259,23 @@
|
|
|
2276
2259
|
csv-stringify "^6.5.1"
|
|
2277
2260
|
form-data "^4.0.0"
|
|
2278
2261
|
|
|
2279
|
-
"@salesforce/plugin-deploy-retrieve@3.
|
|
2280
|
-
version "3.
|
|
2281
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.
|
|
2282
|
-
integrity sha512-
|
|
2262
|
+
"@salesforce/plugin-deploy-retrieve@3.10.0":
|
|
2263
|
+
version "3.10.0"
|
|
2264
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.10.0.tgz"
|
|
2265
|
+
integrity sha512-UNlOyWA99ZPyGgWu2AkUmKUmTRa9ELj2XDriV6OmW6RRDCS+tMDJlv5M22sn3/YInJWB2vKUgpemamXWXml+2w==
|
|
2283
2266
|
dependencies:
|
|
2284
|
-
"@oclif/core" "^4.0.
|
|
2285
|
-
"@salesforce/apex-node" "^8.1.
|
|
2286
|
-
"@salesforce/core" "^8.
|
|
2287
|
-
"@salesforce/kit" "^3.1
|
|
2288
|
-
"@salesforce/plugin-info" "^3.3.
|
|
2289
|
-
"@salesforce/sf-plugins-core" "^11.3.
|
|
2290
|
-
"@salesforce/source-deploy-retrieve" "^12.
|
|
2291
|
-
"@salesforce/source-tracking" "^7.1.
|
|
2267
|
+
"@oclif/core" "^4.0.17"
|
|
2268
|
+
"@salesforce/apex-node" "^8.1.3"
|
|
2269
|
+
"@salesforce/core" "^8.4.0"
|
|
2270
|
+
"@salesforce/kit" "^3.2.1"
|
|
2271
|
+
"@salesforce/plugin-info" "^3.3.28"
|
|
2272
|
+
"@salesforce/sf-plugins-core" "^11.3.2"
|
|
2273
|
+
"@salesforce/source-deploy-retrieve" "^12.4.0"
|
|
2274
|
+
"@salesforce/source-tracking" "^7.1.7"
|
|
2292
2275
|
"@salesforce/ts-types" "^2.0.12"
|
|
2293
2276
|
ansis "^3.3.2"
|
|
2294
2277
|
|
|
2295
|
-
"@salesforce/plugin-info@^3.3.19", "@salesforce/plugin-info@^3.3.
|
|
2278
|
+
"@salesforce/plugin-info@^3.3.19", "@salesforce/plugin-info@^3.3.27", "@salesforce/plugin-info@^3.3.28", "@salesforce/plugin-info@3.3.28":
|
|
2296
2279
|
version "3.3.28"
|
|
2297
2280
|
resolved "https://registry.npmjs.org/@salesforce/plugin-info/-/plugin-info-3.3.28.tgz"
|
|
2298
2281
|
integrity sha512-4ulrmW3ldcDz2mcirGomgxnkhy5mPh5kc6iNXiENs4RsfNoKrKPBeB8jexk4BQFxlRBLEd2DbBR4np68Ys75kQ==
|
|
@@ -2419,17 +2402,17 @@
|
|
|
2419
2402
|
fast-xml-parser "^4.4.1"
|
|
2420
2403
|
js2xmlparser "^4.0.2"
|
|
2421
2404
|
|
|
2422
|
-
"@salesforce/plugin-source@3.5.
|
|
2423
|
-
version "3.5.
|
|
2424
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-source/-/plugin-source-3.5.
|
|
2425
|
-
integrity sha512-
|
|
2405
|
+
"@salesforce/plugin-source@3.5.14":
|
|
2406
|
+
version "3.5.14"
|
|
2407
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-source/-/plugin-source-3.5.14.tgz"
|
|
2408
|
+
integrity sha512-xNTSmZfLd779ljcOVCl2G4ZBJAbgeGd6B0kyCD+IaHq5Ks95AOakhBp5cflKE2rg+Xm9m/fLbUCsKyvrPAAFiw==
|
|
2426
2409
|
dependencies:
|
|
2427
2410
|
"@oclif/core" "^4"
|
|
2428
2411
|
"@salesforce/apex-node" "^8.1.2"
|
|
2429
2412
|
"@salesforce/core" "^8.2.8"
|
|
2430
2413
|
"@salesforce/kit" "^3.1.6"
|
|
2431
|
-
"@salesforce/sf-plugins-core" "^11.2
|
|
2432
|
-
"@salesforce/source-deploy-retrieve" "^12.
|
|
2414
|
+
"@salesforce/sf-plugins-core" "^11.3.2"
|
|
2415
|
+
"@salesforce/source-deploy-retrieve" "^12.4.0"
|
|
2433
2416
|
"@salesforce/source-tracking" "^7.1.2"
|
|
2434
2417
|
"@salesforce/ts-types" "^2.0.11"
|
|
2435
2418
|
chalk "^5.3.0"
|
|
@@ -2437,16 +2420,16 @@
|
|
|
2437
2420
|
got "^13.0.0"
|
|
2438
2421
|
proxy-agent "^6.3.1"
|
|
2439
2422
|
|
|
2440
|
-
"@salesforce/plugin-telemetry@3.6.
|
|
2441
|
-
version "3.6.
|
|
2442
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.6.
|
|
2443
|
-
integrity sha512-
|
|
2423
|
+
"@salesforce/plugin-telemetry@3.6.7":
|
|
2424
|
+
version "3.6.7"
|
|
2425
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-3.6.7.tgz"
|
|
2426
|
+
integrity sha512-Nr1b+ABfc4Mkq0fY7G9pvMNH0q9SWGV4jxL0rhNPufRFdZqZjbgMRS/HMwQ7+2EMThQOF2WhGuHnvk19nsmcFQ==
|
|
2444
2427
|
dependencies:
|
|
2445
2428
|
"@oclif/core" "^4.0.16"
|
|
2446
2429
|
"@salesforce/core" "^8.2.7"
|
|
2447
2430
|
"@salesforce/kit" "^3.1.6"
|
|
2448
2431
|
"@salesforce/sf-plugins-core" "^11.2.4"
|
|
2449
|
-
"@salesforce/telemetry" "^6.0.
|
|
2432
|
+
"@salesforce/telemetry" "^6.0.23"
|
|
2450
2433
|
"@salesforce/ts-types" "^2.0.11"
|
|
2451
2434
|
debug "^4.3.4"
|
|
2452
2435
|
|
|
@@ -2476,12 +2459,12 @@
|
|
|
2476
2459
|
semver "^7.6.3"
|
|
2477
2460
|
shelljs "^0.8.4"
|
|
2478
2461
|
|
|
2479
|
-
"@salesforce/plugin-user@3.5.
|
|
2480
|
-
version "3.5.
|
|
2481
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.5.
|
|
2482
|
-
integrity sha512-
|
|
2462
|
+
"@salesforce/plugin-user@3.5.24":
|
|
2463
|
+
version "3.5.24"
|
|
2464
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-user/-/plugin-user-3.5.24.tgz"
|
|
2465
|
+
integrity sha512-0Y8evO3r8p03H1ZsTZ9Ickdd0V9KQvU0tifroq3TqjuN38QlUCxAdjIifOzb8Q0zDTCSYA29ag3oMLwAaytakg==
|
|
2483
2466
|
dependencies:
|
|
2484
|
-
"@salesforce/core" "^8.
|
|
2467
|
+
"@salesforce/core" "^8.4.0"
|
|
2485
2468
|
"@salesforce/kit" "^3.2.1"
|
|
2486
2469
|
"@salesforce/sf-plugins-core" "^11.3.0"
|
|
2487
2470
|
"@salesforce/ts-types" "^2.0.11"
|
|
@@ -2514,7 +2497,7 @@
|
|
|
2514
2497
|
string-width "^7.2.0"
|
|
2515
2498
|
terminal-link "^3.0.0"
|
|
2516
2499
|
|
|
2517
|
-
"@salesforce/source-deploy-retrieve@^12.1.
|
|
2500
|
+
"@salesforce/source-deploy-retrieve@^12.1.12", "@salesforce/source-deploy-retrieve@^12.4.0":
|
|
2518
2501
|
version "12.4.0"
|
|
2519
2502
|
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.4.0.tgz"
|
|
2520
2503
|
integrity sha512-gvTEjLPbNRt62GEKvejt/f1TtG6Zx8JPd/5BYjnXyEJu8BeOy5kL4zJm9GD3ZiTzBnPGHLzfVL09JjWfNBbo0A==
|
|
@@ -2532,29 +2515,29 @@
|
|
|
2532
2515
|
minimatch "^9.0.5"
|
|
2533
2516
|
proxy-agent "^6.4.0"
|
|
2534
2517
|
|
|
2535
|
-
"@salesforce/source-tracking@^7.1.2":
|
|
2536
|
-
version "7.1.
|
|
2537
|
-
resolved "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.1.
|
|
2538
|
-
integrity sha512-
|
|
2518
|
+
"@salesforce/source-tracking@^7.1.2", "@salesforce/source-tracking@^7.1.7":
|
|
2519
|
+
version "7.1.7"
|
|
2520
|
+
resolved "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-7.1.7.tgz"
|
|
2521
|
+
integrity sha512-qsuP15HqldepAtIdlprlP+hBBtqku1wVEq24nlfGMirHTfaOXZgCKxvbk9JhYrpjNRIdJCyrdBq3et6Z7WJdAA==
|
|
2539
2522
|
dependencies:
|
|
2540
2523
|
"@oclif/core" "^4.0.17"
|
|
2541
|
-
"@salesforce/core" "^8.
|
|
2542
|
-
"@salesforce/kit" "^3.1
|
|
2543
|
-
"@salesforce/source-deploy-retrieve" "^12.
|
|
2524
|
+
"@salesforce/core" "^8.4.0"
|
|
2525
|
+
"@salesforce/kit" "^3.2.1"
|
|
2526
|
+
"@salesforce/source-deploy-retrieve" "^12.4.0"
|
|
2544
2527
|
"@salesforce/ts-types" "^2.0.12"
|
|
2545
|
-
fast-xml-parser "^4.4.
|
|
2528
|
+
fast-xml-parser "^4.4.1"
|
|
2546
2529
|
graceful-fs "^4.2.11"
|
|
2547
2530
|
isomorphic-git "^1.27.1"
|
|
2548
2531
|
ts-retry-promise "^0.8.1"
|
|
2549
2532
|
|
|
2550
|
-
"@salesforce/telemetry@^6.0.
|
|
2551
|
-
version "6.0.
|
|
2552
|
-
resolved "https://registry.npmjs.org/@salesforce/telemetry/-/telemetry-6.0.
|
|
2553
|
-
integrity sha512-
|
|
2533
|
+
"@salesforce/telemetry@^6.0.23":
|
|
2534
|
+
version "6.0.25"
|
|
2535
|
+
resolved "https://registry.npmjs.org/@salesforce/telemetry/-/telemetry-6.0.25.tgz"
|
|
2536
|
+
integrity sha512-CKX/cqSyZ8zr9htHLTII3n6u0xXi+Bt6cb11Giv9iU17V+JychoX69VcARnuYTFBimka+WiK3nhWrGQW8g+HtA==
|
|
2554
2537
|
dependencies:
|
|
2555
|
-
"@salesforce/core" "^8.
|
|
2538
|
+
"@salesforce/core" "^8.4.0"
|
|
2556
2539
|
"@salesforce/kit" "^3.2.1"
|
|
2557
|
-
applicationinsights "^2.9.
|
|
2540
|
+
applicationinsights "^2.9.6"
|
|
2558
2541
|
got "^11"
|
|
2559
2542
|
proxy-agent "^6.4.0"
|
|
2560
2543
|
|
|
@@ -3277,11 +3260,6 @@
|
|
|
3277
3260
|
dependencies:
|
|
3278
3261
|
defer-to-connect "^2.0.1"
|
|
3279
3262
|
|
|
3280
|
-
"@tootallnate/once@2":
|
|
3281
|
-
version "2.0.0"
|
|
3282
|
-
resolved "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz"
|
|
3283
|
-
integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==
|
|
3284
|
-
|
|
3285
3263
|
"@tootallnate/quickjs-emscripten@^0.23.0":
|
|
3286
3264
|
version "0.23.0"
|
|
3287
3265
|
resolved "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz"
|
|
@@ -3761,14 +3739,13 @@ append-transform@^2.0.0:
|
|
|
3761
3739
|
dependencies:
|
|
3762
3740
|
default-require-extensions "^3.0.0"
|
|
3763
3741
|
|
|
3764
|
-
applicationinsights@^2.9.
|
|
3765
|
-
version "2.9.
|
|
3766
|
-
resolved "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.9.
|
|
3767
|
-
integrity sha512-
|
|
3742
|
+
applicationinsights@^2.9.6:
|
|
3743
|
+
version "2.9.6"
|
|
3744
|
+
resolved "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.9.6.tgz"
|
|
3745
|
+
integrity sha512-BLeBYJUZaKmnzqG/6Q/IFSCqpiVECjSTIvwozLex/1ZZpSxOjPiBxGMev+iIBfNZ2pc7vvnV7DuPOtsoG2DJeQ==
|
|
3768
3746
|
dependencies:
|
|
3769
|
-
"@azure/core-auth" "
|
|
3770
|
-
"@azure/core-rest-pipeline" "1.
|
|
3771
|
-
"@azure/core-util" "1.2.0"
|
|
3747
|
+
"@azure/core-auth" "1.7.2"
|
|
3748
|
+
"@azure/core-rest-pipeline" "1.16.3"
|
|
3772
3749
|
"@azure/opentelemetry-instrumentation-azure-sdk" "^1.0.0-beta.5"
|
|
3773
3750
|
"@microsoft/applicationinsights-web-snippet" "1.0.1"
|
|
3774
3751
|
"@opentelemetry/api" "^1.7.0"
|
|
@@ -5800,7 +5777,7 @@ fast-uri@^3.0.1:
|
|
|
5800
5777
|
resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz"
|
|
5801
5778
|
integrity sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==
|
|
5802
5779
|
|
|
5803
|
-
fast-xml-parser@^4.4.
|
|
5780
|
+
fast-xml-parser@^4.4.1, fast-xml-parser@4.4.1:
|
|
5804
5781
|
version "4.4.1"
|
|
5805
5782
|
resolved "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz"
|
|
5806
5783
|
integrity sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==
|
|
@@ -6672,15 +6649,6 @@ http-parser-js@>=0.5.1:
|
|
|
6672
6649
|
resolved "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz"
|
|
6673
6650
|
integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==
|
|
6674
6651
|
|
|
6675
|
-
http-proxy-agent@^5.0.0:
|
|
6676
|
-
version "5.0.0"
|
|
6677
|
-
resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz"
|
|
6678
|
-
integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==
|
|
6679
|
-
dependencies:
|
|
6680
|
-
"@tootallnate/once" "2"
|
|
6681
|
-
agent-base "6"
|
|
6682
|
-
debug "4"
|
|
6683
|
-
|
|
6684
6652
|
http-proxy-agent@^7.0.0, http-proxy-agent@^7.0.1:
|
|
6685
6653
|
version "7.0.2"
|
|
6686
6654
|
resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz"
|
|
@@ -6713,10 +6681,10 @@ https-proxy-agent@^5.0.0:
|
|
|
6713
6681
|
agent-base "6"
|
|
6714
6682
|
debug "4"
|
|
6715
6683
|
|
|
6716
|
-
https-proxy-agent@^7.0.1, https-proxy-agent@^7.0.2, https-proxy-agent@^7.0.3:
|
|
6717
|
-
version "7.0.
|
|
6718
|
-
resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.
|
|
6719
|
-
integrity sha512-
|
|
6684
|
+
https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1, https-proxy-agent@^7.0.2, https-proxy-agent@^7.0.3:
|
|
6685
|
+
version "7.0.5"
|
|
6686
|
+
resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz"
|
|
6687
|
+
integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==
|
|
6720
6688
|
dependencies:
|
|
6721
6689
|
agent-base "^7.0.2"
|
|
6722
6690
|
debug "4"
|
|
@@ -10868,7 +10836,7 @@ util@^0.12.4:
|
|
|
10868
10836
|
is-typed-array "^1.1.3"
|
|
10869
10837
|
which-typed-array "^1.1.2"
|
|
10870
10838
|
|
|
10871
|
-
uuid@^8.3.
|
|
10839
|
+
uuid@^8.3.2:
|
|
10872
10840
|
version "8.3.2"
|
|
10873
10841
|
resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"
|
|
10874
10842
|
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
|
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.56.
|
|
4
|
+
"version": "2.56.3",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
],
|
|
77
77
|
"jitPlugins": {
|
|
78
78
|
"@salesforce/plugin-custom-metadata": "3.3.24",
|
|
79
|
-
"@salesforce/plugin-community": "3.2.
|
|
79
|
+
"@salesforce/plugin-community": "3.2.26",
|
|
80
80
|
"@salesforce/plugin-dev": "2.4.0",
|
|
81
81
|
"@salesforce/plugin-devops-center": "1.2.20",
|
|
82
82
|
"@salesforce/plugin-env": "3.0.32",
|
|
@@ -152,10 +152,10 @@
|
|
|
152
152
|
"@oclif/plugin-which": "3.2.10",
|
|
153
153
|
"@salesforce/core": "^8.2.3",
|
|
154
154
|
"@salesforce/kit": "^3.1.6",
|
|
155
|
-
"@salesforce/plugin-apex": "3.
|
|
155
|
+
"@salesforce/plugin-apex": "3.4.0",
|
|
156
156
|
"@salesforce/plugin-auth": "3.6.47",
|
|
157
157
|
"@salesforce/plugin-data": "3.6.0",
|
|
158
|
-
"@salesforce/plugin-deploy-retrieve": "3.
|
|
158
|
+
"@salesforce/plugin-deploy-retrieve": "3.10.0",
|
|
159
159
|
"@salesforce/plugin-info": "3.3.28",
|
|
160
160
|
"@salesforce/plugin-limits": "3.3.24",
|
|
161
161
|
"@salesforce/plugin-marketplace": "1.2.22",
|
|
@@ -164,11 +164,11 @@
|
|
|
164
164
|
"@salesforce/plugin-schema": "3.3.22",
|
|
165
165
|
"@salesforce/plugin-settings": "2.3.11",
|
|
166
166
|
"@salesforce/plugin-sobject": "1.4.28",
|
|
167
|
-
"@salesforce/plugin-source": "3.5.
|
|
168
|
-
"@salesforce/plugin-telemetry": "3.6.
|
|
167
|
+
"@salesforce/plugin-source": "3.5.14",
|
|
168
|
+
"@salesforce/plugin-telemetry": "3.6.7",
|
|
169
169
|
"@salesforce/plugin-templates": "56.3.11",
|
|
170
170
|
"@salesforce/plugin-trust": "3.7.22",
|
|
171
|
-
"@salesforce/plugin-user": "3.5.
|
|
171
|
+
"@salesforce/plugin-user": "3.5.24",
|
|
172
172
|
"@salesforce/sf-plugins-core": "11.3.2",
|
|
173
173
|
"ansis": "^3.3.0"
|
|
174
174
|
},
|