@salesforce/cli 2.22.4 → 2.22.6
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 -37
- package/npm-shrinkwrap.json +61 -133
- package/oclif.manifest.json +5 -5
- package/package.json +9 -9
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.22.
|
|
27
|
+
@salesforce/cli/2.22.6 linux-x64 node-v20.10.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -480,7 +480,8 @@ FLAGS
|
|
|
480
480
|
-d, --output-dir=<value> Directory for saving the log files.
|
|
481
481
|
-i, --log-id=<value> ID of the specific log to display.
|
|
482
482
|
-n, --number=<value> Number of the most recent logs to display.
|
|
483
|
-
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
483
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
484
|
+
configuration variable is already set.
|
|
484
485
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
485
486
|
|
|
486
487
|
GLOBAL FLAGS
|
|
@@ -519,7 +520,7 @@ FLAG DESCRIPTIONS
|
|
|
519
520
|
directory.
|
|
520
521
|
```
|
|
521
522
|
|
|
522
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
523
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/get/log.ts)_
|
|
523
524
|
|
|
524
525
|
## `sf apex get test`
|
|
525
526
|
|
|
@@ -534,7 +535,8 @@ FLAGS
|
|
|
534
535
|
-c, --code-coverage Retrieve code coverage results.
|
|
535
536
|
-d, --output-dir=<value> Directory in which to store test result files.
|
|
536
537
|
-i, --test-run-id=<value> (required) ID of the test run.
|
|
537
|
-
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
538
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
539
|
+
configuration variable is already set.
|
|
538
540
|
-r, --result-format=<option> [default: human] Format of the results.
|
|
539
541
|
<options: human|tap|junit|json>
|
|
540
542
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
@@ -571,7 +573,7 @@ EXAMPLES
|
|
|
571
573
|
me@myorg',
|
|
572
574
|
```
|
|
573
575
|
|
|
574
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
576
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/get/test.ts)_
|
|
575
577
|
|
|
576
578
|
## `sf apex list log`
|
|
577
579
|
|
|
@@ -582,7 +584,8 @@ USAGE
|
|
|
582
584
|
$ sf apex list log -o <value> [--json] [--api-version <value>]
|
|
583
585
|
|
|
584
586
|
FLAGS
|
|
585
|
-
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
587
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
588
|
+
configuration variable is already set.
|
|
586
589
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
587
590
|
|
|
588
591
|
GLOBAL FLAGS
|
|
@@ -609,7 +612,7 @@ EXAMPLES
|
|
|
609
612
|
$ sf apex list log --target-org me@my.org
|
|
610
613
|
```
|
|
611
614
|
|
|
612
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
615
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/list/log.ts)_
|
|
613
616
|
|
|
614
617
|
## `sf apex run`
|
|
615
618
|
|
|
@@ -621,7 +624,8 @@ USAGE
|
|
|
621
624
|
|
|
622
625
|
FLAGS
|
|
623
626
|
-f, --file=<value> Path to a local file that contains Apex code.
|
|
624
|
-
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
627
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
628
|
+
configuration variable is already set.
|
|
625
629
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
626
630
|
|
|
627
631
|
GLOBAL FLAGS
|
|
@@ -654,7 +658,7 @@ EXAMPLES
|
|
|
654
658
|
$ sf apex run
|
|
655
659
|
```
|
|
656
660
|
|
|
657
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
661
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/run.ts)_
|
|
658
662
|
|
|
659
663
|
## `sf apex run test`
|
|
660
664
|
|
|
@@ -672,7 +676,8 @@ FLAGS
|
|
|
672
676
|
-l, --test-level=<option> Level of tests to run; default is RunLocalTests.
|
|
673
677
|
<options: RunLocalTests|RunAllTestsInOrg|RunSpecifiedTests>
|
|
674
678
|
-n, --class-names=<value>... Apex test class names to run; default is all classes.
|
|
675
|
-
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
679
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
680
|
+
configuration variable is already set.
|
|
676
681
|
-r, --result-format=<option> [default: human] Format of the test results.
|
|
677
682
|
<options: human|tap|junit|json>
|
|
678
683
|
-s, --suite-names=<value>... Apex test suite names to run.
|
|
@@ -760,7 +765,7 @@ FLAG DESCRIPTIONS
|
|
|
760
765
|
--tests Test1 --tests Test2
|
|
761
766
|
```
|
|
762
767
|
|
|
763
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
768
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/run/test.ts)_
|
|
764
769
|
|
|
765
770
|
## `sf apex tail log`
|
|
766
771
|
|
|
@@ -773,7 +778,8 @@ USAGE
|
|
|
773
778
|
FLAGS
|
|
774
779
|
-c, --color Apply default colors to noteworthy log lines.
|
|
775
780
|
-d, --debug-level=<value> Debug level to set on the DEVELOPER_LOG trace flag for your user.
|
|
776
|
-
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
781
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
782
|
+
configuration variable is already set.
|
|
777
783
|
-s, --skip-trace-flag Skip trace flag setup. Assumes that a trace flag and debug level are fully set up.
|
|
778
784
|
--api-version=<value> Override the api version used for api requests made by this command
|
|
779
785
|
|
|
@@ -799,7 +805,7 @@ EXAMPLES
|
|
|
799
805
|
$ sf apex tail log --color --skip-trace-flag
|
|
800
806
|
```
|
|
801
807
|
|
|
802
|
-
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.
|
|
808
|
+
_See code: [@salesforce/plugin-apex](https://github.com/salesforcecli/plugin-apex/blob/3.0.9/src/commands/apex/tail/log.ts)_
|
|
803
809
|
|
|
804
810
|
## `sf autocomplete [SHELL]`
|
|
805
811
|
|
|
@@ -5230,7 +5236,7 @@ FLAG DESCRIPTIONS
|
|
|
5230
5236
|
subscribers.
|
|
5231
5237
|
```
|
|
5232
5238
|
|
|
5233
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5239
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package1/version/create.ts)_
|
|
5234
5240
|
|
|
5235
5241
|
## `sf package1 version create get`
|
|
5236
5242
|
|
|
@@ -5262,7 +5268,7 @@ EXAMPLES
|
|
|
5262
5268
|
$ sf package1 version create get --request-id 0HD... --target-org myorg@example.com
|
|
5263
5269
|
```
|
|
5264
5270
|
|
|
5265
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5271
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package1/version/create/get.ts)_
|
|
5266
5272
|
|
|
5267
5273
|
## `sf package1 version display`
|
|
5268
5274
|
|
|
@@ -5295,7 +5301,7 @@ EXAMPLES
|
|
|
5295
5301
|
$ sf package1 version display --package-version-id 04t... --target-org myorg@example.com
|
|
5296
5302
|
```
|
|
5297
5303
|
|
|
5298
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5304
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package1/version/display.ts)_
|
|
5299
5305
|
|
|
5300
5306
|
## `sf package1 version list`
|
|
5301
5307
|
|
|
@@ -5332,7 +5338,7 @@ FLAG DESCRIPTIONS
|
|
|
5332
5338
|
If not specified, shows all versions for all packages (managed and unmanaged) in the org.
|
|
5333
5339
|
```
|
|
5334
5340
|
|
|
5335
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5341
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package1/version/list.ts)_
|
|
5336
5342
|
|
|
5337
5343
|
## `sf package create`
|
|
5338
5344
|
|
|
@@ -5410,7 +5416,7 @@ FLAG DESCRIPTIONS
|
|
|
5410
5416
|
Org-Dependent Unlocked Packages" in the Salesforce DX Developer Guide.
|
|
5411
5417
|
```
|
|
5412
5418
|
|
|
5413
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5419
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/create.ts)_
|
|
5414
5420
|
|
|
5415
5421
|
## `sf package delete`
|
|
5416
5422
|
|
|
@@ -5451,7 +5457,7 @@ EXAMPLES
|
|
|
5451
5457
|
$ sf package delete --package 0Ho... --target-dev-hub devhub@example.com
|
|
5452
5458
|
```
|
|
5453
5459
|
|
|
5454
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5460
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/delete.ts)_
|
|
5455
5461
|
|
|
5456
5462
|
## `sf package install`
|
|
5457
5463
|
|
|
@@ -5549,7 +5555,7 @@ FLAG DESCRIPTIONS
|
|
|
5549
5555
|
specify DeprecateOnly or Delete only for unlocked package upgrades.
|
|
5550
5556
|
```
|
|
5551
5557
|
|
|
5552
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5558
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/install.ts)_
|
|
5553
5559
|
|
|
5554
5560
|
## `sf package install report`
|
|
5555
5561
|
|
|
@@ -5581,7 +5587,7 @@ EXAMPLES
|
|
|
5581
5587
|
$ sf package install report --request-id 0Hf... --target-org me@example.com
|
|
5582
5588
|
```
|
|
5583
5589
|
|
|
5584
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5590
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/install/report.ts)_
|
|
5585
5591
|
|
|
5586
5592
|
## `sf package installed list`
|
|
5587
5593
|
|
|
@@ -5612,7 +5618,7 @@ EXAMPLES
|
|
|
5612
5618
|
$ sf package installed list --target-org me@example.com
|
|
5613
5619
|
```
|
|
5614
5620
|
|
|
5615
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5621
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/installed/list.ts)_
|
|
5616
5622
|
|
|
5617
5623
|
## `sf package list`
|
|
5618
5624
|
|
|
@@ -5649,7 +5655,7 @@ EXAMPLES
|
|
|
5649
5655
|
$ sf package list --target-dev-hub devhub@example.com --verbose
|
|
5650
5656
|
```
|
|
5651
5657
|
|
|
5652
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5658
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/list.ts)_
|
|
5653
5659
|
|
|
5654
5660
|
## `sf package uninstall`
|
|
5655
5661
|
|
|
@@ -5696,7 +5702,7 @@ EXAMPLES
|
|
|
5696
5702
|
$ sf package uninstall --package "Undesirable Package Alias"
|
|
5697
5703
|
```
|
|
5698
5704
|
|
|
5699
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5705
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/uninstall.ts)_
|
|
5700
5706
|
|
|
5701
5707
|
## `sf package uninstall report`
|
|
5702
5708
|
|
|
@@ -5728,7 +5734,7 @@ EXAMPLES
|
|
|
5728
5734
|
$ sf package uninstall report --request-id 06y... --target-org me@example.com
|
|
5729
5735
|
```
|
|
5730
5736
|
|
|
5731
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5737
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/uninstall/report.ts)_
|
|
5732
5738
|
|
|
5733
5739
|
## `sf package update`
|
|
5734
5740
|
|
|
@@ -5782,7 +5788,7 @@ FLAG DESCRIPTIONS
|
|
|
5782
5788
|
associated with your package.
|
|
5783
5789
|
```
|
|
5784
5790
|
|
|
5785
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5791
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/update.ts)_
|
|
5786
5792
|
|
|
5787
5793
|
## `sf package version create`
|
|
5788
5794
|
|
|
@@ -5937,7 +5943,7 @@ FLAG DESCRIPTIONS
|
|
|
5937
5943
|
periods of no output from commands.
|
|
5938
5944
|
```
|
|
5939
5945
|
|
|
5940
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
5946
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/version/create.ts)_
|
|
5941
5947
|
|
|
5942
5948
|
## `sf package version create list`
|
|
5943
5949
|
|
|
@@ -5997,7 +6003,7 @@ EXAMPLES
|
|
|
5997
6003
|
$ sf package version create list --created-last-days 0 --status Success
|
|
5998
6004
|
```
|
|
5999
6005
|
|
|
6000
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6006
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/version/create/list.ts)_
|
|
6001
6007
|
|
|
6002
6008
|
## `sf package version create report`
|
|
6003
6009
|
|
|
@@ -6039,7 +6045,7 @@ EXAMPLES
|
|
|
6039
6045
|
$ sf package version create report --package-create-request-id 08c... --target-dev-hub devhub@example.com
|
|
6040
6046
|
```
|
|
6041
6047
|
|
|
6042
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6048
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/version/create/report.ts)_
|
|
6043
6049
|
|
|
6044
6050
|
## `sf package version delete`
|
|
6045
6051
|
|
|
@@ -6077,7 +6083,7 @@ EXAMPLES
|
|
|
6077
6083
|
$ sf package version delete --package 04t... --target-org devhub@example.com
|
|
6078
6084
|
```
|
|
6079
6085
|
|
|
6080
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6086
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/version/delete.ts)_
|
|
6081
6087
|
|
|
6082
6088
|
## `sf package version displayancestry`
|
|
6083
6089
|
|
|
@@ -6135,7 +6141,7 @@ FLAG DESCRIPTIONS
|
|
|
6135
6141
|
You can use the DOT code output in graph visualization software to create tree visualizations.
|
|
6136
6142
|
```
|
|
6137
6143
|
|
|
6138
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6144
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/version/displayancestry.ts)_
|
|
6139
6145
|
|
|
6140
6146
|
## `sf package version list`
|
|
6141
6147
|
|
|
@@ -6203,7 +6209,7 @@ EXAMPLES
|
|
|
6203
6209
|
$ sf package version list --packages exp-mgr,exp-mgr-util --released --modified-last-days 0
|
|
6204
6210
|
```
|
|
6205
6211
|
|
|
6206
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6212
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/version/list.ts)_
|
|
6207
6213
|
|
|
6208
6214
|
## `sf package version promote`
|
|
6209
6215
|
|
|
@@ -6246,7 +6252,7 @@ EXAMPLES
|
|
|
6246
6252
|
$ sf package version promote --package "Awesome Package Alias"
|
|
6247
6253
|
```
|
|
6248
6254
|
|
|
6249
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6255
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/version/promote.ts)_
|
|
6250
6256
|
|
|
6251
6257
|
## `sf package version report`
|
|
6252
6258
|
|
|
@@ -6285,7 +6291,7 @@ EXAMPLES
|
|
|
6285
6291
|
$ sf package version report --package "Your Package Alias" --target-dev-hub devhub@example.com
|
|
6286
6292
|
```
|
|
6287
6293
|
|
|
6288
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6294
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/version/report.ts)_
|
|
6289
6295
|
|
|
6290
6296
|
## `sf package version update`
|
|
6291
6297
|
|
|
@@ -6337,7 +6343,7 @@ EXAMPLES
|
|
|
6337
6343
|
$ sf package version update --package 04t... --version-description "New Package Version Description"
|
|
6338
6344
|
```
|
|
6339
6345
|
|
|
6340
|
-
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.
|
|
6346
|
+
_See code: [@salesforce/plugin-packaging](https://github.com/salesforcecli/plugin-packaging/blob/1.27.8/src/commands/package/version/update.ts)_
|
|
6341
6347
|
|
|
6342
6348
|
## `sf plugins`
|
|
6343
6349
|
|
|
@@ -6377,7 +6383,7 @@ EXAMPLES
|
|
|
6377
6383
|
$ sf plugins discover
|
|
6378
6384
|
```
|
|
6379
6385
|
|
|
6380
|
-
_See code: [@salesforce/plugin-marketplace](https://github.com/salesforcecli/plugin-
|
|
6386
|
+
_See code: [@salesforce/plugin-marketplace](https://github.com/salesforcecli/plugin-marketplace/blob/1.0.11/src/commands/plugins/discover.ts)_
|
|
6381
6387
|
|
|
6382
6388
|
## `sf plugins:inspect PLUGIN...`
|
|
6383
6389
|
|
|
@@ -8573,7 +8579,7 @@ EXAMPLES
|
|
|
8573
8579
|
$ sf update --available
|
|
8574
8580
|
```
|
|
8575
8581
|
|
|
8576
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.1.
|
|
8582
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.1.5/src/commands/update.ts)_
|
|
8577
8583
|
|
|
8578
8584
|
## `sf version`
|
|
8579
8585
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.22.
|
|
3
|
+
"version": "2.22.6",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.22.
|
|
9
|
+
"version": "2.22.6",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
@@ -17,20 +17,20 @@
|
|
|
17
17
|
"@oclif/plugin-not-found": "3.0.5",
|
|
18
18
|
"@oclif/plugin-plugins": "4.1.10",
|
|
19
19
|
"@oclif/plugin-search": "1.0.8",
|
|
20
|
-
"@oclif/plugin-update": "4.1.
|
|
20
|
+
"@oclif/plugin-update": "4.1.5",
|
|
21
21
|
"@oclif/plugin-version": "2.0.9",
|
|
22
22
|
"@oclif/plugin-warn-if-update-available": "3.0.6",
|
|
23
23
|
"@oclif/plugin-which": "3.0.12",
|
|
24
24
|
"@salesforce/core": "^6.1.4",
|
|
25
|
-
"@salesforce/plugin-apex": "3.0.
|
|
25
|
+
"@salesforce/plugin-apex": "3.0.9",
|
|
26
26
|
"@salesforce/plugin-auth": "3.0.12",
|
|
27
27
|
"@salesforce/plugin-data": "3.0.6",
|
|
28
28
|
"@salesforce/plugin-deploy-retrieve": "2.2.6",
|
|
29
29
|
"@salesforce/plugin-info": "3.0.8",
|
|
30
30
|
"@salesforce/plugin-limits": "3.0.6",
|
|
31
|
-
"@salesforce/plugin-marketplace": "1.0.
|
|
31
|
+
"@salesforce/plugin-marketplace": "1.0.11",
|
|
32
32
|
"@salesforce/plugin-org": "3.1.2",
|
|
33
|
-
"@salesforce/plugin-packaging": "1.27.
|
|
33
|
+
"@salesforce/plugin-packaging": "1.27.8",
|
|
34
34
|
"@salesforce/plugin-schema": "3.0.8",
|
|
35
35
|
"@salesforce/plugin-settings": "2.0.9",
|
|
36
36
|
"@salesforce/plugin-sobject": "1.0.6",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@types/debug": "^4.1.12",
|
|
57
57
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
58
58
|
"@typescript-eslint/parser": "^5.62.0",
|
|
59
|
-
"aws-sdk": "^2.
|
|
59
|
+
"aws-sdk": "^2.1516.0",
|
|
60
60
|
"chai": "^4.3.10",
|
|
61
61
|
"eslint": "^8.55.0",
|
|
62
62
|
"eslint-config-oclif": "^5",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"prettier": "^2.8.8",
|
|
76
76
|
"pretty-quick": "^3.1.3",
|
|
77
77
|
"sinon": "^15.2.0",
|
|
78
|
-
"ts-node": "^10.9.
|
|
78
|
+
"ts-node": "^10.9.2",
|
|
79
79
|
"typescript": "^5",
|
|
80
80
|
"wireit": "^0.14.1"
|
|
81
81
|
},
|
|
@@ -2532,12 +2532,12 @@
|
|
|
2532
2532
|
}
|
|
2533
2533
|
},
|
|
2534
2534
|
"node_modules/@oclif/plugin-update": {
|
|
2535
|
-
"version": "4.1.
|
|
2536
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.1.
|
|
2537
|
-
"integrity": "sha512-
|
|
2535
|
+
"version": "4.1.5",
|
|
2536
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.1.5.tgz",
|
|
2537
|
+
"integrity": "sha512-i02fInB1+EohvI90RmgP6e49ygjnuWcNf/D42Z5RGYi7cROsg5R7C36vZTY/CxdiqjbKrug/WIFVYbrT+LAQWA==",
|
|
2538
2538
|
"license": "MIT",
|
|
2539
2539
|
"dependencies": {
|
|
2540
|
-
"@oclif/core": "^3.
|
|
2540
|
+
"@oclif/core": "^3.14.1",
|
|
2541
2541
|
"chalk": "^5",
|
|
2542
2542
|
"cross-spawn": "^7.0.3",
|
|
2543
2543
|
"debug": "^4.3.1",
|
|
@@ -3035,9 +3035,9 @@
|
|
|
3035
3035
|
}
|
|
3036
3036
|
},
|
|
3037
3037
|
"node_modules/@salesforce/core": {
|
|
3038
|
-
"version": "6.4.
|
|
3039
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.4.
|
|
3040
|
-
"integrity": "sha512-
|
|
3038
|
+
"version": "6.4.1",
|
|
3039
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.4.1.tgz",
|
|
3040
|
+
"integrity": "sha512-Bn/Pox5JLeVBg35zgSmtNU+f9wdOaa7a/hmCIvQibci1dpKtLGUmSpdHibWR6zHag8ZoRkueea7zuqEjYzECyA==",
|
|
3041
3041
|
"license": "BSD-3-Clause",
|
|
3042
3042
|
"dependencies": {
|
|
3043
3043
|
"@salesforce/kit": "^3.0.15",
|
|
@@ -3575,15 +3575,15 @@
|
|
|
3575
3575
|
}
|
|
3576
3576
|
},
|
|
3577
3577
|
"node_modules/@salesforce/plugin-apex": {
|
|
3578
|
-
"version": "3.0.
|
|
3579
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.0.
|
|
3580
|
-
"integrity": "sha512-
|
|
3578
|
+
"version": "3.0.9",
|
|
3579
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-apex/-/plugin-apex-3.0.9.tgz",
|
|
3580
|
+
"integrity": "sha512-nqysTENSwkfhPBv3bMAV5MbujM0GV2MWQaRKPYpmH+9kj3h3z152NGg0djWgoBJ9PpYh5dkvogaiSl2FOzdluw==",
|
|
3581
3581
|
"license": "BSD-3-Clause",
|
|
3582
3582
|
"dependencies": {
|
|
3583
|
-
"@oclif/core": "^3.
|
|
3584
|
-
"@salesforce/apex-node": "^
|
|
3585
|
-
"@salesforce/core": "^
|
|
3586
|
-
"@salesforce/sf-plugins-core": "^
|
|
3583
|
+
"@oclif/core": "^3.14.1",
|
|
3584
|
+
"@salesforce/apex-node": "^3.0.1",
|
|
3585
|
+
"@salesforce/core": "^6.4.1",
|
|
3586
|
+
"@salesforce/sf-plugins-core": "^5.0.8",
|
|
3587
3587
|
"chalk": "^5.3.0",
|
|
3588
3588
|
"color-convert": "^2.0.1",
|
|
3589
3589
|
"color-name": "^2.0.0"
|
|
@@ -3592,96 +3592,24 @@
|
|
|
3592
3592
|
"node": ">=18.0.0"
|
|
3593
3593
|
}
|
|
3594
3594
|
},
|
|
3595
|
-
"node_modules/@salesforce/plugin-apex/node_modules/@salesforce/
|
|
3596
|
-
"version": "
|
|
3597
|
-
"resolved": "https://registry.npmjs.org/@salesforce/
|
|
3598
|
-
"integrity": "sha512-
|
|
3599
|
-
"license": "BSD-3-Clause",
|
|
3600
|
-
"dependencies": {
|
|
3601
|
-
"@salesforce/kit": "^3.0.15",
|
|
3602
|
-
"@salesforce/schemas": "^1.6.1",
|
|
3603
|
-
"@salesforce/ts-types": "^2.0.9",
|
|
3604
|
-
"@types/semver": "^7.5.4",
|
|
3605
|
-
"ajv": "^8.12.0",
|
|
3606
|
-
"change-case": "^4.1.2",
|
|
3607
|
-
"faye": "^1.4.0",
|
|
3608
|
-
"form-data": "^4.0.0",
|
|
3609
|
-
"js2xmlparser": "^4.0.1",
|
|
3610
|
-
"jsforce": "^2.0.0-beta.28",
|
|
3611
|
-
"jsonwebtoken": "9.0.2",
|
|
3612
|
-
"jszip": "3.10.1",
|
|
3613
|
-
"pino": "^8.16.0",
|
|
3614
|
-
"pino-abstract-transport": "^1.0.0",
|
|
3615
|
-
"pino-pretty": "^10.2.3",
|
|
3616
|
-
"proper-lockfile": "^4.1.2",
|
|
3617
|
-
"semver": "^7.5.4",
|
|
3618
|
-
"ts-retry-promise": "^0.7.1"
|
|
3619
|
-
},
|
|
3620
|
-
"engines": {
|
|
3621
|
-
"node": ">=16.0.0"
|
|
3622
|
-
}
|
|
3623
|
-
},
|
|
3624
|
-
"node_modules/@salesforce/plugin-apex/node_modules/@salesforce/sf-plugins-core": {
|
|
3625
|
-
"version": "4.1.3",
|
|
3626
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-4.1.3.tgz",
|
|
3627
|
-
"integrity": "sha512-cia0FRknxeQU0IK5gOxlP2KGxqc5zxwSmHLKJsd5+sUFWpn3Hnun/3rDO94UXIDjuGKV7HK08hQNBKkSLeYaRA==",
|
|
3595
|
+
"node_modules/@salesforce/plugin-apex/node_modules/@salesforce/apex-node": {
|
|
3596
|
+
"version": "3.0.1",
|
|
3597
|
+
"resolved": "https://registry.npmjs.org/@salesforce/apex-node/-/apex-node-3.0.1.tgz",
|
|
3598
|
+
"integrity": "sha512-zQKr4+vddu/OWH1RJSZBE0kflmyurGhUu34uR4PyI3F0mLEfkZPTTzMY8OsbsxtYRCd0oN1psL/t0xrjlF16DQ==",
|
|
3628
3599
|
"license": "BSD-3-Clause",
|
|
3629
3600
|
"dependencies": {
|
|
3630
|
-
"@oclif/core": "^3.11.0",
|
|
3631
3601
|
"@salesforce/core": "^6.1.0",
|
|
3632
3602
|
"@salesforce/kit": "^3.0.15",
|
|
3633
|
-
"@
|
|
3634
|
-
"
|
|
3635
|
-
"
|
|
3636
|
-
"
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
"
|
|
3640
|
-
}
|
|
3641
|
-
},
|
|
3642
|
-
"node_modules/@salesforce/plugin-apex/node_modules/@salesforce/sf-plugins-core/node_modules/@salesforce/core": {
|
|
3643
|
-
"version": "6.4.0",
|
|
3644
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.4.0.tgz",
|
|
3645
|
-
"integrity": "sha512-zbUuOll6RnaOyO6vHGjaO6mv2SBimu2JzInubBrbx+bgw5KFVT0y+OrN0gEhBPS94VoC9/N6ZRKve+vQ82zmmA==",
|
|
3646
|
-
"license": "BSD-3-Clause",
|
|
3647
|
-
"dependencies": {
|
|
3648
|
-
"@salesforce/kit": "^3.0.15",
|
|
3649
|
-
"@salesforce/schemas": "^1.6.1",
|
|
3650
|
-
"@salesforce/ts-types": "^2.0.9",
|
|
3651
|
-
"@types/semver": "^7.5.6",
|
|
3652
|
-
"ajv": "^8.12.0",
|
|
3653
|
-
"change-case": "^4.1.2",
|
|
3654
|
-
"faye": "^1.4.0",
|
|
3655
|
-
"form-data": "^4.0.0",
|
|
3656
|
-
"js2xmlparser": "^4.0.1",
|
|
3657
|
-
"jsforce": "^2.0.0-beta.29",
|
|
3658
|
-
"jsonwebtoken": "9.0.2",
|
|
3659
|
-
"jszip": "3.10.1",
|
|
3660
|
-
"pino": "^8.16.2",
|
|
3661
|
-
"pino-abstract-transport": "^1.1.0",
|
|
3662
|
-
"pino-pretty": "^10.2.3",
|
|
3663
|
-
"proper-lockfile": "^4.1.2",
|
|
3664
|
-
"semver": "^7.5.4",
|
|
3665
|
-
"ts-retry-promise": "^0.7.1"
|
|
3666
|
-
},
|
|
3667
|
-
"engines": {
|
|
3668
|
-
"node": ">=18.0.0"
|
|
3669
|
-
}
|
|
3670
|
-
},
|
|
3671
|
-
"node_modules/@salesforce/plugin-apex/node_modules/@salesforce/sf-plugins-core/node_modules/chalk": {
|
|
3672
|
-
"version": "4.1.2",
|
|
3673
|
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
3674
|
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
3675
|
-
"license": "MIT",
|
|
3676
|
-
"dependencies": {
|
|
3677
|
-
"ansi-styles": "^4.1.0",
|
|
3678
|
-
"supports-color": "^7.1.0"
|
|
3603
|
+
"@types/istanbul-reports": "^3.0.4",
|
|
3604
|
+
"faye": "1.4.0",
|
|
3605
|
+
"glob": "^10.3.10",
|
|
3606
|
+
"istanbul-lib-coverage": "^3.2.2",
|
|
3607
|
+
"istanbul-lib-report": "^3.0.1",
|
|
3608
|
+
"istanbul-reports": "^3.1.6",
|
|
3609
|
+
"jsforce": "^2.0.0-beta.29"
|
|
3679
3610
|
},
|
|
3680
3611
|
"engines": {
|
|
3681
|
-
"node": ">=
|
|
3682
|
-
},
|
|
3683
|
-
"funding": {
|
|
3684
|
-
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
3612
|
+
"node": ">=18.18.2"
|
|
3685
3613
|
}
|
|
3686
3614
|
},
|
|
3687
3615
|
"node_modules/@salesforce/plugin-apex/node_modules/chalk": {
|
|
@@ -3805,9 +3733,9 @@
|
|
|
3805
3733
|
}
|
|
3806
3734
|
},
|
|
3807
3735
|
"node_modules/@salesforce/plugin-command-reference/node_modules/@salesforce/sf-plugins-core/node_modules/@salesforce/core": {
|
|
3808
|
-
"version": "6.4.
|
|
3809
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.4.
|
|
3810
|
-
"integrity": "sha512-
|
|
3736
|
+
"version": "6.4.1",
|
|
3737
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.4.1.tgz",
|
|
3738
|
+
"integrity": "sha512-Bn/Pox5JLeVBg35zgSmtNU+f9wdOaa7a/hmCIvQibci1dpKtLGUmSpdHibWR6zHag8ZoRkueea7zuqEjYzECyA==",
|
|
3811
3739
|
"dev": true,
|
|
3812
3740
|
"license": "BSD-3-Clause",
|
|
3813
3741
|
"dependencies": {
|
|
@@ -4110,9 +4038,9 @@
|
|
|
4110
4038
|
}
|
|
4111
4039
|
},
|
|
4112
4040
|
"node_modules/@salesforce/plugin-marketplace": {
|
|
4113
|
-
"version": "1.0.
|
|
4114
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-marketplace/-/plugin-marketplace-1.0.
|
|
4115
|
-
"integrity": "sha512-
|
|
4041
|
+
"version": "1.0.11",
|
|
4042
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-marketplace/-/plugin-marketplace-1.0.11.tgz",
|
|
4043
|
+
"integrity": "sha512-oFGtbfi8PSYlBsHWMNUHb5Gq1EPVtcU7C2dQxr+R6M+uHkVMPdc8f/wvkQywTGoc7YP7o/r7N2ECfp7N5vkFIQ==",
|
|
4116
4044
|
"license": "BSD-3-Clause",
|
|
4117
4045
|
"dependencies": {
|
|
4118
4046
|
"@oclif/core": "^3.10.8",
|
|
@@ -4293,12 +4221,12 @@
|
|
|
4293
4221
|
}
|
|
4294
4222
|
},
|
|
4295
4223
|
"node_modules/@salesforce/plugin-packaging": {
|
|
4296
|
-
"version": "1.27.
|
|
4297
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-1.27.
|
|
4298
|
-
"integrity": "sha512-
|
|
4224
|
+
"version": "1.27.8",
|
|
4225
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-1.27.8.tgz",
|
|
4226
|
+
"integrity": "sha512-717UqQ8f348n154Qe8ImRGSM1w7/2xu1NjoaXyLXtBLux2me+pKKWiM8CE9LFntZlVD62CLnNhpiC1xJlvbIXA==",
|
|
4299
4227
|
"license": "BSD-3-Clause",
|
|
4300
4228
|
"dependencies": {
|
|
4301
|
-
"@oclif/core": "^3.
|
|
4229
|
+
"@oclif/core": "^3.14.1",
|
|
4302
4230
|
"@salesforce/core": "^6.1.3",
|
|
4303
4231
|
"@salesforce/kit": "^3.0.15",
|
|
4304
4232
|
"@salesforce/packaging": "^3.0.4",
|
|
@@ -4610,9 +4538,9 @@
|
|
|
4610
4538
|
}
|
|
4611
4539
|
},
|
|
4612
4540
|
"node_modules/@salesforce/plugin-release-management/node_modules/@salesforce/sf-plugins-core/node_modules/@salesforce/core": {
|
|
4613
|
-
"version": "6.4.
|
|
4614
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.4.
|
|
4615
|
-
"integrity": "sha512-
|
|
4541
|
+
"version": "6.4.1",
|
|
4542
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-6.4.1.tgz",
|
|
4543
|
+
"integrity": "sha512-Bn/Pox5JLeVBg35zgSmtNU+f9wdOaa7a/hmCIvQibci1dpKtLGUmSpdHibWR6zHag8ZoRkueea7zuqEjYzECyA==",
|
|
4616
4544
|
"dev": true,
|
|
4617
4545
|
"license": "BSD-3-Clause",
|
|
4618
4546
|
"dependencies": {
|
|
@@ -9303,15 +9231,15 @@
|
|
|
9303
9231
|
}
|
|
9304
9232
|
},
|
|
9305
9233
|
"node_modules/@salesforce/source-tracking": {
|
|
9306
|
-
"version": "5.1.
|
|
9307
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-5.1.
|
|
9308
|
-
"integrity": "sha512-
|
|
9234
|
+
"version": "5.1.3",
|
|
9235
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-5.1.3.tgz",
|
|
9236
|
+
"integrity": "sha512-X4lHQmpc62RQaW6CiRn4M7rYQ2cftE+bCBaMvTp/HGKq5k+DQIOVQmDU+xYBGiaenxTBXZdX2zwiuXmv3WGImg==",
|
|
9309
9237
|
"license": "BSD-3-Clause",
|
|
9310
9238
|
"dependencies": {
|
|
9311
9239
|
"@oclif/core": "^3.10.8",
|
|
9312
|
-
"@salesforce/core": "^6.
|
|
9240
|
+
"@salesforce/core": "^6.4.0",
|
|
9313
9241
|
"@salesforce/kit": "^3.0.15",
|
|
9314
|
-
"@salesforce/source-deploy-retrieve": "^10.
|
|
9242
|
+
"@salesforce/source-deploy-retrieve": "^10.2.1",
|
|
9315
9243
|
"@salesforce/ts-types": "^2.0.9",
|
|
9316
9244
|
"fast-xml-parser": "^4.2.5",
|
|
9317
9245
|
"graceful-fs": "^4.2.11",
|
|
@@ -10868,9 +10796,9 @@
|
|
|
10868
10796
|
}
|
|
10869
10797
|
},
|
|
10870
10798
|
"node_modules/aws-sdk": {
|
|
10871
|
-
"version": "2.
|
|
10872
|
-
"resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.
|
|
10873
|
-
"integrity": "sha512-
|
|
10799
|
+
"version": "2.1516.0",
|
|
10800
|
+
"resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1516.0.tgz",
|
|
10801
|
+
"integrity": "sha512-RgTRRQR77NDYjnpCwA8/fv9bKTrbcugP6PaLduYtlMZa78fws/vROTe6bL6K+BRZ/lrWz6kW6xJJdN9KkkrOMw==",
|
|
10874
10802
|
"dev": true,
|
|
10875
10803
|
"license": "Apache-2.0",
|
|
10876
10804
|
"dependencies": {
|
|
@@ -29371,9 +29299,9 @@
|
|
|
29371
29299
|
}
|
|
29372
29300
|
},
|
|
29373
29301
|
"node_modules/ts-node": {
|
|
29374
|
-
"version": "10.9.
|
|
29375
|
-
"resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.
|
|
29376
|
-
"integrity": "sha512-
|
|
29302
|
+
"version": "10.9.2",
|
|
29303
|
+
"resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz",
|
|
29304
|
+
"integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==",
|
|
29377
29305
|
"dev": true,
|
|
29378
29306
|
"license": "MIT",
|
|
29379
29307
|
"dependencies": {
|
|
@@ -29781,9 +29709,9 @@
|
|
|
29781
29709
|
}
|
|
29782
29710
|
},
|
|
29783
29711
|
"node_modules/typescript": {
|
|
29784
|
-
"version": "5.
|
|
29785
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.
|
|
29786
|
-
"integrity": "sha512-
|
|
29712
|
+
"version": "5.3.3",
|
|
29713
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz",
|
|
29714
|
+
"integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==",
|
|
29787
29715
|
"devOptional": true,
|
|
29788
29716
|
"license": "Apache-2.0",
|
|
29789
29717
|
"bin": {
|
package/oclif.manifest.json
CHANGED
|
@@ -3614,7 +3614,7 @@
|
|
|
3614
3614
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
3615
3615
|
"pluginName": "@salesforce/plugin-signups",
|
|
3616
3616
|
"pluginType": "jit",
|
|
3617
|
-
"state": "
|
|
3617
|
+
"state": "beta",
|
|
3618
3618
|
"strict": true,
|
|
3619
3619
|
"summary": "Create a snapshot of a scratch org.",
|
|
3620
3620
|
"enableJsonFlag": true,
|
|
@@ -3853,7 +3853,7 @@
|
|
|
3853
3853
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
3854
3854
|
"pluginName": "@salesforce/plugin-signups",
|
|
3855
3855
|
"pluginType": "jit",
|
|
3856
|
-
"state": "
|
|
3856
|
+
"state": "beta",
|
|
3857
3857
|
"strict": true,
|
|
3858
3858
|
"summary": "Delete a scratch org snapshot.",
|
|
3859
3859
|
"enableJsonFlag": true,
|
|
@@ -3972,7 +3972,7 @@
|
|
|
3972
3972
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
3973
3973
|
"pluginName": "@salesforce/plugin-signups",
|
|
3974
3974
|
"pluginType": "jit",
|
|
3975
|
-
"state": "
|
|
3975
|
+
"state": "beta",
|
|
3976
3976
|
"strict": true,
|
|
3977
3977
|
"summary": "Get details about a scratch org snapshot.",
|
|
3978
3978
|
"enableJsonFlag": true,
|
|
@@ -4171,7 +4171,7 @@
|
|
|
4171
4171
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
4172
4172
|
"pluginName": "@salesforce/plugin-signups",
|
|
4173
4173
|
"pluginType": "jit",
|
|
4174
|
-
"state": "
|
|
4174
|
+
"state": "beta",
|
|
4175
4175
|
"strict": true,
|
|
4176
4176
|
"summary": "List scratch org snapshots.",
|
|
4177
4177
|
"enableJsonFlag": true,
|
|
@@ -5240,5 +5240,5 @@
|
|
|
5240
5240
|
]
|
|
5241
5241
|
}
|
|
5242
5242
|
},
|
|
5243
|
-
"version": "2.22.
|
|
5243
|
+
"version": "2.22.6"
|
|
5244
5244
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.22.
|
|
4
|
+
"version": "2.22.6",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"@salesforce/plugin-devops-center": "1.2.5",
|
|
78
78
|
"@salesforce/plugin-env": "3.0.9",
|
|
79
79
|
"@salesforce/plugin-functions": "1.22.11",
|
|
80
|
-
"@salesforce/plugin-signups": "2.0.
|
|
80
|
+
"@salesforce/plugin-signups": "2.0.9",
|
|
81
81
|
"@salesforce/sfdx-plugin-lwc-test": "1.1.1",
|
|
82
82
|
"@salesforce/sfdx-scanner": "3.19.0"
|
|
83
83
|
},
|
|
@@ -140,20 +140,20 @@
|
|
|
140
140
|
"@oclif/plugin-not-found": "3.0.5",
|
|
141
141
|
"@oclif/plugin-plugins": "4.1.10",
|
|
142
142
|
"@oclif/plugin-search": "1.0.8",
|
|
143
|
-
"@oclif/plugin-update": "4.1.
|
|
143
|
+
"@oclif/plugin-update": "4.1.5",
|
|
144
144
|
"@oclif/plugin-version": "2.0.9",
|
|
145
145
|
"@oclif/plugin-warn-if-update-available": "3.0.6",
|
|
146
146
|
"@oclif/plugin-which": "3.0.12",
|
|
147
147
|
"@salesforce/core": "^6.1.4",
|
|
148
|
-
"@salesforce/plugin-apex": "3.0.
|
|
148
|
+
"@salesforce/plugin-apex": "3.0.9",
|
|
149
149
|
"@salesforce/plugin-auth": "3.0.12",
|
|
150
150
|
"@salesforce/plugin-data": "3.0.6",
|
|
151
151
|
"@salesforce/plugin-deploy-retrieve": "2.2.6",
|
|
152
152
|
"@salesforce/plugin-info": "3.0.8",
|
|
153
153
|
"@salesforce/plugin-limits": "3.0.6",
|
|
154
|
-
"@salesforce/plugin-marketplace": "1.0.
|
|
154
|
+
"@salesforce/plugin-marketplace": "1.0.11",
|
|
155
155
|
"@salesforce/plugin-org": "3.1.2",
|
|
156
|
-
"@salesforce/plugin-packaging": "1.27.
|
|
156
|
+
"@salesforce/plugin-packaging": "1.27.8",
|
|
157
157
|
"@salesforce/plugin-schema": "3.0.8",
|
|
158
158
|
"@salesforce/plugin-settings": "2.0.9",
|
|
159
159
|
"@salesforce/plugin-sobject": "1.0.6",
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
"@salesforce/schemas": "1.6.1",
|
|
201
201
|
"@salesforce/templates": "59.0.4",
|
|
202
202
|
"@salesforce/source-deploy-retrieve": "10.2.1",
|
|
203
|
-
"@salesforce/source-tracking": "5.1.
|
|
203
|
+
"@salesforce/source-tracking": "5.1.3"
|
|
204
204
|
},
|
|
205
205
|
"repository": "salesforcecli/cli",
|
|
206
206
|
"scripts": {
|
|
@@ -251,7 +251,7 @@
|
|
|
251
251
|
"@types/debug": "^4.1.12",
|
|
252
252
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
253
253
|
"@typescript-eslint/parser": "^5.62.0",
|
|
254
|
-
"aws-sdk": "^2.
|
|
254
|
+
"aws-sdk": "^2.1516.0",
|
|
255
255
|
"chai": "^4.3.10",
|
|
256
256
|
"eslint": "^8.55.0",
|
|
257
257
|
"eslint-config-oclif": "^5",
|
|
@@ -270,7 +270,7 @@
|
|
|
270
270
|
"prettier": "^2.8.8",
|
|
271
271
|
"pretty-quick": "^3.1.3",
|
|
272
272
|
"sinon": "^15.2.0",
|
|
273
|
-
"ts-node": "^10.9.
|
|
273
|
+
"ts-node": "^10.9.2",
|
|
274
274
|
"typescript": "^5",
|
|
275
275
|
"wireit": "^0.14.1"
|
|
276
276
|
},
|