@salesforce/plugin-info 3.0.29 → 3.0.31
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 +2 -2
- package/npm-shrinkwrap.json +346 -103
- package/oclif.lock +102 -24
- package/oclif.manifest.json +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -124,7 +124,7 @@ EXAMPLES
|
|
|
124
124
|
$ sf doctor --plugin @salesforce/plugin-source
|
|
125
125
|
```
|
|
126
126
|
|
|
127
|
-
_See code: [src/commands/doctor.ts](https://github.com/salesforcecli/plugin-info/blob/3.0.
|
|
127
|
+
_See code: [src/commands/doctor.ts](https://github.com/salesforcecli/plugin-info/blob/3.0.31/src/commands/doctor.ts)_
|
|
128
128
|
|
|
129
129
|
## `sf info releasenotes display`
|
|
130
130
|
|
|
@@ -163,6 +163,6 @@ EXAMPLES
|
|
|
163
163
|
$ sf info releasenotes display --version latest
|
|
164
164
|
```
|
|
165
165
|
|
|
166
|
-
_See code: [src/commands/info/releasenotes/display.ts](https://github.com/salesforcecli/plugin-info/blob/3.0.
|
|
166
|
+
_See code: [src/commands/info/releasenotes/display.ts](https://github.com/salesforcecli/plugin-info/blob/3.0.31/src/commands/info/releasenotes/display.ts)_
|
|
167
167
|
|
|
168
168
|
<!-- commandsstop -->
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-info",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.31",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-info",
|
|
9
|
-
"version": "3.0.
|
|
9
|
+
"version": "3.0.31",
|
|
10
10
|
"license": "BSD-3-Clause",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@inquirer/input": "^2.0.
|
|
12
|
+
"@inquirer/input": "^2.0.2",
|
|
13
13
|
"@oclif/core": "^3.23.0",
|
|
14
14
|
"@salesforce/core": "^6.5.2",
|
|
15
15
|
"@salesforce/kit": "^3.0.15",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"got": "^13.0.0",
|
|
18
18
|
"marked": "^4.3.0",
|
|
19
19
|
"marked-terminal": "^4.2.0",
|
|
20
|
-
"open": "^10.0
|
|
20
|
+
"open": "^10.1.0",
|
|
21
21
|
"proxy-agent": "^6.4.0",
|
|
22
22
|
"semver": "^7.6.0"
|
|
23
23
|
},
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"oclif": "^4.4.19",
|
|
37
37
|
"sinon-chai": "^3.7.0",
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
|
-
"typescript": "^5.
|
|
39
|
+
"typescript": "^5.4.2"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=18.0.0"
|
|
@@ -2932,6 +2932,26 @@
|
|
|
2932
2932
|
"url": "https://opencollective.com/eslint"
|
|
2933
2933
|
}
|
|
2934
2934
|
},
|
|
2935
|
+
"node_modules/@eslint/eslintrc/node_modules/argparse": {
|
|
2936
|
+
"version": "2.0.1",
|
|
2937
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
2938
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
2939
|
+
"dev": true,
|
|
2940
|
+
"license": "Python-2.0"
|
|
2941
|
+
},
|
|
2942
|
+
"node_modules/@eslint/eslintrc/node_modules/js-yaml": {
|
|
2943
|
+
"version": "4.1.0",
|
|
2944
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
2945
|
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
2946
|
+
"dev": true,
|
|
2947
|
+
"license": "MIT",
|
|
2948
|
+
"dependencies": {
|
|
2949
|
+
"argparse": "^2.0.1"
|
|
2950
|
+
},
|
|
2951
|
+
"bin": {
|
|
2952
|
+
"js-yaml": "bin/js-yaml.js"
|
|
2953
|
+
}
|
|
2954
|
+
},
|
|
2935
2955
|
"node_modules/@eslint/js": {
|
|
2936
2956
|
"version": "8.57.0",
|
|
2937
2957
|
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
|
|
@@ -3064,12 +3084,12 @@
|
|
|
3064
3084
|
}
|
|
3065
3085
|
},
|
|
3066
3086
|
"node_modules/@inquirer/input": {
|
|
3067
|
-
"version": "2.0.
|
|
3068
|
-
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.0.
|
|
3069
|
-
"integrity": "sha512-
|
|
3087
|
+
"version": "2.0.2",
|
|
3088
|
+
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-2.0.2.tgz",
|
|
3089
|
+
"integrity": "sha512-2qCyolURnBo1EArkH/JnOfMGEUdsjVbmKaeHf7Rq1EW4KK+zj4sPAizDFkEC03NoSzPTGLV+4riiAybdx177KQ==",
|
|
3070
3090
|
"license": "MIT",
|
|
3071
3091
|
"dependencies": {
|
|
3072
|
-
"@inquirer/core": "^7.0.
|
|
3092
|
+
"@inquirer/core": "^7.0.2",
|
|
3073
3093
|
"@inquirer/type": "^1.2.0"
|
|
3074
3094
|
},
|
|
3075
3095
|
"engines": {
|
|
@@ -3077,14 +3097,14 @@
|
|
|
3077
3097
|
}
|
|
3078
3098
|
},
|
|
3079
3099
|
"node_modules/@inquirer/input/node_modules/@inquirer/core": {
|
|
3080
|
-
"version": "7.0.
|
|
3081
|
-
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-7.0.
|
|
3082
|
-
"integrity": "sha512-
|
|
3100
|
+
"version": "7.0.2",
|
|
3101
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-7.0.2.tgz",
|
|
3102
|
+
"integrity": "sha512-yya2GLO8lIi+yGytrOQ6unbrRGi8JiC+lWtlIsCUsDgMcCdO75vOuqGIUKXvfBkeZLOzs4WcSioXvpBzo0B0+Q==",
|
|
3083
3103
|
"license": "MIT",
|
|
3084
3104
|
"dependencies": {
|
|
3085
3105
|
"@inquirer/type": "^1.2.0",
|
|
3086
3106
|
"@types/mute-stream": "^0.0.4",
|
|
3087
|
-
"@types/node": "^20.11.
|
|
3107
|
+
"@types/node": "^20.11.25",
|
|
3088
3108
|
"@types/wrap-ansi": "^3.0.0",
|
|
3089
3109
|
"ansi-escapes": "^4.3.2",
|
|
3090
3110
|
"chalk": "^4.1.2",
|
|
@@ -3101,6 +3121,15 @@
|
|
|
3101
3121
|
"node": ">=18"
|
|
3102
3122
|
}
|
|
3103
3123
|
},
|
|
3124
|
+
"node_modules/@inquirer/input/node_modules/@types/node": {
|
|
3125
|
+
"version": "20.11.25",
|
|
3126
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.25.tgz",
|
|
3127
|
+
"integrity": "sha512-TBHyJxk2b7HceLVGFcpAUjsa5zIdsPWlR6XHfyGzd0SFu+/NFgQgMAl96MSDZgQDvJAvV6BKsFOrt6zIL09JDw==",
|
|
3128
|
+
"license": "MIT",
|
|
3129
|
+
"dependencies": {
|
|
3130
|
+
"undici-types": "~5.26.4"
|
|
3131
|
+
}
|
|
3132
|
+
},
|
|
3104
3133
|
"node_modules/@inquirer/input/node_modules/cli-width": {
|
|
3105
3134
|
"version": "4.1.0",
|
|
3106
3135
|
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz",
|
|
@@ -3291,30 +3320,6 @@
|
|
|
3291
3320
|
"node": ">=8"
|
|
3292
3321
|
}
|
|
3293
3322
|
},
|
|
3294
|
-
"node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": {
|
|
3295
|
-
"version": "1.0.10",
|
|
3296
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
3297
|
-
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
3298
|
-
"dev": true,
|
|
3299
|
-
"license": "MIT",
|
|
3300
|
-
"dependencies": {
|
|
3301
|
-
"sprintf-js": "~1.0.2"
|
|
3302
|
-
}
|
|
3303
|
-
},
|
|
3304
|
-
"node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": {
|
|
3305
|
-
"version": "3.14.1",
|
|
3306
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
3307
|
-
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
3308
|
-
"dev": true,
|
|
3309
|
-
"license": "MIT",
|
|
3310
|
-
"dependencies": {
|
|
3311
|
-
"argparse": "^1.0.7",
|
|
3312
|
-
"esprima": "^4.0.0"
|
|
3313
|
-
},
|
|
3314
|
-
"bin": {
|
|
3315
|
-
"js-yaml": "bin/js-yaml.js"
|
|
3316
|
-
}
|
|
3317
|
-
},
|
|
3318
3323
|
"node_modules/@istanbuljs/schema": {
|
|
3319
3324
|
"version": "0.1.3",
|
|
3320
3325
|
"resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
|
|
@@ -3690,28 +3695,6 @@
|
|
|
3690
3695
|
"node": ">=18.0.0"
|
|
3691
3696
|
}
|
|
3692
3697
|
},
|
|
3693
|
-
"node_modules/@oclif/core/node_modules/argparse": {
|
|
3694
|
-
"version": "1.0.10",
|
|
3695
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
3696
|
-
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
3697
|
-
"license": "MIT",
|
|
3698
|
-
"dependencies": {
|
|
3699
|
-
"sprintf-js": "~1.0.2"
|
|
3700
|
-
}
|
|
3701
|
-
},
|
|
3702
|
-
"node_modules/@oclif/core/node_modules/js-yaml": {
|
|
3703
|
-
"version": "3.14.1",
|
|
3704
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
3705
|
-
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
3706
|
-
"license": "MIT",
|
|
3707
|
-
"dependencies": {
|
|
3708
|
-
"argparse": "^1.0.7",
|
|
3709
|
-
"esprima": "^4.0.0"
|
|
3710
|
-
},
|
|
3711
|
-
"bin": {
|
|
3712
|
-
"js-yaml": "bin/js-yaml.js"
|
|
3713
|
-
}
|
|
3714
|
-
},
|
|
3715
3698
|
"node_modules/@oclif/core/node_modules/minimatch": {
|
|
3716
3699
|
"version": "9.0.3",
|
|
3717
3700
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
|
|
@@ -3760,15 +3743,16 @@
|
|
|
3760
3743
|
}
|
|
3761
3744
|
},
|
|
3762
3745
|
"node_modules/@oclif/plugin-command-snapshot": {
|
|
3763
|
-
"version": "5.
|
|
3764
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.
|
|
3765
|
-
"integrity": "sha512-
|
|
3746
|
+
"version": "5.1.1",
|
|
3747
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.1.tgz",
|
|
3748
|
+
"integrity": "sha512-8PmnQ4aDX1n8OcrnXVPDpmoIAUWe1nbC6Md/KRupzjlRF8YDJMp7AdrE6cFD4DSZ04QvIViQ0w5P7kyu37wA1g==",
|
|
3766
3749
|
"dev": true,
|
|
3767
3750
|
"license": "MIT",
|
|
3768
3751
|
"dependencies": {
|
|
3769
|
-
"@oclif/core": "
|
|
3752
|
+
"@oclif/core": "3.21.0",
|
|
3770
3753
|
"@types/lodash.difference": "^4.5.9",
|
|
3771
3754
|
"chalk": "^5.3.0",
|
|
3755
|
+
"globby": "^14.0.1",
|
|
3772
3756
|
"just-diff": "^5.2.0",
|
|
3773
3757
|
"lodash.difference": "^4.5.0",
|
|
3774
3758
|
"lodash.get": "^4.4.2",
|
|
@@ -3780,6 +3764,106 @@
|
|
|
3780
3764
|
"node": ">=18.0.0"
|
|
3781
3765
|
}
|
|
3782
3766
|
},
|
|
3767
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core": {
|
|
3768
|
+
"version": "3.21.0",
|
|
3769
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.21.0.tgz",
|
|
3770
|
+
"integrity": "sha512-xR7qGPOWtOnYmdYocSn6oEh2oTQLsPOXoj3HYGpb26V3WulwF8Cm33WPnMsSISv4ben3Rtc5i59u9O5NnuG42g==",
|
|
3771
|
+
"dev": true,
|
|
3772
|
+
"license": "MIT",
|
|
3773
|
+
"dependencies": {
|
|
3774
|
+
"@types/cli-progress": "^3.11.5",
|
|
3775
|
+
"ansi-escapes": "^4.3.2",
|
|
3776
|
+
"ansi-styles": "^4.3.0",
|
|
3777
|
+
"cardinal": "^2.1.1",
|
|
3778
|
+
"chalk": "^4.1.2",
|
|
3779
|
+
"clean-stack": "^3.0.1",
|
|
3780
|
+
"cli-progress": "^3.12.0",
|
|
3781
|
+
"color": "^4.2.3",
|
|
3782
|
+
"debug": "^4.3.4",
|
|
3783
|
+
"ejs": "^3.1.9",
|
|
3784
|
+
"get-package-type": "^0.1.0",
|
|
3785
|
+
"globby": "^11.1.0",
|
|
3786
|
+
"hyperlinker": "^1.0.0",
|
|
3787
|
+
"indent-string": "^4.0.0",
|
|
3788
|
+
"is-wsl": "^2.2.0",
|
|
3789
|
+
"js-yaml": "^3.14.1",
|
|
3790
|
+
"natural-orderby": "^2.0.3",
|
|
3791
|
+
"object-treeify": "^1.1.33",
|
|
3792
|
+
"password-prompt": "^1.1.3",
|
|
3793
|
+
"slice-ansi": "^4.0.0",
|
|
3794
|
+
"string-width": "^4.2.3",
|
|
3795
|
+
"strip-ansi": "^6.0.1",
|
|
3796
|
+
"supports-color": "^8.1.1",
|
|
3797
|
+
"supports-hyperlinks": "^2.2.0",
|
|
3798
|
+
"widest-line": "^3.1.0",
|
|
3799
|
+
"wordwrap": "^1.0.0",
|
|
3800
|
+
"wrap-ansi": "^7.0.0"
|
|
3801
|
+
},
|
|
3802
|
+
"engines": {
|
|
3803
|
+
"node": ">=18.0.0"
|
|
3804
|
+
}
|
|
3805
|
+
},
|
|
3806
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/chalk": {
|
|
3807
|
+
"version": "4.1.2",
|
|
3808
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
|
3809
|
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
3810
|
+
"dev": true,
|
|
3811
|
+
"license": "MIT",
|
|
3812
|
+
"dependencies": {
|
|
3813
|
+
"ansi-styles": "^4.1.0",
|
|
3814
|
+
"supports-color": "^7.1.0"
|
|
3815
|
+
},
|
|
3816
|
+
"engines": {
|
|
3817
|
+
"node": ">=10"
|
|
3818
|
+
},
|
|
3819
|
+
"funding": {
|
|
3820
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
3821
|
+
}
|
|
3822
|
+
},
|
|
3823
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/chalk/node_modules/supports-color": {
|
|
3824
|
+
"version": "7.2.0",
|
|
3825
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
|
3826
|
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
3827
|
+
"dev": true,
|
|
3828
|
+
"license": "MIT",
|
|
3829
|
+
"dependencies": {
|
|
3830
|
+
"has-flag": "^4.0.0"
|
|
3831
|
+
},
|
|
3832
|
+
"engines": {
|
|
3833
|
+
"node": ">=8"
|
|
3834
|
+
}
|
|
3835
|
+
},
|
|
3836
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/globby": {
|
|
3837
|
+
"version": "11.1.0",
|
|
3838
|
+
"resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
|
|
3839
|
+
"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
|
|
3840
|
+
"dev": true,
|
|
3841
|
+
"license": "MIT",
|
|
3842
|
+
"dependencies": {
|
|
3843
|
+
"array-union": "^2.1.0",
|
|
3844
|
+
"dir-glob": "^3.0.1",
|
|
3845
|
+
"fast-glob": "^3.2.9",
|
|
3846
|
+
"ignore": "^5.2.0",
|
|
3847
|
+
"merge2": "^1.4.1",
|
|
3848
|
+
"slash": "^3.0.0"
|
|
3849
|
+
},
|
|
3850
|
+
"engines": {
|
|
3851
|
+
"node": ">=10"
|
|
3852
|
+
},
|
|
3853
|
+
"funding": {
|
|
3854
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3855
|
+
}
|
|
3856
|
+
},
|
|
3857
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/@oclif/core/node_modules/slash": {
|
|
3858
|
+
"version": "3.0.0",
|
|
3859
|
+
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
|
3860
|
+
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
|
|
3861
|
+
"dev": true,
|
|
3862
|
+
"license": "MIT",
|
|
3863
|
+
"engines": {
|
|
3864
|
+
"node": ">=8"
|
|
3865
|
+
}
|
|
3866
|
+
},
|
|
3783
3867
|
"node_modules/@oclif/plugin-command-snapshot/node_modules/chalk": {
|
|
3784
3868
|
"version": "5.3.0",
|
|
3785
3869
|
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz",
|
|
@@ -3793,6 +3877,87 @@
|
|
|
3793
3877
|
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
3794
3878
|
}
|
|
3795
3879
|
},
|
|
3880
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/globby": {
|
|
3881
|
+
"version": "14.0.1",
|
|
3882
|
+
"resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz",
|
|
3883
|
+
"integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==",
|
|
3884
|
+
"dev": true,
|
|
3885
|
+
"license": "MIT",
|
|
3886
|
+
"dependencies": {
|
|
3887
|
+
"@sindresorhus/merge-streams": "^2.1.0",
|
|
3888
|
+
"fast-glob": "^3.3.2",
|
|
3889
|
+
"ignore": "^5.2.4",
|
|
3890
|
+
"path-type": "^5.0.0",
|
|
3891
|
+
"slash": "^5.1.0",
|
|
3892
|
+
"unicorn-magic": "^0.1.0"
|
|
3893
|
+
},
|
|
3894
|
+
"engines": {
|
|
3895
|
+
"node": ">=18"
|
|
3896
|
+
},
|
|
3897
|
+
"funding": {
|
|
3898
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3899
|
+
}
|
|
3900
|
+
},
|
|
3901
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/path-type": {
|
|
3902
|
+
"version": "5.0.0",
|
|
3903
|
+
"resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz",
|
|
3904
|
+
"integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==",
|
|
3905
|
+
"dev": true,
|
|
3906
|
+
"license": "MIT",
|
|
3907
|
+
"engines": {
|
|
3908
|
+
"node": ">=12"
|
|
3909
|
+
},
|
|
3910
|
+
"funding": {
|
|
3911
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3912
|
+
}
|
|
3913
|
+
},
|
|
3914
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/slash": {
|
|
3915
|
+
"version": "5.1.0",
|
|
3916
|
+
"resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
|
|
3917
|
+
"integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==",
|
|
3918
|
+
"dev": true,
|
|
3919
|
+
"license": "MIT",
|
|
3920
|
+
"engines": {
|
|
3921
|
+
"node": ">=14.16"
|
|
3922
|
+
},
|
|
3923
|
+
"funding": {
|
|
3924
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
3925
|
+
}
|
|
3926
|
+
},
|
|
3927
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/supports-color": {
|
|
3928
|
+
"version": "8.1.1",
|
|
3929
|
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
|
|
3930
|
+
"integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
|
|
3931
|
+
"dev": true,
|
|
3932
|
+
"license": "MIT",
|
|
3933
|
+
"dependencies": {
|
|
3934
|
+
"has-flag": "^4.0.0"
|
|
3935
|
+
},
|
|
3936
|
+
"engines": {
|
|
3937
|
+
"node": ">=10"
|
|
3938
|
+
},
|
|
3939
|
+
"funding": {
|
|
3940
|
+
"url": "https://github.com/chalk/supports-color?sponsor=1"
|
|
3941
|
+
}
|
|
3942
|
+
},
|
|
3943
|
+
"node_modules/@oclif/plugin-command-snapshot/node_modules/wrap-ansi": {
|
|
3944
|
+
"version": "7.0.0",
|
|
3945
|
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
|
|
3946
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
3947
|
+
"dev": true,
|
|
3948
|
+
"license": "MIT",
|
|
3949
|
+
"dependencies": {
|
|
3950
|
+
"ansi-styles": "^4.0.0",
|
|
3951
|
+
"string-width": "^4.1.0",
|
|
3952
|
+
"strip-ansi": "^6.0.0"
|
|
3953
|
+
},
|
|
3954
|
+
"engines": {
|
|
3955
|
+
"node": ">=10"
|
|
3956
|
+
},
|
|
3957
|
+
"funding": {
|
|
3958
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
3959
|
+
}
|
|
3960
|
+
},
|
|
3796
3961
|
"node_modules/@oclif/plugin-help": {
|
|
3797
3962
|
"version": "6.0.12",
|
|
3798
3963
|
"resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.12.tgz",
|
|
@@ -4457,6 +4622,19 @@
|
|
|
4457
4622
|
"url": "https://github.com/sindresorhus/is?sponsor=1"
|
|
4458
4623
|
}
|
|
4459
4624
|
},
|
|
4625
|
+
"node_modules/@sindresorhus/merge-streams": {
|
|
4626
|
+
"version": "2.3.0",
|
|
4627
|
+
"resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz",
|
|
4628
|
+
"integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==",
|
|
4629
|
+
"dev": true,
|
|
4630
|
+
"license": "MIT",
|
|
4631
|
+
"engines": {
|
|
4632
|
+
"node": ">=18"
|
|
4633
|
+
},
|
|
4634
|
+
"funding": {
|
|
4635
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
4636
|
+
}
|
|
4637
|
+
},
|
|
4460
4638
|
"node_modules/@sinonjs/commons": {
|
|
4461
4639
|
"version": "1.8.6",
|
|
4462
4640
|
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
|
|
@@ -6168,11 +6346,13 @@
|
|
|
6168
6346
|
"license": "MIT"
|
|
6169
6347
|
},
|
|
6170
6348
|
"node_modules/argparse": {
|
|
6171
|
-
"version": "
|
|
6172
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-
|
|
6173
|
-
"integrity": "sha512-
|
|
6174
|
-
"
|
|
6175
|
-
"
|
|
6349
|
+
"version": "1.0.10",
|
|
6350
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
6351
|
+
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
6352
|
+
"license": "MIT",
|
|
6353
|
+
"dependencies": {
|
|
6354
|
+
"sprintf-js": "~1.0.2"
|
|
6355
|
+
}
|
|
6176
6356
|
},
|
|
6177
6357
|
"node_modules/array-buffer-byte-length": {
|
|
6178
6358
|
"version": "1.0.0",
|
|
@@ -7584,6 +7764,26 @@
|
|
|
7584
7764
|
}
|
|
7585
7765
|
}
|
|
7586
7766
|
},
|
|
7767
|
+
"node_modules/cosmiconfig/node_modules/argparse": {
|
|
7768
|
+
"version": "2.0.1",
|
|
7769
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
7770
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
7771
|
+
"dev": true,
|
|
7772
|
+
"license": "Python-2.0"
|
|
7773
|
+
},
|
|
7774
|
+
"node_modules/cosmiconfig/node_modules/js-yaml": {
|
|
7775
|
+
"version": "4.1.0",
|
|
7776
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
7777
|
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
7778
|
+
"dev": true,
|
|
7779
|
+
"license": "MIT",
|
|
7780
|
+
"dependencies": {
|
|
7781
|
+
"argparse": "^2.0.1"
|
|
7782
|
+
},
|
|
7783
|
+
"bin": {
|
|
7784
|
+
"js-yaml": "bin/js-yaml.js"
|
|
7785
|
+
}
|
|
7786
|
+
},
|
|
7587
7787
|
"node_modules/create-require": {
|
|
7588
7788
|
"version": "1.1.1",
|
|
7589
7789
|
"resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
|
|
@@ -8674,6 +8874,13 @@
|
|
|
8674
8874
|
"url": "https://opencollective.com/eslint"
|
|
8675
8875
|
}
|
|
8676
8876
|
},
|
|
8877
|
+
"node_modules/eslint/node_modules/argparse": {
|
|
8878
|
+
"version": "2.0.1",
|
|
8879
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
8880
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
8881
|
+
"dev": true,
|
|
8882
|
+
"license": "Python-2.0"
|
|
8883
|
+
},
|
|
8677
8884
|
"node_modules/eslint/node_modules/doctrine": {
|
|
8678
8885
|
"version": "3.0.0",
|
|
8679
8886
|
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
|
|
@@ -8717,6 +8924,19 @@
|
|
|
8717
8924
|
"node": ">=10.13.0"
|
|
8718
8925
|
}
|
|
8719
8926
|
},
|
|
8927
|
+
"node_modules/eslint/node_modules/js-yaml": {
|
|
8928
|
+
"version": "4.1.0",
|
|
8929
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
8930
|
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
8931
|
+
"dev": true,
|
|
8932
|
+
"license": "MIT",
|
|
8933
|
+
"dependencies": {
|
|
8934
|
+
"argparse": "^2.0.1"
|
|
8935
|
+
},
|
|
8936
|
+
"bin": {
|
|
8937
|
+
"js-yaml": "bin/js-yaml.js"
|
|
8938
|
+
}
|
|
8939
|
+
},
|
|
8720
8940
|
"node_modules/eslint/node_modules/locate-path": {
|
|
8721
8941
|
"version": "6.0.0",
|
|
8722
8942
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
|
|
@@ -11077,13 +11297,13 @@
|
|
|
11077
11297
|
"license": "MIT"
|
|
11078
11298
|
},
|
|
11079
11299
|
"node_modules/js-yaml": {
|
|
11080
|
-
"version": "
|
|
11081
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-
|
|
11082
|
-
"integrity": "sha512-
|
|
11083
|
-
"dev": true,
|
|
11300
|
+
"version": "3.14.1",
|
|
11301
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
11302
|
+
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
11084
11303
|
"license": "MIT",
|
|
11085
11304
|
"dependencies": {
|
|
11086
|
-
"argparse": "^
|
|
11305
|
+
"argparse": "^1.0.7",
|
|
11306
|
+
"esprima": "^4.0.0"
|
|
11087
11307
|
},
|
|
11088
11308
|
"bin": {
|
|
11089
11309
|
"js-yaml": "bin/js-yaml.js"
|
|
@@ -11649,30 +11869,6 @@
|
|
|
11649
11869
|
"node": ">=6"
|
|
11650
11870
|
}
|
|
11651
11871
|
},
|
|
11652
|
-
"node_modules/load-yaml-file/node_modules/argparse": {
|
|
11653
|
-
"version": "1.0.10",
|
|
11654
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
11655
|
-
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
11656
|
-
"dev": true,
|
|
11657
|
-
"license": "MIT",
|
|
11658
|
-
"dependencies": {
|
|
11659
|
-
"sprintf-js": "~1.0.2"
|
|
11660
|
-
}
|
|
11661
|
-
},
|
|
11662
|
-
"node_modules/load-yaml-file/node_modules/js-yaml": {
|
|
11663
|
-
"version": "3.14.1",
|
|
11664
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
|
|
11665
|
-
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
|
|
11666
|
-
"dev": true,
|
|
11667
|
-
"license": "MIT",
|
|
11668
|
-
"dependencies": {
|
|
11669
|
-
"argparse": "^1.0.7",
|
|
11670
|
-
"esprima": "^4.0.0"
|
|
11671
|
-
},
|
|
11672
|
-
"bin": {
|
|
11673
|
-
"js-yaml": "bin/js-yaml.js"
|
|
11674
|
-
}
|
|
11675
|
-
},
|
|
11676
11872
|
"node_modules/load-yaml-file/node_modules/pify": {
|
|
11677
11873
|
"version": "4.0.1",
|
|
11678
11874
|
"resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
|
|
@@ -12728,6 +12924,13 @@
|
|
|
12728
12924
|
"url": "https://opencollective.com/mochajs"
|
|
12729
12925
|
}
|
|
12730
12926
|
},
|
|
12927
|
+
"node_modules/mocha/node_modules/argparse": {
|
|
12928
|
+
"version": "2.0.1",
|
|
12929
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
12930
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
12931
|
+
"dev": true,
|
|
12932
|
+
"license": "Python-2.0"
|
|
12933
|
+
},
|
|
12731
12934
|
"node_modules/mocha/node_modules/diff": {
|
|
12732
12935
|
"version": "5.0.0",
|
|
12733
12936
|
"resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz",
|
|
@@ -12800,6 +13003,19 @@
|
|
|
12800
13003
|
"node": "*"
|
|
12801
13004
|
}
|
|
12802
13005
|
},
|
|
13006
|
+
"node_modules/mocha/node_modules/js-yaml": {
|
|
13007
|
+
"version": "4.1.0",
|
|
13008
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
13009
|
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
13010
|
+
"dev": true,
|
|
13011
|
+
"license": "MIT",
|
|
13012
|
+
"dependencies": {
|
|
13013
|
+
"argparse": "^2.0.1"
|
|
13014
|
+
},
|
|
13015
|
+
"bin": {
|
|
13016
|
+
"js-yaml": "bin/js-yaml.js"
|
|
13017
|
+
}
|
|
13018
|
+
},
|
|
12803
13019
|
"node_modules/mocha/node_modules/locate-path": {
|
|
12804
13020
|
"version": "6.0.0",
|
|
12805
13021
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
|
|
@@ -13986,9 +14202,9 @@
|
|
|
13986
14202
|
}
|
|
13987
14203
|
},
|
|
13988
14204
|
"node_modules/open": {
|
|
13989
|
-
"version": "10.0
|
|
13990
|
-
"resolved": "https://registry.npmjs.org/open/-/open-10.0.
|
|
13991
|
-
"integrity": "sha512-
|
|
14205
|
+
"version": "10.1.0",
|
|
14206
|
+
"resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz",
|
|
14207
|
+
"integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==",
|
|
13992
14208
|
"license": "MIT",
|
|
13993
14209
|
"dependencies": {
|
|
13994
14210
|
"default-browser": "^5.2.1",
|
|
@@ -16974,6 +17190,20 @@
|
|
|
16974
17190
|
"node": ">=10"
|
|
16975
17191
|
}
|
|
16976
17192
|
},
|
|
17193
|
+
"node_modules/ts-json-schema-generator/node_modules/typescript": {
|
|
17194
|
+
"version": "5.3.3",
|
|
17195
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz",
|
|
17196
|
+
"integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==",
|
|
17197
|
+
"dev": true,
|
|
17198
|
+
"license": "Apache-2.0",
|
|
17199
|
+
"bin": {
|
|
17200
|
+
"tsc": "bin/tsc",
|
|
17201
|
+
"tsserver": "bin/tsserver"
|
|
17202
|
+
},
|
|
17203
|
+
"engines": {
|
|
17204
|
+
"node": ">=14.17"
|
|
17205
|
+
}
|
|
17206
|
+
},
|
|
16977
17207
|
"node_modules/ts-node": {
|
|
16978
17208
|
"version": "10.9.2",
|
|
16979
17209
|
"resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz",
|
|
@@ -17209,9 +17439,9 @@
|
|
|
17209
17439
|
}
|
|
17210
17440
|
},
|
|
17211
17441
|
"node_modules/typescript": {
|
|
17212
|
-
"version": "5.
|
|
17213
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.
|
|
17214
|
-
"integrity": "sha512
|
|
17442
|
+
"version": "5.4.2",
|
|
17443
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.2.tgz",
|
|
17444
|
+
"integrity": "sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==",
|
|
17215
17445
|
"dev": true,
|
|
17216
17446
|
"license": "Apache-2.0",
|
|
17217
17447
|
"bin": {
|
|
@@ -17258,6 +17488,19 @@
|
|
|
17258
17488
|
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
|
|
17259
17489
|
"license": "MIT"
|
|
17260
17490
|
},
|
|
17491
|
+
"node_modules/unicorn-magic": {
|
|
17492
|
+
"version": "0.1.0",
|
|
17493
|
+
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
|
|
17494
|
+
"integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==",
|
|
17495
|
+
"dev": true,
|
|
17496
|
+
"license": "MIT",
|
|
17497
|
+
"engines": {
|
|
17498
|
+
"node": ">=18"
|
|
17499
|
+
},
|
|
17500
|
+
"funding": {
|
|
17501
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
17502
|
+
}
|
|
17503
|
+
},
|
|
17261
17504
|
"node_modules/unique-filename": {
|
|
17262
17505
|
"version": "1.1.1",
|
|
17263
17506
|
"resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
|
package/oclif.lock
CHANGED
|
@@ -1485,14 +1485,14 @@
|
|
|
1485
1485
|
strip-ansi "^6.0.1"
|
|
1486
1486
|
wrap-ansi "^6.2.0"
|
|
1487
1487
|
|
|
1488
|
-
"@inquirer/core@^7.0.
|
|
1489
|
-
version "7.0.
|
|
1490
|
-
resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-7.0.
|
|
1491
|
-
integrity sha512-
|
|
1488
|
+
"@inquirer/core@^7.0.2":
|
|
1489
|
+
version "7.0.2"
|
|
1490
|
+
resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-7.0.2.tgz#8924f167afaa318a3a54e19e08c5812f09312830"
|
|
1491
|
+
integrity sha512-yya2GLO8lIi+yGytrOQ6unbrRGi8JiC+lWtlIsCUsDgMcCdO75vOuqGIUKXvfBkeZLOzs4WcSioXvpBzo0B0+Q==
|
|
1492
1492
|
dependencies:
|
|
1493
1493
|
"@inquirer/type" "^1.2.0"
|
|
1494
1494
|
"@types/mute-stream" "^0.0.4"
|
|
1495
|
-
"@types/node" "^20.11.
|
|
1495
|
+
"@types/node" "^20.11.25"
|
|
1496
1496
|
"@types/wrap-ansi" "^3.0.0"
|
|
1497
1497
|
ansi-escapes "^4.3.2"
|
|
1498
1498
|
chalk "^4.1.2"
|
|
@@ -1505,12 +1505,12 @@
|
|
|
1505
1505
|
strip-ansi "^6.0.1"
|
|
1506
1506
|
wrap-ansi "^6.2.0"
|
|
1507
1507
|
|
|
1508
|
-
"@inquirer/input@^2.0.
|
|
1509
|
-
version "2.0.
|
|
1510
|
-
resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-2.0.
|
|
1511
|
-
integrity sha512-
|
|
1508
|
+
"@inquirer/input@^2.0.2":
|
|
1509
|
+
version "2.0.2"
|
|
1510
|
+
resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-2.0.2.tgz#1ff59215e97e4652aff9baf1ad0479edfa707369"
|
|
1511
|
+
integrity sha512-2qCyolURnBo1EArkH/JnOfMGEUdsjVbmKaeHf7Rq1EW4KK+zj4sPAizDFkEC03NoSzPTGLV+4riiAybdx177KQ==
|
|
1512
1512
|
dependencies:
|
|
1513
|
-
"@inquirer/core" "^7.0.
|
|
1513
|
+
"@inquirer/core" "^7.0.2"
|
|
1514
1514
|
"@inquirer/type" "^1.2.0"
|
|
1515
1515
|
|
|
1516
1516
|
"@inquirer/password@^1.1.16":
|
|
@@ -1820,6 +1820,39 @@
|
|
|
1820
1820
|
read-package-json-fast "^3.0.0"
|
|
1821
1821
|
which "^3.0.0"
|
|
1822
1822
|
|
|
1823
|
+
"@oclif/core@3.21.0":
|
|
1824
|
+
version "3.21.0"
|
|
1825
|
+
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.21.0.tgz#a235704e66589c8c104ccd616d0a8f1f36cf693e"
|
|
1826
|
+
integrity sha512-xR7qGPOWtOnYmdYocSn6oEh2oTQLsPOXoj3HYGpb26V3WulwF8Cm33WPnMsSISv4ben3Rtc5i59u9O5NnuG42g==
|
|
1827
|
+
dependencies:
|
|
1828
|
+
"@types/cli-progress" "^3.11.5"
|
|
1829
|
+
ansi-escapes "^4.3.2"
|
|
1830
|
+
ansi-styles "^4.3.0"
|
|
1831
|
+
cardinal "^2.1.1"
|
|
1832
|
+
chalk "^4.1.2"
|
|
1833
|
+
clean-stack "^3.0.1"
|
|
1834
|
+
cli-progress "^3.12.0"
|
|
1835
|
+
color "^4.2.3"
|
|
1836
|
+
debug "^4.3.4"
|
|
1837
|
+
ejs "^3.1.9"
|
|
1838
|
+
get-package-type "^0.1.0"
|
|
1839
|
+
globby "^11.1.0"
|
|
1840
|
+
hyperlinker "^1.0.0"
|
|
1841
|
+
indent-string "^4.0.0"
|
|
1842
|
+
is-wsl "^2.2.0"
|
|
1843
|
+
js-yaml "^3.14.1"
|
|
1844
|
+
natural-orderby "^2.0.3"
|
|
1845
|
+
object-treeify "^1.1.33"
|
|
1846
|
+
password-prompt "^1.1.3"
|
|
1847
|
+
slice-ansi "^4.0.0"
|
|
1848
|
+
string-width "^4.2.3"
|
|
1849
|
+
strip-ansi "^6.0.1"
|
|
1850
|
+
supports-color "^8.1.1"
|
|
1851
|
+
supports-hyperlinks "^2.2.0"
|
|
1852
|
+
widest-line "^3.1.0"
|
|
1853
|
+
wordwrap "^1.0.0"
|
|
1854
|
+
wrap-ansi "^7.0.0"
|
|
1855
|
+
|
|
1823
1856
|
"@oclif/core@^3.15.1", "@oclif/core@^3.18.1", "@oclif/core@^3.18.2", "@oclif/core@^3.19.1", "@oclif/core@^3.19.2", "@oclif/core@^3.23.0":
|
|
1824
1857
|
version "3.23.0"
|
|
1825
1858
|
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.23.0.tgz#d0ccc5f99c376e4bcfce04e8e94efae8417a53f8"
|
|
@@ -1855,13 +1888,14 @@
|
|
|
1855
1888
|
wrap-ansi "^7.0.0"
|
|
1856
1889
|
|
|
1857
1890
|
"@oclif/plugin-command-snapshot@^5":
|
|
1858
|
-
version "5.
|
|
1859
|
-
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.
|
|
1860
|
-
integrity sha512-
|
|
1891
|
+
version "5.1.1"
|
|
1892
|
+
resolved "https://registry.yarnpkg.com/@oclif/plugin-command-snapshot/-/plugin-command-snapshot-5.1.1.tgz#13918a98686d7508ddca192154e2b33ae042706f"
|
|
1893
|
+
integrity sha512-8PmnQ4aDX1n8OcrnXVPDpmoIAUWe1nbC6Md/KRupzjlRF8YDJMp7AdrE6cFD4DSZ04QvIViQ0w5P7kyu37wA1g==
|
|
1861
1894
|
dependencies:
|
|
1862
|
-
"@oclif/core" "
|
|
1895
|
+
"@oclif/core" "3.21.0"
|
|
1863
1896
|
"@types/lodash.difference" "^4.5.9"
|
|
1864
1897
|
chalk "^5.3.0"
|
|
1898
|
+
globby "^14.0.1"
|
|
1865
1899
|
just-diff "^5.2.0"
|
|
1866
1900
|
lodash.difference "^4.5.0"
|
|
1867
1901
|
lodash.get "^4.4.2"
|
|
@@ -2191,6 +2225,11 @@
|
|
|
2191
2225
|
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-5.6.0.tgz#41dd6093d34652cddb5d5bdeee04eafc33826668"
|
|
2192
2226
|
integrity sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==
|
|
2193
2227
|
|
|
2228
|
+
"@sindresorhus/merge-streams@^2.1.0":
|
|
2229
|
+
version "2.3.0"
|
|
2230
|
+
resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz#719df7fb41766bc143369eaa0dd56d8dc87c9958"
|
|
2231
|
+
integrity sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==
|
|
2232
|
+
|
|
2194
2233
|
"@sinonjs/commons@^1", "@sinonjs/commons@^1.3.0", "@sinonjs/commons@^1.6.0", "@sinonjs/commons@^1.7.0", "@sinonjs/commons@^1.8.1":
|
|
2195
2234
|
version "1.8.6"
|
|
2196
2235
|
resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9"
|
|
@@ -2891,7 +2930,7 @@
|
|
|
2891
2930
|
dependencies:
|
|
2892
2931
|
"@types/node" "*"
|
|
2893
2932
|
|
|
2894
|
-
"@types/node@*", "@types/node@^20.10.7"
|
|
2933
|
+
"@types/node@*", "@types/node@^20.10.7":
|
|
2895
2934
|
version "20.11.16"
|
|
2896
2935
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.16.tgz#4411f79411514eb8e2926f036c86c9f0e4ec6708"
|
|
2897
2936
|
integrity sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==
|
|
@@ -2920,6 +2959,13 @@
|
|
|
2920
2959
|
dependencies:
|
|
2921
2960
|
undici-types "~5.26.4"
|
|
2922
2961
|
|
|
2962
|
+
"@types/node@^20.11.25":
|
|
2963
|
+
version "20.11.25"
|
|
2964
|
+
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.25.tgz#0f50d62f274e54dd7a49f7704cc16bfbcccaf49f"
|
|
2965
|
+
integrity sha512-TBHyJxk2b7HceLVGFcpAUjsa5zIdsPWlR6XHfyGzd0SFu+/NFgQgMAl96MSDZgQDvJAvV6BKsFOrt6zIL09JDw==
|
|
2966
|
+
dependencies:
|
|
2967
|
+
undici-types "~5.26.4"
|
|
2968
|
+
|
|
2923
2969
|
"@types/normalize-package-data@^2.4.0":
|
|
2924
2970
|
version "2.4.3"
|
|
2925
2971
|
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.3.tgz#291c243e4b94dbfbc0c0ee26b7666f1d5c030e2c"
|
|
@@ -4934,7 +4980,7 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
|
|
|
4934
4980
|
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
|
|
4935
4981
|
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
|
|
4936
4982
|
|
|
4937
|
-
fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0:
|
|
4983
|
+
fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0, fast-glob@^3.3.2:
|
|
4938
4984
|
version "3.3.2"
|
|
4939
4985
|
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
|
|
4940
4986
|
integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
|
|
@@ -5449,6 +5495,18 @@ globby@^13.1.2:
|
|
|
5449
5495
|
merge2 "^1.4.1"
|
|
5450
5496
|
slash "^4.0.0"
|
|
5451
5497
|
|
|
5498
|
+
globby@^14.0.1:
|
|
5499
|
+
version "14.0.1"
|
|
5500
|
+
resolved "https://registry.yarnpkg.com/globby/-/globby-14.0.1.tgz#a1b44841aa7f4c6d8af2bc39951109d77301959b"
|
|
5501
|
+
integrity sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==
|
|
5502
|
+
dependencies:
|
|
5503
|
+
"@sindresorhus/merge-streams" "^2.1.0"
|
|
5504
|
+
fast-glob "^3.3.2"
|
|
5505
|
+
ignore "^5.2.4"
|
|
5506
|
+
path-type "^5.0.0"
|
|
5507
|
+
slash "^5.1.0"
|
|
5508
|
+
unicorn-magic "^0.1.0"
|
|
5509
|
+
|
|
5452
5510
|
gopd@^1.0.1:
|
|
5453
5511
|
version "1.0.1"
|
|
5454
5512
|
resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
|
|
@@ -7656,10 +7714,10 @@ onetime@^5.1.0, onetime@^5.1.2:
|
|
|
7656
7714
|
dependencies:
|
|
7657
7715
|
mimic-fn "^2.1.0"
|
|
7658
7716
|
|
|
7659
|
-
open@^10.0
|
|
7660
|
-
version "10.0
|
|
7661
|
-
resolved "https://registry.yarnpkg.com/open/-/open-10.0.
|
|
7662
|
-
integrity sha512-
|
|
7717
|
+
open@^10.1.0:
|
|
7718
|
+
version "10.1.0"
|
|
7719
|
+
resolved "https://registry.yarnpkg.com/open/-/open-10.1.0.tgz#a7795e6e5d519abe4286d9937bb24b51122598e1"
|
|
7720
|
+
integrity sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==
|
|
7663
7721
|
dependencies:
|
|
7664
7722
|
default-browser "^5.2.1"
|
|
7665
7723
|
define-lazy-prop "^3.0.0"
|
|
@@ -7984,6 +8042,11 @@ path-type@^4.0.0:
|
|
|
7984
8042
|
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
|
|
7985
8043
|
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
|
|
7986
8044
|
|
|
8045
|
+
path-type@^5.0.0:
|
|
8046
|
+
version "5.0.0"
|
|
8047
|
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-5.0.0.tgz#14b01ed7aea7ddf9c7c3f46181d4d04f9c785bb8"
|
|
8048
|
+
integrity sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==
|
|
8049
|
+
|
|
7987
8050
|
pathval@^1.1.1:
|
|
7988
8051
|
version "1.1.1"
|
|
7989
8052
|
resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d"
|
|
@@ -8799,6 +8862,11 @@ slash@^4.0.0:
|
|
|
8799
8862
|
resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7"
|
|
8800
8863
|
integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==
|
|
8801
8864
|
|
|
8865
|
+
slash@^5.1.0:
|
|
8866
|
+
version "5.1.0"
|
|
8867
|
+
resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce"
|
|
8868
|
+
integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==
|
|
8869
|
+
|
|
8802
8870
|
slice-ansi@^4.0.0:
|
|
8803
8871
|
version "4.0.0"
|
|
8804
8872
|
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
|
|
@@ -9431,16 +9499,21 @@ typedoc@^0.25.9:
|
|
|
9431
9499
|
minimatch "^9.0.3"
|
|
9432
9500
|
shiki "^0.14.7"
|
|
9433
9501
|
|
|
9434
|
-
"typescript@^4.6.4 || ^5.2.2", typescript@^5.
|
|
9435
|
-
version "5.
|
|
9436
|
-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.
|
|
9437
|
-
integrity sha512
|
|
9502
|
+
"typescript@^4.6.4 || ^5.2.2", typescript@^5.4.2:
|
|
9503
|
+
version "5.4.2"
|
|
9504
|
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.2.tgz#0ae9cebcfae970718474fe0da2c090cad6577372"
|
|
9505
|
+
integrity sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==
|
|
9438
9506
|
|
|
9439
9507
|
typescript@^4.9.5:
|
|
9440
9508
|
version "4.9.5"
|
|
9441
9509
|
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
|
|
9442
9510
|
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
|
|
9443
9511
|
|
|
9512
|
+
typescript@~5.3.2:
|
|
9513
|
+
version "5.3.3"
|
|
9514
|
+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37"
|
|
9515
|
+
integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==
|
|
9516
|
+
|
|
9444
9517
|
uglify-js@^3.1.4:
|
|
9445
9518
|
version "3.17.4"
|
|
9446
9519
|
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"
|
|
@@ -9461,6 +9534,11 @@ undici-types@~5.26.4:
|
|
|
9461
9534
|
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
|
|
9462
9535
|
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
|
|
9463
9536
|
|
|
9537
|
+
unicorn-magic@^0.1.0:
|
|
9538
|
+
version "0.1.0"
|
|
9539
|
+
resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.1.0.tgz#1bb9a51c823aaf9d73a8bfcd3d1a23dde94b0ce4"
|
|
9540
|
+
integrity sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==
|
|
9541
|
+
|
|
9464
9542
|
unique-filename@^1.1.1:
|
|
9465
9543
|
version "1.1.1"
|
|
9466
9544
|
resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-info",
|
|
3
3
|
"description": "Plugin for accessing cli info from the command line",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.31",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@inquirer/input": "^2.0.
|
|
8
|
+
"@inquirer/input": "^2.0.2",
|
|
9
9
|
"@oclif/core": "^3.23.0",
|
|
10
10
|
"@salesforce/core": "^6.5.2",
|
|
11
11
|
"@salesforce/kit": "^3.0.15",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"got": "^13.0.0",
|
|
14
14
|
"marked": "^4.3.0",
|
|
15
15
|
"marked-terminal": "^4.2.0",
|
|
16
|
-
"open": "^10.0
|
|
16
|
+
"open": "^10.1.0",
|
|
17
17
|
"proxy-agent": "^6.4.0",
|
|
18
18
|
"semver": "^7.6.0"
|
|
19
19
|
},
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"oclif": "^4.4.19",
|
|
33
33
|
"sinon-chai": "^3.7.0",
|
|
34
34
|
"ts-node": "^10.9.2",
|
|
35
|
-
"typescript": "^5.
|
|
35
|
+
"typescript": "^5.4.2"
|
|
36
36
|
},
|
|
37
37
|
"config": {},
|
|
38
38
|
"engines": {
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
"exports": "./lib/index.js",
|
|
223
223
|
"type": "module",
|
|
224
224
|
"sfdx": {
|
|
225
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/3.0.
|
|
226
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/3.0.
|
|
225
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/3.0.31.crt",
|
|
226
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-info/3.0.31.sig"
|
|
227
227
|
}
|
|
228
228
|
}
|