@salesforce/cli 2.19.5 → 2.19.6
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 +90 -24
- package/npm-shrinkwrap.json +22 -22
- package/oclif.manifest.json +365 -163
- 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.19.
|
|
27
|
+
@salesforce/cli/2.19.6 linux-x64 node-v20.9.0
|
|
28
28
|
$ sf --help [COMMAND]
|
|
29
29
|
USAGE
|
|
30
30
|
$ sf COMMAND
|
|
@@ -107,8 +107,10 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
|
|
|
107
107
|
- [`sf org create user`](#sf-org-create-user)
|
|
108
108
|
- [`sf org delete sandbox`](#sf-org-delete-sandbox)
|
|
109
109
|
- [`sf org delete scratch`](#sf-org-delete-scratch)
|
|
110
|
+
- [`sf org disable tracking`](#sf-org-disable-tracking)
|
|
110
111
|
- [`sf org display`](#sf-org-display)
|
|
111
112
|
- [`sf org display user`](#sf-org-display-user)
|
|
113
|
+
- [`sf org enable tracking`](#sf-org-enable-tracking)
|
|
112
114
|
- [`sf org generate password`](#sf-org-generate-password)
|
|
113
115
|
- [`sf org list`](#sf-org-list)
|
|
114
116
|
- [`sf org list auth`](#sf-org-list-auth)
|
|
@@ -2327,7 +2329,7 @@ FLAG DESCRIPTIONS
|
|
|
2327
2329
|
for a number of minutes, the client exits. Specify a longer wait time if timeouts occur frequently.
|
|
2328
2330
|
```
|
|
2329
2331
|
|
|
2330
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
2332
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/force/org/clone.ts)_
|
|
2331
2333
|
|
|
2332
2334
|
## `sf force org create`
|
|
2333
2335
|
|
|
@@ -2375,7 +2377,7 @@ EXAMPLES
|
|
|
2375
2377
|
$ sf force org create -t sandbox -f config/dev-sandbox-def.json -a MyDevSandbox -u prodOrg
|
|
2376
2378
|
```
|
|
2377
2379
|
|
|
2378
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
2380
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/force/org/create.ts)_
|
|
2379
2381
|
|
|
2380
2382
|
## `sf force org delete`
|
|
2381
2383
|
|
|
@@ -2407,7 +2409,7 @@ EXAMPLES
|
|
|
2407
2409
|
$ sf force org delete -u MyOrgAlias -p
|
|
2408
2410
|
```
|
|
2409
2411
|
|
|
2410
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
2412
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/force/org/delete.ts)_
|
|
2411
2413
|
|
|
2412
2414
|
## `sf force org status`
|
|
2413
2415
|
|
|
@@ -2445,7 +2447,7 @@ EXAMPLES
|
|
|
2445
2447
|
$ sf force org status --sandboxname DevSbx1 --wait 45 --setdefaultusername -u prodOrg
|
|
2446
2448
|
```
|
|
2447
2449
|
|
|
2448
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
2450
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/force/org/status.ts)_
|
|
2449
2451
|
|
|
2450
2452
|
## `sf force source deploy`
|
|
2451
2453
|
|
|
@@ -3637,7 +3639,7 @@ FLAG DESCRIPTIONS
|
|
|
3637
3639
|
sandbox.
|
|
3638
3640
|
```
|
|
3639
3641
|
|
|
3640
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
3642
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/create/sandbox.ts)_
|
|
3641
3643
|
|
|
3642
3644
|
## `sf org create scratch`
|
|
3643
3645
|
|
|
@@ -3790,7 +3792,7 @@ FLAG DESCRIPTIONS
|
|
|
3790
3792
|
Omit this flag to have Salesforce generate a unique username for your org.
|
|
3791
3793
|
```
|
|
3792
3794
|
|
|
3793
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
3795
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/create/scratch.ts)_
|
|
3794
3796
|
|
|
3795
3797
|
## `sf org create user`
|
|
3796
3798
|
|
|
@@ -3932,7 +3934,7 @@ EXAMPLES
|
|
|
3932
3934
|
$ sf org delete sandbox --target-org my-sandbox --no-prompt
|
|
3933
3935
|
```
|
|
3934
3936
|
|
|
3935
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
3937
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/delete/sandbox.ts)_
|
|
3936
3938
|
|
|
3937
3939
|
## `sf org delete scratch`
|
|
3938
3940
|
|
|
@@ -3974,7 +3976,38 @@ EXAMPLES
|
|
|
3974
3976
|
$ sf org delete scratch --target-org my-scratch-org --no-prompt
|
|
3975
3977
|
```
|
|
3976
3978
|
|
|
3977
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
3979
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/delete/scratch.ts)_
|
|
3980
|
+
|
|
3981
|
+
## `sf org disable tracking`
|
|
3982
|
+
|
|
3983
|
+
Disable source tracking in local auth file.
|
|
3984
|
+
|
|
3985
|
+
```
|
|
3986
|
+
USAGE
|
|
3987
|
+
$ sf org disable tracking -o <value> [--json]
|
|
3988
|
+
|
|
3989
|
+
FLAGS
|
|
3990
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
3991
|
+
|
|
3992
|
+
GLOBAL FLAGS
|
|
3993
|
+
--json Format output as json.
|
|
3994
|
+
|
|
3995
|
+
DESCRIPTION
|
|
3996
|
+
Disable source tracking in local auth file.
|
|
3997
|
+
|
|
3998
|
+
This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that no source
|
|
3999
|
+
tracking operations are executed when working with this org.
|
|
4000
|
+
|
|
4001
|
+
EXAMPLES
|
|
4002
|
+
Disable tracking on an org using an alias
|
|
4003
|
+
- sf org disable tracking -o someAlias
|
|
4004
|
+
Disable tracking on an org using a username
|
|
4005
|
+
- sf org disable tracking -o you@example.com
|
|
4006
|
+
Disable tracking on your default org
|
|
4007
|
+
- sf org disable tracking
|
|
4008
|
+
```
|
|
4009
|
+
|
|
4010
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/disable/tracking.ts)_
|
|
3978
4011
|
|
|
3979
4012
|
## `sf org display`
|
|
3980
4013
|
|
|
@@ -4017,7 +4050,7 @@ EXAMPLES
|
|
|
4017
4050
|
$ sf org display --target-org TestOrg1 --verbose
|
|
4018
4051
|
```
|
|
4019
4052
|
|
|
4020
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
4053
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/display.ts)_
|
|
4021
4054
|
|
|
4022
4055
|
## `sf org display user`
|
|
4023
4056
|
|
|
@@ -4056,6 +4089,39 @@ EXAMPLES
|
|
|
4056
4089
|
|
|
4057
4090
|
_See code: [@salesforce/plugin-user](https://github.com/salesforcecli/plugin-user/blob/3.0.4/src/commands/org/display/user.ts)_
|
|
4058
4091
|
|
|
4092
|
+
## `sf org enable tracking`
|
|
4093
|
+
|
|
4094
|
+
Enable source tracking in local auth file.
|
|
4095
|
+
|
|
4096
|
+
```
|
|
4097
|
+
USAGE
|
|
4098
|
+
$ sf org enable tracking -o <value> [--json]
|
|
4099
|
+
|
|
4100
|
+
FLAGS
|
|
4101
|
+
-o, --target-org=<value> (required) Username or alias of the target org.
|
|
4102
|
+
|
|
4103
|
+
GLOBAL FLAGS
|
|
4104
|
+
--json Format output as json.
|
|
4105
|
+
|
|
4106
|
+
DESCRIPTION
|
|
4107
|
+
Enable source tracking in local auth file.
|
|
4108
|
+
|
|
4109
|
+
This has no effect on the org. It stores the setting in the CLI's configuration file for this org so that source
|
|
4110
|
+
tracking operations are executed when working with this org.
|
|
4111
|
+
|
|
4112
|
+
This command will throw an error if the org does not support tracking.
|
|
4113
|
+
|
|
4114
|
+
EXAMPLES
|
|
4115
|
+
Enable tracking on an org using an alias
|
|
4116
|
+
- sf org enable tracking -o someAlias
|
|
4117
|
+
Enable tracking on an org using a username
|
|
4118
|
+
- sf org enable tracking -o you@example.com
|
|
4119
|
+
Enable tracking on your default org
|
|
4120
|
+
- sf org enable tracking
|
|
4121
|
+
```
|
|
4122
|
+
|
|
4123
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/enable/tracking.ts)_
|
|
4124
|
+
|
|
4059
4125
|
## `sf org generate password`
|
|
4060
4126
|
|
|
4061
4127
|
Generate a random password for scratch org users.
|
|
@@ -4156,7 +4222,7 @@ EXAMPLES
|
|
|
4156
4222
|
$ sf org list --clean
|
|
4157
4223
|
```
|
|
4158
4224
|
|
|
4159
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
4225
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/list.ts)_
|
|
4160
4226
|
|
|
4161
4227
|
## `sf org list auth`
|
|
4162
4228
|
|
|
@@ -4187,7 +4253,7 @@ EXAMPLES
|
|
|
4187
4253
|
$ sf org list auth
|
|
4188
4254
|
```
|
|
4189
4255
|
|
|
4190
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.
|
|
4256
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.7/src/commands/org/list/auth.ts)_
|
|
4191
4257
|
|
|
4192
4258
|
## `sf org list limits`
|
|
4193
4259
|
|
|
@@ -4289,7 +4355,7 @@ FLAG DESCRIPTIONS
|
|
|
4289
4355
|
Examples of metadata types that use folders are Dashboard, Document, EmailTemplate, and Report.
|
|
4290
4356
|
```
|
|
4291
4357
|
|
|
4292
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
4358
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/list/metadata.ts)_
|
|
4293
4359
|
|
|
4294
4360
|
## `sf org list metadata-types`
|
|
4295
4361
|
|
|
@@ -4342,7 +4408,7 @@ FLAG DESCRIPTIONS
|
|
|
4342
4408
|
Override the api version used for api requests made by this command
|
|
4343
4409
|
```
|
|
4344
4410
|
|
|
4345
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
4411
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/list/metadata-types.ts)_
|
|
4346
4412
|
|
|
4347
4413
|
## `sf org list sobject record-counts`
|
|
4348
4414
|
|
|
@@ -4460,7 +4526,7 @@ EXAMPLES
|
|
|
4460
4526
|
|
|
4461
4527
|
$ sf org login access-token --instance-url https://mycompany.my.salesforce.com
|
|
4462
4528
|
|
|
4463
|
-
Authorize the org without being prompted; you must have previously set the
|
|
4529
|
+
Authorize the org without being prompted; you must have previously set the SF_ACCESS_TOKEN environment variable to
|
|
4464
4530
|
the access token:
|
|
4465
4531
|
|
|
4466
4532
|
$ sf org login access-token --instance-url https://dev-hub.my.salesforce.com --no-prompt
|
|
@@ -4475,7 +4541,7 @@ FLAG DESCRIPTIONS
|
|
|
4475
4541
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
4476
4542
|
```
|
|
4477
4543
|
|
|
4478
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.
|
|
4544
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.7/src/commands/org/login/access-token.ts)_
|
|
4479
4545
|
|
|
4480
4546
|
## `sf org login device`
|
|
4481
4547
|
|
|
@@ -4534,7 +4600,7 @@ FLAG DESCRIPTIONS
|
|
|
4534
4600
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
4535
4601
|
```
|
|
4536
4602
|
|
|
4537
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.
|
|
4603
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.7/src/commands/org/login/device.ts)_
|
|
4538
4604
|
|
|
4539
4605
|
## `sf org login jwt`
|
|
4540
4606
|
|
|
@@ -4623,7 +4689,7 @@ FLAG DESCRIPTIONS
|
|
|
4623
4689
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
4624
4690
|
```
|
|
4625
4691
|
|
|
4626
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.
|
|
4692
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.7/src/commands/org/login/jwt.ts)_
|
|
4627
4693
|
|
|
4628
4694
|
## `sf org login sfdx-url`
|
|
4629
4695
|
|
|
@@ -4681,7 +4747,7 @@ EXAMPLES
|
|
|
4681
4747
|
$ sf org login sfdx-url --sfdx-url-file files/authFile.json --set-default --alias MyDefaultOrg
|
|
4682
4748
|
```
|
|
4683
4749
|
|
|
4684
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.
|
|
4750
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.7/src/commands/org/login/sfdx-url.ts)_
|
|
4685
4751
|
|
|
4686
4752
|
## `sf org login web`
|
|
4687
4753
|
|
|
@@ -4766,7 +4832,7 @@ FLAG DESCRIPTIONS
|
|
|
4766
4832
|
To specify a sandbox, set --instance-url to https://MyDomainName--SandboxName.sandbox.my.salesforce.com.
|
|
4767
4833
|
```
|
|
4768
4834
|
|
|
4769
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.
|
|
4835
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.7/src/commands/org/login/web.ts)_
|
|
4770
4836
|
|
|
4771
4837
|
## `sf org logout`
|
|
4772
4838
|
|
|
@@ -4826,7 +4892,7 @@ FLAG DESCRIPTIONS
|
|
|
4826
4892
|
All orgs includes Dev Hubs, sandboxes, DE orgs, and expired, deleted, and unknown-status scratch orgs.
|
|
4827
4893
|
```
|
|
4828
4894
|
|
|
4829
|
-
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.
|
|
4895
|
+
_See code: [@salesforce/plugin-auth](https://github.com/salesforcecli/plugin-auth/blob/3.0.7/src/commands/org/logout.ts)_
|
|
4830
4896
|
|
|
4831
4897
|
## `sf org open`
|
|
4832
4898
|
|
|
@@ -4891,7 +4957,7 @@ EXAMPLES
|
|
|
4891
4957
|
$ sf org open --source-file force-app/main/default/flows/Hello.flow-meta.xml
|
|
4892
4958
|
```
|
|
4893
4959
|
|
|
4894
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
4960
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/open.ts)_
|
|
4895
4961
|
|
|
4896
4962
|
## `sf org resume sandbox`
|
|
4897
4963
|
|
|
@@ -4953,7 +5019,7 @@ FLAG DESCRIPTIONS
|
|
|
4953
5019
|
returns the job ID. To resume checking the sandbox creation, rerun this command.
|
|
4954
5020
|
```
|
|
4955
5021
|
|
|
4956
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
5022
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/resume/sandbox.ts)_
|
|
4957
5023
|
|
|
4958
5024
|
## `sf org resume scratch`
|
|
4959
5025
|
|
|
@@ -4999,7 +5065,7 @@ FLAG DESCRIPTIONS
|
|
|
4999
5065
|
The job ID is valid for 24 hours after you start the scratch org creation.
|
|
5000
5066
|
```
|
|
5001
5067
|
|
|
5002
|
-
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.
|
|
5068
|
+
_See code: [@salesforce/plugin-org](https://github.com/salesforcecli/plugin-org/blob/3.0.6/src/commands/org/resume/scratch.ts)_
|
|
5003
5069
|
|
|
5004
5070
|
## `sf plugins`
|
|
5005
5071
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.19.
|
|
3
|
+
"version": "2.19.6",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.19.
|
|
9
|
+
"version": "2.19.6",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"@oclif/plugin-which": "3.0.10",
|
|
24
24
|
"@salesforce/core": "^6.1.3",
|
|
25
25
|
"@salesforce/plugin-apex": "3.0.6",
|
|
26
|
-
"@salesforce/plugin-auth": "3.0.
|
|
26
|
+
"@salesforce/plugin-auth": "3.0.7",
|
|
27
27
|
"@salesforce/plugin-data": "3.0.1",
|
|
28
28
|
"@salesforce/plugin-deploy-retrieve": "2.1.3",
|
|
29
29
|
"@salesforce/plugin-info": "3.0.3",
|
|
30
30
|
"@salesforce/plugin-limits": "3.0.2",
|
|
31
31
|
"@salesforce/plugin-login": "2.0.5",
|
|
32
32
|
"@salesforce/plugin-marketplace": "1.0.6",
|
|
33
|
-
"@salesforce/plugin-org": "3.0.
|
|
33
|
+
"@salesforce/plugin-org": "3.0.6",
|
|
34
34
|
"@salesforce/plugin-schema": "3.0.4",
|
|
35
35
|
"@salesforce/plugin-settings": "2.0.6",
|
|
36
36
|
"@salesforce/plugin-sobject": "1.0.2",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@salesforce/plugin-templates": "56.0.2",
|
|
40
40
|
"@salesforce/plugin-trust": "3.0.4",
|
|
41
41
|
"@salesforce/plugin-user": "3.0.4",
|
|
42
|
-
"@salesforce/sf-plugins-core": "5.0.
|
|
42
|
+
"@salesforce/sf-plugins-core": "5.0.3",
|
|
43
43
|
"debug": "^4.3.4"
|
|
44
44
|
},
|
|
45
45
|
"bin": {
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@typescript-eslint/parser": "^5.62.0",
|
|
59
59
|
"aws-sdk": "^2.1499.0",
|
|
60
60
|
"chai": "^4.3.10",
|
|
61
|
-
"eslint": "^8.
|
|
61
|
+
"eslint": "^8.54.0",
|
|
62
62
|
"eslint-config-oclif": "^5",
|
|
63
63
|
"eslint-config-oclif-typescript": "^2.0.1",
|
|
64
64
|
"eslint-config-prettier": "^8.10.0",
|
|
@@ -1247,9 +1247,9 @@
|
|
|
1247
1247
|
"license": "MIT"
|
|
1248
1248
|
},
|
|
1249
1249
|
"node_modules/@eslint/js": {
|
|
1250
|
-
"version": "8.
|
|
1251
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.
|
|
1252
|
-
"integrity": "sha512-
|
|
1250
|
+
"version": "8.54.0",
|
|
1251
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.54.0.tgz",
|
|
1252
|
+
"integrity": "sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ==",
|
|
1253
1253
|
"dev": true,
|
|
1254
1254
|
"license": "MIT",
|
|
1255
1255
|
"engines": {
|
|
@@ -7155,9 +7155,9 @@
|
|
|
7155
7155
|
}
|
|
7156
7156
|
},
|
|
7157
7157
|
"node_modules/@salesforce/plugin-auth": {
|
|
7158
|
-
"version": "3.0.
|
|
7159
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.0.
|
|
7160
|
-
"integrity": "sha512-
|
|
7158
|
+
"version": "3.0.7",
|
|
7159
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-auth/-/plugin-auth-3.0.7.tgz",
|
|
7160
|
+
"integrity": "sha512-4fHg4ZyMXpJUbH6AGhDdeioF6ATMHoye7QHjcdIELZ8T/ETAaFnrspKiWey/XosFmnZoOMqpuNNy2xwF6zbdsA==",
|
|
7161
7161
|
"license": "BSD-3-Clause",
|
|
7162
7162
|
"dependencies": {
|
|
7163
7163
|
"@oclif/core": "^3.10.8",
|
|
@@ -7801,9 +7801,9 @@
|
|
|
7801
7801
|
}
|
|
7802
7802
|
},
|
|
7803
7803
|
"node_modules/@salesforce/plugin-org": {
|
|
7804
|
-
"version": "3.0.
|
|
7805
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-3.0.
|
|
7806
|
-
"integrity": "sha512
|
|
7804
|
+
"version": "3.0.6",
|
|
7805
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-org/-/plugin-org-3.0.6.tgz",
|
|
7806
|
+
"integrity": "sha512-/NjyYRxD3xvgVhSU7EnPtcFVDjcLMwAsyIofHLdO8PoPPy/zsp2QXxRLW5H+YCW3BOnHo+/hRGRYMeaai2N5pg==",
|
|
7807
7807
|
"license": "BSD-3-Clause",
|
|
7808
7808
|
"dependencies": {
|
|
7809
7809
|
"@oclif/core": "^3.10.8",
|
|
@@ -8454,9 +8454,9 @@
|
|
|
8454
8454
|
"license": "ISC"
|
|
8455
8455
|
},
|
|
8456
8456
|
"node_modules/@salesforce/sf-plugins-core": {
|
|
8457
|
-
"version": "5.0.
|
|
8458
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.
|
|
8459
|
-
"integrity": "sha512-
|
|
8457
|
+
"version": "5.0.3",
|
|
8458
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-5.0.3.tgz",
|
|
8459
|
+
"integrity": "sha512-D+RCUzrYIWpJakNfxtHXJd6LZr6bK4gA4e7jLPR1G1FmDFss13PT7hOdFRxmAqTPbcp1jf65vwYZzu5nbqzmvQ==",
|
|
8460
8460
|
"license": "BSD-3-Clause",
|
|
8461
8461
|
"dependencies": {
|
|
8462
8462
|
"@oclif/core": "^3.11.0",
|
|
@@ -12711,16 +12711,16 @@
|
|
|
12711
12711
|
}
|
|
12712
12712
|
},
|
|
12713
12713
|
"node_modules/eslint": {
|
|
12714
|
-
"version": "8.
|
|
12715
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.
|
|
12716
|
-
"integrity": "sha512-
|
|
12714
|
+
"version": "8.54.0",
|
|
12715
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.54.0.tgz",
|
|
12716
|
+
"integrity": "sha512-NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA==",
|
|
12717
12717
|
"dev": true,
|
|
12718
12718
|
"license": "MIT",
|
|
12719
12719
|
"dependencies": {
|
|
12720
12720
|
"@eslint-community/eslint-utils": "^4.2.0",
|
|
12721
12721
|
"@eslint-community/regexpp": "^4.6.1",
|
|
12722
12722
|
"@eslint/eslintrc": "^2.1.3",
|
|
12723
|
-
"@eslint/js": "8.
|
|
12723
|
+
"@eslint/js": "8.54.0",
|
|
12724
12724
|
"@humanwhocodes/config-array": "^0.11.13",
|
|
12725
12725
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
12726
12726
|
"@nodelib/fs.walk": "^1.2.8",
|
package/oclif.manifest.json
CHANGED
|
@@ -1145,163 +1145,227 @@
|
|
|
1145
1145
|
]
|
|
1146
1146
|
},
|
|
1147
1147
|
"dev:audit:messages": {
|
|
1148
|
-
"id": "dev:audit:messages",
|
|
1149
|
-
"summary": "Audit messages in a plugin's messages directory to locate unused messages and missing messages that have references in source code.",
|
|
1150
|
-
"strict": true,
|
|
1151
|
-
"pluginName": "@salesforce/plugin-dev",
|
|
1152
|
-
"pluginAlias": "@salesforce/plugin-dev",
|
|
1153
|
-
"pluginType": "jit",
|
|
1154
1148
|
"aliases": [],
|
|
1149
|
+
"args": {},
|
|
1155
1150
|
"examples": [
|
|
1156
1151
|
"Audit messages using default directories:\n<%= config.bin %> <%= command.id %>",
|
|
1157
1152
|
"Audit messages in the \"messages\" directory in the current working directory; the plugin's source directory is in \"src\":\n<%= config.bin %> <%= command.id %> --messages-dir ./messages --source-dir ./src"
|
|
1158
1153
|
],
|
|
1159
1154
|
"flags": {
|
|
1160
1155
|
"json": {
|
|
1161
|
-
"name": "json",
|
|
1162
|
-
"type": "boolean",
|
|
1163
1156
|
"description": "Format output as json.",
|
|
1164
1157
|
"helpGroup": "GLOBAL",
|
|
1165
|
-
"
|
|
1158
|
+
"name": "json",
|
|
1159
|
+
"allowNo": false,
|
|
1160
|
+
"type": "boolean"
|
|
1166
1161
|
},
|
|
1167
1162
|
"project-dir": {
|
|
1168
|
-
"
|
|
1169
|
-
|
|
1163
|
+
"aliases": [
|
|
1164
|
+
"projectdir"
|
|
1165
|
+
],
|
|
1170
1166
|
"char": "p",
|
|
1167
|
+
"name": "project-dir",
|
|
1171
1168
|
"summary": "Location of the project where messages are to be audited.",
|
|
1172
|
-
"multiple": false,
|
|
1173
1169
|
"default": ".",
|
|
1174
|
-
"
|
|
1175
|
-
|
|
1176
|
-
|
|
1170
|
+
"hasDynamicHelp": false,
|
|
1171
|
+
"multiple": false,
|
|
1172
|
+
"type": "option"
|
|
1177
1173
|
},
|
|
1178
1174
|
"messages-dir": {
|
|
1179
|
-
"
|
|
1180
|
-
|
|
1175
|
+
"aliases": [
|
|
1176
|
+
"messagesdir"
|
|
1177
|
+
],
|
|
1181
1178
|
"char": "m",
|
|
1182
|
-
"summary": "Directory that contains the plugin's message files.",
|
|
1183
1179
|
"description": "The default is the \"messages\" directory in the current working directory.",
|
|
1184
|
-
"
|
|
1180
|
+
"name": "messages-dir",
|
|
1181
|
+
"summary": "Directory that contains the plugin's message files.",
|
|
1185
1182
|
"default": "messages",
|
|
1186
|
-
"
|
|
1187
|
-
|
|
1188
|
-
|
|
1183
|
+
"hasDynamicHelp": false,
|
|
1184
|
+
"multiple": false,
|
|
1185
|
+
"type": "option"
|
|
1189
1186
|
},
|
|
1190
1187
|
"source-dir": {
|
|
1191
|
-
"
|
|
1192
|
-
|
|
1188
|
+
"aliases": [
|
|
1189
|
+
"sourcedir"
|
|
1190
|
+
],
|
|
1193
1191
|
"char": "s",
|
|
1194
|
-
"summary": "Directory that contains the plugin's source code.",
|
|
1195
1192
|
"description": "The default is the \"src\" directory in the current working directory.",
|
|
1196
|
-
"
|
|
1193
|
+
"name": "source-dir",
|
|
1194
|
+
"summary": "Directory that contains the plugin's source code.",
|
|
1197
1195
|
"default": "src",
|
|
1198
|
-
"
|
|
1199
|
-
|
|
1200
|
-
|
|
1196
|
+
"hasDynamicHelp": false,
|
|
1197
|
+
"multiple": false,
|
|
1198
|
+
"type": "option"
|
|
1201
1199
|
}
|
|
1202
1200
|
},
|
|
1203
|
-
"
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
"id": "dev:configure:repo",
|
|
1207
|
-
"summary": "Configure a GitHub repo for the GitHub Actions pipeline.",
|
|
1208
|
-
"description": "Sets up labels and exempts the CLI bot for branch protection and PR rules.",
|
|
1209
|
-
"strict": true,
|
|
1210
|
-
"pluginName": "@salesforce/plugin-dev",
|
|
1201
|
+
"hasDynamicHelp": false,
|
|
1202
|
+
"hiddenAliases": [],
|
|
1203
|
+
"id": "dev:audit:messages",
|
|
1211
1204
|
"pluginAlias": "@salesforce/plugin-dev",
|
|
1205
|
+
"pluginName": "@salesforce/plugin-dev",
|
|
1212
1206
|
"pluginType": "jit",
|
|
1207
|
+
"strict": true,
|
|
1208
|
+
"summary": "Audit messages in a plugin's messages directory to locate unused messages and missing messages that have references in source code.",
|
|
1209
|
+
"enableJsonFlag": true,
|
|
1210
|
+
"SF_ENV": "SF_ENV",
|
|
1211
|
+
"isESM": true,
|
|
1212
|
+
"relativePath": [
|
|
1213
|
+
"lib",
|
|
1214
|
+
"commands",
|
|
1215
|
+
"dev",
|
|
1216
|
+
"audit",
|
|
1217
|
+
"messages.js"
|
|
1218
|
+
],
|
|
1219
|
+
"aliasPermutations": [],
|
|
1220
|
+
"permutations": [
|
|
1221
|
+
"dev:audit:messages",
|
|
1222
|
+
"audit:dev:messages",
|
|
1223
|
+
"audit:messages:dev",
|
|
1224
|
+
"dev:messages:audit",
|
|
1225
|
+
"messages:dev:audit",
|
|
1226
|
+
"messages:audit:dev"
|
|
1227
|
+
]
|
|
1228
|
+
},
|
|
1229
|
+
"dev:configure:repo": {
|
|
1213
1230
|
"aliases": [],
|
|
1231
|
+
"args": {},
|
|
1232
|
+
"description": "Sets up labels and exempts the CLI bot for branch protection and PR rules.",
|
|
1214
1233
|
"examples": [
|
|
1215
1234
|
"Configure the repo \"testPackageRelease\", with owner \"salesforcecli\", for GitHub Actions.\n<%= config.bin %> <%= command.id %> --repository salesforcecli/testPackageRelease"
|
|
1216
1235
|
],
|
|
1217
1236
|
"flags": {
|
|
1218
1237
|
"json": {
|
|
1219
|
-
"name": "json",
|
|
1220
|
-
"type": "boolean",
|
|
1221
1238
|
"description": "Format output as json.",
|
|
1222
1239
|
"helpGroup": "GLOBAL",
|
|
1223
|
-
"
|
|
1240
|
+
"name": "json",
|
|
1241
|
+
"allowNo": false,
|
|
1242
|
+
"type": "boolean"
|
|
1224
1243
|
},
|
|
1225
1244
|
"repository": {
|
|
1226
|
-
"name": "repository",
|
|
1227
|
-
"type": "option",
|
|
1228
1245
|
"char": "r",
|
|
1229
|
-
"
|
|
1246
|
+
"name": "repository",
|
|
1230
1247
|
"required": true,
|
|
1231
|
-
"
|
|
1248
|
+
"summary": "GitHub owner/repo for which you want to configure GitHub Actions.",
|
|
1249
|
+
"hasDynamicHelp": false,
|
|
1250
|
+
"multiple": false,
|
|
1251
|
+
"type": "option"
|
|
1232
1252
|
},
|
|
1233
1253
|
"dry-run": {
|
|
1234
|
-
"
|
|
1235
|
-
|
|
1254
|
+
"aliases": [
|
|
1255
|
+
"dryrun"
|
|
1256
|
+
],
|
|
1236
1257
|
"char": "d",
|
|
1258
|
+
"name": "dry-run",
|
|
1237
1259
|
"summary": "Make no changes.",
|
|
1238
1260
|
"allowNo": false,
|
|
1239
|
-
"
|
|
1240
|
-
"dryrun"
|
|
1241
|
-
]
|
|
1261
|
+
"type": "boolean"
|
|
1242
1262
|
},
|
|
1243
1263
|
"bot": {
|
|
1244
|
-
"name": "bot",
|
|
1245
|
-
"type": "option",
|
|
1246
1264
|
"char": "b",
|
|
1265
|
+
"name": "bot",
|
|
1247
1266
|
"summary": "GitHub login/username for the bot.",
|
|
1267
|
+
"default": "SF-CLI-BOT",
|
|
1268
|
+
"hasDynamicHelp": false,
|
|
1248
1269
|
"multiple": false,
|
|
1249
|
-
"
|
|
1270
|
+
"type": "option"
|
|
1250
1271
|
}
|
|
1251
1272
|
},
|
|
1252
|
-
"
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
"id": "dev:configure:secrets",
|
|
1256
|
-
"summary": "Ensures a GitHub repo has correct access to secrets based on its workflows.",
|
|
1257
|
-
"description": "Inspects a repo's yaml files and verifies that secrets required are available for the repo (either set at the repo level or shared via organization-level secrets).\n\nThis command requires scope:admin permissions to inspect the org secrets and admin access to the repo to inspect the repo secrets.",
|
|
1258
|
-
"strict": true,
|
|
1259
|
-
"pluginName": "@salesforce/plugin-dev",
|
|
1273
|
+
"hasDynamicHelp": false,
|
|
1274
|
+
"hiddenAliases": [],
|
|
1275
|
+
"id": "dev:configure:repo",
|
|
1260
1276
|
"pluginAlias": "@salesforce/plugin-dev",
|
|
1277
|
+
"pluginName": "@salesforce/plugin-dev",
|
|
1261
1278
|
"pluginType": "jit",
|
|
1279
|
+
"strict": true,
|
|
1280
|
+
"summary": "Configure a GitHub repo for the GitHub Actions pipeline.",
|
|
1281
|
+
"enableJsonFlag": true,
|
|
1282
|
+
"SF_ENV": "SF_ENV",
|
|
1283
|
+
"isESM": true,
|
|
1284
|
+
"relativePath": [
|
|
1285
|
+
"lib",
|
|
1286
|
+
"commands",
|
|
1287
|
+
"dev",
|
|
1288
|
+
"configure",
|
|
1289
|
+
"repo.js"
|
|
1290
|
+
],
|
|
1291
|
+
"aliasPermutations": [],
|
|
1292
|
+
"permutations": [
|
|
1293
|
+
"dev:configure:repo",
|
|
1294
|
+
"configure:dev:repo",
|
|
1295
|
+
"configure:repo:dev",
|
|
1296
|
+
"dev:repo:configure",
|
|
1297
|
+
"repo:dev:configure",
|
|
1298
|
+
"repo:configure:dev"
|
|
1299
|
+
]
|
|
1300
|
+
},
|
|
1301
|
+
"dev:configure:secrets": {
|
|
1262
1302
|
"aliases": [],
|
|
1303
|
+
"args": {},
|
|
1304
|
+
"description": "Inspects a repo's yaml files and verifies that secrets required are available for the repo (either set at the repo level or shared via organization-level secrets).\n\nThis command requires scope:admin permissions to inspect the org secrets and admin access to the repo to inspect the repo secrets.",
|
|
1263
1305
|
"examples": [
|
|
1264
1306
|
"Ensure secrets access for the repo \"testPackageRelease\", with owner \"salesforcecli\":",
|
|
1265
1307
|
"<%= config.bin %> <%= command.id %> --repository salesforcecli/testPackageRelease"
|
|
1266
1308
|
],
|
|
1267
1309
|
"flags": {
|
|
1268
1310
|
"json": {
|
|
1269
|
-
"name": "json",
|
|
1270
|
-
"type": "boolean",
|
|
1271
1311
|
"description": "Format output as json.",
|
|
1272
1312
|
"helpGroup": "GLOBAL",
|
|
1273
|
-
"
|
|
1313
|
+
"name": "json",
|
|
1314
|
+
"allowNo": false,
|
|
1315
|
+
"type": "boolean"
|
|
1274
1316
|
},
|
|
1275
1317
|
"repository": {
|
|
1276
|
-
"name": "repository",
|
|
1277
|
-
"type": "option",
|
|
1278
1318
|
"char": "r",
|
|
1279
|
-
"
|
|
1319
|
+
"name": "repository",
|
|
1280
1320
|
"required": true,
|
|
1281
|
-
"
|
|
1321
|
+
"summary": "Github owner/repo.",
|
|
1322
|
+
"hasDynamicHelp": false,
|
|
1323
|
+
"multiple": false,
|
|
1324
|
+
"type": "option"
|
|
1282
1325
|
},
|
|
1283
1326
|
"dry-run": {
|
|
1284
|
-
"
|
|
1285
|
-
|
|
1327
|
+
"aliases": [
|
|
1328
|
+
"dryrun"
|
|
1329
|
+
],
|
|
1286
1330
|
"char": "d",
|
|
1331
|
+
"name": "dry-run",
|
|
1287
1332
|
"summary": "Make no changes.",
|
|
1288
1333
|
"allowNo": false,
|
|
1289
|
-
"
|
|
1290
|
-
"dryrun"
|
|
1291
|
-
]
|
|
1334
|
+
"type": "boolean"
|
|
1292
1335
|
}
|
|
1293
1336
|
},
|
|
1294
|
-
"
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
"id": "dev:convert:messages",
|
|
1298
|
-
"summary": "Convert a .json messages file into Markdown.",
|
|
1299
|
-
"description": "Preserves the filename and the original messages file, then creates a new file with the Markdown extension and standard headers for the command and flag summaries, descriptions, and so on. After you review the new Markdown file, delete the old .json file.",
|
|
1300
|
-
"strict": true,
|
|
1301
|
-
"pluginName": "@salesforce/plugin-dev",
|
|
1337
|
+
"hasDynamicHelp": false,
|
|
1338
|
+
"hiddenAliases": [],
|
|
1339
|
+
"id": "dev:configure:secrets",
|
|
1302
1340
|
"pluginAlias": "@salesforce/plugin-dev",
|
|
1341
|
+
"pluginName": "@salesforce/plugin-dev",
|
|
1303
1342
|
"pluginType": "jit",
|
|
1343
|
+
"strict": true,
|
|
1344
|
+
"summary": "Ensures a GitHub repo has correct access to secrets based on its workflows.",
|
|
1345
|
+
"enableJsonFlag": true,
|
|
1346
|
+
"SF_ENV": "SF_ENV",
|
|
1347
|
+
"isESM": true,
|
|
1348
|
+
"relativePath": [
|
|
1349
|
+
"lib",
|
|
1350
|
+
"commands",
|
|
1351
|
+
"dev",
|
|
1352
|
+
"configure",
|
|
1353
|
+
"secrets.js"
|
|
1354
|
+
],
|
|
1355
|
+
"aliasPermutations": [],
|
|
1356
|
+
"permutations": [
|
|
1357
|
+
"dev:configure:secrets",
|
|
1358
|
+
"configure:dev:secrets",
|
|
1359
|
+
"configure:secrets:dev",
|
|
1360
|
+
"dev:secrets:configure",
|
|
1361
|
+
"secrets:dev:configure",
|
|
1362
|
+
"secrets:configure:dev"
|
|
1363
|
+
]
|
|
1364
|
+
},
|
|
1365
|
+
"dev:convert:messages": {
|
|
1304
1366
|
"aliases": [],
|
|
1367
|
+
"args": {},
|
|
1368
|
+
"description": "Preserves the filename and the original messages file, then creates a new file with the Markdown extension and standard headers for the command and flag summaries, descriptions, and so on. After you review the new Markdown file, delete the old .json file.",
|
|
1305
1369
|
"examples": [
|
|
1306
1370
|
"Convert the my-command.json message file into my-command.md with the standard messages headers:\n<%= config.bin %> <%= command.id %> --filename my-command.json",
|
|
1307
1371
|
"Similar to previous example, but specify the plugin project directory:",
|
|
@@ -1309,176 +1373,314 @@
|
|
|
1309
1373
|
],
|
|
1310
1374
|
"flags": {
|
|
1311
1375
|
"json": {
|
|
1312
|
-
"name": "json",
|
|
1313
|
-
"type": "boolean",
|
|
1314
1376
|
"description": "Format output as json.",
|
|
1315
1377
|
"helpGroup": "GLOBAL",
|
|
1316
|
-
"
|
|
1378
|
+
"name": "json",
|
|
1379
|
+
"allowNo": false,
|
|
1380
|
+
"type": "boolean"
|
|
1317
1381
|
},
|
|
1318
1382
|
"project-dir": {
|
|
1319
|
-
"
|
|
1320
|
-
|
|
1383
|
+
"aliases": [
|
|
1384
|
+
"projectdir"
|
|
1385
|
+
],
|
|
1321
1386
|
"char": "p",
|
|
1387
|
+
"name": "project-dir",
|
|
1322
1388
|
"summary": "Location of the project whose messages are to be converted.",
|
|
1323
|
-
"multiple": false,
|
|
1324
1389
|
"default": ".",
|
|
1325
|
-
"
|
|
1326
|
-
|
|
1327
|
-
|
|
1390
|
+
"hasDynamicHelp": false,
|
|
1391
|
+
"multiple": false,
|
|
1392
|
+
"type": "option"
|
|
1328
1393
|
},
|
|
1329
1394
|
"file-name": {
|
|
1330
|
-
"
|
|
1331
|
-
|
|
1395
|
+
"aliases": [
|
|
1396
|
+
"filename"
|
|
1397
|
+
],
|
|
1332
1398
|
"char": "f",
|
|
1333
|
-
"
|
|
1399
|
+
"name": "file-name",
|
|
1334
1400
|
"required": true,
|
|
1401
|
+
"summary": "Filename to convert.",
|
|
1402
|
+
"hasDynamicHelp": false,
|
|
1335
1403
|
"multiple": true,
|
|
1336
|
-
"
|
|
1337
|
-
"filename"
|
|
1338
|
-
]
|
|
1404
|
+
"type": "option"
|
|
1339
1405
|
}
|
|
1340
1406
|
},
|
|
1341
|
-
"
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
"id": "dev:convert:script",
|
|
1345
|
-
"summary": "Convert a script file that contains deprecated sfdx-style commands to use the new sf-style commands instead.",
|
|
1346
|
-
"description": "Important: Use this command only to get started on the sfdx->sf script migration. We don't guarantee that the new sf-style command replacements work correctly or as you expect. You must test, and probably update, the new script before putting it into production. We also don't guarantee that the JSON results are the same as before. \n\nThis command can convert a large part of your script, but possibly not all. There are some sfdx-style commands that don't have an obvious sf-style equivalent. In this case, this command doesn't replace the sfdx-style command but instead adds a comment to remind you that you must convert it manually. See the Salesforce CLI Command Reference for migration information about each deprecated sfdx-style command: https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference.htm.\n\nThis command is interactive; as it scans your script, it prompts you when it finds an sfdx-style command or flag and asks if you want to convert it to the displayed suggestion. The command doesn't update the script file directly; rather, it creates a new file whose name is the original name but with \"-converted\" appended to it. The script replaces all instances of \"sfdx\" with \"sf\". For each prompt you answer \"y\" to, the command replaces the sfdx-style names with their equivalent sf-style ones. For example, \"sfdx force:apex:execute --targetusername myscratch\" is replaced with \"sf apex run --target-org myscratch\".",
|
|
1347
|
-
"strict": true,
|
|
1348
|
-
"pluginName": "@salesforce/plugin-dev",
|
|
1407
|
+
"hasDynamicHelp": false,
|
|
1408
|
+
"hiddenAliases": [],
|
|
1409
|
+
"id": "dev:convert:messages",
|
|
1349
1410
|
"pluginAlias": "@salesforce/plugin-dev",
|
|
1411
|
+
"pluginName": "@salesforce/plugin-dev",
|
|
1350
1412
|
"pluginType": "jit",
|
|
1413
|
+
"strict": true,
|
|
1414
|
+
"summary": "Convert a .json messages file into Markdown.",
|
|
1415
|
+
"enableJsonFlag": true,
|
|
1416
|
+
"SF_ENV": "SF_ENV",
|
|
1417
|
+
"isESM": true,
|
|
1418
|
+
"relativePath": [
|
|
1419
|
+
"lib",
|
|
1420
|
+
"commands",
|
|
1421
|
+
"dev",
|
|
1422
|
+
"convert",
|
|
1423
|
+
"messages.js"
|
|
1424
|
+
],
|
|
1425
|
+
"aliasPermutations": [],
|
|
1426
|
+
"permutations": [
|
|
1427
|
+
"dev:convert:messages",
|
|
1428
|
+
"convert:dev:messages",
|
|
1429
|
+
"convert:messages:dev",
|
|
1430
|
+
"dev:messages:convert",
|
|
1431
|
+
"messages:dev:convert",
|
|
1432
|
+
"messages:convert:dev"
|
|
1433
|
+
]
|
|
1434
|
+
},
|
|
1435
|
+
"dev:convert:script": {
|
|
1351
1436
|
"aliases": [],
|
|
1437
|
+
"args": {},
|
|
1438
|
+
"description": "Important: Use this command only to get started on the sfdx->sf script migration. We don't guarantee that the new sf-style command replacements work correctly or as you expect. You must test, and probably update, the new script before putting it into production. We also don't guarantee that the JSON results are the same as before. \n\nThis command can convert a large part of your script, but possibly not all. There are some sfdx-style commands that don't have an obvious sf-style equivalent. In this case, this command doesn't replace the sfdx-style command but instead adds a comment to remind you that you must convert it manually. See the Salesforce CLI Command Reference for migration information about each deprecated sfdx-style command: https://developer.salesforce.com/docs/atlas.en-us.sfdx_cli_reference.meta/sfdx_cli_reference/cli_reference.htm.\n\nThis command is interactive; as it scans your script, it prompts you when it finds an sfdx-style command or flag and asks if you want to convert it to the displayed suggestion. The command doesn't update the script file directly; rather, it creates a new file whose name is the original name but with \"-converted\" appended to it. The script replaces all instances of \"sfdx\" with \"sf\". For each prompt you answer \"y\" to, the command replaces the sfdx-style names with their equivalent sf-style ones. For example, \"sfdx force:apex:execute --targetusername myscratch\" is replaced with \"sf apex run --target-org myscratch\".",
|
|
1352
1439
|
"examples": [
|
|
1353
1440
|
"Convert the YAML file called \"myScript.yml\" located in the current directory; the new file that contains the replacements is called \"myScript-converted.yml\":\n<%= config.bin %> <%= command.id %> --script ./myScript.yml"
|
|
1354
1441
|
],
|
|
1355
1442
|
"flags": {
|
|
1356
1443
|
"json": {
|
|
1357
|
-
"name": "json",
|
|
1358
|
-
"type": "boolean",
|
|
1359
1444
|
"description": "Format output as json.",
|
|
1360
1445
|
"helpGroup": "GLOBAL",
|
|
1361
|
-
"
|
|
1446
|
+
"name": "json",
|
|
1447
|
+
"allowNo": false,
|
|
1448
|
+
"type": "boolean"
|
|
1362
1449
|
},
|
|
1363
1450
|
"script": {
|
|
1364
|
-
"name": "script",
|
|
1365
|
-
"type": "option",
|
|
1366
1451
|
"char": "s",
|
|
1367
|
-
"
|
|
1452
|
+
"name": "script",
|
|
1368
1453
|
"required": true,
|
|
1369
|
-
"
|
|
1454
|
+
"summary": "Filepath to the script you want to convert.",
|
|
1455
|
+
"hasDynamicHelp": false,
|
|
1456
|
+
"multiple": false,
|
|
1457
|
+
"type": "option"
|
|
1370
1458
|
},
|
|
1371
1459
|
"no-prompt": {
|
|
1460
|
+
"hidden": true,
|
|
1372
1461
|
"name": "no-prompt",
|
|
1373
|
-
"type": "boolean",
|
|
1374
1462
|
"summary": "Don't prompt for suggested replacements.",
|
|
1375
|
-
"
|
|
1376
|
-
"
|
|
1463
|
+
"allowNo": false,
|
|
1464
|
+
"type": "boolean"
|
|
1377
1465
|
}
|
|
1378
1466
|
},
|
|
1379
|
-
"
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
"id": "dev:generate:command",
|
|
1383
|
-
"summary": "Generate a new sf command.",
|
|
1384
|
-
"description": "You must run this command from within a plugin directory, such as the directory created with the \"sf dev generate plugin\" command.\n\nThe command generates basic source files, messages (\\*.md), and test files for your new command. The Typescript files contain import statements for the minimum required Salesforce libraries, and scaffold some basic code. The new type names come from the value you passed to the --name flag.\n\nThe command updates the package.json file, so if it detects conflicts with the existing file, you're prompted whether you want to overwrite the file. There are a number of package.json updates required for a new command, so we recommend you answer \"y\" so the command takes care of them all. If you answer \"n\", you must update the package.json file manually.",
|
|
1385
|
-
"strict": true,
|
|
1386
|
-
"pluginName": "@salesforce/plugin-dev",
|
|
1467
|
+
"hasDynamicHelp": false,
|
|
1468
|
+
"hiddenAliases": [],
|
|
1469
|
+
"id": "dev:convert:script",
|
|
1387
1470
|
"pluginAlias": "@salesforce/plugin-dev",
|
|
1471
|
+
"pluginName": "@salesforce/plugin-dev",
|
|
1388
1472
|
"pluginType": "jit",
|
|
1473
|
+
"strict": true,
|
|
1474
|
+
"summary": "Convert a script file that contains deprecated sfdx-style commands to use the new sf-style commands instead.",
|
|
1475
|
+
"enableJsonFlag": true,
|
|
1476
|
+
"SF_ENV": "SF_ENV",
|
|
1477
|
+
"isESM": true,
|
|
1478
|
+
"relativePath": [
|
|
1479
|
+
"lib",
|
|
1480
|
+
"commands",
|
|
1481
|
+
"dev",
|
|
1482
|
+
"convert",
|
|
1483
|
+
"script.js"
|
|
1484
|
+
],
|
|
1485
|
+
"aliasPermutations": [],
|
|
1486
|
+
"permutations": [
|
|
1487
|
+
"dev:convert:script",
|
|
1488
|
+
"convert:dev:script",
|
|
1489
|
+
"convert:script:dev",
|
|
1490
|
+
"dev:script:convert",
|
|
1491
|
+
"script:dev:convert",
|
|
1492
|
+
"script:convert:dev"
|
|
1493
|
+
]
|
|
1494
|
+
},
|
|
1495
|
+
"dev:generate:command": {
|
|
1389
1496
|
"aliases": [],
|
|
1497
|
+
"args": {},
|
|
1498
|
+
"description": "You must run this command from within a plugin directory, such as the directory created with the \"sf dev generate plugin\" command.\n\nThe command generates basic source files, messages (\\*.md), and test files for your new command. The Typescript files contain import statements for the minimum required Salesforce libraries, and scaffold some basic code. The new type names come from the value you passed to the --name flag.\n\nThe command updates the package.json file, so if it detects conflicts with the existing file, you're prompted whether you want to overwrite the file. There are a number of package.json updates required for a new command, so we recommend you answer \"y\" so the command takes care of them all. If you answer \"n\", you must update the package.json file manually.",
|
|
1390
1499
|
"examples": [
|
|
1391
1500
|
"Generate the files for a new \"sf my exciting command\":\n<%= config.bin %> <%= command.id %> --name my:exciting:command"
|
|
1392
1501
|
],
|
|
1393
1502
|
"flags": {
|
|
1394
1503
|
"name": {
|
|
1395
|
-
"name": "name",
|
|
1396
|
-
"type": "option",
|
|
1397
1504
|
"char": "n",
|
|
1398
|
-
"
|
|
1505
|
+
"name": "name",
|
|
1399
1506
|
"required": true,
|
|
1400
|
-
"
|
|
1507
|
+
"summary": "Name of the new command. Use colons to separate the topic and command names.",
|
|
1508
|
+
"hasDynamicHelp": false,
|
|
1509
|
+
"multiple": false,
|
|
1510
|
+
"type": "option"
|
|
1401
1511
|
},
|
|
1402
1512
|
"force": {
|
|
1403
1513
|
"name": "force",
|
|
1404
|
-
"type": "boolean",
|
|
1405
1514
|
"summary": "Overwrite existing files.",
|
|
1406
|
-
"allowNo": false
|
|
1515
|
+
"allowNo": false,
|
|
1516
|
+
"type": "boolean"
|
|
1407
1517
|
},
|
|
1408
1518
|
"nuts": {
|
|
1409
1519
|
"name": "nuts",
|
|
1410
|
-
"type": "boolean",
|
|
1411
1520
|
"summary": "Generate a NUT test file for the command.",
|
|
1412
|
-
"allowNo": true
|
|
1521
|
+
"allowNo": true,
|
|
1522
|
+
"type": "boolean"
|
|
1413
1523
|
},
|
|
1414
1524
|
"unit": {
|
|
1415
1525
|
"name": "unit",
|
|
1416
|
-
"type": "boolean",
|
|
1417
1526
|
"summary": "Generate a unit test file for the command.",
|
|
1418
|
-
"allowNo": true
|
|
1527
|
+
"allowNo": true,
|
|
1528
|
+
"type": "boolean"
|
|
1419
1529
|
}
|
|
1420
1530
|
},
|
|
1421
|
-
"
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
"id": "dev:generate:flag",
|
|
1425
|
-
"summary": "Generate a flag for an existing command.",
|
|
1426
|
-
"description": "You must run this command from within a plugin directory, such as the directory created with the \"sf dev generate plugin\" command.\n\nThis command is interactive. It first discovers all the commands currently implemented in the plugin, and asks you which you want to create a new flag for. It then prompts for other flag properties, such as its long name, optional short name, type, whether it's required, and so on. Long flag names must be kebab-case and not camelCase. The command doesn't let you use an existing long or short flag name. When the command completes, the Typescript file for the command is updated with the code for the new flag.\n\nUse the --dry-run flag to review new code for the command file without actually udpating it.",
|
|
1427
|
-
"strict": true,
|
|
1428
|
-
"pluginName": "@salesforce/plugin-dev",
|
|
1531
|
+
"hasDynamicHelp": false,
|
|
1532
|
+
"hiddenAliases": [],
|
|
1533
|
+
"id": "dev:generate:command",
|
|
1429
1534
|
"pluginAlias": "@salesforce/plugin-dev",
|
|
1535
|
+
"pluginName": "@salesforce/plugin-dev",
|
|
1430
1536
|
"pluginType": "jit",
|
|
1537
|
+
"strict": true,
|
|
1538
|
+
"summary": "Generate a new sf command.",
|
|
1539
|
+
"enableJsonFlag": false,
|
|
1540
|
+
"SF_ENV": "SF_ENV",
|
|
1541
|
+
"isESM": true,
|
|
1542
|
+
"relativePath": [
|
|
1543
|
+
"lib",
|
|
1544
|
+
"commands",
|
|
1545
|
+
"dev",
|
|
1546
|
+
"generate",
|
|
1547
|
+
"command.js"
|
|
1548
|
+
],
|
|
1549
|
+
"aliasPermutations": [],
|
|
1550
|
+
"permutations": [
|
|
1551
|
+
"dev:generate:command",
|
|
1552
|
+
"generate:dev:command",
|
|
1553
|
+
"generate:command:dev",
|
|
1554
|
+
"dev:command:generate",
|
|
1555
|
+
"command:dev:generate",
|
|
1556
|
+
"command:generate:dev"
|
|
1557
|
+
]
|
|
1558
|
+
},
|
|
1559
|
+
"dev:generate:flag": {
|
|
1431
1560
|
"aliases": [],
|
|
1561
|
+
"args": {},
|
|
1562
|
+
"description": "You must run this command from within a plugin directory, such as the directory created with the \"sf dev generate plugin\" command.\n\nThis command is interactive. It first discovers all the commands currently implemented in the plugin, and asks you which you want to create a new flag for. It then prompts for other flag properties, such as its long name, optional short name, type, whether it's required, and so on. Long flag names must be kebab-case and not camelCase. The command doesn't let you use an existing long or short flag name. When the command completes, the Typescript file for the command is updated with the code for the new flag.\n\nUse the --dry-run flag to review new code for the command file without actually udpating it.",
|
|
1432
1563
|
"examples": [
|
|
1433
1564
|
"Generate a new flag and update the command file:\n<%= config.bin %> <%= command.id %>",
|
|
1434
1565
|
"Don't actually update the command file, just view the generated code:\n<%= config.bin %> <%= command.id %> --dry-run"
|
|
1435
1566
|
],
|
|
1436
1567
|
"flags": {
|
|
1437
1568
|
"dry-run": {
|
|
1438
|
-
"
|
|
1439
|
-
|
|
1569
|
+
"aliases": [
|
|
1570
|
+
"dryrun"
|
|
1571
|
+
],
|
|
1440
1572
|
"char": "d",
|
|
1573
|
+
"name": "dry-run",
|
|
1441
1574
|
"summary": "Print new flag code instead of adding it to the command file.",
|
|
1442
1575
|
"allowNo": false,
|
|
1443
|
-
"
|
|
1444
|
-
"dryrun"
|
|
1445
|
-
]
|
|
1576
|
+
"type": "boolean"
|
|
1446
1577
|
}
|
|
1447
1578
|
},
|
|
1448
|
-
"
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
"id": "dev:generate:library",
|
|
1452
|
-
"summary": "Generate a new library.",
|
|
1453
|
-
"description": "This command is interactive. You're prompted for information to populate the new library, such as the npm scope (which must start with \"@\"), the name and description of the library, and its GitHub organization. The command clones the 'forcedotcom/library-template' GitHub repository, installs the library's npm package dependencies using yarn install, and updates the package properties.\n\nWhen the command completes, your new library contains a few sample source and test files to get you started.",
|
|
1454
|
-
"strict": true,
|
|
1455
|
-
"pluginName": "@salesforce/plugin-dev",
|
|
1579
|
+
"hasDynamicHelp": false,
|
|
1580
|
+
"hiddenAliases": [],
|
|
1581
|
+
"id": "dev:generate:flag",
|
|
1456
1582
|
"pluginAlias": "@salesforce/plugin-dev",
|
|
1583
|
+
"pluginName": "@salesforce/plugin-dev",
|
|
1457
1584
|
"pluginType": "jit",
|
|
1585
|
+
"strict": true,
|
|
1586
|
+
"summary": "Generate a flag for an existing command.",
|
|
1587
|
+
"enableJsonFlag": false,
|
|
1588
|
+
"SF_ENV": "SF_ENV",
|
|
1589
|
+
"isESM": true,
|
|
1590
|
+
"relativePath": [
|
|
1591
|
+
"lib",
|
|
1592
|
+
"commands",
|
|
1593
|
+
"dev",
|
|
1594
|
+
"generate",
|
|
1595
|
+
"flag.js"
|
|
1596
|
+
],
|
|
1597
|
+
"aliasPermutations": [],
|
|
1598
|
+
"permutations": [
|
|
1599
|
+
"dev:generate:flag",
|
|
1600
|
+
"generate:dev:flag",
|
|
1601
|
+
"generate:flag:dev",
|
|
1602
|
+
"dev:flag:generate",
|
|
1603
|
+
"flag:dev:generate",
|
|
1604
|
+
"flag:generate:dev"
|
|
1605
|
+
]
|
|
1606
|
+
},
|
|
1607
|
+
"dev:generate:library": {
|
|
1458
1608
|
"aliases": [],
|
|
1609
|
+
"args": {},
|
|
1610
|
+
"description": "This command is interactive. You're prompted for information to populate the new library, such as the npm scope (which must start with \"@\"), the name and description of the library, and its GitHub organization. The command clones the 'forcedotcom/library-template' GitHub repository, installs the library's npm package dependencies using yarn install, and updates the package properties.\n\nWhen the command completes, your new library contains a few sample source and test files to get you started.",
|
|
1459
1611
|
"examples": [
|
|
1460
1612
|
"<%= config.bin %> <%= command.id %>"
|
|
1461
1613
|
],
|
|
1462
1614
|
"flags": {},
|
|
1463
|
-
"
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
"id": "dev:generate:plugin",
|
|
1467
|
-
"summary": "Generate a new sf plugin.",
|
|
1468
|
-
"description": "This command is interactive. You're prompted for information to populate your new plugin, such as its name, description, author, and percentage of code coverage you want. The command clones the 'salesforcecli/plugin-template-sf' GitHub repository, installs the plug-in's npm package dependencies using yarn install, and updates the package properties.\n\nWhen the command completes, your new plugin contains the source, message, and test files for a sample \"sf hello world\" command.",
|
|
1469
|
-
"strict": true,
|
|
1470
|
-
"pluginName": "@salesforce/plugin-dev",
|
|
1615
|
+
"hasDynamicHelp": false,
|
|
1616
|
+
"hiddenAliases": [],
|
|
1617
|
+
"id": "dev:generate:library",
|
|
1471
1618
|
"pluginAlias": "@salesforce/plugin-dev",
|
|
1619
|
+
"pluginName": "@salesforce/plugin-dev",
|
|
1472
1620
|
"pluginType": "jit",
|
|
1621
|
+
"strict": true,
|
|
1622
|
+
"summary": "Generate a new library.",
|
|
1623
|
+
"enableJsonFlag": false,
|
|
1624
|
+
"SF_ENV": "SF_ENV",
|
|
1625
|
+
"isESM": true,
|
|
1626
|
+
"relativePath": [
|
|
1627
|
+
"lib",
|
|
1628
|
+
"commands",
|
|
1629
|
+
"dev",
|
|
1630
|
+
"generate",
|
|
1631
|
+
"library.js"
|
|
1632
|
+
],
|
|
1633
|
+
"aliasPermutations": [],
|
|
1634
|
+
"permutations": [
|
|
1635
|
+
"dev:generate:library",
|
|
1636
|
+
"generate:dev:library",
|
|
1637
|
+
"generate:library:dev",
|
|
1638
|
+
"dev:library:generate",
|
|
1639
|
+
"library:dev:generate",
|
|
1640
|
+
"library:generate:dev"
|
|
1641
|
+
]
|
|
1642
|
+
},
|
|
1643
|
+
"dev:generate:plugin": {
|
|
1473
1644
|
"aliases": [
|
|
1474
1645
|
"plugins:generate"
|
|
1475
1646
|
],
|
|
1647
|
+
"args": {},
|
|
1648
|
+
"deprecateAliases": true,
|
|
1649
|
+
"description": "This command is interactive. You're prompted for information to populate your new plugin, such as its name, description, author, and percentage of code coverage you want. The command clones the 'salesforcecli/plugin-template-sf' GitHub repository, installs the plug-in's npm package dependencies using yarn install, and updates the package properties.\n\nWhen the command completes, your new plugin contains the source, message, and test files for a sample \"sf hello world\" command.",
|
|
1476
1650
|
"examples": [
|
|
1477
1651
|
"<%= config.bin %> <%= command.id %>"
|
|
1478
1652
|
],
|
|
1479
|
-
"deprecateAliases": true,
|
|
1480
1653
|
"flags": {},
|
|
1481
|
-
"
|
|
1654
|
+
"hasDynamicHelp": false,
|
|
1655
|
+
"hiddenAliases": [],
|
|
1656
|
+
"id": "dev:generate:plugin",
|
|
1657
|
+
"pluginAlias": "@salesforce/plugin-dev",
|
|
1658
|
+
"pluginName": "@salesforce/plugin-dev",
|
|
1659
|
+
"pluginType": "jit",
|
|
1660
|
+
"strict": true,
|
|
1661
|
+
"summary": "Generate a new sf plugin.",
|
|
1662
|
+
"enableJsonFlag": false,
|
|
1663
|
+
"SF_ENV": "SF_ENV",
|
|
1664
|
+
"isESM": true,
|
|
1665
|
+
"relativePath": [
|
|
1666
|
+
"lib",
|
|
1667
|
+
"commands",
|
|
1668
|
+
"dev",
|
|
1669
|
+
"generate",
|
|
1670
|
+
"plugin.js"
|
|
1671
|
+
],
|
|
1672
|
+
"aliasPermutations": [
|
|
1673
|
+
"plugins:generate",
|
|
1674
|
+
"generate:plugins"
|
|
1675
|
+
],
|
|
1676
|
+
"permutations": [
|
|
1677
|
+
"dev:generate:plugin",
|
|
1678
|
+
"generate:dev:plugin",
|
|
1679
|
+
"generate:plugin:dev",
|
|
1680
|
+
"dev:plugin:generate",
|
|
1681
|
+
"plugin:dev:generate",
|
|
1682
|
+
"plugin:generate:dev"
|
|
1683
|
+
]
|
|
1482
1684
|
},
|
|
1483
1685
|
"project:deploy:pipeline:quick": {
|
|
1484
1686
|
"id": "project:deploy:pipeline:quick",
|
|
@@ -7420,5 +7622,5 @@
|
|
|
7420
7622
|
]
|
|
7421
7623
|
}
|
|
7422
7624
|
},
|
|
7423
|
-
"version": "2.19.
|
|
7625
|
+
"version": "2.19.6"
|
|
7424
7626
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
3
|
"description": "The Salesforce CLI",
|
|
4
|
-
"version": "2.19.
|
|
4
|
+
"version": "2.19.6",
|
|
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": "3.0.3",
|
|
75
75
|
"@salesforce/plugin-community": "3.0.2",
|
|
76
|
-
"@salesforce/plugin-dev": "
|
|
76
|
+
"@salesforce/plugin-dev": "2.0.1",
|
|
77
77
|
"@salesforce/plugin-devops-center": "1.2.4",
|
|
78
78
|
"@salesforce/plugin-env": "3.0.6",
|
|
79
79
|
"@salesforce/plugin-functions": "1.22.9",
|
|
@@ -138,14 +138,14 @@
|
|
|
138
138
|
"@oclif/plugin-which": "3.0.10",
|
|
139
139
|
"@salesforce/core": "^6.1.3",
|
|
140
140
|
"@salesforce/plugin-apex": "3.0.6",
|
|
141
|
-
"@salesforce/plugin-auth": "3.0.
|
|
141
|
+
"@salesforce/plugin-auth": "3.0.7",
|
|
142
142
|
"@salesforce/plugin-data": "3.0.1",
|
|
143
143
|
"@salesforce/plugin-deploy-retrieve": "2.1.3",
|
|
144
144
|
"@salesforce/plugin-info": "3.0.3",
|
|
145
145
|
"@salesforce/plugin-limits": "3.0.2",
|
|
146
146
|
"@salesforce/plugin-login": "2.0.5",
|
|
147
147
|
"@salesforce/plugin-marketplace": "1.0.6",
|
|
148
|
-
"@salesforce/plugin-org": "3.0.
|
|
148
|
+
"@salesforce/plugin-org": "3.0.6",
|
|
149
149
|
"@salesforce/plugin-schema": "3.0.4",
|
|
150
150
|
"@salesforce/plugin-settings": "2.0.6",
|
|
151
151
|
"@salesforce/plugin-sobject": "1.0.2",
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
"@salesforce/plugin-templates": "56.0.2",
|
|
155
155
|
"@salesforce/plugin-trust": "3.0.4",
|
|
156
156
|
"@salesforce/plugin-user": "3.0.4",
|
|
157
|
-
"@salesforce/sf-plugins-core": "5.0.
|
|
157
|
+
"@salesforce/sf-plugins-core": "5.0.3",
|
|
158
158
|
"debug": "^4.3.4"
|
|
159
159
|
},
|
|
160
160
|
"pinnedDependencies": [
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
"@typescript-eslint/parser": "^5.62.0",
|
|
246
246
|
"aws-sdk": "^2.1499.0",
|
|
247
247
|
"chai": "^4.3.10",
|
|
248
|
-
"eslint": "^8.
|
|
248
|
+
"eslint": "^8.54.0",
|
|
249
249
|
"eslint-config-oclif": "^5",
|
|
250
250
|
"eslint-config-oclif-typescript": "^2.0.1",
|
|
251
251
|
"eslint-config-prettier": "^8.10.0",
|