@salesforce/cli 2.34.0 → 2.34.1-qa.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 +17 -17
- package/npm-shrinkwrap.json +34 -27
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
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.34.0 linux-x64 node-v20.11.1
|
|
27
|
+
@salesforce/cli/2.34.1-qa.0 linux-x64 node-v20.11.1
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -140,10 +140,10 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
140
140
|
- [`sf plugins discover`](#sf-plugins-discover)
|
|
141
141
|
- [`sf plugins:inspect PLUGIN...`](#sf-pluginsinspect-plugin)
|
|
142
142
|
- [`sf plugins:install PLUGIN...`](#sf-pluginsinstall-plugin)
|
|
143
|
-
- [`sf plugins
|
|
143
|
+
- [`sf plugins link PATH`](#sf-plugins-link-path)
|
|
144
144
|
- [`sf plugins reset`](#sf-plugins-reset)
|
|
145
145
|
- [`sf plugins trust verify`](#sf-plugins-trust-verify)
|
|
146
|
-
- [`sf plugins
|
|
146
|
+
- [`sf plugins uninstall [PLUGIN]`](#sf-plugins-uninstall-plugin)
|
|
147
147
|
- [`sf plugins update`](#sf-plugins-update)
|
|
148
148
|
- [`sf project convert mdapi`](#sf-project-convert-mdapi)
|
|
149
149
|
- [`sf project convert source`](#sf-project-convert-source)
|
|
@@ -5275,7 +5275,7 @@ EXAMPLES
|
|
|
5275
5275
|
$ sf plugins
|
|
5276
5276
|
```
|
|
5277
5277
|
|
|
5278
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5278
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.4/src/commands/plugins/index.ts)_
|
|
5279
5279
|
|
|
5280
5280
|
## `sf plugins discover`
|
|
5281
5281
|
|
|
@@ -5319,7 +5319,7 @@ EXAMPLES
|
|
|
5319
5319
|
$ sf plugins inspect myplugin
|
|
5320
5320
|
```
|
|
5321
5321
|
|
|
5322
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5322
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.4/src/commands/plugins/inspect.ts)_
|
|
5323
5323
|
|
|
5324
5324
|
## `sf plugins:install PLUGIN...`
|
|
5325
5325
|
|
|
@@ -5333,10 +5333,10 @@ ARGUMENTS
|
|
|
5333
5333
|
PLUGIN... Plugin to install.
|
|
5334
5334
|
|
|
5335
5335
|
FLAGS
|
|
5336
|
-
-f, --force
|
|
5336
|
+
-f, --force Force npm to fetch remote resources even if a local copy exists on disk.
|
|
5337
5337
|
-h, --help Show CLI help.
|
|
5338
|
-
-s, --silent Silences
|
|
5339
|
-
-v, --verbose Show verbose
|
|
5338
|
+
-s, --silent Silences npm output.
|
|
5339
|
+
-v, --verbose Show verbose npm output.
|
|
5340
5340
|
|
|
5341
5341
|
GLOBAL FLAGS
|
|
5342
5342
|
--json Format output as json.
|
|
@@ -5363,15 +5363,15 @@ EXAMPLES
|
|
|
5363
5363
|
$ sf plugins install someuser/someplugin
|
|
5364
5364
|
```
|
|
5365
5365
|
|
|
5366
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5366
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.4/src/commands/plugins/install.ts)_
|
|
5367
5367
|
|
|
5368
|
-
## `sf plugins
|
|
5368
|
+
## `sf plugins link PATH`
|
|
5369
5369
|
|
|
5370
5370
|
Links a plugin into the CLI for development.
|
|
5371
5371
|
|
|
5372
5372
|
```
|
|
5373
5373
|
USAGE
|
|
5374
|
-
$ sf plugins link
|
|
5374
|
+
$ sf plugins link PATH [-h] [--install] [-v]
|
|
5375
5375
|
|
|
5376
5376
|
ARGUMENTS
|
|
5377
5377
|
PATH [default: .] path to plugin
|
|
@@ -5393,7 +5393,7 @@ EXAMPLES
|
|
|
5393
5393
|
$ sf plugins link myplugin
|
|
5394
5394
|
```
|
|
5395
5395
|
|
|
5396
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5396
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.4/src/commands/plugins/link.ts)_
|
|
5397
5397
|
|
|
5398
5398
|
## `sf plugins reset`
|
|
5399
5399
|
|
|
@@ -5408,7 +5408,7 @@ FLAGS
|
|
|
5408
5408
|
--reinstall Reinstall all plugins after uninstalling.
|
|
5409
5409
|
```
|
|
5410
5410
|
|
|
5411
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5411
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.4/src/commands/plugins/reset.ts)_
|
|
5412
5412
|
|
|
5413
5413
|
## `sf plugins trust verify`
|
|
5414
5414
|
|
|
@@ -5438,13 +5438,13 @@ EXAMPLES
|
|
|
5438
5438
|
|
|
5439
5439
|
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/3.3.16/src/commands/plugins/trust/verify.ts)_
|
|
5440
5440
|
|
|
5441
|
-
## `sf plugins
|
|
5441
|
+
## `sf plugins uninstall [PLUGIN]`
|
|
5442
5442
|
|
|
5443
5443
|
Removes a plugin from the CLI.
|
|
5444
5444
|
|
|
5445
5445
|
```
|
|
5446
5446
|
USAGE
|
|
5447
|
-
$ sf plugins uninstall PLUGIN...
|
|
5447
|
+
$ sf plugins uninstall [PLUGIN...] [-h] [-v]
|
|
5448
5448
|
|
|
5449
5449
|
ARGUMENTS
|
|
5450
5450
|
PLUGIN... plugin to uninstall
|
|
@@ -5464,7 +5464,7 @@ EXAMPLES
|
|
|
5464
5464
|
$ sf plugins uninstall myplugin
|
|
5465
5465
|
```
|
|
5466
5466
|
|
|
5467
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5467
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.4/src/commands/plugins/uninstall.ts)_
|
|
5468
5468
|
|
|
5469
5469
|
## `sf plugins update`
|
|
5470
5470
|
|
|
@@ -5482,7 +5482,7 @@ DESCRIPTION
|
|
|
5482
5482
|
Update installed plugins.
|
|
5483
5483
|
```
|
|
5484
5484
|
|
|
5485
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/
|
|
5485
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.0.0-beta.4/src/commands/plugins/update.ts)_
|
|
5486
5486
|
|
|
5487
5487
|
## `sf project convert mdapi`
|
|
5488
5488
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.34.0",
|
|
3
|
+
"version": "2.34.1-qa.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.34.0",
|
|
9
|
+
"version": "2.34.1-qa.0",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@oclif/plugin-commands": "3.2.0",
|
|
17
17
|
"@oclif/plugin-help": "6.0.18",
|
|
18
18
|
"@oclif/plugin-not-found": "3.0.14",
|
|
19
|
-
"@oclif/plugin-plugins": "
|
|
19
|
+
"@oclif/plugin-plugins": "beta",
|
|
20
20
|
"@oclif/plugin-search": "1.0.20",
|
|
21
21
|
"@oclif/plugin-update": "4.2.0",
|
|
22
22
|
"@oclif/plugin-version": "2.0.14",
|
|
@@ -4135,20 +4135,17 @@
|
|
|
4135
4135
|
}
|
|
4136
4136
|
},
|
|
4137
4137
|
"node_modules/@oclif/plugin-plugins": {
|
|
4138
|
-
"version": "
|
|
4139
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-4.3.5.tgz",
|
|
4140
|
-
"integrity": "sha512-V5tivbXKZtibMVN4nqttUldMDNp2jb84QCZSsQr4hWTx8e5Tok+EXWXbh4HET1Ts3lxLbti1O0J6OE/Itf+haw==",
|
|
4138
|
+
"version": "5.0.0-beta.4",
|
|
4141
4139
|
"license": "MIT",
|
|
4142
4140
|
"dependencies": {
|
|
4143
4141
|
"@oclif/core": "^3.23.0",
|
|
4144
4142
|
"chalk": "^5.3.0",
|
|
4145
4143
|
"debug": "^4.3.4",
|
|
4146
4144
|
"npm": "10.2.4",
|
|
4147
|
-
"npm-
|
|
4145
|
+
"npm-package-arg": "^11.0.1",
|
|
4146
|
+
"npm-run-path": "^5.2.0",
|
|
4148
4147
|
"semver": "^7.6.0",
|
|
4149
|
-
"
|
|
4150
|
-
"validate-npm-package-name": "^5.0.0",
|
|
4151
|
-
"yarn": "^1.22.21"
|
|
4148
|
+
"validate-npm-package-name": "^5.0.0"
|
|
4152
4149
|
},
|
|
4153
4150
|
"engines": {
|
|
4154
4151
|
"node": ">=18.0.0"
|
|
@@ -4359,6 +4356,21 @@
|
|
|
4359
4356
|
"node": "^18.17.0 || >=20.5.0"
|
|
4360
4357
|
}
|
|
4361
4358
|
},
|
|
4359
|
+
"node_modules/@oclif/plugin-plugins/node_modules/npm-run-path": {
|
|
4360
|
+
"version": "5.3.0",
|
|
4361
|
+
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
|
|
4362
|
+
"integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
|
|
4363
|
+
"license": "MIT",
|
|
4364
|
+
"dependencies": {
|
|
4365
|
+
"path-key": "^4.0.0"
|
|
4366
|
+
},
|
|
4367
|
+
"engines": {
|
|
4368
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
4369
|
+
},
|
|
4370
|
+
"funding": {
|
|
4371
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
4372
|
+
}
|
|
4373
|
+
},
|
|
4362
4374
|
"node_modules/@oclif/plugin-plugins/node_modules/npm/node_modules/@colors/colors": {
|
|
4363
4375
|
"version": "1.5.0",
|
|
4364
4376
|
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
|
@@ -7332,6 +7344,18 @@
|
|
|
7332
7344
|
"inBundle": true,
|
|
7333
7345
|
"license": "ISC"
|
|
7334
7346
|
},
|
|
7347
|
+
"node_modules/@oclif/plugin-plugins/node_modules/path-key": {
|
|
7348
|
+
"version": "4.0.0",
|
|
7349
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
|
|
7350
|
+
"integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
|
|
7351
|
+
"license": "MIT",
|
|
7352
|
+
"engines": {
|
|
7353
|
+
"node": ">=12"
|
|
7354
|
+
},
|
|
7355
|
+
"funding": {
|
|
7356
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
7357
|
+
}
|
|
7358
|
+
},
|
|
7335
7359
|
"node_modules/@oclif/plugin-plugins/node_modules/supports-color": {
|
|
7336
7360
|
"version": "9.4.0",
|
|
7337
7361
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz",
|
|
@@ -16101,7 +16125,6 @@
|
|
|
16101
16125
|
"version": "7.0.1",
|
|
16102
16126
|
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz",
|
|
16103
16127
|
"integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==",
|
|
16104
|
-
"extraneous": true,
|
|
16105
16128
|
"license": "ISC",
|
|
16106
16129
|
"dependencies": {
|
|
16107
16130
|
"lru-cache": "^10.0.1"
|
|
@@ -16114,7 +16137,6 @@
|
|
|
16114
16137
|
"version": "10.2.0",
|
|
16115
16138
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz",
|
|
16116
16139
|
"integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==",
|
|
16117
|
-
"extraneous": true,
|
|
16118
16140
|
"license": "ISC",
|
|
16119
16141
|
"engines": {
|
|
16120
16142
|
"node": "14 || >=16.14"
|
|
@@ -20077,7 +20099,6 @@
|
|
|
20077
20099
|
"version": "11.0.1",
|
|
20078
20100
|
"resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz",
|
|
20079
20101
|
"integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==",
|
|
20080
|
-
"extraneous": true,
|
|
20081
20102
|
"license": "ISC",
|
|
20082
20103
|
"dependencies": {
|
|
20083
20104
|
"hosted-git-info": "^7.0.0",
|
|
@@ -27987,20 +28008,6 @@
|
|
|
27987
28008
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
27988
28009
|
}
|
|
27989
28010
|
},
|
|
27990
|
-
"node_modules/yarn": {
|
|
27991
|
-
"version": "1.22.21",
|
|
27992
|
-
"resolved": "https://registry.npmjs.org/yarn/-/yarn-1.22.21.tgz",
|
|
27993
|
-
"integrity": "sha512-ynXaJsADJ9JiZ84zU25XkPGOvVMmZ5b7tmTSpKURYwgELdjucAOydqIOrOfTxVYcNXe91xvLZwcRh68SR3liCg==",
|
|
27994
|
-
"hasInstallScript": true,
|
|
27995
|
-
"license": "BSD-2-Clause",
|
|
27996
|
-
"bin": {
|
|
27997
|
-
"yarn": "bin/yarn.js",
|
|
27998
|
-
"yarnpkg": "bin/yarn.js"
|
|
27999
|
-
},
|
|
28000
|
-
"engines": {
|
|
28001
|
-
"node": ">=4.0.0"
|
|
28002
|
-
}
|
|
28003
|
-
},
|
|
28004
28011
|
"node_modules/yarn-deduplicate": {
|
|
28005
28012
|
"version": "3.1.0",
|
|
28006
28013
|
"resolved": "https://registry.npmjs.org/yarn-deduplicate/-/yarn-deduplicate-3.1.0.tgz",
|
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.34.0",
|
|
4
|
+
"version": "2.34.1-qa.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"@oclif/plugin-commands": "3.2.0",
|
|
142
142
|
"@oclif/plugin-help": "6.0.18",
|
|
143
143
|
"@oclif/plugin-not-found": "3.0.14",
|
|
144
|
-
"@oclif/plugin-plugins": "
|
|
144
|
+
"@oclif/plugin-plugins": "beta",
|
|
145
145
|
"@oclif/plugin-search": "1.0.20",
|
|
146
146
|
"@oclif/plugin-update": "4.2.0",
|
|
147
147
|
"@oclif/plugin-version": "2.0.14",
|