@salesforce/cli 2.14.1 → 2.14.3
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 +33 -25
- package/npm-shrinkwrap.json +113 -95
- package/oclif.manifest.json +1 -1
- package/package.json +9 -9
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.3 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.2/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
|
|
|
@@ -5248,7 +5256,7 @@ EXAMPLES
|
|
|
5248
5256
|
$ sf plugins trust verify --npm @scope/npmName
|
|
5249
5257
|
```
|
|
5250
5258
|
|
|
5251
|
-
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/2.6.
|
|
5259
|
+
_See code: [@salesforce/plugin-trust](https://github.com/salesforcecli/plugin-trust/blob/2.6.20/src/commands/plugins/trust/verify.ts)_
|
|
5252
5260
|
|
|
5253
5261
|
## `sf plugins:uninstall PLUGIN...`
|
|
5254
5262
|
|
|
@@ -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
|
|
|
@@ -7307,7 +7315,7 @@ FLAG DESCRIPTIONS
|
|
|
7307
7315
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
7308
7316
|
```
|
|
7309
7317
|
|
|
7310
|
-
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/2.0.
|
|
7318
|
+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/2.0.3/src/commands/version.ts)_
|
|
7311
7319
|
|
|
7312
7320
|
## `sf visualforce generate component`
|
|
7313
7321
|
|
|
@@ -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.3",
|
|
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.3",
|
|
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.2",
|
|
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.
|
|
21
|
-
"@oclif/plugin-version": "2.0.
|
|
20
|
+
"@oclif/plugin-update": "4.1.2",
|
|
21
|
+
"@oclif/plugin-version": "2.0.3",
|
|
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,16 +28,16 @@
|
|
|
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",
|
|
37
37
|
"@salesforce/plugin-source": "2.10.40",
|
|
38
38
|
"@salesforce/plugin-telemetry": "2.3.6",
|
|
39
39
|
"@salesforce/plugin-templates": "55.5.14",
|
|
40
|
-
"@salesforce/plugin-trust": "2.6.
|
|
40
|
+
"@salesforce/plugin-trust": "2.6.20",
|
|
41
41
|
"@salesforce/plugin-user": "2.3.36",
|
|
42
42
|
"@salesforce/sf-plugins-core": "4.0.0",
|
|
43
43
|
"debug": "^4.3.4"
|
|
@@ -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.2",
|
|
2370
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-commands/-/plugin-commands-3.0.2.tgz",
|
|
2371
|
+
"integrity": "sha512-abzLyhOXDjpZvn2uRBjuQyCpGRsR41k3o+gvZvLBneiL80OJNc2WyL2aOFpPQTXpoggOP9qyd3+GBV/vno4w6Q==",
|
|
2372
2372
|
"license": "MIT",
|
|
2373
2373
|
"dependencies": {
|
|
2374
|
-
"@oclif/core": "^2.
|
|
2375
|
-
"lodash": "^4.
|
|
2374
|
+
"@oclif/core": "^3.2.1",
|
|
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": "2.
|
|
2383
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-2.
|
|
2384
|
-
"integrity": "sha512-
|
|
2385
|
+
"version": "3.2.1",
|
|
2386
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.2.1.tgz",
|
|
2387
|
+
"integrity": "sha512-QY9csFjADbRa4RH7wcKSvIowaGI+Kc5oFCODYrKy9nj3x/RPGXG9KJ2848+9ZWJKUxv3KPHBX9CULHwvrwpVdg==",
|
|
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",
|
|
@@ -2392,7 +2394,7 @@
|
|
|
2392
2394
|
"clean-stack": "^3.0.1",
|
|
2393
2395
|
"cli-progress": "^3.12.0",
|
|
2394
2396
|
"debug": "^4.3.4",
|
|
2395
|
-
"ejs": "^3.1.
|
|
2397
|
+
"ejs": "^3.1.9",
|
|
2396
2398
|
"get-package-type": "^0.1.0",
|
|
2397
2399
|
"globby": "^11.1.0",
|
|
2398
2400
|
"hyperlinker": "^1.0.0",
|
|
@@ -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": {
|
|
@@ -2445,9 +2445,9 @@
|
|
|
2445
2445
|
}
|
|
2446
2446
|
},
|
|
2447
2447
|
"node_modules/@oclif/plugin-help/node_modules/@oclif/core": {
|
|
2448
|
-
"version": "3.
|
|
2449
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
2450
|
-
"integrity": "sha512-
|
|
2448
|
+
"version": "3.2.1",
|
|
2449
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.2.1.tgz",
|
|
2450
|
+
"integrity": "sha512-QY9csFjADbRa4RH7wcKSvIowaGI+Kc5oFCODYrKy9nj3x/RPGXG9KJ2848+9ZWJKUxv3KPHBX9CULHwvrwpVdg==",
|
|
2451
2451
|
"license": "MIT",
|
|
2452
2452
|
"dependencies": {
|
|
2453
2453
|
"ansi-escapes": "^4.3.2",
|
|
@@ -2457,7 +2457,7 @@
|
|
|
2457
2457
|
"clean-stack": "^3.0.1",
|
|
2458
2458
|
"cli-progress": "^3.12.0",
|
|
2459
2459
|
"debug": "^4.3.4",
|
|
2460
|
-
"ejs": "^3.1.
|
|
2460
|
+
"ejs": "^3.1.9",
|
|
2461
2461
|
"get-package-type": "^0.1.0",
|
|
2462
2462
|
"globby": "^11.1.0",
|
|
2463
2463
|
"hyperlinker": "^1.0.0",
|
|
@@ -2510,9 +2510,9 @@
|
|
|
2510
2510
|
}
|
|
2511
2511
|
},
|
|
2512
2512
|
"node_modules/@oclif/plugin-not-found/node_modules/@oclif/core": {
|
|
2513
|
-
"version": "3.
|
|
2514
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
2515
|
-
"integrity": "sha512-
|
|
2513
|
+
"version": "3.2.1",
|
|
2514
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.2.1.tgz",
|
|
2515
|
+
"integrity": "sha512-QY9csFjADbRa4RH7wcKSvIowaGI+Kc5oFCODYrKy9nj3x/RPGXG9KJ2848+9ZWJKUxv3KPHBX9CULHwvrwpVdg==",
|
|
2516
2516
|
"license": "MIT",
|
|
2517
2517
|
"dependencies": {
|
|
2518
2518
|
"ansi-escapes": "^4.3.2",
|
|
@@ -2522,7 +2522,7 @@
|
|
|
2522
2522
|
"clean-stack": "^3.0.1",
|
|
2523
2523
|
"cli-progress": "^3.12.0",
|
|
2524
2524
|
"debug": "^4.3.4",
|
|
2525
|
-
"ejs": "^3.1.
|
|
2525
|
+
"ejs": "^3.1.9",
|
|
2526
2526
|
"get-package-type": "^0.1.0",
|
|
2527
2527
|
"globby": "^11.1.0",
|
|
2528
2528
|
"hyperlinker": "^1.0.0",
|
|
@@ -2716,9 +2716,9 @@
|
|
|
2716
2716
|
}
|
|
2717
2717
|
},
|
|
2718
2718
|
"node_modules/@oclif/plugin-search/node_modules/@oclif/core": {
|
|
2719
|
-
"version": "3.
|
|
2720
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
2721
|
-
"integrity": "sha512-
|
|
2719
|
+
"version": "3.2.1",
|
|
2720
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.2.1.tgz",
|
|
2721
|
+
"integrity": "sha512-QY9csFjADbRa4RH7wcKSvIowaGI+Kc5oFCODYrKy9nj3x/RPGXG9KJ2848+9ZWJKUxv3KPHBX9CULHwvrwpVdg==",
|
|
2722
2722
|
"license": "MIT",
|
|
2723
2723
|
"dependencies": {
|
|
2724
2724
|
"ansi-escapes": "^4.3.2",
|
|
@@ -2728,7 +2728,7 @@
|
|
|
2728
2728
|
"clean-stack": "^3.0.1",
|
|
2729
2729
|
"cli-progress": "^3.12.0",
|
|
2730
2730
|
"debug": "^4.3.4",
|
|
2731
|
-
"ejs": "^3.1.
|
|
2731
|
+
"ejs": "^3.1.9",
|
|
2732
2732
|
"get-package-type": "^0.1.0",
|
|
2733
2733
|
"globby": "^11.1.0",
|
|
2734
2734
|
"hyperlinker": "^1.0.0",
|
|
@@ -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",
|
|
@@ -2788,9 +2788,9 @@
|
|
|
2788
2788
|
}
|
|
2789
2789
|
},
|
|
2790
2790
|
"node_modules/@oclif/plugin-update/node_modules/@oclif/core": {
|
|
2791
|
-
"version": "3.
|
|
2792
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
2793
|
-
"integrity": "sha512-
|
|
2791
|
+
"version": "3.2.1",
|
|
2792
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.2.1.tgz",
|
|
2793
|
+
"integrity": "sha512-QY9csFjADbRa4RH7wcKSvIowaGI+Kc5oFCODYrKy9nj3x/RPGXG9KJ2848+9ZWJKUxv3KPHBX9CULHwvrwpVdg==",
|
|
2794
2794
|
"license": "MIT",
|
|
2795
2795
|
"dependencies": {
|
|
2796
2796
|
"ansi-escapes": "^4.3.2",
|
|
@@ -2800,7 +2800,7 @@
|
|
|
2800
2800
|
"clean-stack": "^3.0.1",
|
|
2801
2801
|
"cli-progress": "^3.12.0",
|
|
2802
2802
|
"debug": "^4.3.4",
|
|
2803
|
-
"ejs": "^3.1.
|
|
2803
|
+
"ejs": "^3.1.9",
|
|
2804
2804
|
"get-package-type": "^0.1.0",
|
|
2805
2805
|
"globby": "^11.1.0",
|
|
2806
2806
|
"hyperlinker": "^1.0.0",
|
|
@@ -2963,21 +2963,21 @@
|
|
|
2963
2963
|
}
|
|
2964
2964
|
},
|
|
2965
2965
|
"node_modules/@oclif/plugin-version": {
|
|
2966
|
-
"version": "2.0.
|
|
2967
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-version/-/plugin-version-2.0.
|
|
2968
|
-
"integrity": "sha512-
|
|
2966
|
+
"version": "2.0.3",
|
|
2967
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-version/-/plugin-version-2.0.3.tgz",
|
|
2968
|
+
"integrity": "sha512-Hge6BOHlTwh569avM/S7jPnv9wvp3KW+I+BSjbpTNwzJP894+bj/rNxt4IhbmZxLfscy0DP1l2Lc4vAb13BiTw==",
|
|
2969
2969
|
"license": "MIT",
|
|
2970
2970
|
"dependencies": {
|
|
2971
|
-
"@oclif/core": "^3.
|
|
2971
|
+
"@oclif/core": "^3.2.1"
|
|
2972
2972
|
},
|
|
2973
2973
|
"engines": {
|
|
2974
2974
|
"node": ">=18.0.0"
|
|
2975
2975
|
}
|
|
2976
2976
|
},
|
|
2977
2977
|
"node_modules/@oclif/plugin-version/node_modules/@oclif/core": {
|
|
2978
|
-
"version": "3.
|
|
2979
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
2980
|
-
"integrity": "sha512-
|
|
2978
|
+
"version": "3.2.1",
|
|
2979
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.2.1.tgz",
|
|
2980
|
+
"integrity": "sha512-QY9csFjADbRa4RH7wcKSvIowaGI+Kc5oFCODYrKy9nj3x/RPGXG9KJ2848+9ZWJKUxv3KPHBX9CULHwvrwpVdg==",
|
|
2981
2981
|
"license": "MIT",
|
|
2982
2982
|
"dependencies": {
|
|
2983
2983
|
"ansi-escapes": "^4.3.2",
|
|
@@ -2987,7 +2987,7 @@
|
|
|
2987
2987
|
"clean-stack": "^3.0.1",
|
|
2988
2988
|
"cli-progress": "^3.12.0",
|
|
2989
2989
|
"debug": "^4.3.4",
|
|
2990
|
-
"ejs": "^3.1.
|
|
2990
|
+
"ejs": "^3.1.9",
|
|
2991
2991
|
"get-package-type": "^0.1.0",
|
|
2992
2992
|
"globby": "^11.1.0",
|
|
2993
2993
|
"hyperlinker": "^1.0.0",
|
|
@@ -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"
|
|
@@ -3109,9 +3109,9 @@
|
|
|
3109
3109
|
}
|
|
3110
3110
|
},
|
|
3111
3111
|
"node_modules/@oclif/plugin-which/node_modules/@oclif/core": {
|
|
3112
|
-
"version": "3.
|
|
3113
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
3114
|
-
"integrity": "sha512-
|
|
3112
|
+
"version": "3.2.1",
|
|
3113
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.2.1.tgz",
|
|
3114
|
+
"integrity": "sha512-QY9csFjADbRa4RH7wcKSvIowaGI+Kc5oFCODYrKy9nj3x/RPGXG9KJ2848+9ZWJKUxv3KPHBX9CULHwvrwpVdg==",
|
|
3115
3115
|
"license": "MIT",
|
|
3116
3116
|
"dependencies": {
|
|
3117
3117
|
"ansi-escapes": "^4.3.2",
|
|
@@ -3121,7 +3121,7 @@
|
|
|
3121
3121
|
"clean-stack": "^3.0.1",
|
|
3122
3122
|
"cli-progress": "^3.12.0",
|
|
3123
3123
|
"debug": "^4.3.4",
|
|
3124
|
-
"ejs": "^3.1.
|
|
3124
|
+
"ejs": "^3.1.9",
|
|
3125
3125
|
"get-package-type": "^0.1.0",
|
|
3126
3126
|
"globby": "^11.1.0",
|
|
3127
3127
|
"hyperlinker": "^1.0.0",
|
|
@@ -3464,15 +3464,15 @@
|
|
|
3464
3464
|
}
|
|
3465
3465
|
},
|
|
3466
3466
|
"node_modules/@salesforce/core": {
|
|
3467
|
-
"version": "5.3.
|
|
3468
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-5.3.
|
|
3469
|
-
"integrity": "sha512
|
|
3467
|
+
"version": "5.3.9",
|
|
3468
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-5.3.9.tgz",
|
|
3469
|
+
"integrity": "sha512-/HX0PiXq3Sjc5eVJ0EaYetcDGsKU9O9Nj8jFGw5qYlITx8zogfxc0j07liH67tQXS1KbTysYoj/MQ2zbHSNkPA==",
|
|
3470
3470
|
"license": "BSD-3-Clause",
|
|
3471
3471
|
"dependencies": {
|
|
3472
|
-
"@salesforce/kit": "^3.0.
|
|
3472
|
+
"@salesforce/kit": "^3.0.13",
|
|
3473
3473
|
"@salesforce/schemas": "^1.6.0",
|
|
3474
3474
|
"@salesforce/ts-types": "^2.0.8",
|
|
3475
|
-
"@types/semver": "^7.5.
|
|
3475
|
+
"@types/semver": "^7.5.3",
|
|
3476
3476
|
"ajv": "^8.12.0",
|
|
3477
3477
|
"change-case": "^4.1.2",
|
|
3478
3478
|
"faye": "^1.4.0",
|
|
@@ -3481,9 +3481,9 @@
|
|
|
3481
3481
|
"jsforce": "^2.0.0-beta.27",
|
|
3482
3482
|
"jsonwebtoken": "9.0.2",
|
|
3483
3483
|
"jszip": "3.10.1",
|
|
3484
|
-
"pino": "^8.15.
|
|
3484
|
+
"pino": "^8.15.6",
|
|
3485
3485
|
"pino-abstract-transport": "^1.0.0",
|
|
3486
|
-
"pino-pretty": "^10.2.
|
|
3486
|
+
"pino-pretty": "^10.2.3",
|
|
3487
3487
|
"proper-lockfile": "^4.1.2",
|
|
3488
3488
|
"semver": "^7.5.4",
|
|
3489
3489
|
"ts-retry-promise": "^0.7.1"
|
|
@@ -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",
|
|
@@ -5742,13 +5742,13 @@
|
|
|
5742
5742
|
}
|
|
5743
5743
|
},
|
|
5744
5744
|
"node_modules/@salesforce/plugin-trust": {
|
|
5745
|
-
"version": "2.6.
|
|
5746
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-2.6.
|
|
5747
|
-
"integrity": "sha512-
|
|
5745
|
+
"version": "2.6.20",
|
|
5746
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-trust/-/plugin-trust-2.6.20.tgz",
|
|
5747
|
+
"integrity": "sha512-pHakiNDLTX94an3xldTkvnNM+DCAc1r/7eTtdDmrRd7/6SxkySUQENFsJlIROar5kLq8oF8VCjKx8H57Qk5hSA==",
|
|
5748
5748
|
"license": "BSD-3-Clause",
|
|
5749
5749
|
"dependencies": {
|
|
5750
5750
|
"@oclif/core": "^2.15.0",
|
|
5751
|
-
"@salesforce/core": "^5.
|
|
5751
|
+
"@salesforce/core": "^5.3.9",
|
|
5752
5752
|
"@salesforce/sf-plugins-core": "^3.1.23",
|
|
5753
5753
|
"got": "^11",
|
|
5754
5754
|
"npm": "9.8.1",
|
|
@@ -5954,9 +5954,9 @@
|
|
|
5954
5954
|
}
|
|
5955
5955
|
},
|
|
5956
5956
|
"node_modules/@salesforce/sf-plugins-core/node_modules/@oclif/core": {
|
|
5957
|
-
"version": "3.
|
|
5958
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
5959
|
-
"integrity": "sha512-
|
|
5957
|
+
"version": "3.2.1",
|
|
5958
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.2.1.tgz",
|
|
5959
|
+
"integrity": "sha512-QY9csFjADbRa4RH7wcKSvIowaGI+Kc5oFCODYrKy9nj3x/RPGXG9KJ2848+9ZWJKUxv3KPHBX9CULHwvrwpVdg==",
|
|
5960
5960
|
"license": "MIT",
|
|
5961
5961
|
"dependencies": {
|
|
5962
5962
|
"ansi-escapes": "^4.3.2",
|
|
@@ -5966,7 +5966,7 @@
|
|
|
5966
5966
|
"clean-stack": "^3.0.1",
|
|
5967
5967
|
"cli-progress": "^3.12.0",
|
|
5968
5968
|
"debug": "^4.3.4",
|
|
5969
|
-
"ejs": "^3.1.
|
|
5969
|
+
"ejs": "^3.1.9",
|
|
5970
5970
|
"get-package-type": "^0.1.0",
|
|
5971
5971
|
"globby": "^11.1.0",
|
|
5972
5972
|
"hyperlinker": "^1.0.0",
|
|
@@ -6621,9 +6621,9 @@
|
|
|
6621
6621
|
}
|
|
6622
6622
|
},
|
|
6623
6623
|
"node_modules/@types/semver": {
|
|
6624
|
-
"version": "7.5.
|
|
6625
|
-
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.
|
|
6626
|
-
"integrity": "sha512-
|
|
6624
|
+
"version": "7.5.3",
|
|
6625
|
+
"resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.3.tgz",
|
|
6626
|
+
"integrity": "sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==",
|
|
6627
6627
|
"license": "MIT"
|
|
6628
6628
|
},
|
|
6629
6629
|
"node_modules/@types/shelljs": {
|
|
@@ -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",
|
|
@@ -20093,9 +20111,9 @@
|
|
|
20093
20111
|
}
|
|
20094
20112
|
},
|
|
20095
20113
|
"node_modules/oclif/node_modules/@oclif/core": {
|
|
20096
|
-
"version": "3.
|
|
20097
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.
|
|
20098
|
-
"integrity": "sha512-
|
|
20114
|
+
"version": "3.2.1",
|
|
20115
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.2.1.tgz",
|
|
20116
|
+
"integrity": "sha512-QY9csFjADbRa4RH7wcKSvIowaGI+Kc5oFCODYrKy9nj3x/RPGXG9KJ2848+9ZWJKUxv3KPHBX9CULHwvrwpVdg==",
|
|
20099
20117
|
"dev": true,
|
|
20100
20118
|
"license": "MIT",
|
|
20101
20119
|
"dependencies": {
|
|
@@ -20106,7 +20124,7 @@
|
|
|
20106
20124
|
"clean-stack": "^3.0.1",
|
|
20107
20125
|
"cli-progress": "^3.12.0",
|
|
20108
20126
|
"debug": "^4.3.4",
|
|
20109
|
-
"ejs": "^3.1.
|
|
20127
|
+
"ejs": "^3.1.9",
|
|
20110
20128
|
"get-package-type": "^0.1.0",
|
|
20111
20129
|
"globby": "^11.1.0",
|
|
20112
20130
|
"hyperlinker": "^1.0.0",
|
|
@@ -20920,9 +20938,9 @@
|
|
|
20920
20938
|
}
|
|
20921
20939
|
},
|
|
20922
20940
|
"node_modules/pino": {
|
|
20923
|
-
"version": "8.
|
|
20924
|
-
"resolved": "https://registry.npmjs.org/pino/-/pino-8.
|
|
20925
|
-
"integrity": "sha512-
|
|
20941
|
+
"version": "8.16.0",
|
|
20942
|
+
"resolved": "https://registry.npmjs.org/pino/-/pino-8.16.0.tgz",
|
|
20943
|
+
"integrity": "sha512-UUmvQ/7KTZt/vHjhRrnyS7h+J7qPBQnpG80V56xmIC+o9IqYmQOw/UIny9S9zYDfRBR0ClouCr464EkBMIT7Fw==",
|
|
20926
20944
|
"license": "MIT",
|
|
20927
20945
|
"dependencies": {
|
|
20928
20946
|
"atomic-sleep": "^1.0.0",
|
|
@@ -20934,7 +20952,7 @@
|
|
|
20934
20952
|
"quick-format-unescaped": "^4.0.3",
|
|
20935
20953
|
"real-require": "^0.2.0",
|
|
20936
20954
|
"safe-stable-stringify": "^2.3.1",
|
|
20937
|
-
"sonic-boom": "^3.
|
|
20955
|
+
"sonic-boom": "^3.7.0",
|
|
20938
20956
|
"thread-stream": "^2.0.0"
|
|
20939
20957
|
},
|
|
20940
20958
|
"bin": {
|
|
@@ -21010,9 +21028,9 @@
|
|
|
21010
21028
|
}
|
|
21011
21029
|
},
|
|
21012
21030
|
"node_modules/pino-pretty": {
|
|
21013
|
-
"version": "10.2.
|
|
21014
|
-
"resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-10.2.
|
|
21015
|
-
"integrity": "sha512-
|
|
21031
|
+
"version": "10.2.3",
|
|
21032
|
+
"resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-10.2.3.tgz",
|
|
21033
|
+
"integrity": "sha512-4jfIUc8TC1GPUfDyMSlW1STeORqkoxec71yhxIpLDQapUu8WOuoz2TTCoidrIssyz78LZC69whBMPIKCMbi3cw==",
|
|
21016
21034
|
"license": "MIT",
|
|
21017
21035
|
"dependencies": {
|
|
21018
21036
|
"colorette": "^2.0.7",
|
|
@@ -22790,9 +22808,9 @@
|
|
|
22790
22808
|
}
|
|
22791
22809
|
},
|
|
22792
22810
|
"node_modules/sonic-boom": {
|
|
22793
|
-
"version": "3.
|
|
22794
|
-
"resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.
|
|
22795
|
-
"integrity": "sha512-
|
|
22811
|
+
"version": "3.7.0",
|
|
22812
|
+
"resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.7.0.tgz",
|
|
22813
|
+
"integrity": "sha512-IudtNvSqA/ObjN97tfgNmOKyDOs4dNcg4cUUsHDebqsgb8wGBBwb31LIgShNO8fye0dFI52X1+tFoKKI6Rq1Gg==",
|
|
22796
22814
|
"license": "MIT",
|
|
22797
22815
|
"dependencies": {
|
|
22798
22816
|
"atomic-sleep": "^1.0.0"
|
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.3",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"jitPlugins": {
|
|
74
74
|
"@salesforce/plugin-custom-metadata": "2.2.7",
|
|
75
75
|
"@salesforce/plugin-community": "2.4.5",
|
|
76
|
-
"@salesforce/plugin-dev": "1.2.
|
|
76
|
+
"@salesforce/plugin-dev": "1.2.1",
|
|
77
77
|
"@salesforce/plugin-devops-center": "1.2.3",
|
|
78
78
|
"@salesforce/plugin-env": "2.2.6",
|
|
79
79
|
"@salesforce/plugin-functions": "1.22.3",
|
|
@@ -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.2",
|
|
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.
|
|
133
|
-
"@oclif/plugin-version": "2.0.
|
|
132
|
+
"@oclif/plugin-update": "4.1.2",
|
|
133
|
+
"@oclif/plugin-version": "2.0.3",
|
|
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,16 +140,16 @@
|
|
|
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",
|
|
149
149
|
"@salesforce/plugin-source": "2.10.40",
|
|
150
150
|
"@salesforce/plugin-telemetry": "2.3.6",
|
|
151
151
|
"@salesforce/plugin-templates": "55.5.14",
|
|
152
|
-
"@salesforce/plugin-trust": "2.6.
|
|
152
|
+
"@salesforce/plugin-trust": "2.6.20",
|
|
153
153
|
"@salesforce/plugin-user": "2.3.36",
|
|
154
154
|
"@salesforce/sf-plugins-core": "4.0.0",
|
|
155
155
|
"debug": "^4.3.4"
|