@salesforce/cli 2.27.6 → 2.28.0
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 +14 -10
- package/npm-shrinkwrap.json +17 -17
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ $ npm install -g @salesforce/cli
|
|
|
24
24
|
$ sf COMMAND
|
|
25
25
|
running command...
|
|
26
26
|
$ sf (--version|-v)
|
|
27
|
-
@salesforce/cli/2.
|
|
27
|
+
@salesforce/cli/2.28.0 linux-x64 node-v20.11.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -819,7 +819,7 @@ EXAMPLES
|
|
|
819
819
|
$ sf autocomplete --refresh-cache
|
|
820
820
|
```
|
|
821
821
|
|
|
822
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.0.
|
|
822
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.0.6/src/commands/autocomplete/index.ts)_
|
|
823
823
|
|
|
824
824
|
## `sf commands`
|
|
825
825
|
|
|
@@ -5092,7 +5092,7 @@ EXAMPLES
|
|
|
5092
5092
|
$ sf plugins
|
|
5093
5093
|
```
|
|
5094
5094
|
|
|
5095
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1
|
|
5095
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.2.1/src/commands/plugins/index.ts)_
|
|
5096
5096
|
|
|
5097
5097
|
## `sf plugins discover`
|
|
5098
5098
|
|
|
@@ -5136,7 +5136,7 @@ EXAMPLES
|
|
|
5136
5136
|
$ sf plugins inspect myplugin
|
|
5137
5137
|
```
|
|
5138
5138
|
|
|
5139
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1
|
|
5139
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.2.1/src/commands/plugins/inspect.ts)_
|
|
5140
5140
|
|
|
5141
5141
|
## `sf plugins:install PLUGIN...`
|
|
5142
5142
|
|
|
@@ -5180,7 +5180,7 @@ EXAMPLES
|
|
|
5180
5180
|
$ sf plugins install someuser/someplugin
|
|
5181
5181
|
```
|
|
5182
5182
|
|
|
5183
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1
|
|
5183
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.2.1/src/commands/plugins/install.ts)_
|
|
5184
5184
|
|
|
5185
5185
|
## `sf plugins:link PLUGIN`
|
|
5186
5186
|
|
|
@@ -5210,7 +5210,7 @@ EXAMPLES
|
|
|
5210
5210
|
$ sf plugins link myplugin
|
|
5211
5211
|
```
|
|
5212
5212
|
|
|
5213
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1
|
|
5213
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.2.1/src/commands/plugins/link.ts)_
|
|
5214
5214
|
|
|
5215
5215
|
## `sf plugins reset`
|
|
5216
5216
|
|
|
@@ -5218,10 +5218,14 @@ Remove all user-installed and linked plugins.
|
|
|
5218
5218
|
|
|
5219
5219
|
```
|
|
5220
5220
|
USAGE
|
|
5221
|
-
$ sf plugins reset
|
|
5221
|
+
$ sf plugins reset [--hard] [--reinstall]
|
|
5222
|
+
|
|
5223
|
+
FLAGS
|
|
5224
|
+
--hard Delete node_modules and package manager related files in addition to uninstalling plugins.
|
|
5225
|
+
--reinstall Reinstall all plugins after uninstalling.
|
|
5222
5226
|
```
|
|
5223
5227
|
|
|
5224
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1
|
|
5228
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.2.1/src/commands/plugins/reset.ts)_
|
|
5225
5229
|
|
|
5226
5230
|
## `sf plugins trust verify`
|
|
5227
5231
|
|
|
@@ -5277,7 +5281,7 @@ EXAMPLES
|
|
|
5277
5281
|
$ sf plugins uninstall myplugin
|
|
5278
5282
|
```
|
|
5279
5283
|
|
|
5280
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1
|
|
5284
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.2.1/src/commands/plugins/uninstall.ts)_
|
|
5281
5285
|
|
|
5282
5286
|
## `sf plugins update`
|
|
5283
5287
|
|
|
@@ -5295,7 +5299,7 @@ DESCRIPTION
|
|
|
5295
5299
|
Update installed plugins.
|
|
5296
5300
|
```
|
|
5297
5301
|
|
|
5298
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.1
|
|
5302
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/4.2.1/src/commands/plugins/update.ts)_
|
|
5299
5303
|
|
|
5300
5304
|
## `sf project convert mdapi`
|
|
5301
5305
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.28.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.28.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@inquirer/select": "^1.3.1",
|
|
14
|
-
"@oclif/core": "3.18.
|
|
15
|
-
"@oclif/plugin-autocomplete": "3.0.
|
|
14
|
+
"@oclif/core": "3.18.2",
|
|
15
|
+
"@oclif/plugin-autocomplete": "3.0.6",
|
|
16
16
|
"@oclif/plugin-commands": "3.1.1",
|
|
17
17
|
"@oclif/plugin-help": "6.0.12",
|
|
18
18
|
"@oclif/plugin-not-found": "3.0.9",
|
|
19
|
-
"@oclif/plugin-plugins": "4.1
|
|
19
|
+
"@oclif/plugin-plugins": "4.2.1",
|
|
20
20
|
"@oclif/plugin-search": "1.0.12",
|
|
21
21
|
"@oclif/plugin-update": "4.1.8",
|
|
22
22
|
"@oclif/plugin-version": "2.0.11",
|
|
@@ -4079,9 +4079,9 @@
|
|
|
4079
4079
|
}
|
|
4080
4080
|
},
|
|
4081
4081
|
"node_modules/@oclif/core": {
|
|
4082
|
-
"version": "3.18.
|
|
4083
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.18.
|
|
4084
|
-
"integrity": "sha512-
|
|
4082
|
+
"version": "3.18.2",
|
|
4083
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.18.2.tgz",
|
|
4084
|
+
"integrity": "sha512-gfWxCS7dTNzdtvlBEEPUXJj+znzDMjSHfgTIx2IuQ9O3JPxWBrlOj9rgyNxyulVWVKKkuwFFkM4NZA+yiKA9ow==",
|
|
4085
4085
|
"license": "MIT",
|
|
4086
4086
|
"dependencies": {
|
|
4087
4087
|
"@types/cli-progress": "^3.11.5",
|
|
@@ -4132,9 +4132,9 @@
|
|
|
4132
4132
|
}
|
|
4133
4133
|
},
|
|
4134
4134
|
"node_modules/@oclif/plugin-autocomplete": {
|
|
4135
|
-
"version": "3.0.
|
|
4136
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.0.
|
|
4137
|
-
"integrity": "sha512-
|
|
4135
|
+
"version": "3.0.6",
|
|
4136
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.0.6.tgz",
|
|
4137
|
+
"integrity": "sha512-xKWnQ6QWkZhMWDbhmQ9HRx2kGclLleYmbOujax8K5durAiIu+YalgYNGBV/+U20sTdTsLjzt2H1I0i5H3cKYyg==",
|
|
4138
4138
|
"license": "MIT",
|
|
4139
4139
|
"dependencies": {
|
|
4140
4140
|
"@oclif/core": "^3.16.0",
|
|
@@ -4288,9 +4288,9 @@
|
|
|
4288
4288
|
}
|
|
4289
4289
|
},
|
|
4290
4290
|
"node_modules/@oclif/plugin-plugins": {
|
|
4291
|
-
"version": "4.1
|
|
4292
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-4.1.
|
|
4293
|
-
"integrity": "sha512-
|
|
4291
|
+
"version": "4.2.1",
|
|
4292
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-4.2.1.tgz",
|
|
4293
|
+
"integrity": "sha512-S+Pq5WivaIwTQiZ+3jqz5Vv9sB5DDeA/iVyUEFt824TwlVo0uK58o2/W9Vs/S/2Bwkpl5Tv+Iu0SErdv3KQ7/g==",
|
|
4294
4294
|
"license": "MIT",
|
|
4295
4295
|
"dependencies": {
|
|
4296
4296
|
"@oclif/core": "^3.10.2",
|
|
@@ -14308,9 +14308,9 @@
|
|
|
14308
14308
|
}
|
|
14309
14309
|
},
|
|
14310
14310
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
14311
|
-
"version": "10.3.
|
|
14312
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-10.3.
|
|
14313
|
-
"integrity": "sha512-
|
|
14311
|
+
"version": "10.3.1",
|
|
14312
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-10.3.1.tgz",
|
|
14313
|
+
"integrity": "sha512-S+nHAepnxLSf0vgo0b2CyH2matnGKsNBQ6AM/uEHrwpOBjLW/46cVXlY2umUG9fXQwG0ubeMYHm+IUmppDysUA==",
|
|
14314
14314
|
"license": "BSD-3-Clause",
|
|
14315
14315
|
"dependencies": {
|
|
14316
14316
|
"@salesforce/core": "^6.5.1",
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.28.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -134,12 +134,12 @@
|
|
|
134
134
|
},
|
|
135
135
|
"dependencies": {
|
|
136
136
|
"@inquirer/select": "^1.3.1",
|
|
137
|
-
"@oclif/core": "3.18.
|
|
138
|
-
"@oclif/plugin-autocomplete": "3.0.
|
|
137
|
+
"@oclif/core": "3.18.2",
|
|
138
|
+
"@oclif/plugin-autocomplete": "3.0.6",
|
|
139
139
|
"@oclif/plugin-commands": "3.1.1",
|
|
140
140
|
"@oclif/plugin-help": "6.0.12",
|
|
141
141
|
"@oclif/plugin-not-found": "3.0.9",
|
|
142
|
-
"@oclif/plugin-plugins": "4.1
|
|
142
|
+
"@oclif/plugin-plugins": "4.2.1",
|
|
143
143
|
"@oclif/plugin-search": "1.0.12",
|
|
144
144
|
"@oclif/plugin-update": "4.1.8",
|
|
145
145
|
"@oclif/plugin-version": "2.0.11",
|
|
@@ -200,7 +200,7 @@
|
|
|
200
200
|
"resolutions": {
|
|
201
201
|
"@salesforce/schemas": "1.6.1",
|
|
202
202
|
"@salesforce/templates": "60.1.0",
|
|
203
|
-
"@salesforce/source-deploy-retrieve": "10.3.
|
|
203
|
+
"@salesforce/source-deploy-retrieve": "10.3.1",
|
|
204
204
|
"@salesforce/source-tracking": "5.1.9"
|
|
205
205
|
},
|
|
206
206
|
"repository": "salesforcecli/cli",
|