@salesforce/cli 2.14.1 → 2.14.2
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 +31 -23
- package/npm-shrinkwrap.json +50 -32
- package/oclif.manifest.json +1 -1
- package/package.json +6 -6
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.14.
|
|
27
|
+
@salesforce/cli/2.14.2 linux-x64 node-v18.18.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -818,8 +818,8 @@ list all the commands
|
|
|
818
818
|
|
|
819
819
|
```
|
|
820
820
|
USAGE
|
|
821
|
-
$ sf commands [--json] [-h] [--hidden] [--tree] [--columns <value> | -x] [--
|
|
822
|
-
[--output csv|json|yaml | |
|
|
821
|
+
$ sf commands [--json] [-h] [--hidden] [--tree] [--columns <value> | -x] [--filter <value>] [--no-header |
|
|
822
|
+
[--csv | --no-truncate]] [--output csv|json|yaml | | ] [--sort <value>]
|
|
823
823
|
|
|
824
824
|
FLAGS
|
|
825
825
|
-h, --help Show CLI help.
|
|
@@ -842,7 +842,7 @@ DESCRIPTION
|
|
|
842
842
|
list all the commands
|
|
843
843
|
```
|
|
844
844
|
|
|
845
|
-
_See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/
|
|
845
|
+
_See code: [@oclif/plugin-commands](https://github.com/oclif/plugin-commands/blob/3.0.1/src/commands/commands.ts)_
|
|
846
846
|
|
|
847
847
|
## `sf config get`
|
|
848
848
|
|
|
@@ -2343,7 +2343,7 @@ FLAG DESCRIPTIONS
|
|
|
2343
2343
|
for a number of minutes, the client exits. Specify a longer wait time if timeouts occur frequently.
|
|
2344
2344
|
```
|
|
2345
2345
|
|
|
2346
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
2346
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/force/org/clone.ts)_
|
|
2347
2347
|
|
|
2348
2348
|
## `sf force org create`
|
|
2349
2349
|
|
|
@@ -2391,7 +2391,7 @@ EXAMPLES
|
|
|
2391
2391
|
$ sf force org create -t sandbox -f config/dev-sandbox-def.json -a MyDevSandbox -u prodOrg
|
|
2392
2392
|
```
|
|
2393
2393
|
|
|
2394
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
2394
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/force/org/create.ts)_
|
|
2395
2395
|
|
|
2396
2396
|
## `sf force org delete`
|
|
2397
2397
|
|
|
@@ -2423,7 +2423,7 @@ EXAMPLES
|
|
|
2423
2423
|
$ sf force org delete -u MyOrgAlias -p
|
|
2424
2424
|
```
|
|
2425
2425
|
|
|
2426
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
2426
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/force/org/delete.ts)_
|
|
2427
2427
|
|
|
2428
2428
|
## `sf force org status`
|
|
2429
2429
|
|
|
@@ -2461,7 +2461,7 @@ EXAMPLES
|
|
|
2461
2461
|
$ sf force org status --sandboxname DevSbx1 --wait 45 --setdefaultusername -u prodOrg
|
|
2462
2462
|
```
|
|
2463
2463
|
|
|
2464
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
2464
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/force/org/status.ts)_
|
|
2465
2465
|
|
|
2466
2466
|
## `sf force source deploy`
|
|
2467
2467
|
|
|
@@ -3577,6 +3577,8 @@ USAGE
|
|
|
3577
3577
|
DESCRIPTION
|
|
3578
3578
|
Log interactively into an environment.
|
|
3579
3579
|
|
|
3580
|
+
NOTE: This general command is deprecated. Use specific commands instead, such as "org login web" or "org login jwt".
|
|
3581
|
+
|
|
3580
3582
|
Logging into an environment authorizes the CLI to run other commands that connect to that environment.
|
|
3581
3583
|
|
|
3582
3584
|
EXAMPLES
|
|
@@ -3585,7 +3587,7 @@ EXAMPLES
|
|
|
3585
3587
|
$ sf login
|
|
3586
3588
|
```
|
|
3587
3589
|
|
|
3588
|
-
_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/1.2.
|
|
3590
|
+
_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/1.2.36/src/commands/login.ts)_
|
|
3589
3591
|
|
|
3590
3592
|
## `sf logout`
|
|
3591
3593
|
|
|
@@ -3604,6 +3606,8 @@ GLOBAL FLAGS
|
|
|
3604
3606
|
DESCRIPTION
|
|
3605
3607
|
Log out interactively from environments.
|
|
3606
3608
|
|
|
3609
|
+
NOTE: This general command is deprecated. Use specific commands instead, such as "org login web" or "org login jwt".
|
|
3610
|
+
|
|
3607
3611
|
By default, the command prompts you to select which environments you want to log out of. Use --no-prompt to not be
|
|
3608
3612
|
prompted and log out of all environments.
|
|
3609
3613
|
|
|
@@ -3617,7 +3621,7 @@ EXAMPLES
|
|
|
3617
3621
|
$ sf logout --no-prompt
|
|
3618
3622
|
```
|
|
3619
3623
|
|
|
3620
|
-
_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/1.2.
|
|
3624
|
+
_See code: [@salesforce/plugin-login](https://github.com/salesforcecli/plugin-login/blob/1.2.36/src/commands/logout.ts)_
|
|
3621
3625
|
|
|
3622
3626
|
## `sf org assign permset`
|
|
3623
3627
|
|
|
@@ -3809,7 +3813,7 @@ FLAG DESCRIPTIONS
|
|
|
3809
3813
|
sandbox.
|
|
3810
3814
|
```
|
|
3811
3815
|
|
|
3812
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
3816
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/create/sandbox.ts)_
|
|
3813
3817
|
|
|
3814
3818
|
## `sf org create scratch`
|
|
3815
3819
|
|
|
@@ -3962,7 +3966,7 @@ FLAG DESCRIPTIONS
|
|
|
3962
3966
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
3963
3967
|
```
|
|
3964
3968
|
|
|
3965
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
3969
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/create/scratch.ts)_
|
|
3966
3970
|
|
|
3967
3971
|
## `sf org create user`
|
|
3968
3972
|
|
|
@@ -4102,7 +4106,7 @@ EXAMPLES
|
|
|
4102
4106
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
4103
4107
|
```
|
|
4104
4108
|
|
|
4105
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
4109
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/delete/sandbox.ts)_
|
|
4106
4110
|
|
|
4107
4111
|
## `sf org delete scratch`
|
|
4108
4112
|
|
|
@@ -4144,7 +4148,7 @@ EXAMPLES
|
|
|
4144
4148
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
4145
4149
|
```
|
|
4146
4150
|
|
|
4147
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
4151
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/delete/scratch.ts)_
|
|
4148
4152
|
|
|
4149
4153
|
## `sf org display`
|
|
4150
4154
|
|
|
@@ -4187,7 +4191,7 @@ EXAMPLES
|
|
|
4187
4191
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4188
4192
|
```
|
|
4189
4193
|
|
|
4190
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
4194
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/display.ts)_
|
|
4191
4195
|
|
|
4192
4196
|
## `sf org display user`
|
|
4193
4197
|
|
|
@@ -4326,7 +4330,7 @@ EXAMPLES
|
|
|
4326
4330
|
$ sf org list --clean
|
|
4327
4331
|
```
|
|
4328
4332
|
|
|
4329
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
4333
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/list.ts)_
|
|
4330
4334
|
|
|
4331
4335
|
## `sf org list auth`
|
|
4332
4336
|
|
|
@@ -4421,7 +4425,7 @@ FLAG DESCRIPTIONS
|
|
|
4421
4425
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4422
4426
|
```
|
|
4423
4427
|
|
|
4424
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
4428
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/list/metadata.ts)_
|
|
4425
4429
|
|
|
4426
4430
|
## `sf org list metadata-types`
|
|
4427
4431
|
|
|
@@ -4474,7 +4478,7 @@ FLAG DESCRIPTIONS
|
|
|
4474
4478
|
Override the api version used for api requests made by this command
|
|
4475
4479
|
```
|
|
4476
4480
|
|
|
4477
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
4481
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/list/metadata-types.ts)_
|
|
4478
4482
|
|
|
4479
4483
|
## `sf org list users`
|
|
4480
4484
|
|
|
@@ -4973,9 +4977,13 @@ EXAMPLES
|
|
|
4973
4977
|
Open a local Lightning page in your default org's Lightning App Builder:
|
|
4974
4978
|
|
|
4975
4979
|
$ sf org open --source-path force-app/main/default/flexipages/Hello.flexipage-meta.xml
|
|
4980
|
+
|
|
4981
|
+
Open a local Flow in Flow Builder:
|
|
4982
|
+
|
|
4983
|
+
$ sf org open --source-path force-app/main/default/flows/Hello.flow-meta.xml
|
|
4976
4984
|
```
|
|
4977
4985
|
|
|
4978
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
4986
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/open.ts)_
|
|
4979
4987
|
|
|
4980
4988
|
## `sf org resume sandbox`
|
|
4981
4989
|
|
|
@@ -5037,7 +5045,7 @@ FLAG DESCRIPTIONS
|
|
|
5037
5045
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
5038
5046
|
```
|
|
5039
5047
|
|
|
5040
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
5048
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/resume/sandbox.ts)_
|
|
5041
5049
|
|
|
5042
5050
|
## `sf org resume scratch`
|
|
5043
5051
|
|
|
@@ -5083,7 +5091,7 @@ FLAG DESCRIPTIONS
|
|
|
5083
5091
|
The job ID is valid for 24 hours after you start the scratch org creation.
|
|
5084
5092
|
```
|
|
5085
5093
|
|
|
5086
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.
|
|
5094
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/2.11.0/src/commands/org/resume/scratch.ts)_
|
|
5087
5095
|
|
|
5088
5096
|
## `sf plugins`
|
|
5089
5097
|
|
|
@@ -7287,7 +7295,7 @@ EXAMPLES
|
|
|
7287
7295
|
$ sf update --available
|
|
7288
7296
|
```
|
|
7289
7297
|
|
|
7290
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.1.
|
|
7298
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.1.2/src/commands/update.ts)_
|
|
7291
7299
|
|
|
7292
7300
|
## `sf version`
|
|
7293
7301
|
|
|
@@ -7429,6 +7437,6 @@ EXAMPLES
|
|
|
7429
7437
|
$ sf which help
|
|
7430
7438
|
```
|
|
7431
7439
|
|
|
7432
|
-
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.0.
|
|
7440
|
+
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.0.3/src/commands/which.ts)_
|
|
7433
7441
|
|
|
7434
7442
|
<!-- commandsstop -->
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.14.
|
|
9
|
+
"version": "2.14.2",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@oclif/core": "3.0.3",
|
|
14
14
|
"@oclif/plugin-autocomplete": "2.3.9",
|
|
15
|
-
"@oclif/plugin-commands": "
|
|
15
|
+
"@oclif/plugin-commands": "3.0.1",
|
|
16
16
|
"@oclif/plugin-help": "6.0.2",
|
|
17
17
|
"@oclif/plugin-not-found": "3.0.1",
|
|
18
18
|
"@oclif/plugin-plugins": "3.9.1",
|
|
19
19
|
"@oclif/plugin-search": "1.0.2",
|
|
20
|
-
"@oclif/plugin-update": "4.1.
|
|
20
|
+
"@oclif/plugin-update": "4.1.2",
|
|
21
21
|
"@oclif/plugin-version": "2.0.2",
|
|
22
22
|
"@oclif/plugin-warn-if-update-available": "2.1.1",
|
|
23
|
-
"@oclif/plugin-which": "3.0.
|
|
23
|
+
"@oclif/plugin-which": "3.0.3",
|
|
24
24
|
"@salesforce/core": "^5.2.0",
|
|
25
25
|
"@salesforce/plugin-apex": "2.3.19",
|
|
26
26
|
"@salesforce/plugin-auth": "2.8.20",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"@salesforce/plugin-deploy-retrieve": "1.19.0",
|
|
29
29
|
"@salesforce/plugin-info": "2.6.49",
|
|
30
30
|
"@salesforce/plugin-limits": "2.3.38",
|
|
31
|
-
"@salesforce/plugin-login": "1.2.
|
|
31
|
+
"@salesforce/plugin-login": "1.2.36",
|
|
32
32
|
"@salesforce/plugin-marketplace": "0.3.0",
|
|
33
|
-
"@salesforce/plugin-org": "2.
|
|
33
|
+
"@salesforce/plugin-org": "2.11.0",
|
|
34
34
|
"@salesforce/plugin-schema": "2.3.29",
|
|
35
35
|
"@salesforce/plugin-settings": "1.4.33",
|
|
36
36
|
"@salesforce/plugin-sobject": "0.2.11",
|
|
@@ -2366,25 +2366,27 @@
|
|
|
2366
2366
|
}
|
|
2367
2367
|
},
|
|
2368
2368
|
"node_modules/@oclif/plugin-commands": {
|
|
2369
|
-
"version": "
|
|
2370
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-
|
|
2371
|
-
"integrity": "sha512-
|
|
2369
|
+
"version": "3.0.1",
|
|
2370
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-3.0.1.tgz",
|
|
2371
|
+
"integrity": "sha512-JDSOtQq7C+aaV6qYC7Hqb46WJ5xcEIy0EknS8OEyptjO3Gn1wAcVIkoeGBmSprqv76AzFLisvBIEwTMd6TSI9Q==",
|
|
2372
2372
|
"license": "MIT",
|
|
2373
2373
|
"dependencies": {
|
|
2374
|
-
"@oclif/core": "^
|
|
2375
|
-
"lodash": "^4.
|
|
2374
|
+
"@oclif/core": "^3.0.9",
|
|
2375
|
+
"lodash.pickby": "^4.6.0",
|
|
2376
|
+
"lodash.sortby": "^4.7.0",
|
|
2377
|
+
"lodash.template": "^4.5.0",
|
|
2378
|
+
"lodash.uniqby": "^4.7.0"
|
|
2376
2379
|
},
|
|
2377
2380
|
"engines": {
|
|
2378
|
-
"node": ">=
|
|
2381
|
+
"node": ">=18.0.0"
|
|
2379
2382
|
}
|
|
2380
2383
|
},
|
|
2381
2384
|
"node_modules/@oclif/plugin-commands/node_modules/@oclif/core": {
|
|
2382
|
-
"version": "
|
|
2383
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-
|
|
2384
|
-
"integrity": "sha512-
|
|
2385
|
+
"version": "3.0.9",
|
|
2386
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.0.9.tgz",
|
|
2387
|
+
"integrity": "sha512-rwM6MWQ47W8U0++aG+qK6aATDqBl5sn5nkUqR6YmnJ4clR455gMyjUnzEqhwlzw+YfDf2MBhxC8wDlhPTImfvQ==",
|
|
2385
2388
|
"license": "MIT",
|
|
2386
2389
|
"dependencies": {
|
|
2387
|
-
"@types/cli-progress": "^3.11.0",
|
|
2388
2390
|
"ansi-escapes": "^4.3.2",
|
|
2389
2391
|
"ansi-styles": "^4.3.0",
|
|
2390
2392
|
"cardinal": "^2.1.1",
|
|
@@ -2407,14 +2409,12 @@
|
|
|
2407
2409
|
"strip-ansi": "^6.0.1",
|
|
2408
2410
|
"supports-color": "^8.1.1",
|
|
2409
2411
|
"supports-hyperlinks": "^2.2.0",
|
|
2410
|
-
"ts-node": "^10.9.1",
|
|
2411
|
-
"tslib": "^2.5.0",
|
|
2412
2412
|
"widest-line": "^3.1.0",
|
|
2413
2413
|
"wordwrap": "^1.0.0",
|
|
2414
2414
|
"wrap-ansi": "^7.0.0"
|
|
2415
2415
|
},
|
|
2416
2416
|
"engines": {
|
|
2417
|
-
"node": ">=
|
|
2417
|
+
"node": ">=18.0.0"
|
|
2418
2418
|
}
|
|
2419
2419
|
},
|
|
2420
2420
|
"node_modules/@oclif/plugin-commands/node_modules/supports-color": {
|
|
@@ -2767,9 +2767,9 @@
|
|
|
2767
2767
|
}
|
|
2768
2768
|
},
|
|
2769
2769
|
"node_modules/@oclif/plugin-update": {
|
|
2770
|
-
"version": "4.1.
|
|
2771
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.1.
|
|
2772
|
-
"integrity": "sha512-
|
|
2770
|
+
"version": "4.1.2",
|
|
2771
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.1.2.tgz",
|
|
2772
|
+
"integrity": "sha512-2S2q+NT8M2SyqzDjB7ZIZYHQ923Xvnul5EE8epV3jC8Br8EoMDJRBXXJsPjhz33DsJDTeFJpa7ScwcxB92fxGA==",
|
|
2773
2773
|
"license": "MIT",
|
|
2774
2774
|
"dependencies": {
|
|
2775
2775
|
"@oclif/core": "^3.0.9",
|
|
@@ -3097,9 +3097,9 @@
|
|
|
3097
3097
|
}
|
|
3098
3098
|
},
|
|
3099
3099
|
"node_modules/@oclif/plugin-which": {
|
|
3100
|
-
"version": "3.0.
|
|
3101
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-which/-/plugin-which-3.0.
|
|
3102
|
-
"integrity": "sha512-
|
|
3100
|
+
"version": "3.0.3",
|
|
3101
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-which/-/plugin-which-3.0.3.tgz",
|
|
3102
|
+
"integrity": "sha512-o3NrdrQbBfccLAGjwIEkYX5QNH8oT4bR4ZqtLnkohivuZc5cERsTwb9bHCwoX95YwlNaXqUyXmHywDd0FIMruQ==",
|
|
3103
3103
|
"license": "MIT",
|
|
3104
3104
|
"dependencies": {
|
|
3105
3105
|
"@oclif/core": "^3.0.9"
|
|
@@ -4686,9 +4686,9 @@
|
|
|
4686
4686
|
}
|
|
4687
4687
|
},
|
|
4688
4688
|
"node_modules/@salesforce/plugin-login": {
|
|
4689
|
-
"version": "1.2.
|
|
4690
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-login/-/plugin-login-1.2.
|
|
4691
|
-
"integrity": "sha512-
|
|
4689
|
+
"version": "1.2.36",
|
|
4690
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-login/-/plugin-login-1.2.36.tgz",
|
|
4691
|
+
"integrity": "sha512-rXpq8LkaZs+1axUW1XcMARy9Xh+MEw+1PVXrqu8g3Yn9NSdAoIw35srqPTyqX72E09/yqwmEfV1yJcmTB20j8w==",
|
|
4692
4692
|
"license": "BSD-3-Clause",
|
|
4693
4693
|
"dependencies": {
|
|
4694
4694
|
"@oclif/core": "^2.15.0",
|
|
@@ -4863,9 +4863,9 @@
|
|
|
4863
4863
|
}
|
|
4864
4864
|
},
|
|
4865
4865
|
"node_modules/@salesforce/plugin-org": {
|
|
4866
|
-
"version": "2.
|
|
4867
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-2.
|
|
4868
|
-
"integrity": "sha512-
|
|
4866
|
+
"version": "2.11.0",
|
|
4867
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-2.11.0.tgz",
|
|
4868
|
+
"integrity": "sha512-NiQwSjh4fIBAH9NL+aO4NeIlNiD/jhOc3SqET2RBNx4H+lzCnzJhlkTQbuAWSEj5ZcrWQXlVceA/hOPeboT7fQ==",
|
|
4869
4869
|
"license": "BSD-3-Clause",
|
|
4870
4870
|
"dependencies": {
|
|
4871
4871
|
"@oclif/core": "^2.15.0",
|
|
@@ -14967,6 +14967,12 @@
|
|
|
14967
14967
|
"integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
|
|
14968
14968
|
"license": "MIT"
|
|
14969
14969
|
},
|
|
14970
|
+
"node_modules/lodash.pickby": {
|
|
14971
|
+
"version": "4.6.0",
|
|
14972
|
+
"resolved": "https://registry.npmjs.org/lodash.pickby/-/lodash.pickby-4.6.0.tgz",
|
|
14973
|
+
"integrity": "sha512-AZV+GsS/6ckvPOVQPXSiFFacKvKB4kOQu6ynt9wz0F3LO4R9Ij4K1ddYsIytDpSgLz88JHd9P+oaLeej5/Sl7Q==",
|
|
14974
|
+
"license": "MIT"
|
|
14975
|
+
},
|
|
14970
14976
|
"node_modules/lodash.snakecase": {
|
|
14971
14977
|
"version": "4.1.1",
|
|
14972
14978
|
"resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz",
|
|
@@ -14974,6 +14980,12 @@
|
|
|
14974
14980
|
"dev": true,
|
|
14975
14981
|
"license": "MIT"
|
|
14976
14982
|
},
|
|
14983
|
+
"node_modules/lodash.sortby": {
|
|
14984
|
+
"version": "4.7.0",
|
|
14985
|
+
"resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
|
|
14986
|
+
"integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==",
|
|
14987
|
+
"license": "MIT"
|
|
14988
|
+
},
|
|
14977
14989
|
"node_modules/lodash.startcase": {
|
|
14978
14990
|
"version": "4.4.0",
|
|
14979
14991
|
"resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz",
|
|
@@ -15013,6 +15025,12 @@
|
|
|
15013
15025
|
"dev": true,
|
|
15014
15026
|
"license": "MIT"
|
|
15015
15027
|
},
|
|
15028
|
+
"node_modules/lodash.uniqby": {
|
|
15029
|
+
"version": "4.7.0",
|
|
15030
|
+
"resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz",
|
|
15031
|
+
"integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==",
|
|
15032
|
+
"license": "MIT"
|
|
15033
|
+
},
|
|
15016
15034
|
"node_modules/lodash.upperfirst": {
|
|
15017
15035
|
"version": "4.3.1",
|
|
15018
15036
|
"resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.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.14.
|
|
4
|
+
"version": "2.14.2",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -124,15 +124,15 @@
|
|
|
124
124
|
"dependencies": {
|
|
125
125
|
"@oclif/core": "3.0.3",
|
|
126
126
|
"@oclif/plugin-autocomplete": "2.3.9",
|
|
127
|
-
"@oclif/plugin-commands": "
|
|
127
|
+
"@oclif/plugin-commands": "3.0.1",
|
|
128
128
|
"@oclif/plugin-help": "6.0.2",
|
|
129
129
|
"@oclif/plugin-not-found": "3.0.1",
|
|
130
130
|
"@oclif/plugin-plugins": "3.9.1",
|
|
131
131
|
"@oclif/plugin-search": "1.0.2",
|
|
132
|
-
"@oclif/plugin-update": "4.1.
|
|
132
|
+
"@oclif/plugin-update": "4.1.2",
|
|
133
133
|
"@oclif/plugin-version": "2.0.2",
|
|
134
134
|
"@oclif/plugin-warn-if-update-available": "2.1.1",
|
|
135
|
-
"@oclif/plugin-which": "3.0.
|
|
135
|
+
"@oclif/plugin-which": "3.0.3",
|
|
136
136
|
"@salesforce/core": "^5.2.0",
|
|
137
137
|
"@salesforce/plugin-apex": "2.3.19",
|
|
138
138
|
"@salesforce/plugin-auth": "2.8.20",
|
|
@@ -140,9 +140,9 @@
|
|
|
140
140
|
"@salesforce/plugin-deploy-retrieve": "1.19.0",
|
|
141
141
|
"@salesforce/plugin-info": "2.6.49",
|
|
142
142
|
"@salesforce/plugin-limits": "2.3.38",
|
|
143
|
-
"@salesforce/plugin-login": "1.2.
|
|
143
|
+
"@salesforce/plugin-login": "1.2.36",
|
|
144
144
|
"@salesforce/plugin-marketplace": "0.3.0",
|
|
145
|
-
"@salesforce/plugin-org": "2.
|
|
145
|
+
"@salesforce/plugin-org": "2.11.0",
|
|
146
146
|
"@salesforce/plugin-schema": "2.3.29",
|
|
147
147
|
"@salesforce/plugin-settings": "1.4.33",
|
|
148
148
|
"@salesforce/plugin-sobject": "0.2.11",
|