@salesforce/cli 2.22.5 → 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 +19 -13
- package/npm-shrinkwrap.json +38 -110
- package/oclif.manifest.json +5 -5
- package/package.json +4 -4
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
|
|
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": {
|
|
@@ -22,7 +22,7 @@
|
|
|
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",
|
|
@@ -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",
|
|
@@ -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": {
|
|
@@ -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": {
|
|
@@ -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": {
|
|
@@ -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
|
},
|
|
@@ -145,7 +145,7 @@
|
|
|
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",
|
|
@@ -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",
|