@salesforce/templates 66.11.0 → 66.11.1
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/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package-lock.json +361 -332
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package-lock.json +354 -325
- package/lib/templates/uiBundles/angularbasic/angular.json +11 -7
- package/lib/templates/uiBundles/angularbasic/eslint.config.js +4 -0
- package/lib/templates/uiBundles/angularbasic/package-lock.json +292 -239
- package/lib/templates/uiBundles/angularbasic/package.json +4 -0
- package/lib/templates/uiBundles/angularbasic/src/app/api/{graphql-client.service.spec.ts → data-client.service.spec.ts} +36 -6
- package/lib/templates/uiBundles/angularbasic/src/app/api/data-client.service.ts +74 -0
- package/lib/templates/uiBundles/angularbasic/src/app/app.config.ts +15 -1
- package/lib/templates/uiBundles/angularbasic/src/app/app.routes.ts +6 -1
- package/lib/templates/uiBundles/angularbasic/src/app/app.ts +7 -2
- package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.html +2 -1
- package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.ts +9 -3
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/_field-size.scss +42 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/alert/alert.component.html +31 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/alert/alert.component.ts +53 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.html +18 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.scss +112 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.ts +57 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/card/card.component.scss +34 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/card/card.component.ts +110 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/collapsible/collapsible.component.html +10 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/collapsible/collapsible.component.ts +26 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.html +25 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.scss +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.ts +41 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.html +34 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.scss +33 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.ts +66 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/dialog/dialog.component.html +37 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/dialog/dialog.component.ts +55 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field/field.component.html +21 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field/field.component.ts +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field-size.ts +8 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.html +19 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.scss +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.ts +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/label/label.component.html +3 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/label/label.component.ts +17 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/paginator/paginator.component.html +10 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/paginator/paginator.component.ts +37 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/popover/popover.component.html +41 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/popover/popover.component.ts +40 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.html +24 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.scss +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.ts +72 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.scss +23 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.ts +56 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.scss +28 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.ts +24 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/spinner/spinner.component.ts +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/pages/home/home.component.ts +7 -1
- package/lib/templates/uiBundles/angularbasic/src/app/pages/not-found/not-found.component.ts +7 -1
- package/lib/templates/uiBundles/angularbasic/src/app/utils/async-data.ts +99 -0
- package/lib/templates/uiBundles/angularbasic/src/index.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/styles.scss +170 -0
- package/lib/templates/uiBundles/angularbasic/src/theme.scss +39 -0
- package/lib/templates/uiBundles/reactbasic/package-lock.json +354 -325
- package/package.json +3 -3
- package/lib/templates/uiBundles/angularbasic/src/app/api/graphql-client.service.ts +0 -48
- package/lib/templates/uiBundles/angularbasic/src/app/app.css +0 -0
- package/lib/templates/uiBundles/angularbasic/src/styles.css +0 -12
- /package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.spec.ts +0 -0
|
@@ -93,14 +93,14 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"node_modules/@ardatan/relay-compiler": {
|
|
96
|
-
"version": "13.0.
|
|
97
|
-
"resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-13.0.
|
|
98
|
-
"integrity": "sha512-
|
|
96
|
+
"version": "13.0.2",
|
|
97
|
+
"resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-13.0.2.tgz",
|
|
98
|
+
"integrity": "sha512-VFpv9UP820SiwDUPYtq7PmD3jifzZlevkQ26bhbSzFeruSTys0eHzQCZyKg+IhgmZzwPI9AFjPe26ABNjGeIKg==",
|
|
99
99
|
"dev": true,
|
|
100
100
|
"license": "MIT",
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@babel/runtime": "^
|
|
103
|
-
"immutable": "^5.1.
|
|
102
|
+
"@babel/runtime": "^8.0.0",
|
|
103
|
+
"immutable": "^5.1.9",
|
|
104
104
|
"invariant": "^2.2.4"
|
|
105
105
|
},
|
|
106
106
|
"peerDependencies": {
|
|
@@ -537,14 +537,11 @@
|
|
|
537
537
|
}
|
|
538
538
|
},
|
|
539
539
|
"node_modules/@babel/runtime": {
|
|
540
|
-
"version": "
|
|
541
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-
|
|
542
|
-
"integrity": "sha512-
|
|
540
|
+
"version": "8.0.0",
|
|
541
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-8.0.0.tgz",
|
|
542
|
+
"integrity": "sha512-sL6cvO2IfkSu/iU+zs2S/w01B7A8V7suXSIKEN4hPFFdZoiPGxrj5pAG0lCaqLWiEIrjKzdznIWuaLcxPR53qw==",
|
|
543
543
|
"dev": true,
|
|
544
|
-
"license": "MIT"
|
|
545
|
-
"engines": {
|
|
546
|
-
"node": ">=6.9.0"
|
|
547
|
-
}
|
|
544
|
+
"license": "MIT"
|
|
548
545
|
},
|
|
549
546
|
"node_modules/@babel/template": {
|
|
550
547
|
"version": "7.29.7",
|
|
@@ -1668,9 +1665,9 @@
|
|
|
1668
1665
|
}
|
|
1669
1666
|
},
|
|
1670
1667
|
"node_modules/@eslint/eslintrc": {
|
|
1671
|
-
"version": "3.3.
|
|
1672
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.
|
|
1673
|
-
"integrity": "sha512-
|
|
1668
|
+
"version": "3.3.6",
|
|
1669
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.6.tgz",
|
|
1670
|
+
"integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==",
|
|
1674
1671
|
"dev": true,
|
|
1675
1672
|
"license": "MIT",
|
|
1676
1673
|
"dependencies": {
|
|
@@ -1680,7 +1677,7 @@
|
|
|
1680
1677
|
"globals": "^14.0.0",
|
|
1681
1678
|
"ignore": "^5.2.0",
|
|
1682
1679
|
"import-fresh": "^3.2.1",
|
|
1683
|
-
"js-yaml": "^4.
|
|
1680
|
+
"js-yaml": "^4.3.0",
|
|
1684
1681
|
"minimatch": "^3.1.5",
|
|
1685
1682
|
"strip-json-comments": "^3.1.1"
|
|
1686
1683
|
},
|
|
@@ -1729,9 +1726,9 @@
|
|
|
1729
1726
|
"license": "MIT"
|
|
1730
1727
|
},
|
|
1731
1728
|
"node_modules/@eslint/js": {
|
|
1732
|
-
"version": "9.39.
|
|
1733
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.
|
|
1734
|
-
"integrity": "sha512-
|
|
1729
|
+
"version": "9.39.5",
|
|
1730
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.5.tgz",
|
|
1731
|
+
"integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==",
|
|
1735
1732
|
"dev": true,
|
|
1736
1733
|
"license": "MIT",
|
|
1737
1734
|
"engines": {
|
|
@@ -1773,31 +1770,31 @@
|
|
|
1773
1770
|
"license": "MIT"
|
|
1774
1771
|
},
|
|
1775
1772
|
"node_modules/@floating-ui/core": {
|
|
1776
|
-
"version": "1.
|
|
1777
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.
|
|
1778
|
-
"integrity": "sha512-
|
|
1773
|
+
"version": "1.8.0",
|
|
1774
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.8.0.tgz",
|
|
1775
|
+
"integrity": "sha512-0CIZ5itps/8x7BG8dEIhs53BvCUH2PCoogtakwRTut+Arm58sJooJ0AuZhLw2HJYIR5cMLNPBSS728sPho2khQ==",
|
|
1779
1776
|
"license": "MIT",
|
|
1780
1777
|
"dependencies": {
|
|
1781
|
-
"@floating-ui/utils": "^0.2.
|
|
1778
|
+
"@floating-ui/utils": "^0.2.12"
|
|
1782
1779
|
}
|
|
1783
1780
|
},
|
|
1784
1781
|
"node_modules/@floating-ui/dom": {
|
|
1785
|
-
"version": "1.
|
|
1786
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.
|
|
1787
|
-
"integrity": "sha512-
|
|
1782
|
+
"version": "1.8.0",
|
|
1783
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.8.0.tgz",
|
|
1784
|
+
"integrity": "sha512-yXSrzeHZBTZadLOlfyhCkJHNeLJnHRnRInwdZ40L7ZiaAtrBwoYlsDrX3v5zB1Utk7CLfzcOVnVVWoXEky7Ceg==",
|
|
1788
1785
|
"license": "MIT",
|
|
1789
1786
|
"dependencies": {
|
|
1790
|
-
"@floating-ui/core": "^1.
|
|
1791
|
-
"@floating-ui/utils": "^0.2.
|
|
1787
|
+
"@floating-ui/core": "^1.8.0",
|
|
1788
|
+
"@floating-ui/utils": "^0.2.12"
|
|
1792
1789
|
}
|
|
1793
1790
|
},
|
|
1794
1791
|
"node_modules/@floating-ui/react-dom": {
|
|
1795
|
-
"version": "2.1.
|
|
1796
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.
|
|
1797
|
-
"integrity": "sha512-
|
|
1792
|
+
"version": "2.1.9",
|
|
1793
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.9.tgz",
|
|
1794
|
+
"integrity": "sha512-JDjEFGCpImxDCA7JJKviA0M9+RtmJdj0m/NVU5IMgBK+AmZouAQQ7/+2GLH0GXXY0YMw9oXPB8hKdbPYg5QLYg==",
|
|
1798
1795
|
"license": "MIT",
|
|
1799
1796
|
"dependencies": {
|
|
1800
|
-
"@floating-ui/dom": "^1.
|
|
1797
|
+
"@floating-ui/dom": "^1.8.0"
|
|
1801
1798
|
},
|
|
1802
1799
|
"peerDependencies": {
|
|
1803
1800
|
"react": ">=16.8.0",
|
|
@@ -1805,9 +1802,9 @@
|
|
|
1805
1802
|
}
|
|
1806
1803
|
},
|
|
1807
1804
|
"node_modules/@floating-ui/utils": {
|
|
1808
|
-
"version": "0.2.
|
|
1809
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.
|
|
1810
|
-
"integrity": "sha512-
|
|
1805
|
+
"version": "0.2.12",
|
|
1806
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.12.tgz",
|
|
1807
|
+
"integrity": "sha512-HpCo8tmWzLVad5s2d19EhAz5zqrrQ6s69qd6moPMQvkOuSwDT1YgRfWSVuc4ennqrgv3OHppiOGMQ7oC13yIww==",
|
|
1811
1808
|
"license": "MIT"
|
|
1812
1809
|
},
|
|
1813
1810
|
"node_modules/@graphql-codegen/add": {
|
|
@@ -2155,13 +2152,13 @@
|
|
|
2155
2152
|
}
|
|
2156
2153
|
},
|
|
2157
2154
|
"node_modules/@graphql-tools/apollo-engine-loader": {
|
|
2158
|
-
"version": "8.0.
|
|
2159
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.
|
|
2160
|
-
"integrity": "sha512-
|
|
2155
|
+
"version": "8.0.34",
|
|
2156
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.34.tgz",
|
|
2157
|
+
"integrity": "sha512-pxmrIbUtpiH2/Dx0093EQ0x7dXWdlfAZ97uSY280CkUxIB8EYZeNeV2pvk6HksZzBtHrprLRysrjnegLOmQBRA==",
|
|
2161
2158
|
"dev": true,
|
|
2162
2159
|
"license": "MIT",
|
|
2163
2160
|
"dependencies": {
|
|
2164
|
-
"@graphql-tools/utils": "^11.2.
|
|
2161
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2165
2162
|
"@whatwg-node/fetch": "^0.10.13",
|
|
2166
2163
|
"sync-fetch": "0.6.0",
|
|
2167
2164
|
"tslib": "^2.4.0"
|
|
@@ -2193,14 +2190,14 @@
|
|
|
2193
2190
|
}
|
|
2194
2191
|
},
|
|
2195
2192
|
"node_modules/@graphql-tools/code-file-loader": {
|
|
2196
|
-
"version": "8.1.
|
|
2197
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.
|
|
2198
|
-
"integrity": "sha512-
|
|
2193
|
+
"version": "8.1.36",
|
|
2194
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.36.tgz",
|
|
2195
|
+
"integrity": "sha512-EAIogV/vUmcrNa4icqnx5Xr5z3uLNSZ6867DEJyizuUfOCnD5JzCBQNsBjOBl3R5rzUiV3+GGSzzo15/jLN4oQ==",
|
|
2199
2196
|
"dev": true,
|
|
2200
2197
|
"license": "MIT",
|
|
2201
2198
|
"dependencies": {
|
|
2202
|
-
"@graphql-tools/graphql-tag-pluck": "8.3.
|
|
2203
|
-
"@graphql-tools/utils": "^11.2.
|
|
2199
|
+
"@graphql-tools/graphql-tag-pluck": "8.3.35",
|
|
2200
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2204
2201
|
"globby": "^11.0.3",
|
|
2205
2202
|
"tslib": "^2.4.0",
|
|
2206
2203
|
"unixify": "^1.0.0"
|
|
@@ -2213,9 +2210,9 @@
|
|
|
2213
2210
|
}
|
|
2214
2211
|
},
|
|
2215
2212
|
"node_modules/@graphql-tools/delegate": {
|
|
2216
|
-
"version": "12.0.
|
|
2217
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.
|
|
2218
|
-
"integrity": "sha512-
|
|
2213
|
+
"version": "12.0.20",
|
|
2214
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.20.tgz",
|
|
2215
|
+
"integrity": "sha512-87XNqi0Um62ecXCi/k0clvdIPCBvbIrAddZXY9rKWe1jMpHN8BgkEnHUOEI4S6LSOvyT/9y/22clVk0OOSTi9g==",
|
|
2219
2216
|
"dev": true,
|
|
2220
2217
|
"license": "MIT",
|
|
2221
2218
|
"dependencies": {
|
|
@@ -2253,15 +2250,15 @@
|
|
|
2253
2250
|
}
|
|
2254
2251
|
},
|
|
2255
2252
|
"node_modules/@graphql-tools/executor": {
|
|
2256
|
-
"version": "1.5.
|
|
2257
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.5.
|
|
2258
|
-
"integrity": "sha512-
|
|
2253
|
+
"version": "1.5.7",
|
|
2254
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.5.7.tgz",
|
|
2255
|
+
"integrity": "sha512-UcXVClkBml+qyGEsQxfEaAkboqySVGFUd9ivn7pDc9jZSckgF6zL21cNxuRH5ZA2exneV3PTtcc0I0rDOdE0Tg==",
|
|
2259
2256
|
"dev": true,
|
|
2260
2257
|
"license": "MIT",
|
|
2261
2258
|
"dependencies": {
|
|
2262
|
-
"@graphql-tools/utils": "^11.2.
|
|
2259
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2263
2260
|
"@graphql-typed-document-node/core": "^3.2.0",
|
|
2264
|
-
"@repeaterjs/repeater": "^3.0
|
|
2261
|
+
"@repeaterjs/repeater": "^3.1.0",
|
|
2265
2262
|
"@whatwg-node/disposablestack": "^0.0.6",
|
|
2266
2263
|
"@whatwg-node/promise-helpers": "^1.0.0",
|
|
2267
2264
|
"tslib": "^2.4.0"
|
|
@@ -2337,17 +2334,17 @@
|
|
|
2337
2334
|
}
|
|
2338
2335
|
},
|
|
2339
2336
|
"node_modules/@graphql-tools/executor-legacy-ws": {
|
|
2340
|
-
"version": "1.1.
|
|
2341
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.
|
|
2342
|
-
"integrity": "sha512-
|
|
2337
|
+
"version": "1.1.32",
|
|
2338
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.32.tgz",
|
|
2339
|
+
"integrity": "sha512-rmSp846dAgEGtwdQ7ntdgpLJzzRvw5rE8sR7ASPci2QoIn3McxVYwjq52SMNntoH4VaBeI/BrpyQIN5L68zAfA==",
|
|
2343
2340
|
"dev": true,
|
|
2344
2341
|
"license": "MIT",
|
|
2345
2342
|
"dependencies": {
|
|
2346
|
-
"@graphql-tools/utils": "^11.2.
|
|
2343
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2347
2344
|
"@types/ws": "^8.0.0",
|
|
2348
2345
|
"isomorphic-ws": "^5.0.0",
|
|
2349
2346
|
"tslib": "^2.4.0",
|
|
2350
|
-
"ws": "^8.21.
|
|
2347
|
+
"ws": "^8.21.1"
|
|
2351
2348
|
},
|
|
2352
2349
|
"engines": {
|
|
2353
2350
|
"node": ">=16.0.0"
|
|
@@ -2357,14 +2354,14 @@
|
|
|
2357
2354
|
}
|
|
2358
2355
|
},
|
|
2359
2356
|
"node_modules/@graphql-tools/git-loader": {
|
|
2360
|
-
"version": "8.0.
|
|
2361
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.
|
|
2362
|
-
"integrity": "sha512-
|
|
2357
|
+
"version": "8.0.40",
|
|
2358
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.40.tgz",
|
|
2359
|
+
"integrity": "sha512-aQkcTTymjeQBREoH8/x5JZWt/banq9D7fs8Gqqd2HGirh8JBYGoEbKm45bSdUqCLnqsOJ2oal5A73rsC7ASASw==",
|
|
2363
2360
|
"dev": true,
|
|
2364
2361
|
"license": "MIT",
|
|
2365
2362
|
"dependencies": {
|
|
2366
|
-
"@graphql-tools/graphql-tag-pluck": "8.3.
|
|
2367
|
-
"@graphql-tools/utils": "^11.2.
|
|
2363
|
+
"@graphql-tools/graphql-tag-pluck": "8.3.35",
|
|
2364
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2368
2365
|
"is-glob": "4.0.3",
|
|
2369
2366
|
"micromatch": "^4.0.8",
|
|
2370
2367
|
"tslib": "^2.4.0",
|
|
@@ -2378,15 +2375,15 @@
|
|
|
2378
2375
|
}
|
|
2379
2376
|
},
|
|
2380
2377
|
"node_modules/@graphql-tools/github-loader": {
|
|
2381
|
-
"version": "9.1.
|
|
2382
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-9.1.
|
|
2383
|
-
"integrity": "sha512
|
|
2378
|
+
"version": "9.1.6",
|
|
2379
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-9.1.6.tgz",
|
|
2380
|
+
"integrity": "sha512-hWsCcTZJ5NLKDUYynZjK7kVh/xmc/MpnLkBII+WQHCLOOXimaESZRnUuoo/nMqOwBKghBC0iF1nHiG9PqD9t3w==",
|
|
2384
2381
|
"dev": true,
|
|
2385
2382
|
"license": "MIT",
|
|
2386
2383
|
"dependencies": {
|
|
2387
2384
|
"@graphql-tools/executor-http": "^3.3.0",
|
|
2388
|
-
"@graphql-tools/graphql-tag-pluck": "^8.3.
|
|
2389
|
-
"@graphql-tools/utils": "^11.2.
|
|
2385
|
+
"@graphql-tools/graphql-tag-pluck": "^8.3.35",
|
|
2386
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2390
2387
|
"@whatwg-node/fetch": "^0.10.13",
|
|
2391
2388
|
"@whatwg-node/promise-helpers": "^1.0.0",
|
|
2392
2389
|
"sync-fetch": "0.6.0",
|
|
@@ -2400,14 +2397,14 @@
|
|
|
2400
2397
|
}
|
|
2401
2398
|
},
|
|
2402
2399
|
"node_modules/@graphql-tools/graphql-file-loader": {
|
|
2403
|
-
"version": "8.1.
|
|
2404
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.1.
|
|
2405
|
-
"integrity": "sha512-
|
|
2400
|
+
"version": "8.1.18",
|
|
2401
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.1.18.tgz",
|
|
2402
|
+
"integrity": "sha512-MBbAPFfGZN+jaRQQkqfY1Ztj4ftFgk9m7zh0h1jQC83xsVJ8zvMk2TGwg7g3lEGqa0cLOOEp/a1/78MSdhj2Zg==",
|
|
2406
2403
|
"dev": true,
|
|
2407
2404
|
"license": "MIT",
|
|
2408
2405
|
"dependencies": {
|
|
2409
|
-
"@graphql-tools/import": "^7.1.
|
|
2410
|
-
"@graphql-tools/utils": "^11.2.
|
|
2406
|
+
"@graphql-tools/import": "^7.1.18",
|
|
2407
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2411
2408
|
"globby": "^11.0.3",
|
|
2412
2409
|
"tslib": "^2.4.0",
|
|
2413
2410
|
"unixify": "^1.0.0"
|
|
@@ -2420,9 +2417,9 @@
|
|
|
2420
2417
|
}
|
|
2421
2418
|
},
|
|
2422
2419
|
"node_modules/@graphql-tools/graphql-tag-pluck": {
|
|
2423
|
-
"version": "8.3.
|
|
2424
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.
|
|
2425
|
-
"integrity": "sha512-
|
|
2420
|
+
"version": "8.3.35",
|
|
2421
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.35.tgz",
|
|
2422
|
+
"integrity": "sha512-k6udGhRFzf/FnfV/pl+2dxVURHtqdOj8evG3xFJahMS9bSMLkmTRCqTaR8e+ErYZEUODE2zCSPth3JLQEfAEqQ==",
|
|
2426
2423
|
"dev": true,
|
|
2427
2424
|
"license": "MIT",
|
|
2428
2425
|
"dependencies": {
|
|
@@ -2431,7 +2428,7 @@
|
|
|
2431
2428
|
"@babel/plugin-syntax-import-assertions": "^7.26.0",
|
|
2432
2429
|
"@babel/traverse": "^7.26.10",
|
|
2433
2430
|
"@babel/types": "^7.26.10",
|
|
2434
|
-
"@graphql-tools/utils": "^11.2.
|
|
2431
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2435
2432
|
"tslib": "^2.4.0"
|
|
2436
2433
|
},
|
|
2437
2434
|
"engines": {
|
|
@@ -2442,13 +2439,13 @@
|
|
|
2442
2439
|
}
|
|
2443
2440
|
},
|
|
2444
2441
|
"node_modules/@graphql-tools/import": {
|
|
2445
|
-
"version": "7.1.
|
|
2446
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.1.
|
|
2447
|
-
"integrity": "sha512
|
|
2442
|
+
"version": "7.1.18",
|
|
2443
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.1.18.tgz",
|
|
2444
|
+
"integrity": "sha512-/lCEk28rbUiypbX8jl5x0RBiHDsXk3YJ5jAU1nlqXEdxNiNI6p5ts+vt0N7UximIuolwV7BeRxLn5RUejyKZYQ==",
|
|
2448
2445
|
"dev": true,
|
|
2449
2446
|
"license": "MIT",
|
|
2450
2447
|
"dependencies": {
|
|
2451
|
-
"@graphql-tools/utils": "^11.2.
|
|
2448
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2452
2449
|
"resolve-from": "5.0.0",
|
|
2453
2450
|
"tslib": "^2.4.0"
|
|
2454
2451
|
},
|
|
@@ -2460,13 +2457,13 @@
|
|
|
2460
2457
|
}
|
|
2461
2458
|
},
|
|
2462
2459
|
"node_modules/@graphql-tools/json-file-loader": {
|
|
2463
|
-
"version": "8.0.
|
|
2464
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.
|
|
2465
|
-
"integrity": "sha512-
|
|
2460
|
+
"version": "8.0.32",
|
|
2461
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.32.tgz",
|
|
2462
|
+
"integrity": "sha512-PJ06nGC836vWWLCAPignLKAnIF+CKNkXlCIe9zkkb02jFPNdG5nA0PUxa1rqt/lqZd/x/ravZQ4yM47pxtLajg==",
|
|
2466
2463
|
"dev": true,
|
|
2467
2464
|
"license": "MIT",
|
|
2468
2465
|
"dependencies": {
|
|
2469
|
-
"@graphql-tools/utils": "^11.2.
|
|
2466
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2470
2467
|
"globby": "^11.0.3",
|
|
2471
2468
|
"tslib": "^2.4.0",
|
|
2472
2469
|
"unixify": "^1.0.0"
|
|
@@ -2479,14 +2476,14 @@
|
|
|
2479
2476
|
}
|
|
2480
2477
|
},
|
|
2481
2478
|
"node_modules/@graphql-tools/load": {
|
|
2482
|
-
"version": "8.1.
|
|
2483
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.1.
|
|
2484
|
-
"integrity": "sha512-
|
|
2479
|
+
"version": "8.1.15",
|
|
2480
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.1.15.tgz",
|
|
2481
|
+
"integrity": "sha512-QpCve0kf1IxNOWAk99VjS4CEZinQjKAfsgDDRWGUg9+9TqBbvCdsLAQshykHcfueEUPetVRVqqqOIRKo9eJ2xQ==",
|
|
2485
2482
|
"dev": true,
|
|
2486
2483
|
"license": "MIT",
|
|
2487
2484
|
"dependencies": {
|
|
2488
|
-
"@graphql-tools/schema": "^10.0.
|
|
2489
|
-
"@graphql-tools/utils": "^11.2.
|
|
2485
|
+
"@graphql-tools/schema": "^10.0.38",
|
|
2486
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2490
2487
|
"p-limit": "3.1.0",
|
|
2491
2488
|
"tslib": "^2.4.0"
|
|
2492
2489
|
},
|
|
@@ -2498,13 +2495,13 @@
|
|
|
2498
2495
|
}
|
|
2499
2496
|
},
|
|
2500
2497
|
"node_modules/@graphql-tools/merge": {
|
|
2501
|
-
"version": "9.2.
|
|
2502
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.2.
|
|
2503
|
-
"integrity": "sha512-
|
|
2498
|
+
"version": "9.2.2",
|
|
2499
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.2.2.tgz",
|
|
2500
|
+
"integrity": "sha512-DSLLAztOIQId7QE3m8Ehk5lV+0pjxNSSRDHPzlYQ9E4KJ9AoUMBprC4C+eX3v4srh05S2ujm5/veqAr5yEWFSQ==",
|
|
2504
2501
|
"dev": true,
|
|
2505
2502
|
"license": "MIT",
|
|
2506
2503
|
"dependencies": {
|
|
2507
|
-
"@graphql-tools/utils": "^11.2.
|
|
2504
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2508
2505
|
"tslib": "^2.4.0"
|
|
2509
2506
|
},
|
|
2510
2507
|
"engines": {
|
|
@@ -2531,14 +2528,14 @@
|
|
|
2531
2528
|
}
|
|
2532
2529
|
},
|
|
2533
2530
|
"node_modules/@graphql-tools/relay-operation-optimizer": {
|
|
2534
|
-
"version": "7.1.
|
|
2535
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.1.
|
|
2536
|
-
"integrity": "sha512-
|
|
2531
|
+
"version": "7.1.8",
|
|
2532
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.1.8.tgz",
|
|
2533
|
+
"integrity": "sha512-s16NYT+66VSLCITBURoGNTwh+YvZRSlW3MtFJC2gsvrHZHf6KpCvIR3Qju4yh0FtCoN7Wg7yOI/JT/UzaMEOwQ==",
|
|
2537
2534
|
"dev": true,
|
|
2538
2535
|
"license": "MIT",
|
|
2539
2536
|
"dependencies": {
|
|
2540
|
-
"@ardatan/relay-compiler": "^13.0.
|
|
2541
|
-
"@graphql-tools/utils": "^11.2.
|
|
2537
|
+
"@ardatan/relay-compiler": "^13.0.2",
|
|
2538
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2542
2539
|
"tslib": "^2.4.0"
|
|
2543
2540
|
},
|
|
2544
2541
|
"engines": {
|
|
@@ -2549,14 +2546,14 @@
|
|
|
2549
2546
|
}
|
|
2550
2547
|
},
|
|
2551
2548
|
"node_modules/@graphql-tools/schema": {
|
|
2552
|
-
"version": "10.0.
|
|
2553
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.
|
|
2554
|
-
"integrity": "sha512-
|
|
2549
|
+
"version": "10.0.38",
|
|
2550
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.38.tgz",
|
|
2551
|
+
"integrity": "sha512-Kckk2/vm+rELJ7ijvFaAn9ouWSVUTD0D4SJIvYF4rKeuQHAfCzE/jzMFonZVpTXleqJjPXLZjVbuaMorw7A5Og==",
|
|
2555
2552
|
"dev": true,
|
|
2556
2553
|
"license": "MIT",
|
|
2557
2554
|
"dependencies": {
|
|
2558
|
-
"@graphql-tools/merge": "^9.2.
|
|
2559
|
-
"@graphql-tools/utils": "^11.2.
|
|
2555
|
+
"@graphql-tools/merge": "^9.2.2",
|
|
2556
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2560
2557
|
"tslib": "^2.4.0"
|
|
2561
2558
|
},
|
|
2562
2559
|
"engines": {
|
|
@@ -2567,16 +2564,16 @@
|
|
|
2567
2564
|
}
|
|
2568
2565
|
},
|
|
2569
2566
|
"node_modules/@graphql-tools/url-loader": {
|
|
2570
|
-
"version": "9.1.
|
|
2571
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-9.1.
|
|
2572
|
-
"integrity": "sha512-
|
|
2567
|
+
"version": "9.1.6",
|
|
2568
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-9.1.6.tgz",
|
|
2569
|
+
"integrity": "sha512-BUFafQJv1OVZ/pZvzqXx4oLi2SKeqiWUAIDgz9HGRF/UpJuLY98tYMFzxhYurXg7lAuJMrDjUfl2nFSCX743Nw==",
|
|
2573
2570
|
"dev": true,
|
|
2574
2571
|
"license": "MIT",
|
|
2575
2572
|
"dependencies": {
|
|
2576
2573
|
"@graphql-tools/executor-graphql-ws": "^3.1.4",
|
|
2577
2574
|
"@graphql-tools/executor-http": "^3.3.0",
|
|
2578
|
-
"@graphql-tools/executor-legacy-ws": "^1.1.
|
|
2579
|
-
"@graphql-tools/utils": "^11.2.
|
|
2575
|
+
"@graphql-tools/executor-legacy-ws": "^1.1.32",
|
|
2576
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2580
2577
|
"@graphql-tools/wrap": "^11.1.1",
|
|
2581
2578
|
"@types/ws": "^8.0.0",
|
|
2582
2579
|
"@whatwg-node/fetch": "^0.10.13",
|
|
@@ -2584,7 +2581,7 @@
|
|
|
2584
2581
|
"isomorphic-ws": "^5.0.0",
|
|
2585
2582
|
"sync-fetch": "0.6.0",
|
|
2586
2583
|
"tslib": "^2.4.0",
|
|
2587
|
-
"ws": "^8.21.
|
|
2584
|
+
"ws": "^8.21.1"
|
|
2588
2585
|
},
|
|
2589
2586
|
"engines": {
|
|
2590
2587
|
"node": ">=20.0.0"
|
|
@@ -2594,9 +2591,9 @@
|
|
|
2594
2591
|
}
|
|
2595
2592
|
},
|
|
2596
2593
|
"node_modules/@graphql-tools/utils": {
|
|
2597
|
-
"version": "11.2.
|
|
2598
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-11.2.
|
|
2599
|
-
"integrity": "sha512-
|
|
2594
|
+
"version": "11.2.2",
|
|
2595
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-11.2.2.tgz",
|
|
2596
|
+
"integrity": "sha512-Do2A/t6ayqOma8m7PvpYMsCBswL+NB35BQSng4GWSBqafL2/BnfAZy/NSENPwV721Rm2fG0BHETFC0+FJJZmLw==",
|
|
2600
2597
|
"dev": true,
|
|
2601
2598
|
"license": "MIT",
|
|
2602
2599
|
"dependencies": {
|
|
@@ -2613,13 +2610,13 @@
|
|
|
2613
2610
|
}
|
|
2614
2611
|
},
|
|
2615
2612
|
"node_modules/@graphql-tools/wrap": {
|
|
2616
|
-
"version": "11.1.
|
|
2617
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.
|
|
2618
|
-
"integrity": "sha512-
|
|
2613
|
+
"version": "11.1.19",
|
|
2614
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.19.tgz",
|
|
2615
|
+
"integrity": "sha512-d7ZplubDSkPeFqH4hYYYSK0UjTA2s+2HoLMPIRG0vP7dsjxm3z+J5C7zFboE+bXiWA9cNEoP9puOR4ep4EMjiQ==",
|
|
2619
2616
|
"dev": true,
|
|
2620
2617
|
"license": "MIT",
|
|
2621
2618
|
"dependencies": {
|
|
2622
|
-
"@graphql-tools/delegate": "^12.0.
|
|
2619
|
+
"@graphql-tools/delegate": "^12.0.20",
|
|
2623
2620
|
"@graphql-tools/schema": "^10.0.29",
|
|
2624
2621
|
"@graphql-tools/utils": "^11.0.0",
|
|
2625
2622
|
"@whatwg-node/promise-helpers": "^1.3.2",
|
|
@@ -10329,9 +10326,9 @@
|
|
|
10329
10326
|
]
|
|
10330
10327
|
},
|
|
10331
10328
|
"node_modules/@salesforce/core": {
|
|
10332
|
-
"version": "8.32.
|
|
10333
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.32.
|
|
10334
|
-
"integrity": "sha512-
|
|
10329
|
+
"version": "8.32.4",
|
|
10330
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.32.4.tgz",
|
|
10331
|
+
"integrity": "sha512-0p/nQ24nfPGD0ERp/NHAccgo+66+rDx6c9M88wItDYAMu9+CHcW+FHOLNDAAUsYwinHHVsqVSL8Eyag7gvitqA==",
|
|
10335
10332
|
"license": "BSD-3-Clause",
|
|
10336
10333
|
"dependencies": {
|
|
10337
10334
|
"@jsforce/jsforce-node": "^3.10.17",
|
|
@@ -10546,47 +10543,47 @@
|
|
|
10546
10543
|
}
|
|
10547
10544
|
},
|
|
10548
10545
|
"node_modules/@tailwindcss/node": {
|
|
10549
|
-
"version": "4.3.
|
|
10550
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.
|
|
10551
|
-
"integrity": "sha512
|
|
10546
|
+
"version": "4.3.3",
|
|
10547
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.3.tgz",
|
|
10548
|
+
"integrity": "sha512-/T8IKEsf9VTU6tLjgC7+sv2mOPtQxzE2jMw7u4Tt40Tx+QSZxpzh95/H6cMKoja9XuW7iMdLJYBB0o9G1CaAgg==",
|
|
10552
10549
|
"license": "MIT",
|
|
10553
10550
|
"dependencies": {
|
|
10554
10551
|
"@jridgewell/remapping": "^2.3.5",
|
|
10555
|
-
"enhanced-resolve": "5.
|
|
10552
|
+
"enhanced-resolve": "^5.24.1",
|
|
10556
10553
|
"jiti": "^2.7.0",
|
|
10557
10554
|
"lightningcss": "1.32.0",
|
|
10558
10555
|
"magic-string": "^0.30.21",
|
|
10559
10556
|
"source-map-js": "^1.2.1",
|
|
10560
|
-
"tailwindcss": "4.3.
|
|
10557
|
+
"tailwindcss": "4.3.3"
|
|
10561
10558
|
}
|
|
10562
10559
|
},
|
|
10563
10560
|
"node_modules/@tailwindcss/oxide": {
|
|
10564
|
-
"version": "4.3.
|
|
10565
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.
|
|
10566
|
-
"integrity": "sha512-
|
|
10561
|
+
"version": "4.3.3",
|
|
10562
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.3.tgz",
|
|
10563
|
+
"integrity": "sha512-krXjAikiaFSPaK/FkAQT5UTx3VormQaiZ5hBFlJZ9UFQGB/rwg1MZIhHAG9smMQRTdyJxP6Qt5MwMtdyU5FWrA==",
|
|
10567
10564
|
"license": "MIT",
|
|
10568
10565
|
"engines": {
|
|
10569
10566
|
"node": ">= 20"
|
|
10570
10567
|
},
|
|
10571
10568
|
"optionalDependencies": {
|
|
10572
|
-
"@tailwindcss/oxide-android-arm64": "4.3.
|
|
10573
|
-
"@tailwindcss/oxide-darwin-arm64": "4.3.
|
|
10574
|
-
"@tailwindcss/oxide-darwin-x64": "4.3.
|
|
10575
|
-
"@tailwindcss/oxide-freebsd-x64": "4.3.
|
|
10576
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.
|
|
10577
|
-
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.
|
|
10578
|
-
"@tailwindcss/oxide-linux-arm64-musl": "4.3.
|
|
10579
|
-
"@tailwindcss/oxide-linux-x64-gnu": "4.3.
|
|
10580
|
-
"@tailwindcss/oxide-linux-x64-musl": "4.3.
|
|
10581
|
-
"@tailwindcss/oxide-wasm32-wasi": "4.3.
|
|
10582
|
-
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.
|
|
10583
|
-
"@tailwindcss/oxide-win32-x64-msvc": "4.3.
|
|
10569
|
+
"@tailwindcss/oxide-android-arm64": "4.3.3",
|
|
10570
|
+
"@tailwindcss/oxide-darwin-arm64": "4.3.3",
|
|
10571
|
+
"@tailwindcss/oxide-darwin-x64": "4.3.3",
|
|
10572
|
+
"@tailwindcss/oxide-freebsd-x64": "4.3.3",
|
|
10573
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.3",
|
|
10574
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.3",
|
|
10575
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.3.3",
|
|
10576
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.3.3",
|
|
10577
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.3.3",
|
|
10578
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.3.3",
|
|
10579
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.3",
|
|
10580
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.3.3"
|
|
10584
10581
|
}
|
|
10585
10582
|
},
|
|
10586
10583
|
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
10587
|
-
"version": "4.3.
|
|
10588
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.
|
|
10589
|
-
"integrity": "sha512-
|
|
10584
|
+
"version": "4.3.3",
|
|
10585
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.3.tgz",
|
|
10586
|
+
"integrity": "sha512-Y85A2gmPSkl5Ve5qR86GL4HT509cFqQh1aes9p3sSkyTPwt0Pppf3GkwGe4JPACcRYjgJIEhQgM6dBClnr0NYw==",
|
|
10590
10587
|
"cpu": [
|
|
10591
10588
|
"arm64"
|
|
10592
10589
|
],
|
|
@@ -10600,9 +10597,9 @@
|
|
|
10600
10597
|
}
|
|
10601
10598
|
},
|
|
10602
10599
|
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
10603
|
-
"version": "4.3.
|
|
10604
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.
|
|
10605
|
-
"integrity": "sha512-
|
|
10600
|
+
"version": "4.3.3",
|
|
10601
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.3.tgz",
|
|
10602
|
+
"integrity": "sha512-BiaWatpBcERQFDlOjRDpIVXuFK5PJez5SA4JMg6VYZdBYU+qKfV/vqjcIs+IYmtitf1xYQZTwXvU/8y4lfZUGw==",
|
|
10606
10603
|
"cpu": [
|
|
10607
10604
|
"arm64"
|
|
10608
10605
|
],
|
|
@@ -10616,9 +10613,9 @@
|
|
|
10616
10613
|
}
|
|
10617
10614
|
},
|
|
10618
10615
|
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
10619
|
-
"version": "4.3.
|
|
10620
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.
|
|
10621
|
-
"integrity": "sha512-
|
|
10616
|
+
"version": "4.3.3",
|
|
10617
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.3.tgz",
|
|
10618
|
+
"integrity": "sha512-fAeUqfV5ndhxRwai8cXGzdLvul9utWOmeTkv69unv4ZXixjn61Z+p9lCWdwOwA3TYboG3BwdVuN/RDjhBRl0mw==",
|
|
10622
10619
|
"cpu": [
|
|
10623
10620
|
"x64"
|
|
10624
10621
|
],
|
|
@@ -10632,9 +10629,9 @@
|
|
|
10632
10629
|
}
|
|
10633
10630
|
},
|
|
10634
10631
|
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
10635
|
-
"version": "4.3.
|
|
10636
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.
|
|
10637
|
-
"integrity": "sha512-
|
|
10632
|
+
"version": "4.3.3",
|
|
10633
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.3.tgz",
|
|
10634
|
+
"integrity": "sha512-iyf5bV6+wnAlflVeEy7R25dupxTNECZN5QMI0qNT6eT+EgaGdZcKhGkr5SdoaWiLJ3spLqIY9VCeSGrwmtg4kw==",
|
|
10638
10635
|
"cpu": [
|
|
10639
10636
|
"x64"
|
|
10640
10637
|
],
|
|
@@ -10648,9 +10645,9 @@
|
|
|
10648
10645
|
}
|
|
10649
10646
|
},
|
|
10650
10647
|
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
10651
|
-
"version": "4.3.
|
|
10652
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.
|
|
10653
|
-
"integrity": "sha512-
|
|
10648
|
+
"version": "4.3.3",
|
|
10649
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.3.tgz",
|
|
10650
|
+
"integrity": "sha512-aAYUprJAJQWWbRrPvtjdroZ56Md+JM8pMiopS6xGEwDfLhqj+2ver2p4nU4Mb3CRqcMmNBjo8KkUgcxhkzVQGQ==",
|
|
10654
10651
|
"cpu": [
|
|
10655
10652
|
"arm"
|
|
10656
10653
|
],
|
|
@@ -10664,9 +10661,9 @@
|
|
|
10664
10661
|
}
|
|
10665
10662
|
},
|
|
10666
10663
|
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
10667
|
-
"version": "4.3.
|
|
10668
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.
|
|
10669
|
-
"integrity": "sha512-
|
|
10664
|
+
"version": "4.3.3",
|
|
10665
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.3.tgz",
|
|
10666
|
+
"integrity": "sha512-nDxldcEENOxZRzC2uu9jrutZdAAQtb+8WWDCSnWL1zvBk1+FN+x6MtDViPB5AJMfttVCUhehGWus3XBPgatM/w==",
|
|
10670
10667
|
"cpu": [
|
|
10671
10668
|
"arm64"
|
|
10672
10669
|
],
|
|
@@ -10683,9 +10680,9 @@
|
|
|
10683
10680
|
}
|
|
10684
10681
|
},
|
|
10685
10682
|
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
10686
|
-
"version": "4.3.
|
|
10687
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.
|
|
10688
|
-
"integrity": "sha512-
|
|
10683
|
+
"version": "4.3.3",
|
|
10684
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.3.tgz",
|
|
10685
|
+
"integrity": "sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA==",
|
|
10689
10686
|
"cpu": [
|
|
10690
10687
|
"arm64"
|
|
10691
10688
|
],
|
|
@@ -10702,9 +10699,9 @@
|
|
|
10702
10699
|
}
|
|
10703
10700
|
},
|
|
10704
10701
|
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
10705
|
-
"version": "4.3.
|
|
10706
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.
|
|
10707
|
-
"integrity": "sha512-
|
|
10702
|
+
"version": "4.3.3",
|
|
10703
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.3.tgz",
|
|
10704
|
+
"integrity": "sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w==",
|
|
10708
10705
|
"cpu": [
|
|
10709
10706
|
"x64"
|
|
10710
10707
|
],
|
|
@@ -10721,9 +10718,9 @@
|
|
|
10721
10718
|
}
|
|
10722
10719
|
},
|
|
10723
10720
|
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
10724
|
-
"version": "4.3.
|
|
10725
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.
|
|
10726
|
-
"integrity": "sha512-
|
|
10721
|
+
"version": "4.3.3",
|
|
10722
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.3.tgz",
|
|
10723
|
+
"integrity": "sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img==",
|
|
10727
10724
|
"cpu": [
|
|
10728
10725
|
"x64"
|
|
10729
10726
|
],
|
|
@@ -10740,9 +10737,9 @@
|
|
|
10740
10737
|
}
|
|
10741
10738
|
},
|
|
10742
10739
|
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
10743
|
-
"version": "4.3.
|
|
10744
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.
|
|
10745
|
-
"integrity": "sha512-
|
|
10740
|
+
"version": "4.3.3",
|
|
10741
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.3.tgz",
|
|
10742
|
+
"integrity": "sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ==",
|
|
10746
10743
|
"bundleDependencies": [
|
|
10747
10744
|
"@napi-rs/wasm-runtime",
|
|
10748
10745
|
"@emnapi/core",
|
|
@@ -10829,9 +10826,9 @@
|
|
|
10829
10826
|
"optional": true
|
|
10830
10827
|
},
|
|
10831
10828
|
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
10832
|
-
"version": "4.3.
|
|
10833
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.
|
|
10834
|
-
"integrity": "sha512-
|
|
10829
|
+
"version": "4.3.3",
|
|
10830
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.3.tgz",
|
|
10831
|
+
"integrity": "sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ==",
|
|
10835
10832
|
"cpu": [
|
|
10836
10833
|
"arm64"
|
|
10837
10834
|
],
|
|
@@ -10845,9 +10842,9 @@
|
|
|
10845
10842
|
}
|
|
10846
10843
|
},
|
|
10847
10844
|
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
10848
|
-
"version": "4.3.
|
|
10849
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.
|
|
10850
|
-
"integrity": "sha512-
|
|
10845
|
+
"version": "4.3.3",
|
|
10846
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.3.tgz",
|
|
10847
|
+
"integrity": "sha512-yJ0pwIVc/nYeGoV02WtsN8KYyLQv7kyI2wDnkezyJlGGjkd4QLwDGAwl47YpPJeuI0M0ObaXGSPjvWDPeTPggw==",
|
|
10851
10848
|
"cpu": [
|
|
10852
10849
|
"x64"
|
|
10853
10850
|
],
|
|
@@ -10861,14 +10858,14 @@
|
|
|
10861
10858
|
}
|
|
10862
10859
|
},
|
|
10863
10860
|
"node_modules/@tailwindcss/vite": {
|
|
10864
|
-
"version": "4.3.
|
|
10865
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.
|
|
10866
|
-
"integrity": "sha512-
|
|
10861
|
+
"version": "4.3.3",
|
|
10862
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.3.tgz",
|
|
10863
|
+
"integrity": "sha512-yYU8cogLeSh/ms2jh8Fj7jaba/EWa7Ja6GoUqYZaraEuCI5YS6ms6ObZgjjedm+jm6XZjdNRWBpPP6Z86oOxcw==",
|
|
10867
10864
|
"license": "MIT",
|
|
10868
10865
|
"dependencies": {
|
|
10869
|
-
"@tailwindcss/node": "4.3.
|
|
10870
|
-
"@tailwindcss/oxide": "4.3.
|
|
10871
|
-
"tailwindcss": "4.3.
|
|
10866
|
+
"@tailwindcss/node": "4.3.3",
|
|
10867
|
+
"@tailwindcss/oxide": "4.3.3",
|
|
10868
|
+
"tailwindcss": "4.3.3"
|
|
10872
10869
|
},
|
|
10873
10870
|
"peerDependencies": {
|
|
10874
10871
|
"vite": "^5.2.0 || ^6 || ^7 || ^8"
|
|
@@ -10891,9 +10888,9 @@
|
|
|
10891
10888
|
}
|
|
10892
10889
|
},
|
|
10893
10890
|
"node_modules/@tanstack/form-core": {
|
|
10894
|
-
"version": "1.33.
|
|
10895
|
-
"resolved": "https://registry.npmjs.org/@tanstack/form-core/-/form-core-1.33.
|
|
10896
|
-
"integrity": "sha512-
|
|
10891
|
+
"version": "1.33.2",
|
|
10892
|
+
"resolved": "https://registry.npmjs.org/@tanstack/form-core/-/form-core-1.33.2.tgz",
|
|
10893
|
+
"integrity": "sha512-F60zJd15bGrXKonc1kpRYnNRNfiES7F+hgvrPMrsZznPLqZtO2DIg76OU6R25kCYkqYQY5xvuKteuWcUsc587A==",
|
|
10897
10894
|
"license": "MIT",
|
|
10898
10895
|
"dependencies": {
|
|
10899
10896
|
"@tanstack/devtools-event-client": "^0.4.1",
|
|
@@ -10919,12 +10916,12 @@
|
|
|
10919
10916
|
}
|
|
10920
10917
|
},
|
|
10921
10918
|
"node_modules/@tanstack/react-form": {
|
|
10922
|
-
"version": "1.33.
|
|
10923
|
-
"resolved": "https://registry.npmjs.org/@tanstack/react-form/-/react-form-1.33.
|
|
10924
|
-
"integrity": "sha512-
|
|
10919
|
+
"version": "1.33.2",
|
|
10920
|
+
"resolved": "https://registry.npmjs.org/@tanstack/react-form/-/react-form-1.33.2.tgz",
|
|
10921
|
+
"integrity": "sha512-nEfayOu+27q5cZ5E0G5dmnddqLcLjdFCatbL/LCs/iLD469a1o1yYJlr8RISV3GfnqsBpm0hf+8kM4okh5fPCw==",
|
|
10925
10922
|
"license": "MIT",
|
|
10926
10923
|
"dependencies": {
|
|
10927
|
-
"@tanstack/form-core": "1.33.
|
|
10924
|
+
"@tanstack/form-core": "1.33.2",
|
|
10928
10925
|
"@tanstack/react-store": "^0.11.0"
|
|
10929
10926
|
},
|
|
10930
10927
|
"funding": {
|
|
@@ -10989,6 +10986,17 @@
|
|
|
10989
10986
|
"node": ">=18"
|
|
10990
10987
|
}
|
|
10991
10988
|
},
|
|
10989
|
+
"node_modules/@testing-library/dom/node_modules/@babel/runtime": {
|
|
10990
|
+
"version": "7.29.7",
|
|
10991
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
10992
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
10993
|
+
"dev": true,
|
|
10994
|
+
"license": "MIT",
|
|
10995
|
+
"peer": true,
|
|
10996
|
+
"engines": {
|
|
10997
|
+
"node": ">=6.9.0"
|
|
10998
|
+
}
|
|
10999
|
+
},
|
|
10992
11000
|
"node_modules/@testing-library/jest-dom": {
|
|
10993
11001
|
"version": "6.9.1",
|
|
10994
11002
|
"resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz",
|
|
@@ -11044,6 +11052,16 @@
|
|
|
11044
11052
|
}
|
|
11045
11053
|
}
|
|
11046
11054
|
},
|
|
11055
|
+
"node_modules/@testing-library/react/node_modules/@babel/runtime": {
|
|
11056
|
+
"version": "7.29.7",
|
|
11057
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
11058
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
11059
|
+
"dev": true,
|
|
11060
|
+
"license": "MIT",
|
|
11061
|
+
"engines": {
|
|
11062
|
+
"node": ">=6.9.0"
|
|
11063
|
+
}
|
|
11064
|
+
},
|
|
11047
11065
|
"node_modules/@testing-library/user-event": {
|
|
11048
11066
|
"version": "14.6.1",
|
|
11049
11067
|
"resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.6.1.tgz",
|
|
@@ -11250,17 +11268,17 @@
|
|
|
11250
11268
|
}
|
|
11251
11269
|
},
|
|
11252
11270
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
11253
|
-
"version": "8.
|
|
11254
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.
|
|
11255
|
-
"integrity": "sha512-
|
|
11271
|
+
"version": "8.64.0",
|
|
11272
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.64.0.tgz",
|
|
11273
|
+
"integrity": "sha512-CGvQPBxN3wZLu6Rz2kFUpZeoCm78xUic92ck39KPePkO1NPOwjCqdQnm5Q87tpWw9vcBvW8XLrDXjH9PWYtJ3Q==",
|
|
11256
11274
|
"dev": true,
|
|
11257
11275
|
"license": "MIT",
|
|
11258
11276
|
"dependencies": {
|
|
11259
11277
|
"@eslint-community/regexpp": "^4.12.2",
|
|
11260
|
-
"@typescript-eslint/scope-manager": "8.
|
|
11261
|
-
"@typescript-eslint/type-utils": "8.
|
|
11262
|
-
"@typescript-eslint/utils": "8.
|
|
11263
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11278
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
11279
|
+
"@typescript-eslint/type-utils": "8.64.0",
|
|
11280
|
+
"@typescript-eslint/utils": "8.64.0",
|
|
11281
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
11264
11282
|
"ignore": "^7.0.5",
|
|
11265
11283
|
"natural-compare": "^1.4.0",
|
|
11266
11284
|
"ts-api-utils": "^2.5.0"
|
|
@@ -11273,15 +11291,15 @@
|
|
|
11273
11291
|
"url": "https://opencollective.com/typescript-eslint"
|
|
11274
11292
|
},
|
|
11275
11293
|
"peerDependencies": {
|
|
11276
|
-
"@typescript-eslint/parser": "^8.
|
|
11294
|
+
"@typescript-eslint/parser": "^8.64.0",
|
|
11277
11295
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
11278
11296
|
"typescript": ">=4.8.4 <6.1.0"
|
|
11279
11297
|
}
|
|
11280
11298
|
},
|
|
11281
11299
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
|
11282
|
-
"version": "7.0.
|
|
11283
|
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.
|
|
11284
|
-
"integrity": "sha512-
|
|
11300
|
+
"version": "7.0.6",
|
|
11301
|
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.6.tgz",
|
|
11302
|
+
"integrity": "sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==",
|
|
11285
11303
|
"dev": true,
|
|
11286
11304
|
"license": "MIT",
|
|
11287
11305
|
"engines": {
|
|
@@ -11289,16 +11307,16 @@
|
|
|
11289
11307
|
}
|
|
11290
11308
|
},
|
|
11291
11309
|
"node_modules/@typescript-eslint/parser": {
|
|
11292
|
-
"version": "8.
|
|
11293
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.
|
|
11294
|
-
"integrity": "sha512-
|
|
11310
|
+
"version": "8.64.0",
|
|
11311
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.64.0.tgz",
|
|
11312
|
+
"integrity": "sha512-KA0OshtlcCCXmbfqyZkM5pV3/WNraJf7DkJRLpyrmwPtud57H5BDX7C3k0LPSPxpprfRL+cJDGabF10mvNCoCw==",
|
|
11295
11313
|
"dev": true,
|
|
11296
11314
|
"license": "MIT",
|
|
11297
11315
|
"dependencies": {
|
|
11298
|
-
"@typescript-eslint/scope-manager": "8.
|
|
11299
|
-
"@typescript-eslint/types": "8.
|
|
11300
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
11301
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11316
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
11317
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11318
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
11319
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
11302
11320
|
"debug": "^4.4.3"
|
|
11303
11321
|
},
|
|
11304
11322
|
"engines": {
|
|
@@ -11314,14 +11332,14 @@
|
|
|
11314
11332
|
}
|
|
11315
11333
|
},
|
|
11316
11334
|
"node_modules/@typescript-eslint/project-service": {
|
|
11317
|
-
"version": "8.
|
|
11318
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.
|
|
11319
|
-
"integrity": "sha512-
|
|
11335
|
+
"version": "8.64.0",
|
|
11336
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.64.0.tgz",
|
|
11337
|
+
"integrity": "sha512-tk4WpOJ6IEbGrVHaNmM0YRrwAD3exZlIK3iadQNAxh4YKk6jvUQ4ecq18n+v7+meh+cJ3j+D8nbk8sRKhlwLQg==",
|
|
11320
11338
|
"dev": true,
|
|
11321
11339
|
"license": "MIT",
|
|
11322
11340
|
"dependencies": {
|
|
11323
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
11324
|
-
"@typescript-eslint/types": "^8.
|
|
11341
|
+
"@typescript-eslint/tsconfig-utils": "^8.64.0",
|
|
11342
|
+
"@typescript-eslint/types": "^8.64.0",
|
|
11325
11343
|
"debug": "^4.4.3"
|
|
11326
11344
|
},
|
|
11327
11345
|
"engines": {
|
|
@@ -11336,14 +11354,14 @@
|
|
|
11336
11354
|
}
|
|
11337
11355
|
},
|
|
11338
11356
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
11339
|
-
"version": "8.
|
|
11340
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.
|
|
11341
|
-
"integrity": "sha512-
|
|
11357
|
+
"version": "8.64.0",
|
|
11358
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.64.0.tgz",
|
|
11359
|
+
"integrity": "sha512-CXEaFdYXjSTgKhisNkwCcJwTP8Pl+fmRrEQrri4nm3vU743bALrxzLmq7fHG/7e6a5xO0lDYeURpZmBuhHk54w==",
|
|
11342
11360
|
"dev": true,
|
|
11343
11361
|
"license": "MIT",
|
|
11344
11362
|
"dependencies": {
|
|
11345
|
-
"@typescript-eslint/types": "8.
|
|
11346
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11363
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11364
|
+
"@typescript-eslint/visitor-keys": "8.64.0"
|
|
11347
11365
|
},
|
|
11348
11366
|
"engines": {
|
|
11349
11367
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -11354,9 +11372,9 @@
|
|
|
11354
11372
|
}
|
|
11355
11373
|
},
|
|
11356
11374
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
11357
|
-
"version": "8.
|
|
11358
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.
|
|
11359
|
-
"integrity": "sha512-
|
|
11375
|
+
"version": "8.64.0",
|
|
11376
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.64.0.tgz",
|
|
11377
|
+
"integrity": "sha512-2yo8rRNKuzbVWQp5kslhANqZ2uDAeROQHBRZNPu8JDsHmeFNj/XJJhX/FhNUWmkHHvoNsKa6+tHJiig87EzsQw==",
|
|
11360
11378
|
"dev": true,
|
|
11361
11379
|
"license": "MIT",
|
|
11362
11380
|
"engines": {
|
|
@@ -11371,15 +11389,15 @@
|
|
|
11371
11389
|
}
|
|
11372
11390
|
},
|
|
11373
11391
|
"node_modules/@typescript-eslint/type-utils": {
|
|
11374
|
-
"version": "8.
|
|
11375
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.
|
|
11376
|
-
"integrity": "sha512-
|
|
11392
|
+
"version": "8.64.0",
|
|
11393
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.64.0.tgz",
|
|
11394
|
+
"integrity": "sha512-XWG4Fmmv/6SvyS9nH8jWrKs6terwJvE8cyRt1CzYYqzp9OrPhCT4cMc/f7C6RZCwG+qMmiffJS1/qJP8G1URtg==",
|
|
11377
11395
|
"dev": true,
|
|
11378
11396
|
"license": "MIT",
|
|
11379
11397
|
"dependencies": {
|
|
11380
|
-
"@typescript-eslint/types": "8.
|
|
11381
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
11382
|
-
"@typescript-eslint/utils": "8.
|
|
11398
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11399
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
11400
|
+
"@typescript-eslint/utils": "8.64.0",
|
|
11383
11401
|
"debug": "^4.4.3",
|
|
11384
11402
|
"ts-api-utils": "^2.5.0"
|
|
11385
11403
|
},
|
|
@@ -11396,9 +11414,9 @@
|
|
|
11396
11414
|
}
|
|
11397
11415
|
},
|
|
11398
11416
|
"node_modules/@typescript-eslint/types": {
|
|
11399
|
-
"version": "8.
|
|
11400
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.
|
|
11401
|
-
"integrity": "sha512-
|
|
11417
|
+
"version": "8.64.0",
|
|
11418
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.64.0.tgz",
|
|
11419
|
+
"integrity": "sha512-qjhfuTfLXjA4IOzXvz0rTjT01BqEiIgPoUeMwiEjnaHKJMTNo8rH5pYW1a2L/0Dnux2fPC85AeyJoWaGa8WxTA==",
|
|
11402
11420
|
"dev": true,
|
|
11403
11421
|
"license": "MIT",
|
|
11404
11422
|
"engines": {
|
|
@@ -11410,16 +11428,16 @@
|
|
|
11410
11428
|
}
|
|
11411
11429
|
},
|
|
11412
11430
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
11413
|
-
"version": "8.
|
|
11414
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.
|
|
11415
|
-
"integrity": "sha512-
|
|
11431
|
+
"version": "8.64.0",
|
|
11432
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.64.0.tgz",
|
|
11433
|
+
"integrity": "sha512-Pztpsn1aCE1oWDvDEfUk31nngvvF7vUB5SwHFEaZIFpvw7WJtqUHHL4plBZDA9HfWJJjL13BdG0YrJInTUvoVA==",
|
|
11416
11434
|
"dev": true,
|
|
11417
11435
|
"license": "MIT",
|
|
11418
11436
|
"dependencies": {
|
|
11419
|
-
"@typescript-eslint/project-service": "8.
|
|
11420
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
11421
|
-
"@typescript-eslint/types": "8.
|
|
11422
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11437
|
+
"@typescript-eslint/project-service": "8.64.0",
|
|
11438
|
+
"@typescript-eslint/tsconfig-utils": "8.64.0",
|
|
11439
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11440
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
11423
11441
|
"debug": "^4.4.3",
|
|
11424
11442
|
"minimatch": "^10.2.2",
|
|
11425
11443
|
"semver": "^7.7.3",
|
|
@@ -11490,16 +11508,16 @@
|
|
|
11490
11508
|
}
|
|
11491
11509
|
},
|
|
11492
11510
|
"node_modules/@typescript-eslint/utils": {
|
|
11493
|
-
"version": "8.
|
|
11494
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.
|
|
11495
|
-
"integrity": "sha512-
|
|
11511
|
+
"version": "8.64.0",
|
|
11512
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.64.0.tgz",
|
|
11513
|
+
"integrity": "sha512-aJUGVB3+U0htrrCjoA8qukw8cm8fNCGAxK/tVoS70k8aeb7DETKeFozRiVFIwEeN9WJLsjaP3ph8I60tY2XZoQ==",
|
|
11496
11514
|
"dev": true,
|
|
11497
11515
|
"license": "MIT",
|
|
11498
11516
|
"dependencies": {
|
|
11499
11517
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
11500
|
-
"@typescript-eslint/scope-manager": "8.
|
|
11501
|
-
"@typescript-eslint/types": "8.
|
|
11502
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
11518
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
11519
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11520
|
+
"@typescript-eslint/typescript-estree": "8.64.0"
|
|
11503
11521
|
},
|
|
11504
11522
|
"engines": {
|
|
11505
11523
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -11514,13 +11532,13 @@
|
|
|
11514
11532
|
}
|
|
11515
11533
|
},
|
|
11516
11534
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
11517
|
-
"version": "8.
|
|
11518
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.
|
|
11519
|
-
"integrity": "sha512-
|
|
11535
|
+
"version": "8.64.0",
|
|
11536
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.64.0.tgz",
|
|
11537
|
+
"integrity": "sha512-mrtuL8Nsn6gi2H4mo5KMTp823M+3Q19Ew/i+Zlikq20tIMm99C3Ez0dCmkWWnxut20esQvTg8aUSEhMcAOXhEw==",
|
|
11520
11538
|
"dev": true,
|
|
11521
11539
|
"license": "MIT",
|
|
11522
11540
|
"dependencies": {
|
|
11523
|
-
"@typescript-eslint/types": "8.
|
|
11541
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11524
11542
|
"eslint-visitor-keys": "^5.0.0"
|
|
11525
11543
|
},
|
|
11526
11544
|
"engines": {
|
|
@@ -12336,9 +12354,9 @@
|
|
|
12336
12354
|
}
|
|
12337
12355
|
},
|
|
12338
12356
|
"node_modules/baseline-browser-mapping": {
|
|
12339
|
-
"version": "2.10.
|
|
12340
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
12341
|
-
"integrity": "sha512-
|
|
12357
|
+
"version": "2.10.43",
|
|
12358
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.43.tgz",
|
|
12359
|
+
"integrity": "sha512-AjYpR78kDWAY3Efj+cDTFH9t9SCoL7OoTp1BOb0mQV7S+6CiLwnWM3FyxhJtdPufDFKzmCSFoUncKjWgJEZTCQ==",
|
|
12342
12360
|
"license": "Apache-2.0",
|
|
12343
12361
|
"bin": {
|
|
12344
12362
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -12500,9 +12518,9 @@
|
|
|
12500
12518
|
}
|
|
12501
12519
|
},
|
|
12502
12520
|
"node_modules/browserslist": {
|
|
12503
|
-
"version": "4.28.
|
|
12504
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.
|
|
12505
|
-
"integrity": "sha512-
|
|
12521
|
+
"version": "4.28.6",
|
|
12522
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.6.tgz",
|
|
12523
|
+
"integrity": "sha512-FQBYNK15VMslhLHpA7+n+n1GOlF1kId2xcCg7/j95f24AOF6VDYMNH4mFxF7KuaTdv627faazpOAjFzMrfJOUw==",
|
|
12506
12524
|
"funding": [
|
|
12507
12525
|
{
|
|
12508
12526
|
"type": "opencollective",
|
|
@@ -12520,9 +12538,9 @@
|
|
|
12520
12538
|
"license": "MIT",
|
|
12521
12539
|
"dependencies": {
|
|
12522
12540
|
"baseline-browser-mapping": "^2.10.42",
|
|
12523
|
-
"caniuse-lite": "^1.0.
|
|
12524
|
-
"electron-to-chromium": "^1.5.
|
|
12525
|
-
"node-releases": "^2.0.
|
|
12541
|
+
"caniuse-lite": "^1.0.30001803",
|
|
12542
|
+
"electron-to-chromium": "^1.5.389",
|
|
12543
|
+
"node-releases": "^2.0.51",
|
|
12526
12544
|
"update-browserslist-db": "^1.2.3"
|
|
12527
12545
|
},
|
|
12528
12546
|
"bin": {
|
|
@@ -12667,9 +12685,9 @@
|
|
|
12667
12685
|
}
|
|
12668
12686
|
},
|
|
12669
12687
|
"node_modules/caniuse-lite": {
|
|
12670
|
-
"version": "1.0.
|
|
12671
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
12672
|
-
"integrity": "sha512-
|
|
12688
|
+
"version": "1.0.30001806",
|
|
12689
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz",
|
|
12690
|
+
"integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==",
|
|
12673
12691
|
"funding": [
|
|
12674
12692
|
{
|
|
12675
12693
|
"type": "opencollective",
|
|
@@ -13816,6 +13834,16 @@
|
|
|
13816
13834
|
"react": ">=16.12.0"
|
|
13817
13835
|
}
|
|
13818
13836
|
},
|
|
13837
|
+
"node_modules/downshift/node_modules/@babel/runtime": {
|
|
13838
|
+
"version": "7.29.7",
|
|
13839
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
13840
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
13841
|
+
"dev": true,
|
|
13842
|
+
"license": "MIT",
|
|
13843
|
+
"engines": {
|
|
13844
|
+
"node": ">=6.9.0"
|
|
13845
|
+
}
|
|
13846
|
+
},
|
|
13819
13847
|
"node_modules/dunder-proto": {
|
|
13820
13848
|
"version": "1.0.1",
|
|
13821
13849
|
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
@@ -13853,9 +13881,9 @@
|
|
|
13853
13881
|
"license": "MIT"
|
|
13854
13882
|
},
|
|
13855
13883
|
"node_modules/electron-to-chromium": {
|
|
13856
|
-
"version": "1.5.
|
|
13857
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
13858
|
-
"integrity": "sha512-
|
|
13884
|
+
"version": "1.5.393",
|
|
13885
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.393.tgz",
|
|
13886
|
+
"integrity": "sha512-kiDJdIUawuEIcp9XoICKp1iTYDEbgguIPq526N1Q7jIQDeQ3CqoMx71025PI/7E48Ddtw2HuWsVjY7afEgNxmg==",
|
|
13859
13887
|
"license": "ISC"
|
|
13860
13888
|
},
|
|
13861
13889
|
"node_modules/emoji-regex": {
|
|
@@ -13883,9 +13911,9 @@
|
|
|
13883
13911
|
}
|
|
13884
13912
|
},
|
|
13885
13913
|
"node_modules/enhanced-resolve": {
|
|
13886
|
-
"version": "5.
|
|
13887
|
-
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.
|
|
13888
|
-
"integrity": "sha512-
|
|
13914
|
+
"version": "5.24.2",
|
|
13915
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.2.tgz",
|
|
13916
|
+
"integrity": "sha512-rpsZEGT1jFuve6QlpyRp9ckQ+kN61hvF9BzCPyMdaKTm8UJce96KBn3sorXOFXlzjPrs3Vc4T1NsSroZ3PxlFw==",
|
|
13889
13917
|
"license": "MIT",
|
|
13890
13918
|
"dependencies": {
|
|
13891
13919
|
"graceful-fs": "^4.2.4",
|
|
@@ -14071,9 +14099,9 @@
|
|
|
14071
14099
|
}
|
|
14072
14100
|
},
|
|
14073
14101
|
"node_modules/es-iterator-helpers": {
|
|
14074
|
-
"version": "1.
|
|
14075
|
-
"resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.
|
|
14076
|
-
"integrity": "sha512-
|
|
14102
|
+
"version": "1.4.0",
|
|
14103
|
+
"resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.4.0.tgz",
|
|
14104
|
+
"integrity": "sha512-c/A0P0oxkACDc+cKWw8evLXK83oBKgn0qPOqCYT4x9uolpCIJAcYvJC9QYKNDRPsTeGyCrQ326jrvgZWdCdK5Q==",
|
|
14077
14105
|
"dev": true,
|
|
14078
14106
|
"license": "MIT",
|
|
14079
14107
|
"dependencies": {
|
|
@@ -14099,9 +14127,9 @@
|
|
|
14099
14127
|
}
|
|
14100
14128
|
},
|
|
14101
14129
|
"node_modules/es-module-lexer": {
|
|
14102
|
-
"version": "2.3.
|
|
14103
|
-
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.
|
|
14104
|
-
"integrity": "sha512-
|
|
14130
|
+
"version": "2.3.1",
|
|
14131
|
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.1.tgz",
|
|
14132
|
+
"integrity": "sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==",
|
|
14105
14133
|
"dev": true,
|
|
14106
14134
|
"license": "MIT"
|
|
14107
14135
|
},
|
|
@@ -14236,9 +14264,9 @@
|
|
|
14236
14264
|
}
|
|
14237
14265
|
},
|
|
14238
14266
|
"node_modules/eslint": {
|
|
14239
|
-
"version": "9.39.
|
|
14240
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.
|
|
14241
|
-
"integrity": "sha512-
|
|
14267
|
+
"version": "9.39.5",
|
|
14268
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.5.tgz",
|
|
14269
|
+
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
14242
14270
|
"dev": true,
|
|
14243
14271
|
"license": "MIT",
|
|
14244
14272
|
"dependencies": {
|
|
@@ -14247,8 +14275,8 @@
|
|
|
14247
14275
|
"@eslint/config-array": "^0.21.2",
|
|
14248
14276
|
"@eslint/config-helpers": "^0.4.2",
|
|
14249
14277
|
"@eslint/core": "^0.17.0",
|
|
14250
|
-
"@eslint/eslintrc": "^3.3.
|
|
14251
|
-
"@eslint/js": "9.39.
|
|
14278
|
+
"@eslint/eslintrc": "^3.3.6",
|
|
14279
|
+
"@eslint/js": "9.39.5",
|
|
14252
14280
|
"@eslint/plugin-kit": "^0.4.1",
|
|
14253
14281
|
"@humanfs/node": "^0.16.6",
|
|
14254
14282
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -14661,11 +14689,12 @@
|
|
|
14661
14689
|
}
|
|
14662
14690
|
},
|
|
14663
14691
|
"node_modules/express-rate-limit": {
|
|
14664
|
-
"version": "8.
|
|
14665
|
-
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.
|
|
14666
|
-
"integrity": "sha512-
|
|
14692
|
+
"version": "8.6.0",
|
|
14693
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.6.0.tgz",
|
|
14694
|
+
"integrity": "sha512-XKJXDsASUOo0LLtFwW5hCcQGH0N4WQc/Rn8/Pvoia+TJFOkkFPvrtW9lZOeeNcxQJspvOIERMwiRLsVFlhHEkA==",
|
|
14667
14695
|
"license": "MIT",
|
|
14668
14696
|
"dependencies": {
|
|
14697
|
+
"debug": "^4.4.3",
|
|
14669
14698
|
"ip-address": "^10.2.0"
|
|
14670
14699
|
},
|
|
14671
14700
|
"engines": {
|
|
@@ -15673,9 +15702,9 @@
|
|
|
15673
15702
|
}
|
|
15674
15703
|
},
|
|
15675
15704
|
"node_modules/graphql-ws": {
|
|
15676
|
-
"version": "6.0
|
|
15677
|
-
"resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-6.0.
|
|
15678
|
-
"integrity": "sha512-
|
|
15705
|
+
"version": "6.1.0",
|
|
15706
|
+
"resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-6.1.0.tgz",
|
|
15707
|
+
"integrity": "sha512-7ft6KWkuaLnLABwzEIimjUMeF0iByo2ThD6q0MICgsvp6nDuT5ppubKzEHniu8Kmlp5GNsLgr5dil8JMrIwUEQ==",
|
|
15679
15708
|
"dev": true,
|
|
15680
15709
|
"license": "MIT",
|
|
15681
15710
|
"engines": {
|
|
@@ -15684,7 +15713,7 @@
|
|
|
15684
15713
|
"peerDependencies": {
|
|
15685
15714
|
"@fastify/websocket": "^10 || ^11",
|
|
15686
15715
|
"crossws": "~0.3",
|
|
15687
|
-
"graphql": "^15.10.1 || ^16",
|
|
15716
|
+
"graphql": "^15.10.1 || ^16 || ^17",
|
|
15688
15717
|
"ws": "^8"
|
|
15689
15718
|
},
|
|
15690
15719
|
"peerDependenciesMeta": {
|
|
@@ -15811,9 +15840,9 @@
|
|
|
15811
15840
|
}
|
|
15812
15841
|
},
|
|
15813
15842
|
"node_modules/headers-polyfill/node_modules/set-cookie-parser": {
|
|
15814
|
-
"version": "3.1.
|
|
15815
|
-
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-3.1.
|
|
15816
|
-
"integrity": "sha512-
|
|
15843
|
+
"version": "3.1.2",
|
|
15844
|
+
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-3.1.2.tgz",
|
|
15845
|
+
"integrity": "sha512-5/r/lTwbJ3zQ+qwdUFZYeRNqda7P5HD8zQKqlSjdGt1/S0cjLAphHusj4Y58ahDtWn/g32xrIS58/ikOvwl0Lw==",
|
|
15817
15846
|
"license": "MIT"
|
|
15818
15847
|
},
|
|
15819
15848
|
"node_modules/help-me": {
|
|
@@ -15840,9 +15869,9 @@
|
|
|
15840
15869
|
}
|
|
15841
15870
|
},
|
|
15842
15871
|
"node_modules/hono": {
|
|
15843
|
-
"version": "4.12.
|
|
15844
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.
|
|
15845
|
-
"integrity": "sha512-
|
|
15872
|
+
"version": "4.12.31",
|
|
15873
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.31.tgz",
|
|
15874
|
+
"integrity": "sha512-zJIHFrl6bq3RDd2YusFNCDlM8qUprxKswyi/OPzPyzKDdyBXDqWx8bZlZ7R+saTdSTatUmb3O7K4SspGPaEOQg==",
|
|
15846
15875
|
"license": "MIT",
|
|
15847
15876
|
"engines": {
|
|
15848
15877
|
"node": ">=16.9.0"
|
|
@@ -18183,9 +18212,9 @@
|
|
|
18183
18212
|
}
|
|
18184
18213
|
},
|
|
18185
18214
|
"node_modules/nanoid": {
|
|
18186
|
-
"version": "3.3.
|
|
18187
|
-
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.
|
|
18188
|
-
"integrity": "sha512-
|
|
18215
|
+
"version": "3.3.16",
|
|
18216
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
|
|
18217
|
+
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
|
|
18189
18218
|
"funding": [
|
|
18190
18219
|
{
|
|
18191
18220
|
"type": "github",
|
|
@@ -18338,9 +18367,9 @@
|
|
|
18338
18367
|
}
|
|
18339
18368
|
},
|
|
18340
18369
|
"node_modules/o11y_schema": {
|
|
18341
|
-
"version": "264.
|
|
18342
|
-
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.
|
|
18343
|
-
"integrity": "sha512-
|
|
18370
|
+
"version": "264.97.0",
|
|
18371
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.97.0.tgz",
|
|
18372
|
+
"integrity": "sha512-UMDNXEJy3ABnSXMFRVp0dPiXKuldkfQvt1EMWh/M7wWObJH8hDYK2dmn8oAAqVowD/OdtSiXmHLmSuUFSWlsVw==",
|
|
18344
18373
|
"license": "BSD-3-Clause",
|
|
18345
18374
|
"peer": true
|
|
18346
18375
|
},
|
|
@@ -18467,9 +18496,9 @@
|
|
|
18467
18496
|
}
|
|
18468
18497
|
},
|
|
18469
18498
|
"node_modules/obug": {
|
|
18470
|
-
"version": "2.1.
|
|
18471
|
-
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.
|
|
18472
|
-
"integrity": "sha512-
|
|
18499
|
+
"version": "2.1.4",
|
|
18500
|
+
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.4.tgz",
|
|
18501
|
+
"integrity": "sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==",
|
|
18473
18502
|
"dev": true,
|
|
18474
18503
|
"funding": [
|
|
18475
18504
|
"https://github.com/sponsors/sxzz",
|
|
@@ -19227,9 +19256,9 @@
|
|
|
19227
19256
|
}
|
|
19228
19257
|
},
|
|
19229
19258
|
"node_modules/postcss": {
|
|
19230
|
-
"version": "8.5.
|
|
19231
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
19232
|
-
"integrity": "sha512-
|
|
19259
|
+
"version": "8.5.19",
|
|
19260
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.19.tgz",
|
|
19261
|
+
"integrity": "sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==",
|
|
19233
19262
|
"funding": [
|
|
19234
19263
|
{
|
|
19235
19264
|
"type": "opencollective",
|
|
@@ -19290,9 +19319,9 @@
|
|
|
19290
19319
|
}
|
|
19291
19320
|
},
|
|
19292
19321
|
"node_modules/prettier": {
|
|
19293
|
-
"version": "3.9.
|
|
19294
|
-
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.
|
|
19295
|
-
"integrity": "sha512
|
|
19322
|
+
"version": "3.9.5",
|
|
19323
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.5.tgz",
|
|
19324
|
+
"integrity": "sha512-/FVl766LpUfB5vXgCYOYa0MeV/441Ia99AeICQIQFTY/Nw0roZwULcXpku5i1/m5kt/baz+s4Zogspd839HSMg==",
|
|
19296
19325
|
"dev": true,
|
|
19297
19326
|
"license": "MIT",
|
|
19298
19327
|
"peer": true,
|
|
@@ -21183,9 +21212,9 @@
|
|
|
21183
21212
|
}
|
|
21184
21213
|
},
|
|
21185
21214
|
"node_modules/shell-quote": {
|
|
21186
|
-
"version": "1.
|
|
21187
|
-
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.
|
|
21188
|
-
"integrity": "sha512-
|
|
21215
|
+
"version": "1.10.0",
|
|
21216
|
+
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.10.0.tgz",
|
|
21217
|
+
"integrity": "sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==",
|
|
21189
21218
|
"dev": true,
|
|
21190
21219
|
"license": "MIT",
|
|
21191
21220
|
"engines": {
|
|
@@ -21764,9 +21793,9 @@
|
|
|
21764
21793
|
}
|
|
21765
21794
|
},
|
|
21766
21795
|
"node_modules/systeminformation": {
|
|
21767
|
-
"version": "5.
|
|
21768
|
-
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.
|
|
21769
|
-
"integrity": "sha512-
|
|
21796
|
+
"version": "5.32.0",
|
|
21797
|
+
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.32.0.tgz",
|
|
21798
|
+
"integrity": "sha512-7gfXs43T91miPxxTTtrYitotR/8MPsI2gy3XgUMs6kmOE/JCVqZp6nJpx4XkSutoSqDh6+Y2ovvb2A3RQCR+8w==",
|
|
21770
21799
|
"license": "MIT",
|
|
21771
21800
|
"os": [
|
|
21772
21801
|
"darwin",
|
|
@@ -21782,7 +21811,7 @@
|
|
|
21782
21811
|
"systeminformation": "lib/cli.js"
|
|
21783
21812
|
},
|
|
21784
21813
|
"engines": {
|
|
21785
|
-
"node": ">=
|
|
21814
|
+
"node": ">=10.0.0"
|
|
21786
21815
|
},
|
|
21787
21816
|
"funding": {
|
|
21788
21817
|
"type": "Buy me a coffee",
|
|
@@ -21812,9 +21841,9 @@
|
|
|
21812
21841
|
}
|
|
21813
21842
|
},
|
|
21814
21843
|
"node_modules/tailwindcss": {
|
|
21815
|
-
"version": "4.3.
|
|
21816
|
-
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.
|
|
21817
|
-
"integrity": "sha512-
|
|
21844
|
+
"version": "4.3.3",
|
|
21845
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.3.tgz",
|
|
21846
|
+
"integrity": "sha512-gOhV3P7ufE62QDGg1zVaTgCR+EtPv92k2nIhVcVKcLmxT1sUBsQGhnZj175j+MqRt4zLF7ic+sCYjfhxMxj7YQ==",
|
|
21818
21847
|
"license": "MIT"
|
|
21819
21848
|
},
|
|
21820
21849
|
"node_modules/tapable": {
|
|
@@ -21953,21 +21982,21 @@
|
|
|
21953
21982
|
}
|
|
21954
21983
|
},
|
|
21955
21984
|
"node_modules/tldts": {
|
|
21956
|
-
"version": "7.4.
|
|
21957
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.
|
|
21958
|
-
"integrity": "sha512-
|
|
21985
|
+
"version": "7.4.9",
|
|
21986
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.9.tgz",
|
|
21987
|
+
"integrity": "sha512-3kZ8wQQ/k5DrChD4X4FVvr2D7E5uoRgAqkPyLpSCGUvqOvqu+JEdr3mwMUaVWb+vMHZaKhF5fp2PBigKsui7hA==",
|
|
21959
21988
|
"license": "MIT",
|
|
21960
21989
|
"dependencies": {
|
|
21961
|
-
"tldts-core": "^7.4.
|
|
21990
|
+
"tldts-core": "^7.4.9"
|
|
21962
21991
|
},
|
|
21963
21992
|
"bin": {
|
|
21964
21993
|
"tldts": "bin/cli.js"
|
|
21965
21994
|
}
|
|
21966
21995
|
},
|
|
21967
21996
|
"node_modules/tldts-core": {
|
|
21968
|
-
"version": "7.4.
|
|
21969
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.
|
|
21970
|
-
"integrity": "sha512-
|
|
21997
|
+
"version": "7.4.9",
|
|
21998
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.9.tgz",
|
|
21999
|
+
"integrity": "sha512-DxKfPBI52p2msTEu7MPhdpdDTBhhVQg1a/8PjQckeyAvO13eMYElX545grIp6nnTGIMZlRvFZPvFhvI/WIz2Vg==",
|
|
21971
22000
|
"license": "MIT"
|
|
21972
22001
|
},
|
|
21973
22002
|
"node_modules/to-regex-range": {
|
|
@@ -22297,16 +22326,16 @@
|
|
|
22297
22326
|
}
|
|
22298
22327
|
},
|
|
22299
22328
|
"node_modules/typescript-eslint": {
|
|
22300
|
-
"version": "8.
|
|
22301
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.
|
|
22302
|
-
"integrity": "sha512-
|
|
22329
|
+
"version": "8.64.0",
|
|
22330
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.64.0.tgz",
|
|
22331
|
+
"integrity": "sha512-0qg+pDNMnqYzqH9AnNK+39tejHvsShUOUUoRUgtnTGE7QuMZhiFDnozq8nHJVq+Wae6NMLKNWLg5WmkcC/ndyQ==",
|
|
22303
22332
|
"dev": true,
|
|
22304
22333
|
"license": "MIT",
|
|
22305
22334
|
"dependencies": {
|
|
22306
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
22307
|
-
"@typescript-eslint/parser": "8.
|
|
22308
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
22309
|
-
"@typescript-eslint/utils": "8.
|
|
22335
|
+
"@typescript-eslint/eslint-plugin": "8.64.0",
|
|
22336
|
+
"@typescript-eslint/parser": "8.64.0",
|
|
22337
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
22338
|
+
"@typescript-eslint/utils": "8.64.0"
|
|
22310
22339
|
},
|
|
22311
22340
|
"engines": {
|
|
22312
22341
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -23165,9 +23194,9 @@
|
|
|
23165
23194
|
"license": "ISC"
|
|
23166
23195
|
},
|
|
23167
23196
|
"node_modules/ws": {
|
|
23168
|
-
"version": "8.21.
|
|
23169
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.
|
|
23170
|
-
"integrity": "sha512
|
|
23197
|
+
"version": "8.21.1",
|
|
23198
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.1.tgz",
|
|
23199
|
+
"integrity": "sha512-+0NTnW77fFN/DjQi6k/Sq/Yvk4Sgajw7urW8V+asjXnRgDs9gyGkdb7EzgfhA4goXsRIZKE28fzIXBHEzhuiWw==",
|
|
23171
23200
|
"dev": true,
|
|
23172
23201
|
"license": "MIT",
|
|
23173
23202
|
"engines": {
|
|
@@ -23369,9 +23398,9 @@
|
|
|
23369
23398
|
}
|
|
23370
23399
|
},
|
|
23371
23400
|
"node_modules/yocto-spinner": {
|
|
23372
|
-
"version": "1.2.
|
|
23373
|
-
"resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-1.2.
|
|
23374
|
-
"integrity": "sha512-
|
|
23401
|
+
"version": "1.2.2",
|
|
23402
|
+
"resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-1.2.2.tgz",
|
|
23403
|
+
"integrity": "sha512-DODGl1wJjA/s5pnJFKau9lIYHT81lnhob1i3e1TjxZRxEhWRKl74nTbWE6H5KlkViQQTo/Z29YFdxzTZAMY3ng==",
|
|
23375
23404
|
"license": "MIT",
|
|
23376
23405
|
"dependencies": {
|
|
23377
23406
|
"yoctocolors": "^2.1.1"
|