@salesforce/cli 2.110.9 → 2.110.11
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 +24 -24
- package/npm-shrinkwrap.json +253 -216
- package/oclif.lock +73 -76
- package/oclif.manifest.json +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ $ npm install -g @salesforce/cli
|
|
|
25
25
|
$ sf COMMAND
|
|
26
26
|
running command...
|
|
27
27
|
$ sf (--version|-v)
|
|
28
|
-
@salesforce/cli/2.110.
|
|
28
|
+
@salesforce/cli/2.110.11 linux-x64 node-v22.20.0
|
|
29
29
|
$ sf --help [COMMAND]
|
|
30
30
|
USAGE
|
|
31
31
|
$ sf COMMAND
|
|
@@ -243,7 +243,7 @@ EXAMPLES
|
|
|
243
243
|
$ sf agent activate --api-name Resort_Manager --target-org my-org
|
|
244
244
|
```
|
|
245
245
|
|
|
246
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
246
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/activate.ts)_
|
|
247
247
|
|
|
248
248
|
## `sf agent create`
|
|
249
249
|
|
|
@@ -305,7 +305,7 @@ EXAMPLES
|
|
|
305
305
|
$ sf agent create --name "Resort Manager" --spec specs/resortManagerAgent.yaml --preview
|
|
306
306
|
```
|
|
307
307
|
|
|
308
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
308
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/create.ts)_
|
|
309
309
|
|
|
310
310
|
## `sf agent deactivate`
|
|
311
311
|
|
|
@@ -345,7 +345,7 @@ EXAMPLES
|
|
|
345
345
|
$ sf agent deactivate --api-name Resort_Manager --target-org my-org
|
|
346
346
|
```
|
|
347
347
|
|
|
348
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
348
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/deactivate.ts)_
|
|
349
349
|
|
|
350
350
|
## `sf agent generate agent-spec`
|
|
351
351
|
|
|
@@ -450,7 +450,7 @@ EXAMPLES
|
|
|
450
450
|
$ sf agent generate agent-spec --tone formal --agent-user resortmanager@myorg.com
|
|
451
451
|
```
|
|
452
452
|
|
|
453
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
453
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/generate/agent-spec.ts)_
|
|
454
454
|
|
|
455
455
|
## `sf agent generate template`
|
|
456
456
|
|
|
@@ -498,7 +498,7 @@ EXAMPLES
|
|
|
498
498
|
force-app/main/default/bots/My_Awesome_Agent/My_Awesome_Agent.bot-meta.xml --agent-version 1
|
|
499
499
|
```
|
|
500
500
|
|
|
501
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
501
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/generate/template.ts)_
|
|
502
502
|
|
|
503
503
|
## `sf agent generate test-spec`
|
|
504
504
|
|
|
@@ -559,7 +559,7 @@ EXAMPLES
|
|
|
559
559
|
force-app//main/default/aiEvaluationDefinitions/Resort_Manager_Tests.aiEvaluationDefinition-meta.xml
|
|
560
560
|
```
|
|
561
561
|
|
|
562
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
562
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/generate/test-spec.ts)_
|
|
563
563
|
|
|
564
564
|
## `sf agent preview`
|
|
565
565
|
|
|
@@ -623,7 +623,7 @@ EXAMPLES
|
|
|
623
623
|
transcripts/my-preview
|
|
624
624
|
```
|
|
625
625
|
|
|
626
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
626
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/preview.ts)_
|
|
627
627
|
|
|
628
628
|
## `sf agent test create`
|
|
629
629
|
|
|
@@ -678,7 +678,7 @@ EXAMPLES
|
|
|
678
678
|
$ sf agent test create --spec specs/Resort_Manager-testSpec.yaml --api-name Resort_Manager_Test --preview
|
|
679
679
|
```
|
|
680
680
|
|
|
681
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
681
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/test/create.ts)_
|
|
682
682
|
|
|
683
683
|
## `sf agent test list`
|
|
684
684
|
|
|
@@ -713,7 +713,7 @@ EXAMPLES
|
|
|
713
713
|
$ sf agent test list --target-org my-org
|
|
714
714
|
```
|
|
715
715
|
|
|
716
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
716
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/test/list.ts)_
|
|
717
717
|
|
|
718
718
|
## `sf agent test results`
|
|
719
719
|
|
|
@@ -779,7 +779,7 @@ FLAG DESCRIPTIONS
|
|
|
779
779
|
expression when using custom evaluations.
|
|
780
780
|
```
|
|
781
781
|
|
|
782
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
782
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/test/results.ts)_
|
|
783
783
|
|
|
784
784
|
## `sf agent test resume`
|
|
785
785
|
|
|
@@ -852,7 +852,7 @@ FLAG DESCRIPTIONS
|
|
|
852
852
|
expression when using custom evaluations.
|
|
853
853
|
```
|
|
854
854
|
|
|
855
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
855
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/test/resume.ts)_
|
|
856
856
|
|
|
857
857
|
## `sf agent test run`
|
|
858
858
|
|
|
@@ -926,7 +926,7 @@ FLAG DESCRIPTIONS
|
|
|
926
926
|
expression when using custom evaluations.
|
|
927
927
|
```
|
|
928
928
|
|
|
929
|
-
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.
|
|
929
|
+
_See code: [@salesforce/plugin-agent](https://github.com/salesforcecli/plugin-agent/blob/1.24.15/src/commands/agent/test/run.ts)_
|
|
930
930
|
|
|
931
931
|
## `sf alias list`
|
|
932
932
|
|
|
@@ -1798,7 +1798,7 @@ EXAMPLES
|
|
|
1798
1798
|
$ sf autocomplete --refresh-cache
|
|
1799
1799
|
```
|
|
1800
1800
|
|
|
1801
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.
|
|
1801
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/3.2.36/src/commands/autocomplete/index.ts)_
|
|
1802
1802
|
|
|
1803
1803
|
## `sf commands`
|
|
1804
1804
|
|
|
@@ -7347,7 +7347,7 @@ EXAMPLES
|
|
|
7347
7347
|
$ sf plugins
|
|
7348
7348
|
```
|
|
7349
7349
|
|
|
7350
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7350
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.50/src/commands/plugins/index.ts)_
|
|
7351
7351
|
|
|
7352
7352
|
## `sf plugins discover`
|
|
7353
7353
|
|
|
@@ -7392,7 +7392,7 @@ EXAMPLES
|
|
|
7392
7392
|
$ sf plugins inspect @salesforce/plugin-packaging
|
|
7393
7393
|
```
|
|
7394
7394
|
|
|
7395
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7395
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.50/src/commands/plugins/inspect.ts)_
|
|
7396
7396
|
|
|
7397
7397
|
## `sf plugins install PLUGIN`
|
|
7398
7398
|
|
|
@@ -7441,7 +7441,7 @@ EXAMPLES
|
|
|
7441
7441
|
$ sf plugins install someuser/someplugin
|
|
7442
7442
|
```
|
|
7443
7443
|
|
|
7444
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7444
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.50/src/commands/plugins/install.ts)_
|
|
7445
7445
|
|
|
7446
7446
|
## `sf plugins link PATH`
|
|
7447
7447
|
|
|
@@ -7472,7 +7472,7 @@ EXAMPLES
|
|
|
7472
7472
|
$ sf plugins link @salesforce/plugin-packaging
|
|
7473
7473
|
```
|
|
7474
7474
|
|
|
7475
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7475
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.50/src/commands/plugins/link.ts)_
|
|
7476
7476
|
|
|
7477
7477
|
## `sf plugins reset`
|
|
7478
7478
|
|
|
@@ -7487,7 +7487,7 @@ FLAGS
|
|
|
7487
7487
|
--reinstall Reinstall all plugins after uninstalling.
|
|
7488
7488
|
```
|
|
7489
7489
|
|
|
7490
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7490
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.50/src/commands/plugins/reset.ts)_
|
|
7491
7491
|
|
|
7492
7492
|
## `sf plugins trust verify`
|
|
7493
7493
|
|
|
@@ -7544,7 +7544,7 @@ EXAMPLES
|
|
|
7544
7544
|
$ sf plugins uninstall @salesforce/plugin-packaging
|
|
7545
7545
|
```
|
|
7546
7546
|
|
|
7547
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7547
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.50/src/commands/plugins/uninstall.ts)_
|
|
7548
7548
|
|
|
7549
7549
|
## `sf plugins update`
|
|
7550
7550
|
|
|
@@ -7562,7 +7562,7 @@ DESCRIPTION
|
|
|
7562
7562
|
Update installed plugins.
|
|
7563
7563
|
```
|
|
7564
7564
|
|
|
7565
|
-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.
|
|
7565
|
+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/5.4.50/src/commands/plugins/update.ts)_
|
|
7566
7566
|
|
|
7567
7567
|
## `sf project convert mdapi`
|
|
7568
7568
|
|
|
@@ -9548,7 +9548,7 @@ DESCRIPTION
|
|
|
9548
9548
|
Once you select a command, hit enter and it will show the help for that command.
|
|
9549
9549
|
```
|
|
9550
9550
|
|
|
9551
|
-
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.
|
|
9551
|
+
_See code: [@oclif/plugin-search](https://github.com/oclif/plugin-search/blob/1.2.33/src/commands/search.ts)_
|
|
9552
9552
|
|
|
9553
9553
|
## `sf sobject describe`
|
|
9554
9554
|
|
|
@@ -9734,7 +9734,7 @@ EXAMPLES
|
|
|
9734
9734
|
$ sf update --available
|
|
9735
9735
|
```
|
|
9736
9736
|
|
|
9737
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.
|
|
9737
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/4.7.10/src/commands/update.ts)_
|
|
9738
9738
|
|
|
9739
9739
|
## `sf version`
|
|
9740
9740
|
|
|
@@ -9894,7 +9894,7 @@ EXAMPLES
|
|
|
9894
9894
|
$ sf which "foo bar baz"
|
|
9895
9895
|
```
|
|
9896
9896
|
|
|
9897
|
-
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.
|
|
9897
|
+
_See code: [@oclif/plugin-which](https://github.com/oclif/plugin-which/blob/3.2.41/src/commands/which.ts)_
|
|
9898
9898
|
|
|
9899
9899
|
<!-- commandsstop -->
|
|
9900
9900
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.110.
|
|
3
|
+
"version": "2.110.11",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.110.
|
|
9
|
+
"version": "2.110.11",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@inquirer/select": "^2.3.5",
|
|
14
|
-
"@oclif/core": "4.5.
|
|
15
|
-
"@oclif/plugin-autocomplete": "3.2.
|
|
14
|
+
"@oclif/core": "4.5.5",
|
|
15
|
+
"@oclif/plugin-autocomplete": "3.2.36",
|
|
16
16
|
"@oclif/plugin-commands": "4.1.34",
|
|
17
17
|
"@oclif/plugin-help": "6.2.33",
|
|
18
18
|
"@oclif/plugin-not-found": "3.2.68",
|
|
19
|
-
"@oclif/plugin-plugins": "5.4.
|
|
20
|
-
"@oclif/plugin-search": "1.2.
|
|
21
|
-
"@oclif/plugin-update": "4.7.
|
|
19
|
+
"@oclif/plugin-plugins": "5.4.50",
|
|
20
|
+
"@oclif/plugin-search": "1.2.33",
|
|
21
|
+
"@oclif/plugin-update": "4.7.10",
|
|
22
22
|
"@oclif/plugin-version": "2.2.33",
|
|
23
|
-
"@oclif/plugin-warn-if-update-available": "3.1.
|
|
24
|
-
"@oclif/plugin-which": "3.2.
|
|
23
|
+
"@oclif/plugin-warn-if-update-available": "3.1.49",
|
|
24
|
+
"@oclif/plugin-which": "3.2.41",
|
|
25
25
|
"@salesforce/core": "^8.9.1",
|
|
26
26
|
"@salesforce/kit": "^3.1.6",
|
|
27
|
-
"@salesforce/plugin-agent": "1.24.
|
|
27
|
+
"@salesforce/plugin-agent": "1.24.15",
|
|
28
28
|
"@salesforce/plugin-apex": "3.8.3",
|
|
29
29
|
"@salesforce/plugin-api": "1.3.3",
|
|
30
30
|
"@salesforce/plugin-auth": "3.9.9",
|
|
@@ -1651,30 +1651,6 @@
|
|
|
1651
1651
|
"node": ">=v14"
|
|
1652
1652
|
}
|
|
1653
1653
|
},
|
|
1654
|
-
"node_modules/@commitlint/config-validator/node_modules/ajv": {
|
|
1655
|
-
"version": "8.17.1",
|
|
1656
|
-
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
|
|
1657
|
-
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
|
|
1658
|
-
"dev": true,
|
|
1659
|
-
"license": "MIT",
|
|
1660
|
-
"dependencies": {
|
|
1661
|
-
"fast-deep-equal": "^3.1.3",
|
|
1662
|
-
"fast-uri": "^3.0.1",
|
|
1663
|
-
"json-schema-traverse": "^1.0.0",
|
|
1664
|
-
"require-from-string": "^2.0.2"
|
|
1665
|
-
},
|
|
1666
|
-
"funding": {
|
|
1667
|
-
"type": "github",
|
|
1668
|
-
"url": "https://github.com/sponsors/epoberezkin"
|
|
1669
|
-
}
|
|
1670
|
-
},
|
|
1671
|
-
"node_modules/@commitlint/config-validator/node_modules/json-schema-traverse": {
|
|
1672
|
-
"version": "1.0.0",
|
|
1673
|
-
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
1674
|
-
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
1675
|
-
"dev": true,
|
|
1676
|
-
"license": "MIT"
|
|
1677
|
-
},
|
|
1678
1654
|
"node_modules/@commitlint/ensure": {
|
|
1679
1655
|
"version": "17.8.1",
|
|
1680
1656
|
"resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.8.1.tgz",
|
|
@@ -2134,6 +2110,23 @@
|
|
|
2134
2110
|
"url": "https://opencollective.com/eslint"
|
|
2135
2111
|
}
|
|
2136
2112
|
},
|
|
2113
|
+
"node_modules/@eslint/eslintrc/node_modules/ajv": {
|
|
2114
|
+
"version": "6.12.6",
|
|
2115
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
|
2116
|
+
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
|
2117
|
+
"dev": true,
|
|
2118
|
+
"license": "MIT",
|
|
2119
|
+
"dependencies": {
|
|
2120
|
+
"fast-deep-equal": "^3.1.1",
|
|
2121
|
+
"fast-json-stable-stringify": "^2.0.0",
|
|
2122
|
+
"json-schema-traverse": "^0.4.1",
|
|
2123
|
+
"uri-js": "^4.2.2"
|
|
2124
|
+
},
|
|
2125
|
+
"funding": {
|
|
2126
|
+
"type": "github",
|
|
2127
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
2128
|
+
}
|
|
2129
|
+
},
|
|
2137
2130
|
"node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
|
|
2138
2131
|
"version": "1.1.11",
|
|
2139
2132
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
@@ -2145,6 +2138,13 @@
|
|
|
2145
2138
|
"concat-map": "0.0.1"
|
|
2146
2139
|
}
|
|
2147
2140
|
},
|
|
2141
|
+
"node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": {
|
|
2142
|
+
"version": "0.4.1",
|
|
2143
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
|
2144
|
+
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
|
|
2145
|
+
"dev": true,
|
|
2146
|
+
"license": "MIT"
|
|
2147
|
+
},
|
|
2148
2148
|
"node_modules/@eslint/eslintrc/node_modules/minimatch": {
|
|
2149
2149
|
"version": "3.1.2",
|
|
2150
2150
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
|
@@ -3684,9 +3684,9 @@
|
|
|
3684
3684
|
}
|
|
3685
3685
|
},
|
|
3686
3686
|
"node_modules/@oclif/core": {
|
|
3687
|
-
"version": "4.5.
|
|
3688
|
-
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.5.
|
|
3689
|
-
"integrity": "sha512-
|
|
3687
|
+
"version": "4.5.5",
|
|
3688
|
+
"resolved": "https://registry.npmjs.org/@oclif/core/-/core-4.5.5.tgz",
|
|
3689
|
+
"integrity": "sha512-iQzlaJQgPeUXrtrX71OzDwxPikQ7c2FhNd8U8rBB7BCtj2XYfmzBT/Hmbc+g9OKDIG/JkbJT0fXaWMMBrhi+1A==",
|
|
3690
3690
|
"license": "MIT",
|
|
3691
3691
|
"dependencies": {
|
|
3692
3692
|
"ansi-escapes": "^4.3.2",
|
|
@@ -3700,7 +3700,7 @@
|
|
|
3700
3700
|
"is-wsl": "^2.2.0",
|
|
3701
3701
|
"lilconfig": "^3.1.3",
|
|
3702
3702
|
"minimatch": "^9.0.5",
|
|
3703
|
-
"semver": "^7.
|
|
3703
|
+
"semver": "^7.7.3",
|
|
3704
3704
|
"string-width": "^4.2.3",
|
|
3705
3705
|
"supports-color": "^8",
|
|
3706
3706
|
"tinyglobby": "^0.2.14",
|
|
@@ -3884,9 +3884,9 @@
|
|
|
3884
3884
|
}
|
|
3885
3885
|
},
|
|
3886
3886
|
"node_modules/@oclif/plugin-autocomplete": {
|
|
3887
|
-
"version": "3.2.
|
|
3888
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.2.
|
|
3889
|
-
"integrity": "sha512-
|
|
3887
|
+
"version": "3.2.36",
|
|
3888
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.2.36.tgz",
|
|
3889
|
+
"integrity": "sha512-q2jNU2ze6YSSKxjj/ZI+JZXBVXS4l45eR1waUB8z8P4H9C5I+TxXVwn5T3g8O0YWvfkDHVODAUEU6qCOQYDTXQ==",
|
|
3890
3890
|
"license": "MIT",
|
|
3891
3891
|
"dependencies": {
|
|
3892
3892
|
"@oclif/core": "^4",
|
|
@@ -4009,9 +4009,9 @@
|
|
|
4009
4009
|
}
|
|
4010
4010
|
},
|
|
4011
4011
|
"node_modules/@oclif/plugin-plugins": {
|
|
4012
|
-
"version": "5.4.
|
|
4013
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-5.4.
|
|
4014
|
-
"integrity": "sha512-
|
|
4012
|
+
"version": "5.4.50",
|
|
4013
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-5.4.50.tgz",
|
|
4014
|
+
"integrity": "sha512-HNhmmgxH0xoFsYKubtWWhgSasbDEyoT+o/q5QDljiytNvqWP3wWiP6cqqWvGpKG2El7+g17crdWpv4jzrf3Lyg==",
|
|
4015
4015
|
"license": "MIT",
|
|
4016
4016
|
"dependencies": {
|
|
4017
4017
|
"@oclif/core": "^4.5.4",
|
|
@@ -4021,7 +4021,7 @@
|
|
|
4021
4021
|
"npm-package-arg": "^11.0.3",
|
|
4022
4022
|
"npm-run-path": "^5.3.0",
|
|
4023
4023
|
"object-treeify": "^4.0.1",
|
|
4024
|
-
"semver": "^7.7.
|
|
4024
|
+
"semver": "^7.7.3",
|
|
4025
4025
|
"validate-npm-package-name": "^5.0.1",
|
|
4026
4026
|
"which": "^4.0.0",
|
|
4027
4027
|
"yarn": "^1.22.22"
|
|
@@ -4109,9 +4109,9 @@
|
|
|
4109
4109
|
}
|
|
4110
4110
|
},
|
|
4111
4111
|
"node_modules/@oclif/plugin-search": {
|
|
4112
|
-
"version": "1.2.
|
|
4113
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-search/-/plugin-search-1.2.
|
|
4114
|
-
"integrity": "sha512-
|
|
4112
|
+
"version": "1.2.33",
|
|
4113
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-search/-/plugin-search-1.2.33.tgz",
|
|
4114
|
+
"integrity": "sha512-IVTlrRKiB4bmolAHI/zGu/08ID0iwh6Nw4eFhmB3vKcasopFH8O6+AVL6ci0b1Z/dBXlhVO4xeat2D6FghUOoQ==",
|
|
4115
4115
|
"license": "MIT",
|
|
4116
4116
|
"dependencies": {
|
|
4117
4117
|
"@oclif/core": "^4",
|
|
@@ -4138,9 +4138,9 @@
|
|
|
4138
4138
|
}
|
|
4139
4139
|
},
|
|
4140
4140
|
"node_modules/@oclif/plugin-update": {
|
|
4141
|
-
"version": "4.7.
|
|
4142
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.
|
|
4143
|
-
"integrity": "sha512-
|
|
4141
|
+
"version": "4.7.10",
|
|
4142
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.10.tgz",
|
|
4143
|
+
"integrity": "sha512-PEq1wjFGUj7VMkOWT9eSDa2iLWr6ibk84u0eo/VxZGHglzGFKGMY6lCJBOJK5KK3cv28hBUkxtMNBdWT62oHPw==",
|
|
4144
4144
|
"license": "MIT",
|
|
4145
4145
|
"dependencies": {
|
|
4146
4146
|
"@inquirer/select": "^2.5.0",
|
|
@@ -4151,7 +4151,7 @@
|
|
|
4151
4151
|
"filesize": "^6.1.0",
|
|
4152
4152
|
"got": "^13",
|
|
4153
4153
|
"proxy-agent": "^6.5.0",
|
|
4154
|
-
"semver": "^7.7.
|
|
4154
|
+
"semver": "^7.7.3",
|
|
4155
4155
|
"tar-fs": "^2.1.4"
|
|
4156
4156
|
},
|
|
4157
4157
|
"engines": {
|
|
@@ -4172,9 +4172,9 @@
|
|
|
4172
4172
|
}
|
|
4173
4173
|
},
|
|
4174
4174
|
"node_modules/@oclif/plugin-warn-if-update-available": {
|
|
4175
|
-
"version": "3.1.
|
|
4176
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.1.
|
|
4177
|
-
"integrity": "sha512-
|
|
4175
|
+
"version": "3.1.49",
|
|
4176
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.1.49.tgz",
|
|
4177
|
+
"integrity": "sha512-QIA+Jgb6AiJTeRmblm4YmcVH8cqTjTDcTt3GhRnpi+CeEPhWPdnuN3xrqbmWXvG9e0EnT2OegRNZRg3CSwt2vA==",
|
|
4178
4178
|
"license": "MIT",
|
|
4179
4179
|
"dependencies": {
|
|
4180
4180
|
"@oclif/core": "^4",
|
|
@@ -4189,9 +4189,9 @@
|
|
|
4189
4189
|
}
|
|
4190
4190
|
},
|
|
4191
4191
|
"node_modules/@oclif/plugin-which": {
|
|
4192
|
-
"version": "3.2.
|
|
4193
|
-
"resolved": "https://registry.npmjs.org/@oclif/plugin-which/-/plugin-which-3.2.
|
|
4194
|
-
"integrity": "sha512-
|
|
4192
|
+
"version": "3.2.41",
|
|
4193
|
+
"resolved": "https://registry.npmjs.org/@oclif/plugin-which/-/plugin-which-3.2.41.tgz",
|
|
4194
|
+
"integrity": "sha512-4324zD2eWhZaNg/tWjjJXLttpQTwfp/eplbO72zpGIdhYY4YDE5rxhGg/RYz0LF/d6REkNruvljHQJAtiAlfTA==",
|
|
4195
4195
|
"license": "MIT",
|
|
4196
4196
|
"dependencies": {
|
|
4197
4197
|
"@oclif/core": "^4",
|
|
@@ -4233,6 +4233,12 @@
|
|
|
4233
4233
|
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
4234
4234
|
}
|
|
4235
4235
|
},
|
|
4236
|
+
"node_modules/@oclif/table/node_modules/change-case": {
|
|
4237
|
+
"version": "5.4.4",
|
|
4238
|
+
"resolved": "https://registry.npmjs.org/change-case/-/change-case-5.4.4.tgz",
|
|
4239
|
+
"integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==",
|
|
4240
|
+
"license": "MIT"
|
|
4241
|
+
},
|
|
4236
4242
|
"node_modules/@oclif/table/node_modules/emoji-regex": {
|
|
4237
4243
|
"version": "10.3.0",
|
|
4238
4244
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz",
|
|
@@ -4814,12 +4820,12 @@
|
|
|
4814
4820
|
}
|
|
4815
4821
|
},
|
|
4816
4822
|
"node_modules/@salesforce/core": {
|
|
4817
|
-
"version": "8.23.
|
|
4818
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.23.
|
|
4819
|
-
"integrity": "sha512
|
|
4823
|
+
"version": "8.23.2",
|
|
4824
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.23.2.tgz",
|
|
4825
|
+
"integrity": "sha512-9XUlaI0orvdjDJZsgjt0lVLa5wrFWNaorRbshT/EJ6fIiqcAehOV2bR62NJtRhrOrgu1h34bTmUqMo+yUEES9w==",
|
|
4820
4826
|
"license": "BSD-3-Clause",
|
|
4821
4827
|
"dependencies": {
|
|
4822
|
-
"@jsforce/jsforce-node": "^3.10.
|
|
4828
|
+
"@jsforce/jsforce-node": "^3.10.8",
|
|
4823
4829
|
"@salesforce/kit": "^3.2.4",
|
|
4824
4830
|
"@salesforce/schemas": "^1.10.0",
|
|
4825
4831
|
"@salesforce/ts-types": "^2.0.11",
|
|
@@ -4843,107 +4849,6 @@
|
|
|
4843
4849
|
"node": ">=18.0.0"
|
|
4844
4850
|
}
|
|
4845
4851
|
},
|
|
4846
|
-
"node_modules/@salesforce/core/node_modules/ajv": {
|
|
4847
|
-
"version": "8.17.1",
|
|
4848
|
-
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
|
|
4849
|
-
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
|
|
4850
|
-
"license": "MIT",
|
|
4851
|
-
"dependencies": {
|
|
4852
|
-
"fast-deep-equal": "^3.1.3",
|
|
4853
|
-
"fast-uri": "^3.0.1",
|
|
4854
|
-
"json-schema-traverse": "^1.0.0",
|
|
4855
|
-
"require-from-string": "^2.0.2"
|
|
4856
|
-
},
|
|
4857
|
-
"funding": {
|
|
4858
|
-
"type": "github",
|
|
4859
|
-
"url": "https://github.com/sponsors/epoberezkin"
|
|
4860
|
-
}
|
|
4861
|
-
},
|
|
4862
|
-
"node_modules/@salesforce/core/node_modules/buffer": {
|
|
4863
|
-
"version": "6.0.3",
|
|
4864
|
-
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
|
|
4865
|
-
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
|
4866
|
-
"funding": [
|
|
4867
|
-
{
|
|
4868
|
-
"type": "github",
|
|
4869
|
-
"url": "https://github.com/sponsors/feross"
|
|
4870
|
-
},
|
|
4871
|
-
{
|
|
4872
|
-
"type": "patreon",
|
|
4873
|
-
"url": "https://www.patreon.com/feross"
|
|
4874
|
-
},
|
|
4875
|
-
{
|
|
4876
|
-
"type": "consulting",
|
|
4877
|
-
"url": "https://feross.org/support"
|
|
4878
|
-
}
|
|
4879
|
-
],
|
|
4880
|
-
"license": "MIT",
|
|
4881
|
-
"dependencies": {
|
|
4882
|
-
"base64-js": "^1.3.1",
|
|
4883
|
-
"ieee754": "^1.2.1"
|
|
4884
|
-
}
|
|
4885
|
-
},
|
|
4886
|
-
"node_modules/@salesforce/core/node_modules/change-case": {
|
|
4887
|
-
"version": "4.1.2",
|
|
4888
|
-
"resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz",
|
|
4889
|
-
"integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==",
|
|
4890
|
-
"license": "MIT",
|
|
4891
|
-
"dependencies": {
|
|
4892
|
-
"camel-case": "^4.1.2",
|
|
4893
|
-
"capital-case": "^1.0.4",
|
|
4894
|
-
"constant-case": "^3.0.4",
|
|
4895
|
-
"dot-case": "^3.0.4",
|
|
4896
|
-
"header-case": "^2.0.4",
|
|
4897
|
-
"no-case": "^3.0.4",
|
|
4898
|
-
"param-case": "^3.0.4",
|
|
4899
|
-
"pascal-case": "^3.1.2",
|
|
4900
|
-
"path-case": "^3.0.4",
|
|
4901
|
-
"sentence-case": "^3.0.4",
|
|
4902
|
-
"snake-case": "^3.0.4",
|
|
4903
|
-
"tslib": "^2.0.3"
|
|
4904
|
-
}
|
|
4905
|
-
},
|
|
4906
|
-
"node_modules/@salesforce/core/node_modules/json-schema-traverse": {
|
|
4907
|
-
"version": "1.0.0",
|
|
4908
|
-
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
4909
|
-
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
4910
|
-
"license": "MIT"
|
|
4911
|
-
},
|
|
4912
|
-
"node_modules/@salesforce/core/node_modules/pino-abstract-transport": {
|
|
4913
|
-
"version": "1.2.0",
|
|
4914
|
-
"resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.2.0.tgz",
|
|
4915
|
-
"integrity": "sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==",
|
|
4916
|
-
"license": "MIT",
|
|
4917
|
-
"dependencies": {
|
|
4918
|
-
"readable-stream": "^4.0.0",
|
|
4919
|
-
"split2": "^4.0.0"
|
|
4920
|
-
}
|
|
4921
|
-
},
|
|
4922
|
-
"node_modules/@salesforce/core/node_modules/readable-stream": {
|
|
4923
|
-
"version": "4.5.2",
|
|
4924
|
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz",
|
|
4925
|
-
"integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==",
|
|
4926
|
-
"license": "MIT",
|
|
4927
|
-
"dependencies": {
|
|
4928
|
-
"abort-controller": "^3.0.0",
|
|
4929
|
-
"buffer": "^6.0.3",
|
|
4930
|
-
"events": "^3.3.0",
|
|
4931
|
-
"process": "^0.11.10",
|
|
4932
|
-
"string_decoder": "^1.3.0"
|
|
4933
|
-
},
|
|
4934
|
-
"engines": {
|
|
4935
|
-
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
4936
|
-
}
|
|
4937
|
-
},
|
|
4938
|
-
"node_modules/@salesforce/core/node_modules/split2": {
|
|
4939
|
-
"version": "4.2.0",
|
|
4940
|
-
"resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
|
|
4941
|
-
"integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
|
|
4942
|
-
"license": "ISC",
|
|
4943
|
-
"engines": {
|
|
4944
|
-
"node": ">= 10.x"
|
|
4945
|
-
}
|
|
4946
|
-
},
|
|
4947
4852
|
"node_modules/@salesforce/dev-config": {
|
|
4948
4853
|
"version": "4.3.1",
|
|
4949
4854
|
"resolved": "https://registry.npmjs.org/@salesforce/dev-config/-/dev-config-4.3.1.tgz",
|
|
@@ -5059,9 +4964,9 @@
|
|
|
5059
4964
|
}
|
|
5060
4965
|
},
|
|
5061
4966
|
"node_modules/@salesforce/plugin-agent": {
|
|
5062
|
-
"version": "1.24.
|
|
5063
|
-
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.
|
|
5064
|
-
"integrity": "sha512-
|
|
4967
|
+
"version": "1.24.15",
|
|
4968
|
+
"resolved": "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.15.tgz",
|
|
4969
|
+
"integrity": "sha512-2UfM+2p5OdWVasNYvQzdd3aLpHWvWuun9VkvpxJDchd5uTQ80HguE1FvgwuPYG+HrRQy/hF4BOZ2evs1Di4Jkg==",
|
|
5065
4970
|
"license": "BSD-3-Clause",
|
|
5066
4971
|
"dependencies": {
|
|
5067
4972
|
"@inquirer/core": "^10.2.2",
|
|
@@ -5069,10 +4974,10 @@
|
|
|
5069
4974
|
"@oclif/core": "^4",
|
|
5070
4975
|
"@oclif/multi-stage-output": "^0.8.22",
|
|
5071
4976
|
"@salesforce/agents": "^0.17.9",
|
|
5072
|
-
"@salesforce/core": "^8.
|
|
4977
|
+
"@salesforce/core": "^8.23.2",
|
|
5073
4978
|
"@salesforce/kit": "^3.2.3",
|
|
5074
4979
|
"@salesforce/sf-plugins-core": "^12.2.4",
|
|
5075
|
-
"@salesforce/source-deploy-retrieve": "^12.
|
|
4980
|
+
"@salesforce/source-deploy-retrieve": "^12.24.0",
|
|
5076
4981
|
"@salesforce/types": "^1.4.0",
|
|
5077
4982
|
"ansis": "^3.3.2",
|
|
5078
4983
|
"fast-xml-parser": "^4.5.1",
|
|
@@ -5142,6 +5047,36 @@
|
|
|
5142
5047
|
"node": ">=18.0.0"
|
|
5143
5048
|
}
|
|
5144
5049
|
},
|
|
5050
|
+
"node_modules/@salesforce/plugin-auth/node_modules/@salesforce/core": {
|
|
5051
|
+
"version": "8.23.1",
|
|
5052
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.23.1.tgz",
|
|
5053
|
+
"integrity": "sha512-/mQMu6g0gmkKQsl+G93VkkU+yrLEjnBzdUu0sPlS0WY5jM4M9sxg97LmRXa6dchECU3c/ugamsXaP6j6QmEfsQ==",
|
|
5054
|
+
"license": "BSD-3-Clause",
|
|
5055
|
+
"dependencies": {
|
|
5056
|
+
"@jsforce/jsforce-node": "^3.10.4",
|
|
5057
|
+
"@salesforce/kit": "^3.2.4",
|
|
5058
|
+
"@salesforce/schemas": "^1.10.0",
|
|
5059
|
+
"@salesforce/ts-types": "^2.0.11",
|
|
5060
|
+
"ajv": "^8.17.1",
|
|
5061
|
+
"change-case": "^4.1.2",
|
|
5062
|
+
"fast-levenshtein": "^3.0.0",
|
|
5063
|
+
"faye": "^1.4.1",
|
|
5064
|
+
"form-data": "^4.0.4",
|
|
5065
|
+
"js2xmlparser": "^4.0.1",
|
|
5066
|
+
"jsonwebtoken": "9.0.2",
|
|
5067
|
+
"jszip": "3.10.1",
|
|
5068
|
+
"memfs": "^4.30.1",
|
|
5069
|
+
"pino": "^9.7.0",
|
|
5070
|
+
"pino-abstract-transport": "^1.2.0",
|
|
5071
|
+
"pino-pretty": "^11.3.0",
|
|
5072
|
+
"proper-lockfile": "^4.1.2",
|
|
5073
|
+
"semver": "^7.6.3",
|
|
5074
|
+
"ts-retry-promise": "^0.8.1"
|
|
5075
|
+
},
|
|
5076
|
+
"engines": {
|
|
5077
|
+
"node": ">=18.0.0"
|
|
5078
|
+
}
|
|
5079
|
+
},
|
|
5145
5080
|
"node_modules/@salesforce/plugin-command-reference": {
|
|
5146
5081
|
"version": "3.1.47",
|
|
5147
5082
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-command-reference/-/plugin-command-reference-3.1.47.tgz",
|
|
@@ -5276,6 +5211,12 @@
|
|
|
5276
5211
|
"node": ">=18.0.0"
|
|
5277
5212
|
}
|
|
5278
5213
|
},
|
|
5214
|
+
"node_modules/@salesforce/plugin-data/node_modules/change-case": {
|
|
5215
|
+
"version": "5.4.4",
|
|
5216
|
+
"resolved": "https://registry.npmjs.org/change-case/-/change-case-5.4.4.tgz",
|
|
5217
|
+
"integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==",
|
|
5218
|
+
"license": "MIT"
|
|
5219
|
+
},
|
|
5279
5220
|
"node_modules/@salesforce/plugin-deploy-retrieve": {
|
|
5280
5221
|
"version": "3.23.3",
|
|
5281
5222
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-3.23.3.tgz",
|
|
@@ -5375,6 +5316,12 @@
|
|
|
5375
5316
|
"node": ">=18.0.0"
|
|
5376
5317
|
}
|
|
5377
5318
|
},
|
|
5319
|
+
"node_modules/@salesforce/plugin-org/node_modules/change-case": {
|
|
5320
|
+
"version": "5.4.4",
|
|
5321
|
+
"resolved": "https://registry.npmjs.org/change-case/-/change-case-5.4.4.tgz",
|
|
5322
|
+
"integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==",
|
|
5323
|
+
"license": "MIT"
|
|
5324
|
+
},
|
|
5378
5325
|
"node_modules/@salesforce/plugin-packaging": {
|
|
5379
5326
|
"version": "2.20.5",
|
|
5380
5327
|
"resolved": "https://registry.npmjs.org/@salesforce/plugin-packaging/-/plugin-packaging-2.20.5.tgz",
|
|
@@ -5757,9 +5704,9 @@
|
|
|
5757
5704
|
}
|
|
5758
5705
|
},
|
|
5759
5706
|
"node_modules/@salesforce/source-deploy-retrieve": {
|
|
5760
|
-
"version": "12.
|
|
5761
|
-
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.
|
|
5762
|
-
"integrity": "sha512
|
|
5707
|
+
"version": "12.24.0",
|
|
5708
|
+
"resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.24.0.tgz",
|
|
5709
|
+
"integrity": "sha512-gjS6whT1575UGxwR2foDILlsbDQPwng0rNyXsk39hwg+bRsbHABZGzxU5EeUIzpKqv4bf6C9z/BLYiHMcZocoQ==",
|
|
5763
5710
|
"license": "Apache-2.0",
|
|
5764
5711
|
"dependencies": {
|
|
5765
5712
|
"@salesforce/core": "^8.23.1",
|
|
@@ -7979,16 +7926,15 @@
|
|
|
7979
7926
|
}
|
|
7980
7927
|
},
|
|
7981
7928
|
"node_modules/ajv": {
|
|
7982
|
-
"version": "
|
|
7983
|
-
"resolved": "https://registry.npmjs.org/ajv/-/ajv-
|
|
7984
|
-
"integrity": "sha512-
|
|
7985
|
-
"dev": true,
|
|
7929
|
+
"version": "8.17.1",
|
|
7930
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
|
|
7931
|
+
"integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
|
|
7986
7932
|
"license": "MIT",
|
|
7987
7933
|
"dependencies": {
|
|
7988
|
-
"fast-deep-equal": "^3.1.
|
|
7989
|
-
"fast-
|
|
7990
|
-
"json-schema-traverse": "^0.
|
|
7991
|
-
"
|
|
7934
|
+
"fast-deep-equal": "^3.1.3",
|
|
7935
|
+
"fast-uri": "^3.0.1",
|
|
7936
|
+
"json-schema-traverse": "^1.0.0",
|
|
7937
|
+
"require-from-string": "^2.0.2"
|
|
7992
7938
|
},
|
|
7993
7939
|
"funding": {
|
|
7994
7940
|
"type": "github",
|
|
@@ -9131,10 +9077,24 @@
|
|
|
9131
9077
|
}
|
|
9132
9078
|
},
|
|
9133
9079
|
"node_modules/change-case": {
|
|
9134
|
-
"version": "
|
|
9135
|
-
"resolved": "https://registry.npmjs.org/change-case/-/change-case-
|
|
9136
|
-
"integrity": "sha512-
|
|
9137
|
-
"license": "MIT"
|
|
9080
|
+
"version": "4.1.2",
|
|
9081
|
+
"resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz",
|
|
9082
|
+
"integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==",
|
|
9083
|
+
"license": "MIT",
|
|
9084
|
+
"dependencies": {
|
|
9085
|
+
"camel-case": "^4.1.2",
|
|
9086
|
+
"capital-case": "^1.0.4",
|
|
9087
|
+
"constant-case": "^3.0.4",
|
|
9088
|
+
"dot-case": "^3.0.4",
|
|
9089
|
+
"header-case": "^2.0.4",
|
|
9090
|
+
"no-case": "^3.0.4",
|
|
9091
|
+
"param-case": "^3.0.4",
|
|
9092
|
+
"pascal-case": "^3.1.2",
|
|
9093
|
+
"path-case": "^3.0.4",
|
|
9094
|
+
"sentence-case": "^3.0.4",
|
|
9095
|
+
"snake-case": "^3.0.4",
|
|
9096
|
+
"tslib": "^2.0.3"
|
|
9097
|
+
}
|
|
9138
9098
|
},
|
|
9139
9099
|
"node_modules/character-entities-html4": {
|
|
9140
9100
|
"version": "2.1.0",
|
|
@@ -11558,6 +11518,23 @@
|
|
|
11558
11518
|
"url": "https://opencollective.com/eslint"
|
|
11559
11519
|
}
|
|
11560
11520
|
},
|
|
11521
|
+
"node_modules/eslint/node_modules/ajv": {
|
|
11522
|
+
"version": "6.12.6",
|
|
11523
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
|
11524
|
+
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
|
11525
|
+
"dev": true,
|
|
11526
|
+
"license": "MIT",
|
|
11527
|
+
"dependencies": {
|
|
11528
|
+
"fast-deep-equal": "^3.1.1",
|
|
11529
|
+
"fast-json-stable-stringify": "^2.0.0",
|
|
11530
|
+
"json-schema-traverse": "^0.4.1",
|
|
11531
|
+
"uri-js": "^4.2.2"
|
|
11532
|
+
},
|
|
11533
|
+
"funding": {
|
|
11534
|
+
"type": "github",
|
|
11535
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
11536
|
+
}
|
|
11537
|
+
},
|
|
11561
11538
|
"node_modules/eslint/node_modules/brace-expansion": {
|
|
11562
11539
|
"version": "1.1.11",
|
|
11563
11540
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
@@ -11612,6 +11589,13 @@
|
|
|
11612
11589
|
"node": ">=10.13.0"
|
|
11613
11590
|
}
|
|
11614
11591
|
},
|
|
11592
|
+
"node_modules/eslint/node_modules/json-schema-traverse": {
|
|
11593
|
+
"version": "0.4.1",
|
|
11594
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
|
11595
|
+
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
|
|
11596
|
+
"dev": true,
|
|
11597
|
+
"license": "MIT"
|
|
11598
|
+
},
|
|
11615
11599
|
"node_modules/eslint/node_modules/locate-path": {
|
|
11616
11600
|
"version": "6.0.0",
|
|
11617
11601
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
|
|
@@ -14708,10 +14692,9 @@
|
|
|
14708
14692
|
}
|
|
14709
14693
|
},
|
|
14710
14694
|
"node_modules/json-schema-traverse": {
|
|
14711
|
-
"version": "0.
|
|
14712
|
-
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.
|
|
14713
|
-
"integrity": "sha512-
|
|
14714
|
-
"dev": true,
|
|
14695
|
+
"version": "1.0.0",
|
|
14696
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
14697
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
14715
14698
|
"license": "MIT"
|
|
14716
14699
|
},
|
|
14717
14700
|
"node_modules/json-stable-stringify-without-jsonify": {
|
|
@@ -18958,8 +18941,6 @@
|
|
|
18958
18941
|
},
|
|
18959
18942
|
"node_modules/npm/node_modules/semver": {
|
|
18960
18943
|
"version": "7.7.2",
|
|
18961
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
|
|
18962
|
-
"integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
|
|
18963
18944
|
"inBundle": true,
|
|
18964
18945
|
"license": "ISC",
|
|
18965
18946
|
"bin": {
|
|
@@ -19965,27 +19946,6 @@
|
|
|
19965
19946
|
"node": ">=18.0.0"
|
|
19966
19947
|
}
|
|
19967
19948
|
},
|
|
19968
|
-
"node_modules/oclif/node_modules/change-case": {
|
|
19969
|
-
"version": "4.1.2",
|
|
19970
|
-
"resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz",
|
|
19971
|
-
"integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==",
|
|
19972
|
-
"dev": true,
|
|
19973
|
-
"license": "MIT",
|
|
19974
|
-
"dependencies": {
|
|
19975
|
-
"camel-case": "^4.1.2",
|
|
19976
|
-
"capital-case": "^1.0.4",
|
|
19977
|
-
"constant-case": "^3.0.4",
|
|
19978
|
-
"dot-case": "^3.0.4",
|
|
19979
|
-
"header-case": "^2.0.4",
|
|
19980
|
-
"no-case": "^3.0.4",
|
|
19981
|
-
"param-case": "^3.0.4",
|
|
19982
|
-
"pascal-case": "^3.1.2",
|
|
19983
|
-
"path-case": "^3.0.4",
|
|
19984
|
-
"sentence-case": "^3.0.4",
|
|
19985
|
-
"snake-case": "^3.0.4",
|
|
19986
|
-
"tslib": "^2.0.3"
|
|
19987
|
-
}
|
|
19988
|
-
},
|
|
19989
19949
|
"node_modules/oclif/node_modules/fs-extra": {
|
|
19990
19950
|
"version": "8.1.0",
|
|
19991
19951
|
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
|
|
@@ -20522,14 +20482,55 @@
|
|
|
20522
20482
|
}
|
|
20523
20483
|
},
|
|
20524
20484
|
"node_modules/pino-abstract-transport": {
|
|
20525
|
-
"version": "2.0
|
|
20526
|
-
"resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-2.0.
|
|
20527
|
-
"integrity": "sha512-
|
|
20485
|
+
"version": "1.2.0",
|
|
20486
|
+
"resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.2.0.tgz",
|
|
20487
|
+
"integrity": "sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==",
|
|
20528
20488
|
"license": "MIT",
|
|
20529
20489
|
"dependencies": {
|
|
20490
|
+
"readable-stream": "^4.0.0",
|
|
20530
20491
|
"split2": "^4.0.0"
|
|
20531
20492
|
}
|
|
20532
20493
|
},
|
|
20494
|
+
"node_modules/pino-abstract-transport/node_modules/buffer": {
|
|
20495
|
+
"version": "6.0.3",
|
|
20496
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
|
|
20497
|
+
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
|
20498
|
+
"funding": [
|
|
20499
|
+
{
|
|
20500
|
+
"type": "github",
|
|
20501
|
+
"url": "https://github.com/sponsors/feross"
|
|
20502
|
+
},
|
|
20503
|
+
{
|
|
20504
|
+
"type": "patreon",
|
|
20505
|
+
"url": "https://www.patreon.com/feross"
|
|
20506
|
+
},
|
|
20507
|
+
{
|
|
20508
|
+
"type": "consulting",
|
|
20509
|
+
"url": "https://feross.org/support"
|
|
20510
|
+
}
|
|
20511
|
+
],
|
|
20512
|
+
"license": "MIT",
|
|
20513
|
+
"dependencies": {
|
|
20514
|
+
"base64-js": "^1.3.1",
|
|
20515
|
+
"ieee754": "^1.2.1"
|
|
20516
|
+
}
|
|
20517
|
+
},
|
|
20518
|
+
"node_modules/pino-abstract-transport/node_modules/readable-stream": {
|
|
20519
|
+
"version": "4.5.2",
|
|
20520
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz",
|
|
20521
|
+
"integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==",
|
|
20522
|
+
"license": "MIT",
|
|
20523
|
+
"dependencies": {
|
|
20524
|
+
"abort-controller": "^3.0.0",
|
|
20525
|
+
"buffer": "^6.0.3",
|
|
20526
|
+
"events": "^3.3.0",
|
|
20527
|
+
"process": "^0.11.10",
|
|
20528
|
+
"string_decoder": "^1.3.0"
|
|
20529
|
+
},
|
|
20530
|
+
"engines": {
|
|
20531
|
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
20532
|
+
}
|
|
20533
|
+
},
|
|
20533
20534
|
"node_modules/pino-abstract-transport/node_modules/split2": {
|
|
20534
20535
|
"version": "4.2.0",
|
|
20535
20536
|
"resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
|
|
@@ -20597,6 +20598,15 @@
|
|
|
20597
20598
|
"node": "*"
|
|
20598
20599
|
}
|
|
20599
20600
|
},
|
|
20601
|
+
"node_modules/pino-pretty/node_modules/pino-abstract-transport": {
|
|
20602
|
+
"version": "2.0.0",
|
|
20603
|
+
"resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-2.0.0.tgz",
|
|
20604
|
+
"integrity": "sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==",
|
|
20605
|
+
"license": "MIT",
|
|
20606
|
+
"dependencies": {
|
|
20607
|
+
"split2": "^4.0.0"
|
|
20608
|
+
}
|
|
20609
|
+
},
|
|
20600
20610
|
"node_modules/pino-pretty/node_modules/readable-stream": {
|
|
20601
20611
|
"version": "4.5.2",
|
|
20602
20612
|
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz",
|
|
@@ -20613,12 +20623,39 @@
|
|
|
20613
20623
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
20614
20624
|
}
|
|
20615
20625
|
},
|
|
20626
|
+
"node_modules/pino-pretty/node_modules/split2": {
|
|
20627
|
+
"version": "4.2.0",
|
|
20628
|
+
"resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
|
|
20629
|
+
"integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
|
|
20630
|
+
"license": "ISC",
|
|
20631
|
+
"engines": {
|
|
20632
|
+
"node": ">= 10.x"
|
|
20633
|
+
}
|
|
20634
|
+
},
|
|
20616
20635
|
"node_modules/pino-std-serializers": {
|
|
20617
20636
|
"version": "7.0.0",
|
|
20618
20637
|
"resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz",
|
|
20619
20638
|
"integrity": "sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==",
|
|
20620
20639
|
"license": "MIT"
|
|
20621
20640
|
},
|
|
20641
|
+
"node_modules/pino/node_modules/pino-abstract-transport": {
|
|
20642
|
+
"version": "2.0.0",
|
|
20643
|
+
"resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-2.0.0.tgz",
|
|
20644
|
+
"integrity": "sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==",
|
|
20645
|
+
"license": "MIT",
|
|
20646
|
+
"dependencies": {
|
|
20647
|
+
"split2": "^4.0.0"
|
|
20648
|
+
}
|
|
20649
|
+
},
|
|
20650
|
+
"node_modules/pino/node_modules/split2": {
|
|
20651
|
+
"version": "4.2.0",
|
|
20652
|
+
"resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
|
|
20653
|
+
"integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
|
|
20654
|
+
"license": "ISC",
|
|
20655
|
+
"engines": {
|
|
20656
|
+
"node": ">= 10.x"
|
|
20657
|
+
}
|
|
20658
|
+
},
|
|
20622
20659
|
"node_modules/pkg-dir": {
|
|
20623
20660
|
"version": "4.2.0",
|
|
20624
20661
|
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
|
|
@@ -21810,9 +21847,9 @@
|
|
|
21810
21847
|
"license": "BSD-3-Clause"
|
|
21811
21848
|
},
|
|
21812
21849
|
"node_modules/semver": {
|
|
21813
|
-
"version": "7.7.
|
|
21814
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.
|
|
21815
|
-
"integrity": "sha512-
|
|
21850
|
+
"version": "7.7.3",
|
|
21851
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
|
|
21852
|
+
"integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
|
|
21816
21853
|
"license": "ISC",
|
|
21817
21854
|
"bin": {
|
|
21818
21855
|
"semver": "bin/semver.js"
|
package/oclif.lock
CHANGED
|
@@ -1656,10 +1656,10 @@
|
|
|
1656
1656
|
proc-log "^5.0.0"
|
|
1657
1657
|
which "^5.0.0"
|
|
1658
1658
|
|
|
1659
|
-
"@oclif/core@^4", "@oclif/core@^4.0.27", "@oclif/core@^4.2.8", "@oclif/core@^4.3.2", "@oclif/core@^4.5.2", "@oclif/core@^4.5.3", "@oclif/core@^4.5.4", "@oclif/core@>= 3.0.0", "@oclif/core@4.5.
|
|
1660
|
-
version "4.5.
|
|
1661
|
-
resolved "https://registry.npmjs.org/@oclif/core/-/core-4.5.
|
|
1662
|
-
integrity sha512-
|
|
1659
|
+
"@oclif/core@^4", "@oclif/core@^4.0.27", "@oclif/core@^4.2.8", "@oclif/core@^4.3.2", "@oclif/core@^4.5.2", "@oclif/core@^4.5.3", "@oclif/core@^4.5.4", "@oclif/core@>= 3.0.0", "@oclif/core@4.5.5":
|
|
1660
|
+
version "4.5.5"
|
|
1661
|
+
resolved "https://registry.npmjs.org/@oclif/core/-/core-4.5.5.tgz"
|
|
1662
|
+
integrity sha512-iQzlaJQgPeUXrtrX71OzDwxPikQ7c2FhNd8U8rBB7BCtj2XYfmzBT/Hmbc+g9OKDIG/JkbJT0fXaWMMBrhi+1A==
|
|
1663
1663
|
dependencies:
|
|
1664
1664
|
ansi-escapes "^4.3.2"
|
|
1665
1665
|
ansis "^3.17.0"
|
|
@@ -1672,7 +1672,7 @@
|
|
|
1672
1672
|
is-wsl "^2.2.0"
|
|
1673
1673
|
lilconfig "^3.1.3"
|
|
1674
1674
|
minimatch "^9.0.5"
|
|
1675
|
-
semver "^7.
|
|
1675
|
+
semver "^7.7.3"
|
|
1676
1676
|
string-width "^4.2.3"
|
|
1677
1677
|
supports-color "^8"
|
|
1678
1678
|
tinyglobby "^0.2.14"
|
|
@@ -1693,10 +1693,10 @@
|
|
|
1693
1693
|
react "^18.3.1"
|
|
1694
1694
|
wrap-ansi "^9.0.2"
|
|
1695
1695
|
|
|
1696
|
-
"@oclif/plugin-autocomplete@3.2.
|
|
1697
|
-
version "3.2.
|
|
1698
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.2.
|
|
1699
|
-
integrity sha512-
|
|
1696
|
+
"@oclif/plugin-autocomplete@3.2.36":
|
|
1697
|
+
version "3.2.36"
|
|
1698
|
+
resolved "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-3.2.36.tgz"
|
|
1699
|
+
integrity sha512-q2jNU2ze6YSSKxjj/ZI+JZXBVXS4l45eR1waUB8z8P4H9C5I+TxXVwn5T3g8O0YWvfkDHVODAUEU6qCOQYDTXQ==
|
|
1700
1700
|
dependencies:
|
|
1701
1701
|
"@oclif/core" "^4"
|
|
1702
1702
|
ansis "^3.16.0"
|
|
@@ -1745,10 +1745,10 @@
|
|
|
1745
1745
|
ansis "^3.17.0"
|
|
1746
1746
|
fast-levenshtein "^3.0.0"
|
|
1747
1747
|
|
|
1748
|
-
"@oclif/plugin-plugins@5.4.
|
|
1749
|
-
version "5.4.
|
|
1750
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-5.4.
|
|
1751
|
-
integrity sha512-
|
|
1748
|
+
"@oclif/plugin-plugins@5.4.50":
|
|
1749
|
+
version "5.4.50"
|
|
1750
|
+
resolved "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-5.4.50.tgz"
|
|
1751
|
+
integrity sha512-HNhmmgxH0xoFsYKubtWWhgSasbDEyoT+o/q5QDljiytNvqWP3wWiP6cqqWvGpKG2El7+g17crdWpv4jzrf3Lyg==
|
|
1752
1752
|
dependencies:
|
|
1753
1753
|
"@oclif/core" "^4.5.4"
|
|
1754
1754
|
ansis "^3.17.0"
|
|
@@ -1757,24 +1757,24 @@
|
|
|
1757
1757
|
npm-package-arg "^11.0.3"
|
|
1758
1758
|
npm-run-path "^5.3.0"
|
|
1759
1759
|
object-treeify "^4.0.1"
|
|
1760
|
-
semver "^7.7.
|
|
1760
|
+
semver "^7.7.3"
|
|
1761
1761
|
validate-npm-package-name "^5.0.1"
|
|
1762
1762
|
which "^4.0.0"
|
|
1763
1763
|
yarn "^1.22.22"
|
|
1764
1764
|
|
|
1765
|
-
"@oclif/plugin-search@1.2.
|
|
1766
|
-
version "1.2.
|
|
1767
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-search/-/plugin-search-1.2.
|
|
1768
|
-
integrity sha512-
|
|
1765
|
+
"@oclif/plugin-search@1.2.33":
|
|
1766
|
+
version "1.2.33"
|
|
1767
|
+
resolved "https://registry.npmjs.org/@oclif/plugin-search/-/plugin-search-1.2.33.tgz"
|
|
1768
|
+
integrity sha512-IVTlrRKiB4bmolAHI/zGu/08ID0iwh6Nw4eFhmB3vKcasopFH8O6+AVL6ci0b1Z/dBXlhVO4xeat2D6FghUOoQ==
|
|
1769
1769
|
dependencies:
|
|
1770
1770
|
"@oclif/core" "^4"
|
|
1771
1771
|
ansi-escapes "^7.1.1"
|
|
1772
1772
|
inquirer-autocomplete-standalone "^0.8.1"
|
|
1773
1773
|
|
|
1774
|
-
"@oclif/plugin-update@4.7.
|
|
1775
|
-
version "4.7.
|
|
1776
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.
|
|
1777
|
-
integrity sha512-
|
|
1774
|
+
"@oclif/plugin-update@4.7.10":
|
|
1775
|
+
version "4.7.10"
|
|
1776
|
+
resolved "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-4.7.10.tgz"
|
|
1777
|
+
integrity sha512-PEq1wjFGUj7VMkOWT9eSDa2iLWr6ibk84u0eo/VxZGHglzGFKGMY6lCJBOJK5KK3cv28hBUkxtMNBdWT62oHPw==
|
|
1778
1778
|
dependencies:
|
|
1779
1779
|
"@inquirer/select" "^2.5.0"
|
|
1780
1780
|
"@oclif/core" "^4"
|
|
@@ -1784,7 +1784,7 @@
|
|
|
1784
1784
|
filesize "^6.1.0"
|
|
1785
1785
|
got "^13"
|
|
1786
1786
|
proxy-agent "^6.5.0"
|
|
1787
|
-
semver "^7.7.
|
|
1787
|
+
semver "^7.7.3"
|
|
1788
1788
|
tar-fs "^2.1.4"
|
|
1789
1789
|
|
|
1790
1790
|
"@oclif/plugin-version@2.2.33":
|
|
@@ -1795,10 +1795,10 @@
|
|
|
1795
1795
|
"@oclif/core" "^4"
|
|
1796
1796
|
ansis "^3.17.0"
|
|
1797
1797
|
|
|
1798
|
-
"@oclif/plugin-warn-if-update-available@^3.1.48", "@oclif/plugin-warn-if-update-available@3.1.
|
|
1799
|
-
version "3.1.
|
|
1800
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.1.
|
|
1801
|
-
integrity sha512-
|
|
1798
|
+
"@oclif/plugin-warn-if-update-available@^3.1.48", "@oclif/plugin-warn-if-update-available@3.1.49":
|
|
1799
|
+
version "3.1.49"
|
|
1800
|
+
resolved "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.1.49.tgz"
|
|
1801
|
+
integrity sha512-QIA+Jgb6AiJTeRmblm4YmcVH8cqTjTDcTt3GhRnpi+CeEPhWPdnuN3xrqbmWXvG9e0EnT2OegRNZRg3CSwt2vA==
|
|
1802
1802
|
dependencies:
|
|
1803
1803
|
"@oclif/core" "^4"
|
|
1804
1804
|
ansis "^3.17.0"
|
|
@@ -1807,10 +1807,10 @@
|
|
|
1807
1807
|
lodash "^4.17.21"
|
|
1808
1808
|
registry-auth-token "^5.1.0"
|
|
1809
1809
|
|
|
1810
|
-
"@oclif/plugin-which@3.2.
|
|
1811
|
-
version "3.2.
|
|
1812
|
-
resolved "https://registry.npmjs.org/@oclif/plugin-which/-/plugin-which-3.2.
|
|
1813
|
-
integrity sha512-
|
|
1810
|
+
"@oclif/plugin-which@3.2.41":
|
|
1811
|
+
version "3.2.41"
|
|
1812
|
+
resolved "https://registry.npmjs.org/@oclif/plugin-which/-/plugin-which-3.2.41.tgz"
|
|
1813
|
+
integrity sha512-4324zD2eWhZaNg/tWjjJXLttpQTwfp/eplbO72zpGIdhYY4YDE5rxhGg/RYz0LF/d6REkNruvljHQJAtiAlfTA==
|
|
1814
1814
|
dependencies:
|
|
1815
1815
|
"@oclif/core" "^4"
|
|
1816
1816
|
ansis "^3.17.0"
|
|
@@ -2086,7 +2086,32 @@
|
|
|
2086
2086
|
strip-ansi "6.0.1"
|
|
2087
2087
|
ts-retry-promise "^0.8.1"
|
|
2088
2088
|
|
|
2089
|
-
"@salesforce/core@^8.10.1", "@salesforce/core@^8.12.0", "@salesforce/core@^8.15.0", "@salesforce/core@^8.18.1", "@salesforce/core@^8.18.
|
|
2089
|
+
"@salesforce/core@^8.10.1", "@salesforce/core@^8.12.0", "@salesforce/core@^8.15.0", "@salesforce/core@^8.18.1", "@salesforce/core@^8.18.7", "@salesforce/core@^8.19.1", "@salesforce/core@^8.21.2", "@salesforce/core@^8.22.0", "@salesforce/core@^8.23.0", "@salesforce/core@^8.23.1", "@salesforce/core@^8.23.2", "@salesforce/core@^8.5.1", "@salesforce/core@^8.8.0", "@salesforce/core@^8.8.1", "@salesforce/core@^8.8.5", "@salesforce/core@^8.9.1":
|
|
2090
|
+
version "8.23.2"
|
|
2091
|
+
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.23.2.tgz"
|
|
2092
|
+
integrity sha512-9XUlaI0orvdjDJZsgjt0lVLa5wrFWNaorRbshT/EJ6fIiqcAehOV2bR62NJtRhrOrgu1h34bTmUqMo+yUEES9w==
|
|
2093
|
+
dependencies:
|
|
2094
|
+
"@jsforce/jsforce-node" "^3.10.8"
|
|
2095
|
+
"@salesforce/kit" "^3.2.4"
|
|
2096
|
+
"@salesforce/schemas" "^1.10.0"
|
|
2097
|
+
"@salesforce/ts-types" "^2.0.11"
|
|
2098
|
+
ajv "^8.17.1"
|
|
2099
|
+
change-case "^4.1.2"
|
|
2100
|
+
fast-levenshtein "^3.0.0"
|
|
2101
|
+
faye "^1.4.1"
|
|
2102
|
+
form-data "^4.0.4"
|
|
2103
|
+
js2xmlparser "^4.0.1"
|
|
2104
|
+
jsonwebtoken "9.0.2"
|
|
2105
|
+
jszip "3.10.1"
|
|
2106
|
+
memfs "^4.30.1"
|
|
2107
|
+
pino "^9.7.0"
|
|
2108
|
+
pino-abstract-transport "^1.2.0"
|
|
2109
|
+
pino-pretty "^11.3.0"
|
|
2110
|
+
proper-lockfile "^4.1.2"
|
|
2111
|
+
semver "^7.6.3"
|
|
2112
|
+
ts-retry-promise "^0.8.1"
|
|
2113
|
+
|
|
2114
|
+
"@salesforce/core@8.23.1":
|
|
2090
2115
|
version "8.23.1"
|
|
2091
2116
|
resolved "https://registry.npmjs.org/@salesforce/core/-/core-8.23.1.tgz"
|
|
2092
2117
|
integrity sha512-/mQMu6g0gmkKQsl+G93VkkU+yrLEjnBzdUu0sPlS0WY5jM4M9sxg97LmRXa6dchECU3c/ugamsXaP6j6QmEfsQ==
|
|
@@ -2183,20 +2208,20 @@
|
|
|
2183
2208
|
jszip "^3.10.1"
|
|
2184
2209
|
object-treeify "^2"
|
|
2185
2210
|
|
|
2186
|
-
"@salesforce/plugin-agent@1.24.
|
|
2187
|
-
version "1.24.
|
|
2188
|
-
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.
|
|
2189
|
-
integrity sha512-
|
|
2211
|
+
"@salesforce/plugin-agent@1.24.15":
|
|
2212
|
+
version "1.24.15"
|
|
2213
|
+
resolved "https://registry.npmjs.org/@salesforce/plugin-agent/-/plugin-agent-1.24.15.tgz"
|
|
2214
|
+
integrity sha512-2UfM+2p5OdWVasNYvQzdd3aLpHWvWuun9VkvpxJDchd5uTQ80HguE1FvgwuPYG+HrRQy/hF4BOZ2evs1Di4Jkg==
|
|
2190
2215
|
dependencies:
|
|
2191
2216
|
"@inquirer/core" "^10.2.2"
|
|
2192
2217
|
"@inquirer/prompts" "^7.8.4"
|
|
2193
2218
|
"@oclif/core" "^4"
|
|
2194
2219
|
"@oclif/multi-stage-output" "^0.8.22"
|
|
2195
2220
|
"@salesforce/agents" "^0.17.9"
|
|
2196
|
-
"@salesforce/core" "^8.
|
|
2221
|
+
"@salesforce/core" "^8.23.2"
|
|
2197
2222
|
"@salesforce/kit" "^3.2.3"
|
|
2198
2223
|
"@salesforce/sf-plugins-core" "^12.2.4"
|
|
2199
|
-
"@salesforce/source-deploy-retrieve" "^12.
|
|
2224
|
+
"@salesforce/source-deploy-retrieve" "^12.24.0"
|
|
2200
2225
|
"@salesforce/types" "^1.4.0"
|
|
2201
2226
|
ansis "^3.3.2"
|
|
2202
2227
|
fast-xml-parser "^4.5.1"
|
|
@@ -2521,10 +2546,10 @@
|
|
|
2521
2546
|
cli-progress "^3.12.0"
|
|
2522
2547
|
terminal-link "^3.0.0"
|
|
2523
2548
|
|
|
2524
|
-
"@salesforce/source-deploy-retrieve@^12.16.9", "@salesforce/source-deploy-retrieve@^12.19.9", "@salesforce/source-deploy-retrieve@^12.22.0", "@salesforce/source-deploy-retrieve@^12.22.
|
|
2525
|
-
version "12.
|
|
2526
|
-
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.
|
|
2527
|
-
integrity sha512
|
|
2549
|
+
"@salesforce/source-deploy-retrieve@^12.16.9", "@salesforce/source-deploy-retrieve@^12.19.9", "@salesforce/source-deploy-retrieve@^12.22.0", "@salesforce/source-deploy-retrieve@^12.22.14", "@salesforce/source-deploy-retrieve@^12.22.2", "@salesforce/source-deploy-retrieve@^12.24.0":
|
|
2550
|
+
version "12.24.0"
|
|
2551
|
+
resolved "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.24.0.tgz"
|
|
2552
|
+
integrity sha512-gjS6whT1575UGxwR2foDILlsbDQPwng0rNyXsk39hwg+bRsbHABZGzxU5EeUIzpKqv4bf6C9z/BLYiHMcZocoQ==
|
|
2528
2553
|
dependencies:
|
|
2529
2554
|
"@salesforce/core" "^8.23.1"
|
|
2530
2555
|
"@salesforce/kit" "^3.2.3"
|
|
@@ -3755,17 +3780,7 @@ ajv@^6.12.4:
|
|
|
3755
3780
|
json-schema-traverse "^0.4.1"
|
|
3756
3781
|
uri-js "^4.2.2"
|
|
3757
3782
|
|
|
3758
|
-
ajv@^8.11.0:
|
|
3759
|
-
version "8.17.1"
|
|
3760
|
-
resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz"
|
|
3761
|
-
integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
|
|
3762
|
-
dependencies:
|
|
3763
|
-
fast-deep-equal "^3.1.3"
|
|
3764
|
-
fast-uri "^3.0.1"
|
|
3765
|
-
json-schema-traverse "^1.0.0"
|
|
3766
|
-
require-from-string "^2.0.2"
|
|
3767
|
-
|
|
3768
|
-
ajv@^8.17.1:
|
|
3783
|
+
ajv@^8.11.0, ajv@^8.17.1:
|
|
3769
3784
|
version "8.17.1"
|
|
3770
3785
|
resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz"
|
|
3771
3786
|
integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
|
|
@@ -4457,25 +4472,7 @@ chalk@^5.6.2:
|
|
|
4457
4472
|
resolved "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz"
|
|
4458
4473
|
integrity sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==
|
|
4459
4474
|
|
|
4460
|
-
change-case@^4:
|
|
4461
|
-
version "4.1.2"
|
|
4462
|
-
resolved "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz"
|
|
4463
|
-
integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==
|
|
4464
|
-
dependencies:
|
|
4465
|
-
camel-case "^4.1.2"
|
|
4466
|
-
capital-case "^1.0.4"
|
|
4467
|
-
constant-case "^3.0.4"
|
|
4468
|
-
dot-case "^3.0.4"
|
|
4469
|
-
header-case "^2.0.4"
|
|
4470
|
-
no-case "^3.0.4"
|
|
4471
|
-
param-case "^3.0.4"
|
|
4472
|
-
pascal-case "^3.1.2"
|
|
4473
|
-
path-case "^3.0.4"
|
|
4474
|
-
sentence-case "^3.0.4"
|
|
4475
|
-
snake-case "^3.0.4"
|
|
4476
|
-
tslib "^2.0.3"
|
|
4477
|
-
|
|
4478
|
-
change-case@^4.1.2:
|
|
4475
|
+
change-case@^4, change-case@^4.1.2:
|
|
4479
4476
|
version "4.1.2"
|
|
4480
4477
|
resolved "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz"
|
|
4481
4478
|
integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==
|
|
@@ -10202,10 +10199,10 @@ semver@^6.3.1:
|
|
|
10202
10199
|
resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz"
|
|
10203
10200
|
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
|
|
10204
10201
|
|
|
10205
|
-
semver@^7.1.1, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.5.0, semver@^7.5.1, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3, semver@^7.7.0, semver@^7.7.1, semver@^7.7.2:
|
|
10206
|
-
version "7.7.
|
|
10207
|
-
resolved "https://registry.npmjs.org/semver/-/semver-7.7.
|
|
10208
|
-
integrity sha512-
|
|
10202
|
+
semver@^7.1.1, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.5.0, semver@^7.5.1, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3, semver@^7.7.0, semver@^7.7.1, semver@^7.7.2, semver@^7.7.3:
|
|
10203
|
+
version "7.7.3"
|
|
10204
|
+
resolved "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz"
|
|
10205
|
+
integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==
|
|
10209
10206
|
|
|
10210
10207
|
"semver@2 || 3 || 4 || 5":
|
|
10211
10208
|
version "5.7.2"
|
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.110.
|
|
4
|
+
"version": "2.110.11",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sf": "./bin/run.js",
|
|
@@ -144,20 +144,20 @@
|
|
|
144
144
|
},
|
|
145
145
|
"dependencies": {
|
|
146
146
|
"@inquirer/select": "^2.3.5",
|
|
147
|
-
"@oclif/core": "4.5.
|
|
148
|
-
"@oclif/plugin-autocomplete": "3.2.
|
|
147
|
+
"@oclif/core": "4.5.5",
|
|
148
|
+
"@oclif/plugin-autocomplete": "3.2.36",
|
|
149
149
|
"@oclif/plugin-commands": "4.1.34",
|
|
150
150
|
"@oclif/plugin-help": "6.2.33",
|
|
151
151
|
"@oclif/plugin-not-found": "3.2.68",
|
|
152
|
-
"@oclif/plugin-plugins": "5.4.
|
|
153
|
-
"@oclif/plugin-search": "1.2.
|
|
154
|
-
"@oclif/plugin-update": "4.7.
|
|
152
|
+
"@oclif/plugin-plugins": "5.4.50",
|
|
153
|
+
"@oclif/plugin-search": "1.2.33",
|
|
154
|
+
"@oclif/plugin-update": "4.7.10",
|
|
155
155
|
"@oclif/plugin-version": "2.2.33",
|
|
156
|
-
"@oclif/plugin-warn-if-update-available": "3.1.
|
|
157
|
-
"@oclif/plugin-which": "3.2.
|
|
156
|
+
"@oclif/plugin-warn-if-update-available": "3.1.49",
|
|
157
|
+
"@oclif/plugin-which": "3.2.41",
|
|
158
158
|
"@salesforce/core": "^8.9.1",
|
|
159
159
|
"@salesforce/kit": "^3.1.6",
|
|
160
|
-
"@salesforce/plugin-agent": "1.24.
|
|
160
|
+
"@salesforce/plugin-agent": "1.24.15",
|
|
161
161
|
"@salesforce/plugin-apex": "3.8.3",
|
|
162
162
|
"@salesforce/plugin-api": "1.3.3",
|
|
163
163
|
"@salesforce/plugin-auth": "3.9.9",
|