@pnp/cli-microsoft365 11.9.0-beta.7b34e40 → 11.9.0-beta.93bd508
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/.devproxy/api-specs/sharepoint.yaml +82 -0
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/m365/cli/commands/app/app-reconsent.js +8 -0
- package/dist/m365/cli/commands/cli-consent.js +8 -31
- package/dist/m365/cli/commands/cli-doctor.js +6 -1
- package/dist/m365/cli/commands/cli-issue.js +8 -36
- package/dist/m365/cli/commands/completion/completion-clink-update.js +8 -0
- package/dist/m365/cli/commands/completion/completion-pwsh-setup.js +8 -16
- package/dist/m365/cli/commands/completion/completion-pwsh-update.js +8 -0
- package/dist/m365/cli/commands/completion/completion-sh-setup.js +8 -0
- package/dist/m365/cli/commands/completion/completion-sh-update.js +8 -0
- package/dist/m365/cli/commands/config/config-get.js +9 -32
- package/dist/m365/cli/commands/config/config-list.js +8 -0
- package/dist/m365/cli/commands/config/config-reset.js +9 -34
- package/dist/m365/cli/commands/config/config-set.js +86 -70
- package/dist/m365/commands/request.js +26 -60
- package/dist/m365/commands/search.js +59 -77
- package/dist/m365/commands/setup.js +16 -31
- package/dist/m365/commands/version.js +6 -0
- package/dist/m365/connection/commands/connection-remove.js +9 -29
- package/dist/m365/connection/commands/connection-use.js +8 -26
- package/dist/m365/context/commands/context-init.js +6 -0
- package/dist/m365/context/commands/option/option-set.js +9 -18
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-add.js +32 -63
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-get.js +21 -45
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-list.js +32 -53
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-member-remove.js +34 -74
- package/dist/m365/entra/commands/administrativeunit/administrativeunit-roleassignment-add.js +37 -57
- package/dist/m365/entra/commands/multitenant/multitenant-get.js +8 -1
- package/dist/m365/entra/commands/multitenant/multitenant-remove.js +8 -22
- package/dist/m365/entra/commands/multitenant/multitenant-set.js +15 -36
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-add.js +10 -31
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-list.js +8 -24
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-remove.js +9 -17
- package/dist/m365/entra/commands/oauth2grant/oauth2grant-set.js +9 -17
- package/dist/m365/spe/commands/container/container-permission-list.js +43 -4
- package/dist/m365/spo/commands/file/file-unarchive.js +83 -0
- package/dist/m365/spo/commands/folder/folder-archive.js +89 -0
- package/dist/m365/spo/commands.js +2 -0
- package/dist/m365/viva/commands/engage/engage-role-member-add.js +79 -0
- package/dist/m365/viva/commands.js +1 -0
- package/docs/docs/cmd/spe/container/container-get.mdx +13 -1
- package/docs/docs/cmd/spe/container/container-permission-list.mdx +24 -3
- package/docs/docs/cmd/spo/app/app-add.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-deploy.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-get.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-install.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-instance-list.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-list.mdx +19 -0
- package/docs/docs/cmd/spo/app/app-remove.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-retract.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-teamspackage-download.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-uninstall.mdx +21 -0
- package/docs/docs/cmd/spo/app/app-upgrade.mdx +21 -0
- package/docs/docs/cmd/spo/apppage/apppage-add.mdx +19 -1
- package/docs/docs/cmd/spo/apppage/apppage-set.mdx +21 -0
- package/docs/docs/cmd/spo/commandset/commandset-add.mdx +19 -0
- package/docs/docs/cmd/spo/commandset/commandset-get.mdx +19 -0
- package/docs/docs/cmd/spo/commandset/commandset-list.mdx +19 -0
- package/docs/docs/cmd/spo/commandset/commandset-remove.mdx +21 -0
- package/docs/docs/cmd/spo/commandset/commandset-set.mdx +21 -0
- package/docs/docs/cmd/spo/file/file-unarchive.mdx +68 -0
- package/docs/docs/cmd/spo/folder/folder-archive.mdx +73 -0
- package/docs/docs/cmd/viva/engage/engage-role-member-add.mdx +76 -0
- package/npm-shrinkwrap.json +273 -128
- package/package.json +18 -18
package/npm-shrinkwrap.json
CHANGED
|
@@ -9,18 +9,18 @@
|
|
|
9
9
|
"version": "11.9.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@azure/msal-common": "^16.
|
|
13
|
-
"@azure/msal-node": "^5.
|
|
14
|
-
"@inquirer/confirm": "^6.0
|
|
15
|
-
"@inquirer/input": "^5.0
|
|
16
|
-
"@inquirer/select": "^5.
|
|
12
|
+
"@azure/msal-common": "^16.6.2",
|
|
13
|
+
"@azure/msal-node": "^5.2.2",
|
|
14
|
+
"@inquirer/confirm": "^6.1.0",
|
|
15
|
+
"@inquirer/input": "^5.1.0",
|
|
16
|
+
"@inquirer/select": "^5.2.0",
|
|
17
17
|
"@xmldom/xmldom": "^0.9.10",
|
|
18
18
|
"adaptive-expressions": "^4.23.3",
|
|
19
19
|
"adaptivecards": "^3.0.6",
|
|
20
20
|
"adaptivecards-templating": "^2.3.1",
|
|
21
21
|
"adm-zip": "^0.5.17",
|
|
22
22
|
"applicationinsights": "^3.14.0",
|
|
23
|
-
"axios": "^1.
|
|
23
|
+
"axios": "^1.16.1",
|
|
24
24
|
"chalk": "^5.6.2",
|
|
25
25
|
"clipboardy": "^5.3.1",
|
|
26
26
|
"configstore": "^8.0.0",
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"node-forge": "^1.4.0",
|
|
33
33
|
"omelette": "^0.4.17",
|
|
34
34
|
"open": "^11.0.0",
|
|
35
|
-
"semver": "^7.
|
|
35
|
+
"semver": "^7.8.1",
|
|
36
36
|
"strip-json-comments": "^5.0.3",
|
|
37
37
|
"typescript": "^5.9.3",
|
|
38
38
|
"update-notifier": "^7.3.1",
|
|
39
|
-
"uuid": "^
|
|
40
|
-
"yaml": "^2.
|
|
39
|
+
"uuid": "^14.0.0",
|
|
40
|
+
"yaml": "^2.9.0",
|
|
41
41
|
"yargs-parser": "^22.0.0",
|
|
42
|
-
"zod": "^4.4.
|
|
42
|
+
"zod": "^4.4.3"
|
|
43
43
|
},
|
|
44
44
|
"bin": {
|
|
45
45
|
"m365": "dist/index.js",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@types/json-schema": "^7.0.15",
|
|
58
58
|
"@types/json-to-ast": "^2.1.4",
|
|
59
59
|
"@types/mocha": "^10.0.10",
|
|
60
|
-
"@types/node": "^24.12.
|
|
60
|
+
"@types/node": "^24.12.4",
|
|
61
61
|
"@types/node-forge": "^1.3.14",
|
|
62
62
|
"@types/omelette": "^0.4.5",
|
|
63
63
|
"@types/semver": "^7.7.1",
|
|
@@ -65,15 +65,15 @@
|
|
|
65
65
|
"@types/update-notifier": "^6.0.8",
|
|
66
66
|
"@types/uuid": "^10.0.0",
|
|
67
67
|
"@types/yargs-parser": "^21.0.3",
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^8.60.0",
|
|
69
69
|
"@typescript-eslint/parser": "^8.58.0",
|
|
70
70
|
"c8": "^11.0.0",
|
|
71
|
-
"eslint": "^10.
|
|
72
|
-
"eslint-plugin-mocha": "^11.
|
|
73
|
-
"globals": "^17.
|
|
74
|
-
"mocha": "^11.7.
|
|
71
|
+
"eslint": "^10.4.0",
|
|
72
|
+
"eslint-plugin-mocha": "^11.3.0",
|
|
73
|
+
"globals": "^17.6.0",
|
|
74
|
+
"mocha": "^11.7.6",
|
|
75
75
|
"rimraf": "^6.1.3",
|
|
76
|
-
"sinon": "^
|
|
76
|
+
"sinon": "^22.0.0",
|
|
77
77
|
"source-map-support": "^0.5.21",
|
|
78
78
|
"tsc-watch": "^7.2.0"
|
|
79
79
|
}
|
|
@@ -371,25 +371,22 @@
|
|
|
371
371
|
"node": ">=0.8.0"
|
|
372
372
|
}
|
|
373
373
|
},
|
|
374
|
-
"node_modules/@azure/msal-browser/node_modules/@azure/msal-common": {
|
|
375
|
-
"version": "16.6.2",
|
|
376
|
-
"license": "MIT",
|
|
377
|
-
"engines": {
|
|
378
|
-
"node": ">=0.8.0"
|
|
379
|
-
}
|
|
380
|
-
},
|
|
381
374
|
"node_modules/@azure/msal-common": {
|
|
382
|
-
"version": "16.
|
|
375
|
+
"version": "16.6.2",
|
|
376
|
+
"resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-16.6.2.tgz",
|
|
377
|
+
"integrity": "sha512-hQjjsekAjB00cM1EmatWJlzhEoK2Qhz7Rj5gvM6tYf8iL7RM3tkxlpU9fG0+ofkulzg9AEEA6dIEnSmDr5ZqUA==",
|
|
383
378
|
"license": "MIT",
|
|
384
379
|
"engines": {
|
|
385
380
|
"node": ">=0.8.0"
|
|
386
381
|
}
|
|
387
382
|
},
|
|
388
383
|
"node_modules/@azure/msal-node": {
|
|
389
|
-
"version": "5.
|
|
384
|
+
"version": "5.2.2",
|
|
385
|
+
"resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-5.2.2.tgz",
|
|
386
|
+
"integrity": "sha512-toS+2AePxqyzb0YOKttDOOiSl3jrkK9aiqIvpurpis0O34QcIS5gToqrgT39p04Dpxw3YoUU0lxJKTpSFFfA6Q==",
|
|
390
387
|
"license": "MIT",
|
|
391
388
|
"dependencies": {
|
|
392
|
-
"@azure/msal-common": "16.
|
|
389
|
+
"@azure/msal-common": "16.6.2",
|
|
393
390
|
"jsonwebtoken": "^9.0.0"
|
|
394
391
|
},
|
|
395
392
|
"engines": {
|
|
@@ -545,7 +542,9 @@
|
|
|
545
542
|
}
|
|
546
543
|
},
|
|
547
544
|
"node_modules/@eslint/config-helpers": {
|
|
548
|
-
"version": "0.
|
|
545
|
+
"version": "0.6.0",
|
|
546
|
+
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.6.0.tgz",
|
|
547
|
+
"integrity": "sha512-ii6Bw9jJ2zi2cWA2Z+9/QZ/+3DX6kwaV5Q986D/CdP3Lap3w/pgQZ373FV7byY/i7L4IRH/G43I5dz1ClsCbpA==",
|
|
549
548
|
"dev": true,
|
|
550
549
|
"license": "Apache-2.0",
|
|
551
550
|
"dependencies": {
|
|
@@ -681,18 +680,22 @@
|
|
|
681
680
|
}
|
|
682
681
|
},
|
|
683
682
|
"node_modules/@inquirer/ansi": {
|
|
684
|
-
"version": "2.0.
|
|
683
|
+
"version": "2.0.7",
|
|
684
|
+
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-2.0.7.tgz",
|
|
685
|
+
"integrity": "sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==",
|
|
685
686
|
"license": "MIT",
|
|
686
687
|
"engines": {
|
|
687
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
688
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
688
689
|
}
|
|
689
690
|
},
|
|
690
691
|
"node_modules/@inquirer/confirm": {
|
|
691
|
-
"version": "6.0
|
|
692
|
+
"version": "6.1.0",
|
|
693
|
+
"resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-6.1.0.tgz",
|
|
694
|
+
"integrity": "sha512-USpeB76eqK7yGricDlGAupxWlp4a59qpeZOoNWaxO/nJln7agpJveyNkQ1d5u8YXG6TOqxZtQpKPORQQDrdVsA==",
|
|
692
695
|
"license": "MIT",
|
|
693
696
|
"dependencies": {
|
|
694
|
-
"@inquirer/core": "^11.
|
|
695
|
-
"@inquirer/type": "^4.0.
|
|
697
|
+
"@inquirer/core": "^11.2.0",
|
|
698
|
+
"@inquirer/type": "^4.0.6"
|
|
696
699
|
},
|
|
697
700
|
"engines": {
|
|
698
701
|
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
@@ -707,19 +710,21 @@
|
|
|
707
710
|
}
|
|
708
711
|
},
|
|
709
712
|
"node_modules/@inquirer/core": {
|
|
710
|
-
"version": "11.1
|
|
713
|
+
"version": "11.2.1",
|
|
714
|
+
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-11.2.1.tgz",
|
|
715
|
+
"integrity": "sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==",
|
|
711
716
|
"license": "MIT",
|
|
712
717
|
"dependencies": {
|
|
713
|
-
"@inquirer/ansi": "^2.0.
|
|
714
|
-
"@inquirer/figures": "^2.0.
|
|
715
|
-
"@inquirer/type": "^4.0.
|
|
718
|
+
"@inquirer/ansi": "^2.0.7",
|
|
719
|
+
"@inquirer/figures": "^2.0.7",
|
|
720
|
+
"@inquirer/type": "^4.0.7",
|
|
716
721
|
"cli-width": "^4.1.0",
|
|
717
722
|
"fast-wrap-ansi": "^0.2.0",
|
|
718
723
|
"mute-stream": "^3.0.0",
|
|
719
724
|
"signal-exit": "^4.1.0"
|
|
720
725
|
},
|
|
721
726
|
"engines": {
|
|
722
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
727
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
723
728
|
},
|
|
724
729
|
"peerDependencies": {
|
|
725
730
|
"@types/node": ">=18"
|
|
@@ -731,18 +736,22 @@
|
|
|
731
736
|
}
|
|
732
737
|
},
|
|
733
738
|
"node_modules/@inquirer/figures": {
|
|
734
|
-
"version": "2.0.
|
|
739
|
+
"version": "2.0.7",
|
|
740
|
+
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-2.0.7.tgz",
|
|
741
|
+
"integrity": "sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==",
|
|
735
742
|
"license": "MIT",
|
|
736
743
|
"engines": {
|
|
737
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
744
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
738
745
|
}
|
|
739
746
|
},
|
|
740
747
|
"node_modules/@inquirer/input": {
|
|
741
|
-
"version": "5.0
|
|
748
|
+
"version": "5.1.0",
|
|
749
|
+
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-5.1.0.tgz",
|
|
750
|
+
"integrity": "sha512-sVZCz6P6e8tW5g2bSFel1oLpa6jK/u7BexFfrgTqR8syIdnHqy+iopnlSbYBZMsCK52chLjhGNBxt0eRqhsghw==",
|
|
742
751
|
"license": "MIT",
|
|
743
752
|
"dependencies": {
|
|
744
|
-
"@inquirer/core": "^11.
|
|
745
|
-
"@inquirer/type": "^4.0.
|
|
753
|
+
"@inquirer/core": "^11.2.0",
|
|
754
|
+
"@inquirer/type": "^4.0.6"
|
|
746
755
|
},
|
|
747
756
|
"engines": {
|
|
748
757
|
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
@@ -757,13 +766,15 @@
|
|
|
757
766
|
}
|
|
758
767
|
},
|
|
759
768
|
"node_modules/@inquirer/select": {
|
|
760
|
-
"version": "5.
|
|
769
|
+
"version": "5.2.0",
|
|
770
|
+
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-5.2.0.tgz",
|
|
771
|
+
"integrity": "sha512-6IzkcmEbEXfgVbxZ2d1UyJFbCBoc6dTofulFmrYuomIp88HXiVqRbqbg4/mbfZhvnNo6xYmnYo2AEmDof6fQkg==",
|
|
761
772
|
"license": "MIT",
|
|
762
773
|
"dependencies": {
|
|
763
|
-
"@inquirer/ansi": "^2.0.
|
|
764
|
-
"@inquirer/core": "^11.
|
|
765
|
-
"@inquirer/figures": "^2.0.
|
|
766
|
-
"@inquirer/type": "^4.0.
|
|
774
|
+
"@inquirer/ansi": "^2.0.6",
|
|
775
|
+
"@inquirer/core": "^11.2.0",
|
|
776
|
+
"@inquirer/figures": "^2.0.6",
|
|
777
|
+
"@inquirer/type": "^4.0.6"
|
|
767
778
|
},
|
|
768
779
|
"engines": {
|
|
769
780
|
"node": ">=23.5.0 || ^22.13.0 || ^21.7.0 || ^20.12.0"
|
|
@@ -778,10 +789,12 @@
|
|
|
778
789
|
}
|
|
779
790
|
},
|
|
780
791
|
"node_modules/@inquirer/type": {
|
|
781
|
-
"version": "4.0.
|
|
792
|
+
"version": "4.0.7",
|
|
793
|
+
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-4.0.7.tgz",
|
|
794
|
+
"integrity": "sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g==",
|
|
782
795
|
"license": "MIT",
|
|
783
796
|
"engines": {
|
|
784
|
-
"node": ">=23.5.0 || ^22.13.0 || ^
|
|
797
|
+
"node": ">=23.5.0 || ^22.13.0 || ^20.17.0"
|
|
785
798
|
},
|
|
786
799
|
"peerDependencies": {
|
|
787
800
|
"@types/node": ">=18"
|
|
@@ -1748,7 +1761,9 @@
|
|
|
1748
1761
|
}
|
|
1749
1762
|
},
|
|
1750
1763
|
"node_modules/@types/node": {
|
|
1751
|
-
"version": "24.12.
|
|
1764
|
+
"version": "24.12.4",
|
|
1765
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.4.tgz",
|
|
1766
|
+
"integrity": "sha512-GUUEShf+PBCGW2KaXwcIt3Yk+e3pkKwWKb9GSyM9WQVE+ep2jzmHdGsHzu4wgcZy5fN9FBdVzjpBQsYlpfpgLA==",
|
|
1752
1767
|
"license": "MIT",
|
|
1753
1768
|
"dependencies": {
|
|
1754
1769
|
"undici-types": "~7.16.0"
|
|
@@ -1829,15 +1844,17 @@
|
|
|
1829
1844
|
"license": "MIT"
|
|
1830
1845
|
},
|
|
1831
1846
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
1832
|
-
"version": "8.
|
|
1847
|
+
"version": "8.60.0",
|
|
1848
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.0.tgz",
|
|
1849
|
+
"integrity": "sha512-QYb/sa74/s7OKMbACMjrYnGspj9Hs5YI5aaffSL65UfeBUzVzBJfVo3oWSpbzPurvm7yaCCo2Lk7lVj610HqKw==",
|
|
1833
1850
|
"dev": true,
|
|
1834
1851
|
"license": "MIT",
|
|
1835
1852
|
"dependencies": {
|
|
1836
1853
|
"@eslint-community/regexpp": "^4.12.2",
|
|
1837
|
-
"@typescript-eslint/scope-manager": "8.
|
|
1838
|
-
"@typescript-eslint/type-utils": "8.
|
|
1839
|
-
"@typescript-eslint/utils": "8.
|
|
1840
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
1854
|
+
"@typescript-eslint/scope-manager": "8.60.0",
|
|
1855
|
+
"@typescript-eslint/type-utils": "8.60.0",
|
|
1856
|
+
"@typescript-eslint/utils": "8.60.0",
|
|
1857
|
+
"@typescript-eslint/visitor-keys": "8.60.0",
|
|
1841
1858
|
"ignore": "^7.0.5",
|
|
1842
1859
|
"natural-compare": "^1.4.0",
|
|
1843
1860
|
"ts-api-utils": "^2.5.0"
|
|
@@ -1850,20 +1867,22 @@
|
|
|
1850
1867
|
"url": "https://opencollective.com/typescript-eslint"
|
|
1851
1868
|
},
|
|
1852
1869
|
"peerDependencies": {
|
|
1853
|
-
"@typescript-eslint/parser": "^8.
|
|
1870
|
+
"@typescript-eslint/parser": "^8.60.0",
|
|
1854
1871
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
1855
1872
|
"typescript": ">=4.8.4 <6.1.0"
|
|
1856
1873
|
}
|
|
1857
1874
|
},
|
|
1858
1875
|
"node_modules/@typescript-eslint/parser": {
|
|
1859
|
-
"version": "8.
|
|
1876
|
+
"version": "8.60.1",
|
|
1877
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.1.tgz",
|
|
1878
|
+
"integrity": "sha512-A0M6ua6H252bVjPvvtSgl2QA4+ET9S5Mtkb2GDyTxIhH/C4qDItT7RQNO5PhMC6NXGYXOR9dIalcDDgBKT7oFA==",
|
|
1860
1879
|
"dev": true,
|
|
1861
1880
|
"license": "MIT",
|
|
1862
1881
|
"dependencies": {
|
|
1863
|
-
"@typescript-eslint/scope-manager": "8.
|
|
1864
|
-
"@typescript-eslint/types": "8.
|
|
1865
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
1866
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
1882
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
1883
|
+
"@typescript-eslint/types": "8.60.1",
|
|
1884
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
1885
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
1867
1886
|
"debug": "^4.4.3"
|
|
1868
1887
|
},
|
|
1869
1888
|
"engines": {
|
|
@@ -1879,12 +1898,14 @@
|
|
|
1879
1898
|
}
|
|
1880
1899
|
},
|
|
1881
1900
|
"node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": {
|
|
1882
|
-
"version": "8.
|
|
1901
|
+
"version": "8.60.1",
|
|
1902
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.1.tgz",
|
|
1903
|
+
"integrity": "sha512-gvI5OQoptnxQnchOirukCuQ55svJSTuD/4k5+pC267xyBtYry748R9/c3tYUzb/iE6RZfllRz2lVulLCHkTm4w==",
|
|
1883
1904
|
"dev": true,
|
|
1884
1905
|
"license": "MIT",
|
|
1885
1906
|
"dependencies": {
|
|
1886
|
-
"@typescript-eslint/types": "8.
|
|
1887
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
1907
|
+
"@typescript-eslint/types": "8.60.1",
|
|
1908
|
+
"@typescript-eslint/visitor-keys": "8.60.1"
|
|
1888
1909
|
},
|
|
1889
1910
|
"engines": {
|
|
1890
1911
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -1895,7 +1916,9 @@
|
|
|
1895
1916
|
}
|
|
1896
1917
|
},
|
|
1897
1918
|
"node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": {
|
|
1898
|
-
"version": "8.
|
|
1919
|
+
"version": "8.60.1",
|
|
1920
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.1.tgz",
|
|
1921
|
+
"integrity": "sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==",
|
|
1899
1922
|
"dev": true,
|
|
1900
1923
|
"license": "MIT",
|
|
1901
1924
|
"engines": {
|
|
@@ -1907,11 +1930,13 @@
|
|
|
1907
1930
|
}
|
|
1908
1931
|
},
|
|
1909
1932
|
"node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/visitor-keys": {
|
|
1910
|
-
"version": "8.
|
|
1933
|
+
"version": "8.60.1",
|
|
1934
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.1.tgz",
|
|
1935
|
+
"integrity": "sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==",
|
|
1911
1936
|
"dev": true,
|
|
1912
1937
|
"license": "MIT",
|
|
1913
1938
|
"dependencies": {
|
|
1914
|
-
"@typescript-eslint/types": "8.
|
|
1939
|
+
"@typescript-eslint/types": "8.60.1",
|
|
1915
1940
|
"eslint-visitor-keys": "^5.0.0"
|
|
1916
1941
|
},
|
|
1917
1942
|
"engines": {
|
|
@@ -1924,6 +1949,8 @@
|
|
|
1924
1949
|
},
|
|
1925
1950
|
"node_modules/@typescript-eslint/parser/node_modules/eslint-visitor-keys": {
|
|
1926
1951
|
"version": "5.0.1",
|
|
1952
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
|
|
1953
|
+
"integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
|
|
1927
1954
|
"dev": true,
|
|
1928
1955
|
"license": "Apache-2.0",
|
|
1929
1956
|
"engines": {
|
|
@@ -1934,12 +1961,14 @@
|
|
|
1934
1961
|
}
|
|
1935
1962
|
},
|
|
1936
1963
|
"node_modules/@typescript-eslint/project-service": {
|
|
1937
|
-
"version": "8.
|
|
1964
|
+
"version": "8.60.1",
|
|
1965
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.1.tgz",
|
|
1966
|
+
"integrity": "sha512-eXkTH2bxmXlqD1RnOPmLZ9ZM9D3VwSx04JOwBnP9RQ+yUA5a2Mu7SfW8uaV2Aon53NJzZlZYuX7tn91Izf+xaw==",
|
|
1938
1967
|
"dev": true,
|
|
1939
1968
|
"license": "MIT",
|
|
1940
1969
|
"dependencies": {
|
|
1941
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
1942
|
-
"@typescript-eslint/types": "^8.
|
|
1970
|
+
"@typescript-eslint/tsconfig-utils": "^8.60.1",
|
|
1971
|
+
"@typescript-eslint/types": "^8.60.1",
|
|
1943
1972
|
"debug": "^4.4.3"
|
|
1944
1973
|
},
|
|
1945
1974
|
"engines": {
|
|
@@ -1954,7 +1983,9 @@
|
|
|
1954
1983
|
}
|
|
1955
1984
|
},
|
|
1956
1985
|
"node_modules/@typescript-eslint/project-service/node_modules/@typescript-eslint/types": {
|
|
1957
|
-
"version": "8.
|
|
1986
|
+
"version": "8.60.1",
|
|
1987
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.1.tgz",
|
|
1988
|
+
"integrity": "sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==",
|
|
1958
1989
|
"dev": true,
|
|
1959
1990
|
"license": "MIT",
|
|
1960
1991
|
"engines": {
|
|
@@ -1966,12 +1997,14 @@
|
|
|
1966
1997
|
}
|
|
1967
1998
|
},
|
|
1968
1999
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
1969
|
-
"version": "8.
|
|
2000
|
+
"version": "8.60.0",
|
|
2001
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.0.tgz",
|
|
2002
|
+
"integrity": "sha512-pFzqhllJMs+jghLQWzV00ds39xLzuyqPSev5pd8f4Ir0rtKR3ZLUB4/4dhjOFighWb9larvtfJvqL+4yKDI3Xw==",
|
|
1970
2003
|
"dev": true,
|
|
1971
2004
|
"license": "MIT",
|
|
1972
2005
|
"dependencies": {
|
|
1973
|
-
"@typescript-eslint/types": "8.
|
|
1974
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
2006
|
+
"@typescript-eslint/types": "8.60.0",
|
|
2007
|
+
"@typescript-eslint/visitor-keys": "8.60.0"
|
|
1975
2008
|
},
|
|
1976
2009
|
"engines": {
|
|
1977
2010
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -1982,7 +2015,9 @@
|
|
|
1982
2015
|
}
|
|
1983
2016
|
},
|
|
1984
2017
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
1985
|
-
"version": "8.
|
|
2018
|
+
"version": "8.60.1",
|
|
2019
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.1.tgz",
|
|
2020
|
+
"integrity": "sha512-nh8w4qAteiKuZu3pSSzG/yGKpw0OlkrKnzFmbVRenKaD4qc+7i1GrmZaLVkr8rk4uipiPGMOW4YsM6WmKZ5CvA==",
|
|
1986
2021
|
"dev": true,
|
|
1987
2022
|
"license": "MIT",
|
|
1988
2023
|
"engines": {
|
|
@@ -1997,13 +2032,15 @@
|
|
|
1997
2032
|
}
|
|
1998
2033
|
},
|
|
1999
2034
|
"node_modules/@typescript-eslint/type-utils": {
|
|
2000
|
-
"version": "8.
|
|
2035
|
+
"version": "8.60.0",
|
|
2036
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.0.tgz",
|
|
2037
|
+
"integrity": "sha512-SX46wEUtitCpq7AN38HkUU/+zvUpdKf7ephtWAFgckH8O7PQIyL5gvrhQgBLuEYgLfuKWOVvWVskMbuFHAz5xg==",
|
|
2001
2038
|
"dev": true,
|
|
2002
2039
|
"license": "MIT",
|
|
2003
2040
|
"dependencies": {
|
|
2004
|
-
"@typescript-eslint/types": "8.
|
|
2005
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
2006
|
-
"@typescript-eslint/utils": "8.
|
|
2041
|
+
"@typescript-eslint/types": "8.60.0",
|
|
2042
|
+
"@typescript-eslint/typescript-estree": "8.60.0",
|
|
2043
|
+
"@typescript-eslint/utils": "8.60.0",
|
|
2007
2044
|
"debug": "^4.4.3",
|
|
2008
2045
|
"ts-api-utils": "^2.5.0"
|
|
2009
2046
|
},
|
|
@@ -2020,12 +2057,14 @@
|
|
|
2020
2057
|
}
|
|
2021
2058
|
},
|
|
2022
2059
|
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/project-service": {
|
|
2023
|
-
"version": "8.
|
|
2060
|
+
"version": "8.60.0",
|
|
2061
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.0.tgz",
|
|
2062
|
+
"integrity": "sha512-aZu74NNKJeUWqCjDddzdiKaS82dgYgV/vmf+Ui3ZdZejmgfXR/q+pRumgobnQ2cCJTgGTWp4ypiwsuofFubavg==",
|
|
2024
2063
|
"dev": true,
|
|
2025
2064
|
"license": "MIT",
|
|
2026
2065
|
"dependencies": {
|
|
2027
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
2028
|
-
"@typescript-eslint/types": "^8.
|
|
2066
|
+
"@typescript-eslint/tsconfig-utils": "^8.60.0",
|
|
2067
|
+
"@typescript-eslint/types": "^8.60.0",
|
|
2029
2068
|
"debug": "^4.4.3"
|
|
2030
2069
|
},
|
|
2031
2070
|
"engines": {
|
|
@@ -2040,7 +2079,9 @@
|
|
|
2040
2079
|
}
|
|
2041
2080
|
},
|
|
2042
2081
|
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/tsconfig-utils": {
|
|
2043
|
-
"version": "8.
|
|
2082
|
+
"version": "8.60.0",
|
|
2083
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.0.tgz",
|
|
2084
|
+
"integrity": "sha512-BZPR3RGYlAXnly6ymAxfkVn5rCbZzQNou0rxv3GfWZ8cTQp+hhVd73khbGLAd8k1TlAPLISH337M+tAgAnaJDQ==",
|
|
2044
2085
|
"dev": true,
|
|
2045
2086
|
"license": "MIT",
|
|
2046
2087
|
"engines": {
|
|
@@ -2055,14 +2096,16 @@
|
|
|
2055
2096
|
}
|
|
2056
2097
|
},
|
|
2057
2098
|
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": {
|
|
2058
|
-
"version": "8.
|
|
2099
|
+
"version": "8.60.0",
|
|
2100
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.0.tgz",
|
|
2101
|
+
"integrity": "sha512-3AcZNBGMClm6CXDyo8kYvVGT/sx29sS0oBsIb9oZI2gunA4Vm2M3YHzRLPvsUBBsl+yB5FPtltq7gGH0iTlp9g==",
|
|
2059
2102
|
"dev": true,
|
|
2060
2103
|
"license": "MIT",
|
|
2061
2104
|
"dependencies": {
|
|
2062
|
-
"@typescript-eslint/project-service": "8.
|
|
2063
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
2064
|
-
"@typescript-eslint/types": "8.
|
|
2065
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
2105
|
+
"@typescript-eslint/project-service": "8.60.0",
|
|
2106
|
+
"@typescript-eslint/tsconfig-utils": "8.60.0",
|
|
2107
|
+
"@typescript-eslint/types": "8.60.0",
|
|
2108
|
+
"@typescript-eslint/visitor-keys": "8.60.0",
|
|
2066
2109
|
"debug": "^4.4.3",
|
|
2067
2110
|
"minimatch": "^10.2.2",
|
|
2068
2111
|
"semver": "^7.7.3",
|
|
@@ -2082,6 +2125,8 @@
|
|
|
2082
2125
|
},
|
|
2083
2126
|
"node_modules/@typescript-eslint/type-utils/node_modules/balanced-match": {
|
|
2084
2127
|
"version": "4.0.4",
|
|
2128
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
|
|
2129
|
+
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
2085
2130
|
"dev": true,
|
|
2086
2131
|
"license": "MIT",
|
|
2087
2132
|
"engines": {
|
|
@@ -2090,6 +2135,8 @@
|
|
|
2090
2135
|
},
|
|
2091
2136
|
"node_modules/@typescript-eslint/type-utils/node_modules/brace-expansion": {
|
|
2092
2137
|
"version": "5.0.6",
|
|
2138
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
2139
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
2093
2140
|
"dev": true,
|
|
2094
2141
|
"license": "MIT",
|
|
2095
2142
|
"dependencies": {
|
|
@@ -2101,6 +2148,8 @@
|
|
|
2101
2148
|
},
|
|
2102
2149
|
"node_modules/@typescript-eslint/type-utils/node_modules/minimatch": {
|
|
2103
2150
|
"version": "10.2.5",
|
|
2151
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
2152
|
+
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
2104
2153
|
"dev": true,
|
|
2105
2154
|
"license": "BlueOak-1.0.0",
|
|
2106
2155
|
"dependencies": {
|
|
@@ -2114,7 +2163,9 @@
|
|
|
2114
2163
|
}
|
|
2115
2164
|
},
|
|
2116
2165
|
"node_modules/@typescript-eslint/types": {
|
|
2117
|
-
"version": "8.
|
|
2166
|
+
"version": "8.60.0",
|
|
2167
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.0.tgz",
|
|
2168
|
+
"integrity": "sha512-AsE7x2XaAK+CVbeih0Fvbn+r1qHxtpLDJ3XUuFcIinT318T90yHMJC+Zgv+jUuDjQQd06HKwxnDu6sz1IcTilA==",
|
|
2118
2169
|
"dev": true,
|
|
2119
2170
|
"license": "MIT",
|
|
2120
2171
|
"engines": {
|
|
@@ -2126,14 +2177,16 @@
|
|
|
2126
2177
|
}
|
|
2127
2178
|
},
|
|
2128
2179
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
2129
|
-
"version": "8.
|
|
2180
|
+
"version": "8.60.1",
|
|
2181
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.1.tgz",
|
|
2182
|
+
"integrity": "sha512-alpRkfG8hlVE5kdJW2GkfgDgXxold3e8e4l6EnmhRmRLbekgAPCCGDVD++sABy9FcgPFroq+uFcCSM1vR57Cew==",
|
|
2130
2183
|
"dev": true,
|
|
2131
2184
|
"license": "MIT",
|
|
2132
2185
|
"dependencies": {
|
|
2133
|
-
"@typescript-eslint/project-service": "8.
|
|
2134
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
2135
|
-
"@typescript-eslint/types": "8.
|
|
2136
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
2186
|
+
"@typescript-eslint/project-service": "8.60.1",
|
|
2187
|
+
"@typescript-eslint/tsconfig-utils": "8.60.1",
|
|
2188
|
+
"@typescript-eslint/types": "8.60.1",
|
|
2189
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
2137
2190
|
"debug": "^4.4.3",
|
|
2138
2191
|
"minimatch": "^10.2.2",
|
|
2139
2192
|
"semver": "^7.7.3",
|
|
@@ -2152,7 +2205,9 @@
|
|
|
2152
2205
|
}
|
|
2153
2206
|
},
|
|
2154
2207
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/types": {
|
|
2155
|
-
"version": "8.
|
|
2208
|
+
"version": "8.60.1",
|
|
2209
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.1.tgz",
|
|
2210
|
+
"integrity": "sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==",
|
|
2156
2211
|
"dev": true,
|
|
2157
2212
|
"license": "MIT",
|
|
2158
2213
|
"engines": {
|
|
@@ -2164,11 +2219,13 @@
|
|
|
2164
2219
|
}
|
|
2165
2220
|
},
|
|
2166
2221
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/visitor-keys": {
|
|
2167
|
-
"version": "8.
|
|
2222
|
+
"version": "8.60.1",
|
|
2223
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.1.tgz",
|
|
2224
|
+
"integrity": "sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==",
|
|
2168
2225
|
"dev": true,
|
|
2169
2226
|
"license": "MIT",
|
|
2170
2227
|
"dependencies": {
|
|
2171
|
-
"@typescript-eslint/types": "8.
|
|
2228
|
+
"@typescript-eslint/types": "8.60.1",
|
|
2172
2229
|
"eslint-visitor-keys": "^5.0.0"
|
|
2173
2230
|
},
|
|
2174
2231
|
"engines": {
|
|
@@ -2181,6 +2238,8 @@
|
|
|
2181
2238
|
},
|
|
2182
2239
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
|
2183
2240
|
"version": "4.0.4",
|
|
2241
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
|
|
2242
|
+
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
2184
2243
|
"dev": true,
|
|
2185
2244
|
"license": "MIT",
|
|
2186
2245
|
"engines": {
|
|
@@ -2189,6 +2248,8 @@
|
|
|
2189
2248
|
},
|
|
2190
2249
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
|
2191
2250
|
"version": "5.0.6",
|
|
2251
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
2252
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
2192
2253
|
"dev": true,
|
|
2193
2254
|
"license": "MIT",
|
|
2194
2255
|
"dependencies": {
|
|
@@ -2200,6 +2261,8 @@
|
|
|
2200
2261
|
},
|
|
2201
2262
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/eslint-visitor-keys": {
|
|
2202
2263
|
"version": "5.0.1",
|
|
2264
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
|
|
2265
|
+
"integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
|
|
2203
2266
|
"dev": true,
|
|
2204
2267
|
"license": "Apache-2.0",
|
|
2205
2268
|
"engines": {
|
|
@@ -2211,6 +2274,8 @@
|
|
|
2211
2274
|
},
|
|
2212
2275
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
|
2213
2276
|
"version": "10.2.5",
|
|
2277
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
2278
|
+
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
2214
2279
|
"dev": true,
|
|
2215
2280
|
"license": "BlueOak-1.0.0",
|
|
2216
2281
|
"dependencies": {
|
|
@@ -2224,14 +2289,16 @@
|
|
|
2224
2289
|
}
|
|
2225
2290
|
},
|
|
2226
2291
|
"node_modules/@typescript-eslint/utils": {
|
|
2227
|
-
"version": "8.
|
|
2292
|
+
"version": "8.60.0",
|
|
2293
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.0.tgz",
|
|
2294
|
+
"integrity": "sha512-HtXuPfrHTyBDkameWpl+vJb1Uevu2tznAyahM1Oc4AENidCLTPiZDWIo4GfcxNdC/RcfGcadzzkqbRG87dUrQA==",
|
|
2228
2295
|
"dev": true,
|
|
2229
2296
|
"license": "MIT",
|
|
2230
2297
|
"dependencies": {
|
|
2231
2298
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
2232
|
-
"@typescript-eslint/scope-manager": "8.
|
|
2233
|
-
"@typescript-eslint/types": "8.
|
|
2234
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
2299
|
+
"@typescript-eslint/scope-manager": "8.60.0",
|
|
2300
|
+
"@typescript-eslint/types": "8.60.0",
|
|
2301
|
+
"@typescript-eslint/typescript-estree": "8.60.0"
|
|
2235
2302
|
},
|
|
2236
2303
|
"engines": {
|
|
2237
2304
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -2246,12 +2313,14 @@
|
|
|
2246
2313
|
}
|
|
2247
2314
|
},
|
|
2248
2315
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/project-service": {
|
|
2249
|
-
"version": "8.
|
|
2316
|
+
"version": "8.60.0",
|
|
2317
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.0.tgz",
|
|
2318
|
+
"integrity": "sha512-aZu74NNKJeUWqCjDddzdiKaS82dgYgV/vmf+Ui3ZdZejmgfXR/q+pRumgobnQ2cCJTgGTWp4ypiwsuofFubavg==",
|
|
2250
2319
|
"dev": true,
|
|
2251
2320
|
"license": "MIT",
|
|
2252
2321
|
"dependencies": {
|
|
2253
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
2254
|
-
"@typescript-eslint/types": "^8.
|
|
2322
|
+
"@typescript-eslint/tsconfig-utils": "^8.60.0",
|
|
2323
|
+
"@typescript-eslint/types": "^8.60.0",
|
|
2255
2324
|
"debug": "^4.4.3"
|
|
2256
2325
|
},
|
|
2257
2326
|
"engines": {
|
|
@@ -2266,7 +2335,9 @@
|
|
|
2266
2335
|
}
|
|
2267
2336
|
},
|
|
2268
2337
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/tsconfig-utils": {
|
|
2269
|
-
"version": "8.
|
|
2338
|
+
"version": "8.60.0",
|
|
2339
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.0.tgz",
|
|
2340
|
+
"integrity": "sha512-BZPR3RGYlAXnly6ymAxfkVn5rCbZzQNou0rxv3GfWZ8cTQp+hhVd73khbGLAd8k1TlAPLISH337M+tAgAnaJDQ==",
|
|
2270
2341
|
"dev": true,
|
|
2271
2342
|
"license": "MIT",
|
|
2272
2343
|
"engines": {
|
|
@@ -2281,14 +2352,16 @@
|
|
|
2281
2352
|
}
|
|
2282
2353
|
},
|
|
2283
2354
|
"node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": {
|
|
2284
|
-
"version": "8.
|
|
2355
|
+
"version": "8.60.0",
|
|
2356
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.0.tgz",
|
|
2357
|
+
"integrity": "sha512-3AcZNBGMClm6CXDyo8kYvVGT/sx29sS0oBsIb9oZI2gunA4Vm2M3YHzRLPvsUBBsl+yB5FPtltq7gGH0iTlp9g==",
|
|
2285
2358
|
"dev": true,
|
|
2286
2359
|
"license": "MIT",
|
|
2287
2360
|
"dependencies": {
|
|
2288
|
-
"@typescript-eslint/project-service": "8.
|
|
2289
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
2290
|
-
"@typescript-eslint/types": "8.
|
|
2291
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
2361
|
+
"@typescript-eslint/project-service": "8.60.0",
|
|
2362
|
+
"@typescript-eslint/tsconfig-utils": "8.60.0",
|
|
2363
|
+
"@typescript-eslint/types": "8.60.0",
|
|
2364
|
+
"@typescript-eslint/visitor-keys": "8.60.0",
|
|
2292
2365
|
"debug": "^4.4.3",
|
|
2293
2366
|
"minimatch": "^10.2.2",
|
|
2294
2367
|
"semver": "^7.7.3",
|
|
@@ -2308,6 +2381,8 @@
|
|
|
2308
2381
|
},
|
|
2309
2382
|
"node_modules/@typescript-eslint/utils/node_modules/balanced-match": {
|
|
2310
2383
|
"version": "4.0.4",
|
|
2384
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
|
|
2385
|
+
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
2311
2386
|
"dev": true,
|
|
2312
2387
|
"license": "MIT",
|
|
2313
2388
|
"engines": {
|
|
@@ -2316,6 +2391,8 @@
|
|
|
2316
2391
|
},
|
|
2317
2392
|
"node_modules/@typescript-eslint/utils/node_modules/brace-expansion": {
|
|
2318
2393
|
"version": "5.0.6",
|
|
2394
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
2395
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
2319
2396
|
"dev": true,
|
|
2320
2397
|
"license": "MIT",
|
|
2321
2398
|
"dependencies": {
|
|
@@ -2327,6 +2404,8 @@
|
|
|
2327
2404
|
},
|
|
2328
2405
|
"node_modules/@typescript-eslint/utils/node_modules/minimatch": {
|
|
2329
2406
|
"version": "10.2.5",
|
|
2407
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
2408
|
+
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
2330
2409
|
"dev": true,
|
|
2331
2410
|
"license": "BlueOak-1.0.0",
|
|
2332
2411
|
"dependencies": {
|
|
@@ -2340,11 +2419,13 @@
|
|
|
2340
2419
|
}
|
|
2341
2420
|
},
|
|
2342
2421
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
2343
|
-
"version": "8.
|
|
2422
|
+
"version": "8.60.0",
|
|
2423
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.0.tgz",
|
|
2424
|
+
"integrity": "sha512-9WI52t8ZGLVGrPMBet25yAftqY/n95+zmoUUtJBBQTKDSKUu7OsPTroT2op7U9JatkoRccL0YkWDNMFfC4Sjxg==",
|
|
2344
2425
|
"dev": true,
|
|
2345
2426
|
"license": "MIT",
|
|
2346
2427
|
"dependencies": {
|
|
2347
|
-
"@typescript-eslint/types": "8.
|
|
2428
|
+
"@typescript-eslint/types": "8.60.0",
|
|
2348
2429
|
"eslint-visitor-keys": "^5.0.0"
|
|
2349
2430
|
},
|
|
2350
2431
|
"engines": {
|
|
@@ -2357,6 +2438,8 @@
|
|
|
2357
2438
|
},
|
|
2358
2439
|
"node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
|
|
2359
2440
|
"version": "5.0.1",
|
|
2441
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
|
|
2442
|
+
"integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
|
|
2360
2443
|
"dev": true,
|
|
2361
2444
|
"license": "Apache-2.0",
|
|
2362
2445
|
"engines": {
|
|
@@ -2606,14 +2689,42 @@
|
|
|
2606
2689
|
}
|
|
2607
2690
|
},
|
|
2608
2691
|
"node_modules/axios": {
|
|
2609
|
-
"version": "1.
|
|
2692
|
+
"version": "1.16.1",
|
|
2693
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.16.1.tgz",
|
|
2694
|
+
"integrity": "sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==",
|
|
2610
2695
|
"license": "MIT",
|
|
2611
2696
|
"dependencies": {
|
|
2612
|
-
"follow-redirects": "^1.
|
|
2697
|
+
"follow-redirects": "^1.16.0",
|
|
2613
2698
|
"form-data": "^4.0.5",
|
|
2699
|
+
"https-proxy-agent": "^5.0.1",
|
|
2614
2700
|
"proxy-from-env": "^2.1.0"
|
|
2615
2701
|
}
|
|
2616
2702
|
},
|
|
2703
|
+
"node_modules/axios/node_modules/agent-base": {
|
|
2704
|
+
"version": "6.0.2",
|
|
2705
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
|
|
2706
|
+
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
|
|
2707
|
+
"license": "MIT",
|
|
2708
|
+
"dependencies": {
|
|
2709
|
+
"debug": "4"
|
|
2710
|
+
},
|
|
2711
|
+
"engines": {
|
|
2712
|
+
"node": ">= 6.0.0"
|
|
2713
|
+
}
|
|
2714
|
+
},
|
|
2715
|
+
"node_modules/axios/node_modules/https-proxy-agent": {
|
|
2716
|
+
"version": "5.0.1",
|
|
2717
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
|
|
2718
|
+
"integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
|
|
2719
|
+
"license": "MIT",
|
|
2720
|
+
"dependencies": {
|
|
2721
|
+
"agent-base": "6",
|
|
2722
|
+
"debug": "4"
|
|
2723
|
+
},
|
|
2724
|
+
"engines": {
|
|
2725
|
+
"node": ">= 6"
|
|
2726
|
+
}
|
|
2727
|
+
},
|
|
2617
2728
|
"node_modules/balanced-match": {
|
|
2618
2729
|
"version": "1.0.2",
|
|
2619
2730
|
"dev": true,
|
|
@@ -3299,14 +3410,16 @@
|
|
|
3299
3410
|
}
|
|
3300
3411
|
},
|
|
3301
3412
|
"node_modules/eslint": {
|
|
3302
|
-
"version": "10.
|
|
3413
|
+
"version": "10.4.0",
|
|
3414
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-10.4.0.tgz",
|
|
3415
|
+
"integrity": "sha512-loXy6bWOoP3EP6JA7jo6p5jMpBJmHmsNZM5SFRHLdh1MGOPurMnNBj4ZlAbaqUAaQWbCr7jHV4P7gzAyryZWkQ==",
|
|
3303
3416
|
"dev": true,
|
|
3304
3417
|
"license": "MIT",
|
|
3305
3418
|
"dependencies": {
|
|
3306
3419
|
"@eslint-community/eslint-utils": "^4.8.0",
|
|
3307
3420
|
"@eslint-community/regexpp": "^4.12.2",
|
|
3308
3421
|
"@eslint/config-array": "^0.23.5",
|
|
3309
|
-
"@eslint/config-helpers": "^0.
|
|
3422
|
+
"@eslint/config-helpers": "^0.6.0",
|
|
3310
3423
|
"@eslint/core": "^1.2.1",
|
|
3311
3424
|
"@eslint/plugin-kit": "^0.7.1",
|
|
3312
3425
|
"@humanfs/node": "^0.16.6",
|
|
@@ -3353,7 +3466,9 @@
|
|
|
3353
3466
|
}
|
|
3354
3467
|
},
|
|
3355
3468
|
"node_modules/eslint-plugin-mocha": {
|
|
3356
|
-
"version": "11.
|
|
3469
|
+
"version": "11.3.0",
|
|
3470
|
+
"resolved": "https://registry.npmjs.org/eslint-plugin-mocha/-/eslint-plugin-mocha-11.3.0.tgz",
|
|
3471
|
+
"integrity": "sha512-anENwrIwmdvunmmssjMn5a4nTd+mYMkqBlwjksxOECcIThLNhefWJIiTWY7pY/arMQFjNwHQjVOZb6pQ9PrLjg==",
|
|
3357
3472
|
"dev": true,
|
|
3358
3473
|
"license": "MIT",
|
|
3359
3474
|
"dependencies": {
|
|
@@ -3631,6 +3746,8 @@
|
|
|
3631
3746
|
},
|
|
3632
3747
|
"node_modules/fdir": {
|
|
3633
3748
|
"version": "6.5.0",
|
|
3749
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
3750
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
3634
3751
|
"dev": true,
|
|
3635
3752
|
"license": "MIT",
|
|
3636
3753
|
"engines": {
|
|
@@ -3884,7 +4001,9 @@
|
|
|
3884
4001
|
}
|
|
3885
4002
|
},
|
|
3886
4003
|
"node_modules/globals": {
|
|
3887
|
-
"version": "17.
|
|
4004
|
+
"version": "17.6.0",
|
|
4005
|
+
"resolved": "https://registry.npmjs.org/globals/-/globals-17.6.0.tgz",
|
|
4006
|
+
"integrity": "sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==",
|
|
3888
4007
|
"dev": true,
|
|
3889
4008
|
"license": "MIT",
|
|
3890
4009
|
"engines": {
|
|
@@ -4635,7 +4754,9 @@
|
|
|
4635
4754
|
}
|
|
4636
4755
|
},
|
|
4637
4756
|
"node_modules/mocha": {
|
|
4638
|
-
"version": "11.7.
|
|
4757
|
+
"version": "11.7.6",
|
|
4758
|
+
"resolved": "https://registry.npmjs.org/mocha/-/mocha-11.7.6.tgz",
|
|
4759
|
+
"integrity": "sha512-nS9xOGbw2I3cjCpxwZAEJ9xK9lmJ08vEkQvLtz4du9ZrF9UrjRpeJGiIgl2Z+Qs++pmB4ecDe48Fwsh+j+j7xA==",
|
|
4639
4760
|
"dev": true,
|
|
4640
4761
|
"license": "MIT",
|
|
4641
4762
|
"dependencies": {
|
|
@@ -5408,7 +5529,9 @@
|
|
|
5408
5529
|
"license": "MIT"
|
|
5409
5530
|
},
|
|
5410
5531
|
"node_modules/semver": {
|
|
5411
|
-
"version": "7.
|
|
5532
|
+
"version": "7.8.1",
|
|
5533
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.1.tgz",
|
|
5534
|
+
"integrity": "sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==",
|
|
5412
5535
|
"license": "ISC",
|
|
5413
5536
|
"bin": {
|
|
5414
5537
|
"semver": "bin/semver.js"
|
|
@@ -5453,20 +5576,32 @@
|
|
|
5453
5576
|
}
|
|
5454
5577
|
},
|
|
5455
5578
|
"node_modules/sinon": {
|
|
5456
|
-
"version": "
|
|
5579
|
+
"version": "22.0.0",
|
|
5580
|
+
"resolved": "https://registry.npmjs.org/sinon/-/sinon-22.0.0.tgz",
|
|
5581
|
+
"integrity": "sha512-sq/6DpdXOrLyfbKlXLg/Usc7xu8YXPeLkOFZRvA3bNUSA2lhbrZ06yuXbH1fkzBPCbz9O10+7hznzUsjaYNm0Q==",
|
|
5457
5582
|
"dev": true,
|
|
5458
5583
|
"license": "BSD-3-Clause",
|
|
5459
5584
|
"dependencies": {
|
|
5460
5585
|
"@sinonjs/commons": "^3.0.1",
|
|
5461
|
-
"@sinonjs/fake-timers": "^15.
|
|
5586
|
+
"@sinonjs/fake-timers": "^15.4.0",
|
|
5462
5587
|
"@sinonjs/samsam": "^10.0.2",
|
|
5463
|
-
"diff": "^
|
|
5588
|
+
"diff": "^9.0.0"
|
|
5464
5589
|
},
|
|
5465
5590
|
"funding": {
|
|
5466
5591
|
"type": "opencollective",
|
|
5467
5592
|
"url": "https://opencollective.com/sinon"
|
|
5468
5593
|
}
|
|
5469
5594
|
},
|
|
5595
|
+
"node_modules/sinon/node_modules/diff": {
|
|
5596
|
+
"version": "9.0.0",
|
|
5597
|
+
"resolved": "https://registry.npmjs.org/diff/-/diff-9.0.0.tgz",
|
|
5598
|
+
"integrity": "sha512-svtcdpS8CgJyqAjEQIXdb3OjhFVVYjzGAPO8WGCmRbrml64SPw/jJD4GoE98aR7r25A0XcgrK3F02yw9R/vhQw==",
|
|
5599
|
+
"dev": true,
|
|
5600
|
+
"license": "BSD-3-Clause",
|
|
5601
|
+
"engines": {
|
|
5602
|
+
"node": ">=0.3.1"
|
|
5603
|
+
}
|
|
5604
|
+
},
|
|
5470
5605
|
"node_modules/source-map": {
|
|
5471
5606
|
"version": "0.6.1",
|
|
5472
5607
|
"dev": true,
|
|
@@ -5804,7 +5939,9 @@
|
|
|
5804
5939
|
"license": "MIT"
|
|
5805
5940
|
},
|
|
5806
5941
|
"node_modules/tinyglobby": {
|
|
5807
|
-
"version": "0.2.
|
|
5942
|
+
"version": "0.2.17",
|
|
5943
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
5944
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
5808
5945
|
"dev": true,
|
|
5809
5946
|
"license": "MIT",
|
|
5810
5947
|
"dependencies": {
|
|
@@ -5899,6 +6036,8 @@
|
|
|
5899
6036
|
},
|
|
5900
6037
|
"node_modules/typescript": {
|
|
5901
6038
|
"version": "5.9.3",
|
|
6039
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
6040
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
5902
6041
|
"license": "Apache-2.0",
|
|
5903
6042
|
"bin": {
|
|
5904
6043
|
"tsc": "bin/tsc",
|
|
@@ -6079,7 +6218,9 @@
|
|
|
6079
6218
|
"license": "MIT"
|
|
6080
6219
|
},
|
|
6081
6220
|
"node_modules/uuid": {
|
|
6082
|
-
"version": "
|
|
6221
|
+
"version": "14.0.0",
|
|
6222
|
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-14.0.0.tgz",
|
|
6223
|
+
"integrity": "sha512-Qo+uWgilfSmAhXCMav1uYFynlQO7fMFiMVZsQqZRMIXp0O7rR7qjkj+cPvBHLgBqi960QCoo/PH2/6ZtVqKvrg==",
|
|
6083
6224
|
"funding": [
|
|
6084
6225
|
"https://github.com/sponsors/broofa",
|
|
6085
6226
|
"https://github.com/sponsors/ctavan"
|
|
@@ -6319,7 +6460,9 @@
|
|
|
6319
6460
|
"license": "ISC"
|
|
6320
6461
|
},
|
|
6321
6462
|
"node_modules/yaml": {
|
|
6322
|
-
"version": "2.
|
|
6463
|
+
"version": "2.9.0",
|
|
6464
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.0.tgz",
|
|
6465
|
+
"integrity": "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==",
|
|
6323
6466
|
"license": "ISC",
|
|
6324
6467
|
"bin": {
|
|
6325
6468
|
"yaml": "bin.mjs"
|
|
@@ -6442,7 +6585,9 @@
|
|
|
6442
6585
|
}
|
|
6443
6586
|
},
|
|
6444
6587
|
"node_modules/zod": {
|
|
6445
|
-
"version": "4.4.
|
|
6588
|
+
"version": "4.4.3",
|
|
6589
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
|
|
6590
|
+
"integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
|
|
6446
6591
|
"license": "MIT",
|
|
6447
6592
|
"funding": {
|
|
6448
6593
|
"url": "https://github.com/sponsors/colinhacks"
|