@leo-h/create-nodejs-app 1.0.30 → 1.0.32

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.
Files changed (50) hide show
  1. package/package.json +14 -14
  2. package/templates/clean/package.json +12 -12
  3. package/templates/clean/pnpm-lock.yaml +222 -494
  4. package/templates/fastify/.env.example +1 -4
  5. package/templates/fastify/.lintstagedrc.json +2 -2
  6. package/templates/fastify/.prettierignore +0 -2
  7. package/templates/fastify/.swcrc +19 -0
  8. package/templates/fastify/gitignore +8 -111
  9. package/templates/fastify/package.json +28 -40
  10. package/templates/fastify/pnpm-lock.yaml +1704 -3725
  11. package/templates/fastify/src/core/create-controller-response-schema.ts +74 -0
  12. package/templates/fastify/src/core/schema.ts +17 -0
  13. package/templates/fastify/src/env.ts +49 -0
  14. package/templates/fastify/src/{infra/http → http}/app.ts +13 -19
  15. package/templates/fastify/src/http/controllers/hello.controller.spec.ts +74 -0
  16. package/templates/fastify/src/http/controllers/hello.controller.ts +48 -0
  17. package/templates/fastify/src/http/errors.ts +89 -0
  18. package/templates/fastify/src/http/plugins/error-handler.plugin.ts +29 -0
  19. package/templates/fastify/src/http/plugins/not-found-error-handler.plugin.ts +5 -0
  20. package/templates/fastify/src/http/plugins/routes.plugin.ts +53 -0
  21. package/templates/fastify/src/http/plugins/swagger-ui.plugin.ts +32 -0
  22. package/templates/fastify/src/infra/http-server.ts +16 -0
  23. package/templates/fastify/test/integration/create-test-request.ts +30 -0
  24. package/templates/fastify/vitest.config.integration.mts +3 -2
  25. package/templates/fastify/vitest.config.mts +13 -2
  26. package/templates/nest/package.json +19 -19
  27. package/templates/nest/pnpm-lock.yaml +369 -377
  28. package/templates/react-vite/package.json +20 -20
  29. package/templates/react-vite/pnpm-lock.yaml +458 -972
  30. package/templates/fastify/build.config.ts +0 -56
  31. package/templates/fastify/src/core/domain-error.ts +0 -17
  32. package/templates/fastify/src/infra/env.ts +0 -22
  33. package/templates/fastify/src/infra/http/@types/fastify.d.ts +0 -16
  34. package/templates/fastify/src/infra/http/controllers/hello/hello-multipart.controller.integration-spec.ts +0 -35
  35. package/templates/fastify/src/infra/http/controllers/hello/hello-multipart.controller.ts +0 -65
  36. package/templates/fastify/src/infra/http/controllers/hello/hello.controller.integration-spec.ts +0 -38
  37. package/templates/fastify/src/infra/http/controllers/hello/hello.controller.ts +0 -40
  38. package/templates/fastify/src/infra/http/errors/bad-request.error.ts +0 -11
  39. package/templates/fastify/src/infra/http/errors/internal-server.error.ts +0 -13
  40. package/templates/fastify/src/infra/http/errors/upload-validation.error.ts +0 -21
  41. package/templates/fastify/src/infra/http/errors/validation.error.ts +0 -13
  42. package/templates/fastify/src/infra/http/plugins/error-handler.plugin.ts +0 -31
  43. package/templates/fastify/src/infra/http/plugins/handle-swagger-multipart.plugin.ts +0 -96
  44. package/templates/fastify/src/infra/http/plugins/require-upload.plugin.ts +0 -197
  45. package/templates/fastify/src/infra/http/routes.ts +0 -8
  46. package/templates/fastify/src/infra/presenters/error.presenter.ts +0 -13
  47. package/templates/fastify/src/infra/server.ts +0 -12
  48. package/templates/fastify/test/integration/sample-upload.jpg +0 -0
  49. package/templates/fastify/test/integration/setup.ts +0 -10
  50. package/templates/fastify/src/{infra/http/@types/fastify-zod-type-provider.ts → @types/fastify.ts} +1 -1
@@ -10,10 +10,10 @@ importers:
10
10
  dependencies:
11
11
  '@hookform/resolvers':
12
12
  specifier: 3.10.0
13
- version: 3.10.0(react-hook-form@7.54.2(react@18.3.1))
13
+ version: 3.10.0(react-hook-form@7.55.0(react@18.3.1))
14
14
  i18next:
15
- specifier: 24.2.1
16
- version: 24.2.1(typescript@5.6.3)
15
+ specifier: 24.2.3
16
+ version: 24.2.3(typescript@5.8.2)
17
17
  react:
18
18
  specifier: 18.3.1
19
19
  version: 18.3.1
@@ -24,78 +24,78 @@ importers:
24
24
  specifier: 2.0.5
25
25
  version: 2.0.5(react@18.3.1)
26
26
  react-hook-form:
27
- specifier: 7.54.2
28
- version: 7.54.2(react@18.3.1)
27
+ specifier: 7.55.0
28
+ version: 7.55.0(react@18.3.1)
29
29
  react-router:
30
- specifier: 7.1.1
31
- version: 7.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
30
+ specifier: 7.4.1
31
+ version: 7.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
32
32
  swr:
33
- specifier: 2.3.0
34
- version: 2.3.0(react@18.3.1)
33
+ specifier: 2.3.3
34
+ version: 2.3.3(react@18.3.1)
35
35
  zod:
36
- specifier: 3.24.1
37
- version: 3.24.1
36
+ specifier: 3.24.2
37
+ version: 3.24.2
38
38
  zod-i18n-map:
39
39
  specifier: 2.27.0
40
- version: 2.27.0(i18next@24.2.1(typescript@5.6.3))(zod@3.24.1)
40
+ version: 2.27.0(i18next@24.2.3(typescript@5.8.2))(zod@3.24.2)
41
41
  devDependencies:
42
42
  '@eslint/js':
43
- specifier: 9.17.0
44
- version: 9.17.0
43
+ specifier: 9.23.0
44
+ version: 9.23.0
45
45
  '@types/react':
46
- specifier: 18.3.18
47
- version: 18.3.18
46
+ specifier: 18.3.20
47
+ version: 18.3.20
48
48
  '@types/react-dom':
49
49
  specifier: 18.3.5
50
- version: 18.3.5(@types/react@18.3.18)
50
+ version: 18.3.5(@types/react@18.3.20)
51
51
  '@vitejs/plugin-react':
52
52
  specifier: 4.3.4
53
- version: 4.3.4(vite@6.0.14(@types/node@22.10.5)(tsx@4.19.2)(yaml@2.6.1))
53
+ version: 4.3.4(vite@6.2.4(@types/node@22.10.5)(tsx@4.19.3)(yaml@2.7.1))
54
54
  eslint:
55
- specifier: 9.17.0
56
- version: 9.17.0
55
+ specifier: 9.23.0
56
+ version: 9.23.0
57
57
  eslint-config-prettier:
58
58
  specifier: 9.1.0
59
- version: 9.1.0(eslint@9.17.0)
59
+ version: 9.1.0(eslint@9.23.0)
60
60
  eslint-plugin-react-hooks:
61
- specifier: 5.0.0
62
- version: 5.0.0(eslint@9.17.0)
61
+ specifier: 5.2.0
62
+ version: 5.2.0(eslint@9.23.0)
63
63
  eslint-plugin-react-refresh:
64
- specifier: 0.4.16
65
- version: 0.4.16(eslint@9.17.0)
64
+ specifier: 0.4.19
65
+ version: 0.4.19(eslint@9.23.0)
66
66
  globals:
67
- specifier: 15.14.0
68
- version: 15.14.0
67
+ specifier: 15.15.0
68
+ version: 15.15.0
69
69
  husky:
70
70
  specifier: 9.1.7
71
71
  version: 9.1.7
72
72
  lint-staged:
73
- specifier: 15.3.0
74
- version: 15.3.0
73
+ specifier: 15.5.0
74
+ version: 15.5.0
75
75
  orval:
76
- specifier: 7.4.1
77
- version: 7.4.1(openapi-types@12.1.3)
76
+ specifier: 7.7.0
77
+ version: 7.7.0(openapi-types@12.1.3)
78
78
  prettier:
79
- specifier: 3.4.2
80
- version: 3.4.2
79
+ specifier: 3.5.3
80
+ version: 3.5.3
81
81
  tsx:
82
- specifier: 4.19.2
83
- version: 4.19.2
82
+ specifier: 4.19.3
83
+ version: 4.19.3
84
84
  type-fest:
85
- specifier: 4.32.0
86
- version: 4.32.0
85
+ specifier: 4.38.0
86
+ version: 4.38.0
87
87
  typescript:
88
- specifier: ~5.6.2
89
- version: 5.6.3
88
+ specifier: ~5.8.2
89
+ version: 5.8.2
90
90
  typescript-eslint:
91
- specifier: 8.18.2
92
- version: 8.18.2(eslint@9.17.0)(typescript@5.6.3)
91
+ specifier: 8.28.0
92
+ version: 8.28.0(eslint@9.23.0)(typescript@5.8.2)
93
93
  vite:
94
- specifier: 6.0.14
95
- version: 6.0.14(@types/node@22.10.5)(tsx@4.19.2)(yaml@2.6.1)
94
+ specifier: 6.2.4
95
+ version: 6.2.4(@types/node@22.10.5)(tsx@4.19.3)(yaml@2.7.1)
96
96
  vite-tsconfig-paths:
97
- specifier: 5.1.3
98
- version: 5.1.3(typescript@5.6.3)(vite@6.0.14(@types/node@22.10.5)(tsx@4.19.2)(yaml@2.6.1))
97
+ specifier: 5.1.4
98
+ version: 5.1.4(typescript@5.8.2)(vite@6.2.4(@types/node@22.10.5)(tsx@4.19.3)(yaml@2.7.1))
99
99
 
100
100
  packages:
101
101
 
@@ -189,8 +189,8 @@ packages:
189
189
  peerDependencies:
190
190
  '@babel/core': ^7.0.0-0
191
191
 
192
- '@babel/runtime@7.26.0':
193
- resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
192
+ '@babel/runtime@7.27.0':
193
+ resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
194
194
  engines: {node: '>=6.9.0'}
195
195
 
196
196
  '@babel/template@7.25.9':
@@ -205,296 +205,152 @@ packages:
205
205
  resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
206
206
  engines: {node: '>=6.9.0'}
207
207
 
208
- '@esbuild/aix-ppc64@0.23.1':
209
- resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
208
+ '@esbuild/aix-ppc64@0.25.2':
209
+ resolution: {integrity: sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==}
210
210
  engines: {node: '>=18'}
211
211
  cpu: [ppc64]
212
212
  os: [aix]
213
213
 
214
- '@esbuild/aix-ppc64@0.24.2':
215
- resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
216
- engines: {node: '>=18'}
217
- cpu: [ppc64]
218
- os: [aix]
219
-
220
- '@esbuild/android-arm64@0.23.1':
221
- resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
222
- engines: {node: '>=18'}
223
- cpu: [arm64]
224
- os: [android]
225
-
226
- '@esbuild/android-arm64@0.24.2':
227
- resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
214
+ '@esbuild/android-arm64@0.25.2':
215
+ resolution: {integrity: sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==}
228
216
  engines: {node: '>=18'}
229
217
  cpu: [arm64]
230
218
  os: [android]
231
219
 
232
- '@esbuild/android-arm@0.23.1':
233
- resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
234
- engines: {node: '>=18'}
235
- cpu: [arm]
236
- os: [android]
237
-
238
- '@esbuild/android-arm@0.24.2':
239
- resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
220
+ '@esbuild/android-arm@0.25.2':
221
+ resolution: {integrity: sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==}
240
222
  engines: {node: '>=18'}
241
223
  cpu: [arm]
242
224
  os: [android]
243
225
 
244
- '@esbuild/android-x64@0.23.1':
245
- resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
246
- engines: {node: '>=18'}
247
- cpu: [x64]
248
- os: [android]
249
-
250
- '@esbuild/android-x64@0.24.2':
251
- resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
226
+ '@esbuild/android-x64@0.25.2':
227
+ resolution: {integrity: sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==}
252
228
  engines: {node: '>=18'}
253
229
  cpu: [x64]
254
230
  os: [android]
255
231
 
256
- '@esbuild/darwin-arm64@0.23.1':
257
- resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
232
+ '@esbuild/darwin-arm64@0.25.2':
233
+ resolution: {integrity: sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==}
258
234
  engines: {node: '>=18'}
259
235
  cpu: [arm64]
260
236
  os: [darwin]
261
237
 
262
- '@esbuild/darwin-arm64@0.24.2':
263
- resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
264
- engines: {node: '>=18'}
265
- cpu: [arm64]
266
- os: [darwin]
267
-
268
- '@esbuild/darwin-x64@0.23.1':
269
- resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
238
+ '@esbuild/darwin-x64@0.25.2':
239
+ resolution: {integrity: sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==}
270
240
  engines: {node: '>=18'}
271
241
  cpu: [x64]
272
242
  os: [darwin]
273
243
 
274
- '@esbuild/darwin-x64@0.24.2':
275
- resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
276
- engines: {node: '>=18'}
277
- cpu: [x64]
278
- os: [darwin]
279
-
280
- '@esbuild/freebsd-arm64@0.23.1':
281
- resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
282
- engines: {node: '>=18'}
283
- cpu: [arm64]
284
- os: [freebsd]
285
-
286
- '@esbuild/freebsd-arm64@0.24.2':
287
- resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
244
+ '@esbuild/freebsd-arm64@0.25.2':
245
+ resolution: {integrity: sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==}
288
246
  engines: {node: '>=18'}
289
247
  cpu: [arm64]
290
248
  os: [freebsd]
291
249
 
292
- '@esbuild/freebsd-x64@0.23.1':
293
- resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
250
+ '@esbuild/freebsd-x64@0.25.2':
251
+ resolution: {integrity: sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==}
294
252
  engines: {node: '>=18'}
295
253
  cpu: [x64]
296
254
  os: [freebsd]
297
255
 
298
- '@esbuild/freebsd-x64@0.24.2':
299
- resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
300
- engines: {node: '>=18'}
301
- cpu: [x64]
302
- os: [freebsd]
303
-
304
- '@esbuild/linux-arm64@0.23.1':
305
- resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
306
- engines: {node: '>=18'}
307
- cpu: [arm64]
308
- os: [linux]
309
-
310
- '@esbuild/linux-arm64@0.24.2':
311
- resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
256
+ '@esbuild/linux-arm64@0.25.2':
257
+ resolution: {integrity: sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==}
312
258
  engines: {node: '>=18'}
313
259
  cpu: [arm64]
314
260
  os: [linux]
315
261
 
316
- '@esbuild/linux-arm@0.23.1':
317
- resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
262
+ '@esbuild/linux-arm@0.25.2':
263
+ resolution: {integrity: sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==}
318
264
  engines: {node: '>=18'}
319
265
  cpu: [arm]
320
266
  os: [linux]
321
267
 
322
- '@esbuild/linux-arm@0.24.2':
323
- resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
324
- engines: {node: '>=18'}
325
- cpu: [arm]
326
- os: [linux]
327
-
328
- '@esbuild/linux-ia32@0.23.1':
329
- resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
330
- engines: {node: '>=18'}
331
- cpu: [ia32]
332
- os: [linux]
333
-
334
- '@esbuild/linux-ia32@0.24.2':
335
- resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
268
+ '@esbuild/linux-ia32@0.25.2':
269
+ resolution: {integrity: sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==}
336
270
  engines: {node: '>=18'}
337
271
  cpu: [ia32]
338
272
  os: [linux]
339
273
 
340
- '@esbuild/linux-loong64@0.23.1':
341
- resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
342
- engines: {node: '>=18'}
343
- cpu: [loong64]
344
- os: [linux]
345
-
346
- '@esbuild/linux-loong64@0.24.2':
347
- resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
274
+ '@esbuild/linux-loong64@0.25.2':
275
+ resolution: {integrity: sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==}
348
276
  engines: {node: '>=18'}
349
277
  cpu: [loong64]
350
278
  os: [linux]
351
279
 
352
- '@esbuild/linux-mips64el@0.23.1':
353
- resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
354
- engines: {node: '>=18'}
355
- cpu: [mips64el]
356
- os: [linux]
357
-
358
- '@esbuild/linux-mips64el@0.24.2':
359
- resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
280
+ '@esbuild/linux-mips64el@0.25.2':
281
+ resolution: {integrity: sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==}
360
282
  engines: {node: '>=18'}
361
283
  cpu: [mips64el]
362
284
  os: [linux]
363
285
 
364
- '@esbuild/linux-ppc64@0.23.1':
365
- resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
286
+ '@esbuild/linux-ppc64@0.25.2':
287
+ resolution: {integrity: sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==}
366
288
  engines: {node: '>=18'}
367
289
  cpu: [ppc64]
368
290
  os: [linux]
369
291
 
370
- '@esbuild/linux-ppc64@0.24.2':
371
- resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
372
- engines: {node: '>=18'}
373
- cpu: [ppc64]
374
- os: [linux]
375
-
376
- '@esbuild/linux-riscv64@0.23.1':
377
- resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
292
+ '@esbuild/linux-riscv64@0.25.2':
293
+ resolution: {integrity: sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==}
378
294
  engines: {node: '>=18'}
379
295
  cpu: [riscv64]
380
296
  os: [linux]
381
297
 
382
- '@esbuild/linux-riscv64@0.24.2':
383
- resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
384
- engines: {node: '>=18'}
385
- cpu: [riscv64]
386
- os: [linux]
387
-
388
- '@esbuild/linux-s390x@0.23.1':
389
- resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
390
- engines: {node: '>=18'}
391
- cpu: [s390x]
392
- os: [linux]
393
-
394
- '@esbuild/linux-s390x@0.24.2':
395
- resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
298
+ '@esbuild/linux-s390x@0.25.2':
299
+ resolution: {integrity: sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==}
396
300
  engines: {node: '>=18'}
397
301
  cpu: [s390x]
398
302
  os: [linux]
399
303
 
400
- '@esbuild/linux-x64@0.23.1':
401
- resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
304
+ '@esbuild/linux-x64@0.25.2':
305
+ resolution: {integrity: sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==}
402
306
  engines: {node: '>=18'}
403
307
  cpu: [x64]
404
308
  os: [linux]
405
309
 
406
- '@esbuild/linux-x64@0.24.2':
407
- resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
408
- engines: {node: '>=18'}
409
- cpu: [x64]
410
- os: [linux]
411
-
412
- '@esbuild/netbsd-arm64@0.24.2':
413
- resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
310
+ '@esbuild/netbsd-arm64@0.25.2':
311
+ resolution: {integrity: sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==}
414
312
  engines: {node: '>=18'}
415
313
  cpu: [arm64]
416
314
  os: [netbsd]
417
315
 
418
- '@esbuild/netbsd-x64@0.23.1':
419
- resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
316
+ '@esbuild/netbsd-x64@0.25.2':
317
+ resolution: {integrity: sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==}
420
318
  engines: {node: '>=18'}
421
319
  cpu: [x64]
422
320
  os: [netbsd]
423
321
 
424
- '@esbuild/netbsd-x64@0.24.2':
425
- resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
426
- engines: {node: '>=18'}
427
- cpu: [x64]
428
- os: [netbsd]
429
-
430
- '@esbuild/openbsd-arm64@0.23.1':
431
- resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
322
+ '@esbuild/openbsd-arm64@0.25.2':
323
+ resolution: {integrity: sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==}
432
324
  engines: {node: '>=18'}
433
325
  cpu: [arm64]
434
326
  os: [openbsd]
435
327
 
436
- '@esbuild/openbsd-arm64@0.24.2':
437
- resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
438
- engines: {node: '>=18'}
439
- cpu: [arm64]
440
- os: [openbsd]
441
-
442
- '@esbuild/openbsd-x64@0.23.1':
443
- resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
444
- engines: {node: '>=18'}
445
- cpu: [x64]
446
- os: [openbsd]
447
-
448
- '@esbuild/openbsd-x64@0.24.2':
449
- resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
328
+ '@esbuild/openbsd-x64@0.25.2':
329
+ resolution: {integrity: sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==}
450
330
  engines: {node: '>=18'}
451
331
  cpu: [x64]
452
332
  os: [openbsd]
453
333
 
454
- '@esbuild/sunos-x64@0.23.1':
455
- resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
456
- engines: {node: '>=18'}
457
- cpu: [x64]
458
- os: [sunos]
459
-
460
- '@esbuild/sunos-x64@0.24.2':
461
- resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
334
+ '@esbuild/sunos-x64@0.25.2':
335
+ resolution: {integrity: sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==}
462
336
  engines: {node: '>=18'}
463
337
  cpu: [x64]
464
338
  os: [sunos]
465
339
 
466
- '@esbuild/win32-arm64@0.23.1':
467
- resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
468
- engines: {node: '>=18'}
469
- cpu: [arm64]
470
- os: [win32]
471
-
472
- '@esbuild/win32-arm64@0.24.2':
473
- resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
340
+ '@esbuild/win32-arm64@0.25.2':
341
+ resolution: {integrity: sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==}
474
342
  engines: {node: '>=18'}
475
343
  cpu: [arm64]
476
344
  os: [win32]
477
345
 
478
- '@esbuild/win32-ia32@0.23.1':
479
- resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
346
+ '@esbuild/win32-ia32@0.25.2':
347
+ resolution: {integrity: sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==}
480
348
  engines: {node: '>=18'}
481
349
  cpu: [ia32]
482
350
  os: [win32]
483
351
 
484
- '@esbuild/win32-ia32@0.24.2':
485
- resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
486
- engines: {node: '>=18'}
487
- cpu: [ia32]
488
- os: [win32]
489
-
490
- '@esbuild/win32-x64@0.23.1':
491
- resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
492
- engines: {node: '>=18'}
493
- cpu: [x64]
494
- os: [win32]
495
-
496
- '@esbuild/win32-x64@0.24.2':
497
- resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
352
+ '@esbuild/win32-x64@0.25.2':
353
+ resolution: {integrity: sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==}
498
354
  engines: {node: '>=18'}
499
355
  cpu: [x64]
500
356
  os: [win32]
@@ -509,33 +365,40 @@ packages:
509
365
  resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
510
366
  engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
511
367
 
512
- '@eslint/config-array@0.19.1':
513
- resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
368
+ '@eslint/config-array@0.19.2':
369
+ resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
370
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
371
+
372
+ '@eslint/config-helpers@0.2.0':
373
+ resolution: {integrity: sha512-yJLLmLexii32mGrhW29qvU3QBVTu0GUmEf/J4XsBtVhp4JkIUFN/BjWqTF63yRvGApIDpZm5fa97LtYtINmfeQ==}
514
374
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
515
375
 
516
- '@eslint/core@0.9.1':
517
- resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==}
376
+ '@eslint/core@0.12.0':
377
+ resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
518
378
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
519
379
 
520
- '@eslint/eslintrc@3.2.0':
521
- resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
380
+ '@eslint/eslintrc@3.3.1':
381
+ resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
522
382
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
523
383
 
524
- '@eslint/js@9.17.0':
525
- resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
384
+ '@eslint/js@9.23.0':
385
+ resolution: {integrity: sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==}
526
386
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
527
387
 
528
- '@eslint/object-schema@2.1.5':
529
- resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
388
+ '@eslint/object-schema@2.1.6':
389
+ resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
530
390
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
531
391
 
532
- '@eslint/plugin-kit@0.2.4':
533
- resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==}
392
+ '@eslint/plugin-kit@0.2.7':
393
+ resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
534
394
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
535
395
 
536
396
  '@exodus/schemasafe@1.3.0':
537
397
  resolution: {integrity: sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==}
538
398
 
399
+ '@gerrit0/mini-shiki@1.27.2':
400
+ resolution: {integrity: sha512-GeWyHz8ao2gBiUW4OJnQDxXQnFgZQwwQk05t/CVVgNBN7/rK8XZ7xY6YhLVv9tH3VppWWmr9DCl3MwemB/i+Og==}
401
+
539
402
  '@hookform/resolvers@3.10.0':
540
403
  resolution: {integrity: sha512-79Dv+3mDF7i+2ajj7SkypSKHhl1cbln1OGavqrsF7p6mbUv11xpqpacPsGDCTRvCSjEEIez2ef1NveSVL3b0Ag==}
541
404
  peerDependencies:
@@ -557,16 +420,16 @@ packages:
557
420
  resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
558
421
  engines: {node: '>=18.18'}
559
422
 
560
- '@humanwhocodes/retry@0.4.1':
561
- resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
423
+ '@humanwhocodes/retry@0.4.2':
424
+ resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
562
425
  engines: {node: '>=18.18'}
563
426
 
564
- '@ibm-cloud/openapi-ruleset-utilities@1.7.0':
565
- resolution: {integrity: sha512-hwMfl2s638P4VNkgZWq0KesmLQr6VNlAL5yslncjEuXS5pzUG4/3UmyoN5127wzeAMpamDOItj8BB07rLBT2sQ==}
427
+ '@ibm-cloud/openapi-ruleset-utilities@1.7.1':
428
+ resolution: {integrity: sha512-+P8SxhkO9sygENTyw6vUBc5oV/DOKjr6mdf6ubgstE9TypxT+uG4D6GqPhoTeVvHntOjcQnPHthssasA7vYE3g==}
566
429
  engines: {node: '>=16.0.0'}
567
430
 
568
- '@ibm-cloud/openapi-ruleset@1.28.1':
569
- resolution: {integrity: sha512-k3ZFpIMnYwddYf0FTb6jqzYLLwgIC+GTqIvRPoOKVVjdlJt9x0gv+MP9W3qvWA5i4lsKv77YIKy+pHwFBOKECA==}
431
+ '@ibm-cloud/openapi-ruleset@1.29.4':
432
+ resolution: {integrity: sha512-B8ZMHvB7sbT01VRqsRnj4peXABoadIcXs1WqqZ+4I0518NAok9t1TflmqXNYQG2MPKEP44snbvjPMAF2MJ3h/A==}
570
433
  engines: {node: '>=16.0.0'}
571
434
 
572
435
  '@jridgewell/gen-mapping@0.3.8':
@@ -620,32 +483,32 @@ packages:
620
483
  resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
621
484
  engines: {node: '>= 8'}
622
485
 
623
- '@orval/angular@7.4.1':
624
- resolution: {integrity: sha512-ypqJk/WJ9tnMQv17ZRoB73xZrNTskaR1FXc1j5FyC19dQgmBgCtyJrJsXDSRVj747KA9qtdHpS0sIzofwOTx/A==}
486
+ '@orval/angular@7.7.0':
487
+ resolution: {integrity: sha512-4FM2XtbAwmrfAOzqNsMiDhVQ1HjOWkZ6FVvqrRXnMZTI4Ldxagb+rOmb6FCGbcpOgJbpe+hGsCn5dNaHbrwjMA==}
625
488
 
626
- '@orval/axios@7.4.1':
627
- resolution: {integrity: sha512-Izg99898tPutkvFUSDD9LROEul1Gh88yxgSHSDFuWZcImkdjeg30Sc6b/EXytjn5I/De/PtQPgEIFPCEsZ9O4A==}
489
+ '@orval/axios@7.7.0':
490
+ resolution: {integrity: sha512-dU6LkgRjp8Fi4hXtjHMTtU0mzBhGx731Sbvo5DNlU5il3Jb+SgOaf2HiWJBRZPZCQtJ+vJ+8JpZpg1keGu7QlQ==}
628
491
 
629
- '@orval/core@7.4.1':
630
- resolution: {integrity: sha512-puqyqfA7uolvd/cSy11Siq7UqrgzLAWeVUMxhsuql5KFn3Vi+5n3XUztzbtW0kuTb27vX8kcpnlOMQMf8Jf1Og==}
492
+ '@orval/core@7.7.0':
493
+ resolution: {integrity: sha512-Sx0YtwHcp/Te180fhVtrZbGRpiKcBMIyueW4MRIHD+nn7Fa1+zJG+8QLPar4H13yANjV6+yj9oKCE1TxAm3pVw==}
631
494
 
632
- '@orval/fetch@7.4.1':
633
- resolution: {integrity: sha512-EVirxs0ii0rt/Lsl5IO7ADAKdEWNnHB7GinbdvtfugZ8rENzNzOQLyBm5QP70kJM70FVLBxWGpeH6Jnqz0Fv8g==}
495
+ '@orval/fetch@7.7.0':
496
+ resolution: {integrity: sha512-s9bYSVpskpakWX3KPhPYQJrOwutmUbNPjie0rD+aa55zDd/CYkuTjNKkG0fVdLzoysN7qIUweFWMlYIdYOVD7A==}
634
497
 
635
- '@orval/hono@7.4.1':
636
- resolution: {integrity: sha512-qzoOl2KvbxpBZKZB19+vn5iOZIwGcbdYY+/qNmSlJQ3jA7bbHNbn26ZfItDlAh3WFH+fTvme58ezRNP7HVc0rw==}
498
+ '@orval/hono@7.7.0':
499
+ resolution: {integrity: sha512-QpAGZD7MDO7DZKc4cJnaqTy6ZSop79gClupiUYv7Xv6N9c98CvQxM+qlzNPVcqJKdhv6GQCH0zLB+ACYaR0btw==}
637
500
 
638
- '@orval/mock@7.4.1':
639
- resolution: {integrity: sha512-ywKwcQaLIyZXKE6kHmdF3M3HGtlOKaZZ6+ciSEV1vbKMBr7ahFyv0m2pitUiwHyJ3ameKarMArX0hk31klZbtA==}
501
+ '@orval/mock@7.7.0':
502
+ resolution: {integrity: sha512-Qcm1UMV83ZYwzGqVC4Eq2vlgBFzOWzxV+qBLc+Ihgvff54+TWWB1mGD8hxzc8RqUmOxXdbauVqxE3z0/XvOX8Q==}
640
503
 
641
- '@orval/query@7.4.1':
642
- resolution: {integrity: sha512-zlkrdiK+Bas7xOYM36cfZKGGoslKqh1B9mKaGQKadkCj9+54PzI9CxIxtCGZWJhLXB8kqPxaenNxyYoV/JW02A==}
504
+ '@orval/query@7.7.0':
505
+ resolution: {integrity: sha512-n8D95MEZbd02cHlcgjVIsXvZ/qlonu3QfiYSr/KdgzHfW6Xws7bHAtOr8l4LsXIZUvsYlPMlsHbc9axLMPjWZQ==}
643
506
 
644
- '@orval/swr@7.4.1':
645
- resolution: {integrity: sha512-OnmSjDiS4xZUrkJhbmEQjdY95gfRHdp9uU5q9fGM4Qg1VVaR/KcOG7FRNk4WHcQmCmi4KDvwbboE/KJjsDsF7Q==}
507
+ '@orval/swr@7.7.0':
508
+ resolution: {integrity: sha512-cXvUygiqKi9R82KqNpTABC/EEQhNwAXo5+0e2ugyE4AET9SoTBGcJmaa7+BaSRBO+LXxIzjD6hFdd9kYGQDPHg==}
646
509
 
647
- '@orval/zod@7.4.1':
648
- resolution: {integrity: sha512-TqFidfTx9OtjTeA48P43/Vw1OaWuEkhURsMQGy8hn8w8/AKIAN7j0e/m8eoMLV/C3BN1ErfLDC1lkQ52q7u6SQ==}
510
+ '@orval/zod@7.7.0':
511
+ resolution: {integrity: sha512-h5DiQG/bQL0lEGMRVvVb/FNfrN1Zx3LZSPA+XvF6EpgPiAqzZVcZ+YhYh9YzDAZg0BLsVyS9jBQzANOgoKc7yQ==}
649
512
 
650
513
  '@rollup/rollup-android-arm-eabi@4.30.1':
651
514
  resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==}
@@ -742,23 +605,11 @@ packages:
742
605
  cpu: [x64]
743
606
  os: [win32]
744
607
 
745
- '@shikijs/core@1.26.1':
746
- resolution: {integrity: sha512-yeo7sG+WZQblKPclUOKRPwkv1PyoHYkJ4gP9DzhFJbTdueKR7wYTI1vfF/bFi1NTgc545yG/DzvVhZgueVOXMA==}
747
-
748
- '@shikijs/engine-javascript@1.26.1':
749
- resolution: {integrity: sha512-CRhA0b8CaSLxS0E9A4Bzcb3LKBNpykfo9F85ozlNyArxjo2NkijtiwrJZ6eHa+NT5I9Kox2IXVdjUsP4dilsmw==}
750
-
751
- '@shikijs/engine-oniguruma@1.26.1':
752
- resolution: {integrity: sha512-F5XuxN1HljLuvfXv7d+mlTkV7XukC1cawdtOo+7pKgPD83CAB1Sf8uHqP3PK0u7njFH0ZhoXE1r+0JzEgAQ+kg==}
753
-
754
- '@shikijs/langs@1.26.1':
755
- resolution: {integrity: sha512-oz/TQiIqZejEIZbGtn68hbJijAOTtYH4TMMSWkWYozwqdpKR3EXgILneQy26WItmJjp3xVspHdiUxUCws4gtuw==}
608
+ '@shikijs/engine-oniguruma@1.29.2':
609
+ resolution: {integrity: sha512-7iiOx3SG8+g1MnlzZVDYiaeHe7Ez2Kf2HrJzdmGwkRisT7r4rak0e655AcM/tF9JG/kg5fMNYlLLKglbN7gBqA==}
756
610
 
757
- '@shikijs/themes@1.26.1':
758
- resolution: {integrity: sha512-JDxVn+z+wgLCiUhBGx2OQrLCkKZQGzNH3nAxFir4PjUcYiyD8Jdms9izyxIogYmSwmoPTatFTdzyrRKbKlSfPA==}
759
-
760
- '@shikijs/types@1.26.1':
761
- resolution: {integrity: sha512-d4B00TKKAMaHuFYgRf3L0gwtvqpW4hVdVwKcZYbBfAAQXspgkbWqnFfuFl3MDH6gLbsubOcr+prcnsqah3ny7Q==}
611
+ '@shikijs/types@1.29.2':
612
+ resolution: {integrity: sha512-VJjK0eIijTZf0QSTODEXCqinjBn0joAHQ+aPSBzrv4O2d/QSbsMw+ZeSRx03kV34Hy7NzUvV/7NqfYGRLrASmw==}
762
613
 
763
614
  '@shikijs/vscode-textmate@10.0.1':
764
615
  resolution: {integrity: sha512-fTIQwLF+Qhuws31iw7Ncl1R3HUDtGwIipiJ9iU+UsDUwMhegFcQKQHd51nZjb7CArq0MvON8rbgCGQYWHUKAdg==}
@@ -863,9 +714,6 @@ packages:
863
714
  '@types/json-schema@7.0.15':
864
715
  resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
865
716
 
866
- '@types/mdast@4.0.4':
867
- resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
868
-
869
717
  '@types/node@22.10.5':
870
718
  resolution: {integrity: sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==}
871
719
 
@@ -877,8 +725,8 @@ packages:
877
725
  peerDependencies:
878
726
  '@types/react': ^18.0.0
879
727
 
880
- '@types/react@18.3.18':
881
- resolution: {integrity: sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==}
728
+ '@types/react@18.3.20':
729
+ resolution: {integrity: sha512-IPaCZN7PShZK/3t6Q87pfTkRm6oLTd4vztyoj+cbHUF1g3FfVb2tFIL79uCRKEfv16AhqDMBywP2VW3KIZUvcg==}
882
730
 
883
731
  '@types/unist@3.0.3':
884
732
  resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
@@ -886,56 +734,53 @@ packages:
886
734
  '@types/urijs@1.19.25':
887
735
  resolution: {integrity: sha512-XOfUup9r3Y06nFAZh3WvO0rBU4OtlfPB/vgxpjg+NRdGU6CN6djdc6OEiH+PcqHCY6eFLo9Ista73uarf4gnBg==}
888
736
 
889
- '@typescript-eslint/eslint-plugin@8.18.2':
890
- resolution: {integrity: sha512-adig4SzPLjeQ0Tm+jvsozSGiCliI2ajeURDGHjZ2llnA+A67HihCQ+a3amtPhUakd1GlwHxSRvzOZktbEvhPPg==}
737
+ '@typescript-eslint/eslint-plugin@8.28.0':
738
+ resolution: {integrity: sha512-lvFK3TCGAHsItNdWZ/1FkvpzCxTHUVuFrdnOGLMa0GGCFIbCgQWVk3CzCGdA7kM3qGVc+dfW9tr0Z/sHnGDFyg==}
891
739
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
892
740
  peerDependencies:
893
741
  '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
894
742
  eslint: ^8.57.0 || ^9.0.0
895
- typescript: '>=4.8.4 <5.8.0'
743
+ typescript: '>=4.8.4 <5.9.0'
896
744
 
897
- '@typescript-eslint/parser@8.18.2':
898
- resolution: {integrity: sha512-y7tcq4StgxQD4mDr9+Jb26dZ+HTZ/SkfqpXSiqeUXZHxOUyjWDKsmwKhJ0/tApR08DgOhrFAoAhyB80/p3ViuA==}
745
+ '@typescript-eslint/parser@8.28.0':
746
+ resolution: {integrity: sha512-LPcw1yHD3ToaDEoljFEfQ9j2xShY367h7FZ1sq5NJT9I3yj4LHer1Xd1yRSOdYy9BpsrxU7R+eoDokChYM53lQ==}
899
747
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
900
748
  peerDependencies:
901
749
  eslint: ^8.57.0 || ^9.0.0
902
- typescript: '>=4.8.4 <5.8.0'
750
+ typescript: '>=4.8.4 <5.9.0'
903
751
 
904
- '@typescript-eslint/scope-manager@8.18.2':
905
- resolution: {integrity: sha512-YJFSfbd0CJjy14r/EvWapYgV4R5CHzptssoag2M7y3Ra7XNta6GPAJPPP5KGB9j14viYXyrzRO5GkX7CRfo8/g==}
752
+ '@typescript-eslint/scope-manager@8.28.0':
753
+ resolution: {integrity: sha512-u2oITX3BJwzWCapoZ/pXw6BCOl8rJP4Ij/3wPoGvY8XwvXflOzd1kLrDUUUAIEdJSFh+ASwdTHqtan9xSg8buw==}
906
754
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
907
755
 
908
- '@typescript-eslint/type-utils@8.18.2':
909
- resolution: {integrity: sha512-AB/Wr1Lz31bzHfGm/jgbFR0VB0SML/hd2P1yxzKDM48YmP7vbyJNHRExUE/wZsQj2wUCvbWH8poNHFuxLqCTnA==}
756
+ '@typescript-eslint/type-utils@8.28.0':
757
+ resolution: {integrity: sha512-oRoXu2v0Rsy/VoOGhtWrOKDiIehvI+YNrDk5Oqj40Mwm0Yt01FC/Q7nFqg088d3yAsR1ZcZFVfPCTTFCe/KPwg==}
910
758
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
911
759
  peerDependencies:
912
760
  eslint: ^8.57.0 || ^9.0.0
913
- typescript: '>=4.8.4 <5.8.0'
761
+ typescript: '>=4.8.4 <5.9.0'
914
762
 
915
- '@typescript-eslint/types@8.18.2':
916
- resolution: {integrity: sha512-Z/zblEPp8cIvmEn6+tPDIHUbRu/0z5lqZ+NvolL5SvXWT5rQy7+Nch83M0++XzO0XrWRFWECgOAyE8bsJTl1GQ==}
763
+ '@typescript-eslint/types@8.28.0':
764
+ resolution: {integrity: sha512-bn4WS1bkKEjx7HqiwG2JNB3YJdC1q6Ue7GyGlwPHyt0TnVq6TtD/hiOdTZt71sq0s7UzqBFXD8t8o2e63tXgwA==}
917
765
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
918
766
 
919
- '@typescript-eslint/typescript-estree@8.18.2':
920
- resolution: {integrity: sha512-WXAVt595HjpmlfH4crSdM/1bcsqh+1weFRWIa9XMTx/XHZ9TCKMcr725tLYqWOgzKdeDrqVHxFotrvWcEsk2Tg==}
767
+ '@typescript-eslint/typescript-estree@8.28.0':
768
+ resolution: {integrity: sha512-H74nHEeBGeklctAVUvmDkxB1mk+PAZ9FiOMPFncdqeRBXxk1lWSYraHw8V12b7aa6Sg9HOBNbGdSHobBPuQSuA==}
921
769
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
922
770
  peerDependencies:
923
- typescript: '>=4.8.4 <5.8.0'
771
+ typescript: '>=4.8.4 <5.9.0'
924
772
 
925
- '@typescript-eslint/utils@8.18.2':
926
- resolution: {integrity: sha512-Cr4A0H7DtVIPkauj4sTSXVl+VBWewE9/o40KcF3TV9aqDEOWoXF3/+oRXNby3DYzZeCATvbdksYsGZzplwnK/Q==}
773
+ '@typescript-eslint/utils@8.28.0':
774
+ resolution: {integrity: sha512-OELa9hbTYciYITqgurT1u/SzpQVtDLmQMFzy/N8pQE+tefOyCWT79jHsav294aTqV1q1u+VzqDGbuujvRYaeSQ==}
927
775
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
928
776
  peerDependencies:
929
777
  eslint: ^8.57.0 || ^9.0.0
930
- typescript: '>=4.8.4 <5.8.0'
778
+ typescript: '>=4.8.4 <5.9.0'
931
779
 
932
- '@typescript-eslint/visitor-keys@8.18.2':
933
- resolution: {integrity: sha512-zORcwn4C3trOWiCqFQP1x6G3xTRyZ1LYydnj51cRnJ6hxBlr/cKPckk+PKPUw/fXmvfKTcw7bwY3w9izgx5jZw==}
780
+ '@typescript-eslint/visitor-keys@8.28.0':
781
+ resolution: {integrity: sha512-hbn8SZ8w4u2pRwgQ1GlUrPKE+t2XvcCW5tTRF7j6SMYIuYG37XuzIW44JCZPa36evi0Oy2SnM664BlIaAuQcvg==}
934
782
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
935
783
 
936
- '@ungap/structured-clone@1.2.1':
937
- resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==}
938
-
939
784
  '@vitejs/plugin-react@4.3.4':
940
785
  resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==}
941
786
  engines: {node: ^14.18.0 || >=16.0.0}
@@ -1074,9 +919,6 @@ packages:
1074
919
  caniuse-lite@1.0.30001692:
1075
920
  resolution: {integrity: sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==}
1076
921
 
1077
- ccount@2.0.1:
1078
- resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
1079
-
1080
922
  chalk@4.1.2:
1081
923
  resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
1082
924
  engines: {node: '>=10'}
@@ -1085,12 +927,6 @@ packages:
1085
927
  resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
1086
928
  engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
1087
929
 
1088
- character-entities-html4@2.1.0:
1089
- resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
1090
-
1091
- character-entities-legacy@3.0.0:
1092
- resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
1093
-
1094
930
  chokidar@4.0.3:
1095
931
  resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
1096
932
  engines: {node: '>= 14.16.0'}
@@ -1117,11 +953,8 @@ packages:
1117
953
  colorette@2.0.20:
1118
954
  resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
1119
955
 
1120
- comma-separated-tokens@2.0.3:
1121
- resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
1122
-
1123
- commander@12.1.0:
1124
- resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
956
+ commander@13.1.0:
957
+ resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==}
1125
958
  engines: {node: '>=18'}
1126
959
 
1127
960
  compare-versions@6.1.1:
@@ -1184,9 +1017,6 @@ packages:
1184
1017
  resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
1185
1018
  engines: {node: '>=6'}
1186
1019
 
1187
- devlop@1.1.0:
1188
- resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
1189
-
1190
1020
  dir-glob@3.0.1:
1191
1021
  resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
1192
1022
  engines: {node: '>=8'}
@@ -1198,9 +1028,6 @@ packages:
1198
1028
  electron-to-chromium@1.5.80:
1199
1029
  resolution: {integrity: sha512-LTrKpW0AqIuHwmlVNV+cjFYTnXtM9K37OGhpe0ZI10ScPSxqVSryZHIY3WnCS5NSYbBODRTZyhRMS2h5FAEqAw==}
1200
1030
 
1201
- emoji-regex-xs@1.0.0:
1202
- resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
1203
-
1204
1031
  emoji-regex@10.4.0:
1205
1032
  resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
1206
1033
 
@@ -1250,13 +1077,8 @@ packages:
1250
1077
  es6-promise@3.3.1:
1251
1078
  resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
1252
1079
 
1253
- esbuild@0.23.1:
1254
- resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
1255
- engines: {node: '>=18'}
1256
- hasBin: true
1257
-
1258
- esbuild@0.24.2:
1259
- resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
1080
+ esbuild@0.25.2:
1081
+ resolution: {integrity: sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==}
1260
1082
  engines: {node: '>=18'}
1261
1083
  hasBin: true
1262
1084
 
@@ -1274,19 +1096,19 @@ packages:
1274
1096
  peerDependencies:
1275
1097
  eslint: '>=7.0.0'
1276
1098
 
1277
- eslint-plugin-react-hooks@5.0.0:
1278
- resolution: {integrity: sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==}
1099
+ eslint-plugin-react-hooks@5.2.0:
1100
+ resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
1279
1101
  engines: {node: '>=10'}
1280
1102
  peerDependencies:
1281
1103
  eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
1282
1104
 
1283
- eslint-plugin-react-refresh@0.4.16:
1284
- resolution: {integrity: sha512-slterMlxAhov/DZO8NScf6mEeMBBXodFUolijDvrtTxyezyLoTQaa73FyYus/VbTdftd8wBgBxPMRk3poleXNQ==}
1105
+ eslint-plugin-react-refresh@0.4.19:
1106
+ resolution: {integrity: sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ==}
1285
1107
  peerDependencies:
1286
1108
  eslint: '>=8.40'
1287
1109
 
1288
- eslint-scope@8.2.0:
1289
- resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
1110
+ eslint-scope@8.3.0:
1111
+ resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
1290
1112
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1291
1113
 
1292
1114
  eslint-visitor-keys@3.4.3:
@@ -1297,8 +1119,8 @@ packages:
1297
1119
  resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
1298
1120
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1299
1121
 
1300
- eslint@9.17.0:
1301
- resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==}
1122
+ eslint@9.23.0:
1123
+ resolution: {integrity: sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==}
1302
1124
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1303
1125
  hasBin: true
1304
1126
  peerDependencies:
@@ -1459,8 +1281,8 @@ packages:
1459
1281
  resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
1460
1282
  engines: {node: '>=18'}
1461
1283
 
1462
- globals@15.14.0:
1463
- resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
1284
+ globals@15.15.0:
1285
+ resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
1464
1286
  engines: {node: '>=18'}
1465
1287
 
1466
1288
  globalthis@1.0.4:
@@ -1511,15 +1333,6 @@ packages:
1511
1333
  resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1512
1334
  engines: {node: '>= 0.4'}
1513
1335
 
1514
- hast-util-to-html@9.0.4:
1515
- resolution: {integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==}
1516
-
1517
- hast-util-whitespace@3.0.0:
1518
- resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
1519
-
1520
- html-void-elements@3.0.0:
1521
- resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
1522
-
1523
1336
  http2-client@1.3.5:
1524
1337
  resolution: {integrity: sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA==}
1525
1338
 
@@ -1536,8 +1349,8 @@ packages:
1536
1349
  engines: {node: '>=18'}
1537
1350
  hasBin: true
1538
1351
 
1539
- i18next@24.2.1:
1540
- resolution: {integrity: sha512-Q2wC1TjWcSikn1VAJg13UGIjc+okpFxQTxjVAymOnSA3RpttBQNMPf2ovcgoFVsV4QNxTfNZMAxorXZXsk4fBA==}
1352
+ i18next@24.2.3:
1353
+ resolution: {integrity: sha512-lfbf80OzkocvX7nmZtu7nSTNbrTYR52sLWxPtlXX1zAhVw8WEnFk4puUkCR4B1dNQwbSpEHHHemcZu//7EcB7A==}
1541
1354
  peerDependencies:
1542
1355
  typescript: ^5
1543
1356
  peerDependenciesMeta:
@@ -1732,6 +1545,9 @@ packages:
1732
1545
  resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
1733
1546
  engines: {node: '>=0.10.0'}
1734
1547
 
1548
+ jsonschema@1.5.0:
1549
+ resolution: {integrity: sha512-K+A9hhqbn0f3pJX17Q/7H6yQfD/5OXgdrR5UE12gMXCiN9D5Xq2o5mddV2QEcX/bjla99ASsAAQUyMCCRWAEhw==}
1550
+
1735
1551
  keyv@4.5.4:
1736
1552
  resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1737
1553
 
@@ -1750,8 +1566,8 @@ packages:
1750
1566
  linkify-it@5.0.0:
1751
1567
  resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
1752
1568
 
1753
- lint-staged@15.3.0:
1754
- resolution: {integrity: sha512-vHFahytLoF2enJklgtOtCtIjZrKD/LoxlaUusd5nh7dWv/dkKQJY74ndFSzxCdv7g0ueGg1ORgTSt4Y9LPZn9A==}
1569
+ lint-staged@15.5.0:
1570
+ resolution: {integrity: sha512-WyCzSbfYGhK7cU+UuDDkzUiytbfbi0ZdPy2orwtM75P3WTtQBzmG40cCxIa8Ii2+XjfxzLH6Be46tUfWS85Xfg==}
1755
1571
  engines: {node: '>=18.12.0'}
1756
1572
  hasBin: true
1757
1573
 
@@ -1763,20 +1579,12 @@ packages:
1763
1579
  resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1764
1580
  engines: {node: '>=10'}
1765
1581
 
1766
- lodash.get@4.4.2:
1767
- resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
1768
- deprecated: This package is deprecated. Use the optional chaining (?.) operator instead.
1769
-
1770
1582
  lodash.isempty@4.4.0:
1771
1583
  resolution: {integrity: sha512-oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg==}
1772
1584
 
1773
1585
  lodash.merge@4.6.2:
1774
1586
  resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1775
1587
 
1776
- lodash.omit@4.5.0:
1777
- resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==}
1778
- deprecated: This package is deprecated. Use destructuring assignment syntax instead.
1779
-
1780
1588
  lodash.omitby@4.6.0:
1781
1589
  resolution: {integrity: sha512-5OrRcIVR75M288p4nbI2WLAf3ndw2GD9fyNv3Bc15+WCxJDdZ4lYndSxGd7hnG6PVjiJTeJE2dHEGhIuKGicIQ==}
1782
1590
 
@@ -1824,9 +1632,6 @@ packages:
1824
1632
  resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
1825
1633
  engines: {node: '>= 0.4'}
1826
1634
 
1827
- mdast-util-to-hast@13.2.0:
1828
- resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
1829
-
1830
1635
  mdurl@2.0.0:
1831
1636
  resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
1832
1637
 
@@ -1837,21 +1642,6 @@ packages:
1837
1642
  resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1838
1643
  engines: {node: '>= 8'}
1839
1644
 
1840
- micromark-util-character@2.1.1:
1841
- resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
1842
-
1843
- micromark-util-encode@2.0.1:
1844
- resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
1845
-
1846
- micromark-util-sanitize-uri@2.0.1:
1847
- resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
1848
-
1849
- micromark-util-symbol@2.0.1:
1850
- resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
1851
-
1852
- micromark-util-types@2.0.1:
1853
- resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==}
1854
-
1855
1645
  micromatch@4.0.8:
1856
1646
  resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
1857
1647
  engines: {node: '>=8.6'}
@@ -1961,9 +1751,6 @@ packages:
1961
1751
  resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
1962
1752
  engines: {node: '>=18'}
1963
1753
 
1964
- oniguruma-to-es@0.10.0:
1965
- resolution: {integrity: sha512-zapyOUOCJxt+xhiNRPPMtfJkHGsZ98HHB9qJEkdT8BGytO/+kpe4m1Ngf0MzbzTmhacn11w9yGeDP6tzDhnCdg==}
1966
-
1967
1754
  openapi-types@12.1.3:
1968
1755
  resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==}
1969
1756
 
@@ -1977,8 +1764,8 @@ packages:
1977
1764
  resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1978
1765
  engines: {node: '>= 0.8.0'}
1979
1766
 
1980
- orval@7.4.1:
1981
- resolution: {integrity: sha512-pXg5g5gdAzFqCUURZsMJoVeiWynSNSzqi6lXI1Opw08ILtmzDTdiU7PoSOf7pKVTB6oEf82zQzWeJMqSk8nzuQ==}
1767
+ orval@7.7.0:
1768
+ resolution: {integrity: sha512-P7hwxaMteeiscUBQvA8SjsDdZ14HFRk/e4kynCZEwh0j1A0U2mfSdJ4dUXcjhPWuC0ZgCEbByhay0YguViLfPg==}
1982
1769
  hasBin: true
1983
1770
 
1984
1771
  own-keys@1.0.1:
@@ -2033,22 +1820,19 @@ packages:
2033
1820
  resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
2034
1821
  engines: {node: '>= 0.4'}
2035
1822
 
2036
- postcss@8.4.49:
2037
- resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
1823
+ postcss@8.5.3:
1824
+ resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
2038
1825
  engines: {node: ^10 || ^12 || >=14}
2039
1826
 
2040
1827
  prelude-ls@1.2.1:
2041
1828
  resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
2042
1829
  engines: {node: '>= 0.8.0'}
2043
1830
 
2044
- prettier@3.4.2:
2045
- resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
1831
+ prettier@3.5.3:
1832
+ resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
2046
1833
  engines: {node: '>=14'}
2047
1834
  hasBin: true
2048
1835
 
2049
- property-information@6.5.0:
2050
- resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
2051
-
2052
1836
  punycode.js@2.3.1:
2053
1837
  resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
2054
1838
  engines: {node: '>=6'}
@@ -2073,8 +1857,8 @@ packages:
2073
1857
  peerDependencies:
2074
1858
  react: ^16.6.0 || ^17.0.0 || ^18.0.0
2075
1859
 
2076
- react-hook-form@7.54.2:
2077
- resolution: {integrity: sha512-eHpAUgUjWbZocoQYUHposymRb4ZP6d0uwUnooL2uOybA9/3tPUvoAKqEWK1WaSiTxxOfTpffNZP7QwlnM3/gEg==}
1860
+ react-hook-form@7.55.0:
1861
+ resolution: {integrity: sha512-XRnjsH3GVMQz1moZTW53MxfoWN7aDpUg/GpVNc4A3eXRVNdGXfbzJ4vM4aLQ8g6XCUh1nIbx70aaNCl7kxnjog==}
2078
1862
  engines: {node: '>=18.0.0'}
2079
1863
  peerDependencies:
2080
1864
  react: ^16.8.0 || ^17 || ^18 || ^19
@@ -2083,8 +1867,8 @@ packages:
2083
1867
  resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
2084
1868
  engines: {node: '>=0.10.0'}
2085
1869
 
2086
- react-router@7.1.1:
2087
- resolution: {integrity: sha512-39sXJkftkKWRZ2oJtHhCxmoCrBCULr/HAH4IT5DHlgu/Q0FCPV0S4Lx+abjDTx/74xoZzNYDYbOZWlJjruyuDQ==}
1870
+ react-router@7.4.1:
1871
+ resolution: {integrity: sha512-Vmizn9ZNzxfh3cumddqv3kLOKvc7AskUT0dC1prTabhiEi0U4A33LmkDOJ79tXaeSqCqMBXBU/ySX88W85+EUg==}
2088
1872
  engines: {node: '>=20.0.0'}
2089
1873
  peerDependencies:
2090
1874
  react: '>=18'
@@ -2111,15 +1895,6 @@ packages:
2111
1895
  regenerator-runtime@0.14.1:
2112
1896
  resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
2113
1897
 
2114
- regex-recursion@5.1.1:
2115
- resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==}
2116
-
2117
- regex-utilities@2.3.0:
2118
- resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
2119
-
2120
- regex@5.1.1:
2121
- resolution: {integrity: sha512-dN5I359AVGPnwzJm2jN1k0W9LPZ+ePvoOeVMMfqIMFz53sSwXkxaJoxr50ptnsC771lK95BnTrVSZxq0b9yCGw==}
2122
-
2123
1898
  regexp.prototype.flags@1.5.4:
2124
1899
  resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
2125
1900
  engines: {node: '>= 0.4'}
@@ -2211,9 +1986,6 @@ packages:
2211
1986
  resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
2212
1987
  engines: {node: '>=8'}
2213
1988
 
2214
- shiki@1.26.1:
2215
- resolution: {integrity: sha512-Gqg6DSTk3wYqaZ5OaYtzjcdxcBvX5kCy24yvRJEgjT5U+WHlmqCThLuBUx0juyxQBi+6ug53IGeuQS07DWwpcw==}
2216
-
2217
1989
  should-equal@2.0.0:
2218
1990
  resolution: {integrity: sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==}
2219
1991
 
@@ -2275,9 +2047,6 @@ packages:
2275
2047
  resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
2276
2048
  engines: {node: '>=0.10.0'}
2277
2049
 
2278
- space-separated-tokens@2.0.2:
2279
- resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
2280
-
2281
2050
  string-argv@0.3.2:
2282
2051
  resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
2283
2052
  engines: {node: '>=0.6.19'}
@@ -2302,9 +2071,6 @@ packages:
2302
2071
  resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
2303
2072
  engines: {node: '>= 0.4'}
2304
2073
 
2305
- stringify-entities@4.0.4:
2306
- resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
2307
-
2308
2074
  strip-ansi@6.0.1:
2309
2075
  resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
2310
2076
  engines: {node: '>=8'}
@@ -2333,8 +2099,8 @@ packages:
2333
2099
  resolution: {integrity: sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g==}
2334
2100
  hasBin: true
2335
2101
 
2336
- swr@2.3.0:
2337
- resolution: {integrity: sha512-NyZ76wA4yElZWBHzSgEJc28a0u6QZvhb6w0azeL2k7+Q1gAzVK+IqQYXhVOC/mzi+HZIozrZvBVeSeOZNR2bqA==}
2102
+ swr@2.3.3:
2103
+ resolution: {integrity: sha512-dshNvs3ExOqtZ6kJBaAsabhPdHyeY4P2cKwRCniDVifBMoG/SVI7tfLWqPXriVspf2Rg4tPzXJTnwaihIeFw2A==}
2338
2104
  peerDependencies:
2339
2105
  react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2340
2106
 
@@ -2345,14 +2111,11 @@ packages:
2345
2111
  tr46@0.0.3:
2346
2112
  resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
2347
2113
 
2348
- trim-lines@3.0.1:
2349
- resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
2350
-
2351
- ts-api-utils@1.4.3:
2352
- resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
2353
- engines: {node: '>=16'}
2114
+ ts-api-utils@2.1.0:
2115
+ resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
2116
+ engines: {node: '>=18.12'}
2354
2117
  peerDependencies:
2355
- typescript: '>=4.2.0'
2118
+ typescript: '>=4.8.4'
2356
2119
 
2357
2120
  tsconfck@2.1.2:
2358
2121
  resolution: {integrity: sha512-ghqN1b0puy3MhhviwO2kGF8SeMDNhEbnKxjK7h6+fvY9JAxqvXi8y5NAHSQv687OVboS2uZIByzGd45/YxrRHg==}
@@ -2380,8 +2143,8 @@ packages:
2380
2143
  tslib@2.8.1:
2381
2144
  resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
2382
2145
 
2383
- tsx@4.19.2:
2384
- resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==}
2146
+ tsx@4.19.3:
2147
+ resolution: {integrity: sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==}
2385
2148
  engines: {node: '>=18.0.0'}
2386
2149
  hasBin: true
2387
2150
 
@@ -2392,8 +2155,8 @@ packages:
2392
2155
  resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2393
2156
  engines: {node: '>= 0.8.0'}
2394
2157
 
2395
- type-fest@4.32.0:
2396
- resolution: {integrity: sha512-rfgpoi08xagF3JSdtJlCwMq9DGNDE0IMh3Mkpc1wUypg9vPi786AiqeBBKcqvIkq42azsBM85N490fyZjeUftw==}
2158
+ type-fest@4.38.0:
2159
+ resolution: {integrity: sha512-2dBz5D5ycHIoliLYLi0Q2V7KRaDlH0uWIvmk7TYlAg5slqwiPv1ezJdZm1QEM0xgk29oYWMCbIG7E6gHpvChlg==}
2397
2160
  engines: {node: '>=16'}
2398
2161
 
2399
2162
  typed-array-buffer@1.0.3:
@@ -2412,28 +2175,28 @@ packages:
2412
2175
  resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
2413
2176
  engines: {node: '>= 0.4'}
2414
2177
 
2415
- typedoc-plugin-markdown@4.2.10:
2416
- resolution: {integrity: sha512-PLX3pc1/7z13UJm4TDE9vo9jWGcClFUErXXtd5LdnoLjV6mynPpqZLU992DwMGFSRqJFZeKbVyqlNNeNHnk2tQ==}
2178
+ typedoc-plugin-markdown@4.6.0:
2179
+ resolution: {integrity: sha512-RG90uC1QqGN9kPBjzEckEf0v9yIYlLoNYKm4OqjwEGFJJGOLUDs5pIEQQDR2tAv1RD7D8GUSakRlcHMTipyaOA==}
2417
2180
  engines: {node: '>= 18'}
2418
2181
  peerDependencies:
2419
- typedoc: 0.26.x
2182
+ typedoc: 0.28.x
2420
2183
 
2421
- typedoc@0.26.11:
2422
- resolution: {integrity: sha512-sFEgRRtrcDl2FxVP58Ze++ZK2UQAEvtvvH8rRlig1Ja3o7dDaMHmaBfvJmdGnNEFaLTpQsN8dpvZaTqJSu/Ugw==}
2184
+ typedoc@0.27.9:
2185
+ resolution: {integrity: sha512-/z585740YHURLl9DN2jCWe6OW7zKYm6VoQ93H0sxZ1cwHQEQrUn5BJrEnkWhfzUdyO+BLGjnKUZ9iz9hKloFDw==}
2423
2186
  engines: {node: '>= 18'}
2424
2187
  hasBin: true
2425
2188
  peerDependencies:
2426
- typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x
2189
+ typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x
2427
2190
 
2428
- typescript-eslint@8.18.2:
2429
- resolution: {integrity: sha512-KuXezG6jHkvC3MvizeXgupZzaG5wjhU3yE8E7e6viOvAvD9xAWYp8/vy0WULTGe9DYDWcQu7aW03YIV3mSitrQ==}
2191
+ typescript-eslint@8.28.0:
2192
+ resolution: {integrity: sha512-jfZtxJoHm59bvoCMYCe2BM0/baMswRhMmYhy+w6VfcyHrjxZ0OJe0tGasydCpIpA+A/WIJhTyZfb3EtwNC/kHQ==}
2430
2193
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
2431
2194
  peerDependencies:
2432
2195
  eslint: ^8.57.0 || ^9.0.0
2433
- typescript: '>=4.8.4 <5.8.0'
2196
+ typescript: '>=4.8.4 <5.9.0'
2434
2197
 
2435
- typescript@5.6.3:
2436
- resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
2198
+ typescript@5.8.2:
2199
+ resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
2437
2200
  engines: {node: '>=14.17'}
2438
2201
  hasBin: true
2439
2202
 
@@ -2447,21 +2210,6 @@ packages:
2447
2210
  undici-types@6.20.0:
2448
2211
  resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
2449
2212
 
2450
- unist-util-is@6.0.0:
2451
- resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
2452
-
2453
- unist-util-position@5.0.0:
2454
- resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
2455
-
2456
- unist-util-stringify-position@4.0.0:
2457
- resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
2458
-
2459
- unist-util-visit-parents@6.0.1:
2460
- resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
2461
-
2462
- unist-util-visit@5.0.0:
2463
- resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
2464
-
2465
2213
  universalify@2.0.1:
2466
2214
  resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
2467
2215
  engines: {node: '>= 10.0.0'}
@@ -2491,22 +2239,16 @@ packages:
2491
2239
  resolution: {integrity: sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==}
2492
2240
  engines: {node: '>= 0.10'}
2493
2241
 
2494
- vfile-message@4.0.2:
2495
- resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
2496
-
2497
- vfile@6.0.3:
2498
- resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
2499
-
2500
- vite-tsconfig-paths@5.1.3:
2501
- resolution: {integrity: sha512-0bz+PDlLpGfP2CigeSKL9NFTF1KtXkeHGZSSaGQSuPZH77GhoiQaA8IjYgOaynSuwlDTolSUEU0ErVvju3NURg==}
2242
+ vite-tsconfig-paths@5.1.4:
2243
+ resolution: {integrity: sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==}
2502
2244
  peerDependencies:
2503
2245
  vite: '*'
2504
2246
  peerDependenciesMeta:
2505
2247
  vite:
2506
2248
  optional: true
2507
2249
 
2508
- vite@6.0.14:
2509
- resolution: {integrity: sha512-RPfVU0Z3aFfl5BQG8xgIvuN8PofO6np7PBnurYSwx9hfcK6mjuTC5XQxA65L+pxmVbmT3Swqp9CYqc5VshQIfQ==}
2250
+ vite@6.2.4:
2251
+ resolution: {integrity: sha512-veHMSew8CcRzhL5o8ONjy8gkfmFJAd5Ac16oxBUjlwgX3Gq2Wqr+qNC3TjPIpy7TPV/KporLga5GT9HqdrCizw==}
2510
2252
  engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
2511
2253
  hasBin: true
2512
2254
  peerDependencies:
@@ -2600,6 +2342,11 @@ packages:
2600
2342
  engines: {node: '>= 14'}
2601
2343
  hasBin: true
2602
2344
 
2345
+ yaml@2.7.1:
2346
+ resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==}
2347
+ engines: {node: '>= 14'}
2348
+ hasBin: true
2349
+
2603
2350
  yargs-parser@21.1.1:
2604
2351
  resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
2605
2352
  engines: {node: '>=12'}
@@ -2618,11 +2365,8 @@ packages:
2618
2365
  i18next: '>=21.3.0'
2619
2366
  zod: '>=3.17.0'
2620
2367
 
2621
- zod@3.24.1:
2622
- resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
2623
-
2624
- zwitch@2.0.4:
2625
- resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
2368
+ zod@3.24.2:
2369
+ resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==}
2626
2370
 
2627
2371
  snapshots:
2628
2372
 
@@ -2743,7 +2487,7 @@ snapshots:
2743
2487
  '@babel/core': 7.26.0
2744
2488
  '@babel/helper-plugin-utils': 7.25.9
2745
2489
 
2746
- '@babel/runtime@7.26.0':
2490
+ '@babel/runtime@7.27.0':
2747
2491
  dependencies:
2748
2492
  regenerator-runtime: 0.14.1
2749
2493
 
@@ -2770,173 +2514,103 @@ snapshots:
2770
2514
  '@babel/helper-string-parser': 7.25.9
2771
2515
  '@babel/helper-validator-identifier': 7.25.9
2772
2516
 
2773
- '@esbuild/aix-ppc64@0.23.1':
2774
- optional: true
2775
-
2776
- '@esbuild/aix-ppc64@0.24.2':
2777
- optional: true
2778
-
2779
- '@esbuild/android-arm64@0.23.1':
2780
- optional: true
2781
-
2782
- '@esbuild/android-arm64@0.24.2':
2783
- optional: true
2784
-
2785
- '@esbuild/android-arm@0.23.1':
2786
- optional: true
2787
-
2788
- '@esbuild/android-arm@0.24.2':
2789
- optional: true
2790
-
2791
- '@esbuild/android-x64@0.23.1':
2792
- optional: true
2793
-
2794
- '@esbuild/android-x64@0.24.2':
2795
- optional: true
2796
-
2797
- '@esbuild/darwin-arm64@0.23.1':
2798
- optional: true
2799
-
2800
- '@esbuild/darwin-arm64@0.24.2':
2801
- optional: true
2802
-
2803
- '@esbuild/darwin-x64@0.23.1':
2804
- optional: true
2805
-
2806
- '@esbuild/darwin-x64@0.24.2':
2807
- optional: true
2808
-
2809
- '@esbuild/freebsd-arm64@0.23.1':
2810
- optional: true
2811
-
2812
- '@esbuild/freebsd-arm64@0.24.2':
2813
- optional: true
2814
-
2815
- '@esbuild/freebsd-x64@0.23.1':
2816
- optional: true
2817
-
2818
- '@esbuild/freebsd-x64@0.24.2':
2517
+ '@esbuild/aix-ppc64@0.25.2':
2819
2518
  optional: true
2820
2519
 
2821
- '@esbuild/linux-arm64@0.23.1':
2520
+ '@esbuild/android-arm64@0.25.2':
2822
2521
  optional: true
2823
2522
 
2824
- '@esbuild/linux-arm64@0.24.2':
2523
+ '@esbuild/android-arm@0.25.2':
2825
2524
  optional: true
2826
2525
 
2827
- '@esbuild/linux-arm@0.23.1':
2526
+ '@esbuild/android-x64@0.25.2':
2828
2527
  optional: true
2829
2528
 
2830
- '@esbuild/linux-arm@0.24.2':
2529
+ '@esbuild/darwin-arm64@0.25.2':
2831
2530
  optional: true
2832
2531
 
2833
- '@esbuild/linux-ia32@0.23.1':
2532
+ '@esbuild/darwin-x64@0.25.2':
2834
2533
  optional: true
2835
2534
 
2836
- '@esbuild/linux-ia32@0.24.2':
2535
+ '@esbuild/freebsd-arm64@0.25.2':
2837
2536
  optional: true
2838
2537
 
2839
- '@esbuild/linux-loong64@0.23.1':
2538
+ '@esbuild/freebsd-x64@0.25.2':
2840
2539
  optional: true
2841
2540
 
2842
- '@esbuild/linux-loong64@0.24.2':
2541
+ '@esbuild/linux-arm64@0.25.2':
2843
2542
  optional: true
2844
2543
 
2845
- '@esbuild/linux-mips64el@0.23.1':
2544
+ '@esbuild/linux-arm@0.25.2':
2846
2545
  optional: true
2847
2546
 
2848
- '@esbuild/linux-mips64el@0.24.2':
2547
+ '@esbuild/linux-ia32@0.25.2':
2849
2548
  optional: true
2850
2549
 
2851
- '@esbuild/linux-ppc64@0.23.1':
2550
+ '@esbuild/linux-loong64@0.25.2':
2852
2551
  optional: true
2853
2552
 
2854
- '@esbuild/linux-ppc64@0.24.2':
2553
+ '@esbuild/linux-mips64el@0.25.2':
2855
2554
  optional: true
2856
2555
 
2857
- '@esbuild/linux-riscv64@0.23.1':
2556
+ '@esbuild/linux-ppc64@0.25.2':
2858
2557
  optional: true
2859
2558
 
2860
- '@esbuild/linux-riscv64@0.24.2':
2559
+ '@esbuild/linux-riscv64@0.25.2':
2861
2560
  optional: true
2862
2561
 
2863
- '@esbuild/linux-s390x@0.23.1':
2562
+ '@esbuild/linux-s390x@0.25.2':
2864
2563
  optional: true
2865
2564
 
2866
- '@esbuild/linux-s390x@0.24.2':
2565
+ '@esbuild/linux-x64@0.25.2':
2867
2566
  optional: true
2868
2567
 
2869
- '@esbuild/linux-x64@0.23.1':
2568
+ '@esbuild/netbsd-arm64@0.25.2':
2870
2569
  optional: true
2871
2570
 
2872
- '@esbuild/linux-x64@0.24.2':
2571
+ '@esbuild/netbsd-x64@0.25.2':
2873
2572
  optional: true
2874
2573
 
2875
- '@esbuild/netbsd-arm64@0.24.2':
2574
+ '@esbuild/openbsd-arm64@0.25.2':
2876
2575
  optional: true
2877
2576
 
2878
- '@esbuild/netbsd-x64@0.23.1':
2577
+ '@esbuild/openbsd-x64@0.25.2':
2879
2578
  optional: true
2880
2579
 
2881
- '@esbuild/netbsd-x64@0.24.2':
2580
+ '@esbuild/sunos-x64@0.25.2':
2882
2581
  optional: true
2883
2582
 
2884
- '@esbuild/openbsd-arm64@0.23.1':
2583
+ '@esbuild/win32-arm64@0.25.2':
2885
2584
  optional: true
2886
2585
 
2887
- '@esbuild/openbsd-arm64@0.24.2':
2586
+ '@esbuild/win32-ia32@0.25.2':
2888
2587
  optional: true
2889
2588
 
2890
- '@esbuild/openbsd-x64@0.23.1':
2589
+ '@esbuild/win32-x64@0.25.2':
2891
2590
  optional: true
2892
2591
 
2893
- '@esbuild/openbsd-x64@0.24.2':
2894
- optional: true
2895
-
2896
- '@esbuild/sunos-x64@0.23.1':
2897
- optional: true
2898
-
2899
- '@esbuild/sunos-x64@0.24.2':
2900
- optional: true
2901
-
2902
- '@esbuild/win32-arm64@0.23.1':
2903
- optional: true
2904
-
2905
- '@esbuild/win32-arm64@0.24.2':
2906
- optional: true
2907
-
2908
- '@esbuild/win32-ia32@0.23.1':
2909
- optional: true
2910
-
2911
- '@esbuild/win32-ia32@0.24.2':
2912
- optional: true
2913
-
2914
- '@esbuild/win32-x64@0.23.1':
2915
- optional: true
2916
-
2917
- '@esbuild/win32-x64@0.24.2':
2918
- optional: true
2919
-
2920
- '@eslint-community/eslint-utils@4.4.1(eslint@9.17.0)':
2592
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.23.0)':
2921
2593
  dependencies:
2922
- eslint: 9.17.0
2594
+ eslint: 9.23.0
2923
2595
  eslint-visitor-keys: 3.4.3
2924
2596
 
2925
2597
  '@eslint-community/regexpp@4.12.1': {}
2926
2598
 
2927
- '@eslint/config-array@0.19.1':
2599
+ '@eslint/config-array@0.19.2':
2928
2600
  dependencies:
2929
- '@eslint/object-schema': 2.1.5
2601
+ '@eslint/object-schema': 2.1.6
2930
2602
  debug: 4.4.0
2931
2603
  minimatch: 3.1.2
2932
2604
  transitivePeerDependencies:
2933
2605
  - supports-color
2934
2606
 
2935
- '@eslint/core@0.9.1':
2607
+ '@eslint/config-helpers@0.2.0': {}
2608
+
2609
+ '@eslint/core@0.12.0':
2936
2610
  dependencies:
2937
2611
  '@types/json-schema': 7.0.15
2938
2612
 
2939
- '@eslint/eslintrc@3.2.0':
2613
+ '@eslint/eslintrc@3.3.1':
2940
2614
  dependencies:
2941
2615
  ajv: 6.12.6
2942
2616
  debug: 4.4.0
@@ -2950,19 +2624,26 @@ snapshots:
2950
2624
  transitivePeerDependencies:
2951
2625
  - supports-color
2952
2626
 
2953
- '@eslint/js@9.17.0': {}
2627
+ '@eslint/js@9.23.0': {}
2954
2628
 
2955
- '@eslint/object-schema@2.1.5': {}
2629
+ '@eslint/object-schema@2.1.6': {}
2956
2630
 
2957
- '@eslint/plugin-kit@0.2.4':
2631
+ '@eslint/plugin-kit@0.2.7':
2958
2632
  dependencies:
2633
+ '@eslint/core': 0.12.0
2959
2634
  levn: 0.4.1
2960
2635
 
2961
2636
  '@exodus/schemasafe@1.3.0': {}
2962
2637
 
2963
- '@hookform/resolvers@3.10.0(react-hook-form@7.54.2(react@18.3.1))':
2638
+ '@gerrit0/mini-shiki@1.27.2':
2964
2639
  dependencies:
2965
- react-hook-form: 7.54.2(react@18.3.1)
2640
+ '@shikijs/engine-oniguruma': 1.29.2
2641
+ '@shikijs/types': 1.29.2
2642
+ '@shikijs/vscode-textmate': 10.0.1
2643
+
2644
+ '@hookform/resolvers@3.10.0(react-hook-form@7.55.0(react@18.3.1))':
2645
+ dependencies:
2646
+ react-hook-form: 7.55.0(react@18.3.1)
2966
2647
 
2967
2648
  '@humanfs/core@0.19.1': {}
2968
2649
 
@@ -2975,17 +2656,18 @@ snapshots:
2975
2656
 
2976
2657
  '@humanwhocodes/retry@0.3.1': {}
2977
2658
 
2978
- '@humanwhocodes/retry@0.4.1': {}
2659
+ '@humanwhocodes/retry@0.4.2': {}
2979
2660
 
2980
- '@ibm-cloud/openapi-ruleset-utilities@1.7.0': {}
2661
+ '@ibm-cloud/openapi-ruleset-utilities@1.7.1': {}
2981
2662
 
2982
- '@ibm-cloud/openapi-ruleset@1.28.1':
2663
+ '@ibm-cloud/openapi-ruleset@1.29.4':
2983
2664
  dependencies:
2984
- '@ibm-cloud/openapi-ruleset-utilities': 1.7.0
2665
+ '@ibm-cloud/openapi-ruleset-utilities': 1.7.1
2985
2666
  '@stoplight/spectral-formats': 1.8.2
2986
2667
  '@stoplight/spectral-functions': 1.9.3
2987
2668
  '@stoplight/spectral-rulesets': 1.21.3
2988
2669
  chalk: 4.1.2
2670
+ jsonschema: 1.5.0
2989
2671
  lodash: 4.17.21
2990
2672
  loglevel: 1.9.2
2991
2673
  loglevel-plugin-prefix: 0.8.4
@@ -3037,38 +2719,36 @@ snapshots:
3037
2719
  '@nodelib/fs.scandir': 2.1.5
3038
2720
  fastq: 1.18.0
3039
2721
 
3040
- '@orval/angular@7.4.1(openapi-types@12.1.3)':
2722
+ '@orval/angular@7.7.0(openapi-types@12.1.3)':
3041
2723
  dependencies:
3042
- '@orval/core': 7.4.1(openapi-types@12.1.3)
2724
+ '@orval/core': 7.7.0(openapi-types@12.1.3)
3043
2725
  transitivePeerDependencies:
3044
2726
  - encoding
3045
2727
  - openapi-types
3046
2728
  - supports-color
3047
2729
 
3048
- '@orval/axios@7.4.1(openapi-types@12.1.3)':
2730
+ '@orval/axios@7.7.0(openapi-types@12.1.3)':
3049
2731
  dependencies:
3050
- '@orval/core': 7.4.1(openapi-types@12.1.3)
2732
+ '@orval/core': 7.7.0(openapi-types@12.1.3)
3051
2733
  transitivePeerDependencies:
3052
2734
  - encoding
3053
2735
  - openapi-types
3054
2736
  - supports-color
3055
2737
 
3056
- '@orval/core@7.4.1(openapi-types@12.1.3)':
2738
+ '@orval/core@7.7.0(openapi-types@12.1.3)':
3057
2739
  dependencies:
3058
2740
  '@apidevtools/swagger-parser': 10.1.1(openapi-types@12.1.3)
3059
- '@ibm-cloud/openapi-ruleset': 1.28.1
2741
+ '@ibm-cloud/openapi-ruleset': 1.29.4
3060
2742
  acorn: 8.14.0
3061
2743
  ajv: 8.17.1
3062
2744
  chalk: 4.1.2
3063
2745
  compare-versions: 6.1.1
3064
2746
  debug: 4.4.0
3065
- esbuild: 0.24.2
2747
+ esbuild: 0.25.2
3066
2748
  esutils: 2.0.3
3067
2749
  fs-extra: 11.2.0
3068
2750
  globby: 11.1.0
3069
- lodash.get: 4.4.2
3070
2751
  lodash.isempty: 4.4.0
3071
- lodash.omit: 4.5.0
3072
2752
  lodash.uniq: 4.5.0
3073
2753
  lodash.uniqby: 4.7.0
3074
2754
  lodash.uniqwith: 4.5.0
@@ -3080,57 +2760,55 @@ snapshots:
3080
2760
  - openapi-types
3081
2761
  - supports-color
3082
2762
 
3083
- '@orval/fetch@7.4.1(openapi-types@12.1.3)':
2763
+ '@orval/fetch@7.7.0(openapi-types@12.1.3)':
3084
2764
  dependencies:
3085
- '@orval/core': 7.4.1(openapi-types@12.1.3)
2765
+ '@orval/core': 7.7.0(openapi-types@12.1.3)
3086
2766
  transitivePeerDependencies:
3087
2767
  - encoding
3088
2768
  - openapi-types
3089
2769
  - supports-color
3090
2770
 
3091
- '@orval/hono@7.4.1(openapi-types@12.1.3)':
2771
+ '@orval/hono@7.7.0(openapi-types@12.1.3)':
3092
2772
  dependencies:
3093
- '@orval/core': 7.4.1(openapi-types@12.1.3)
3094
- '@orval/zod': 7.4.1(openapi-types@12.1.3)
2773
+ '@orval/core': 7.7.0(openapi-types@12.1.3)
2774
+ '@orval/zod': 7.7.0(openapi-types@12.1.3)
3095
2775
  lodash.uniq: 4.5.0
3096
2776
  transitivePeerDependencies:
3097
2777
  - encoding
3098
2778
  - openapi-types
3099
2779
  - supports-color
3100
2780
 
3101
- '@orval/mock@7.4.1(openapi-types@12.1.3)':
2781
+ '@orval/mock@7.7.0(openapi-types@12.1.3)':
3102
2782
  dependencies:
3103
- '@orval/core': 7.4.1(openapi-types@12.1.3)
3104
- lodash.get: 4.4.2
3105
- lodash.omit: 4.5.0
2783
+ '@orval/core': 7.7.0(openapi-types@12.1.3)
3106
2784
  openapi3-ts: 4.4.0
3107
2785
  transitivePeerDependencies:
3108
2786
  - encoding
3109
2787
  - openapi-types
3110
2788
  - supports-color
3111
2789
 
3112
- '@orval/query@7.4.1(openapi-types@12.1.3)':
2790
+ '@orval/query@7.7.0(openapi-types@12.1.3)':
3113
2791
  dependencies:
3114
- '@orval/core': 7.4.1(openapi-types@12.1.3)
3115
- '@orval/fetch': 7.4.1(openapi-types@12.1.3)
2792
+ '@orval/core': 7.7.0(openapi-types@12.1.3)
2793
+ '@orval/fetch': 7.7.0(openapi-types@12.1.3)
3116
2794
  lodash.omitby: 4.6.0
3117
2795
  transitivePeerDependencies:
3118
2796
  - encoding
3119
2797
  - openapi-types
3120
2798
  - supports-color
3121
2799
 
3122
- '@orval/swr@7.4.1(openapi-types@12.1.3)':
2800
+ '@orval/swr@7.7.0(openapi-types@12.1.3)':
3123
2801
  dependencies:
3124
- '@orval/core': 7.4.1(openapi-types@12.1.3)
3125
- '@orval/fetch': 7.4.1(openapi-types@12.1.3)
2802
+ '@orval/core': 7.7.0(openapi-types@12.1.3)
2803
+ '@orval/fetch': 7.7.0(openapi-types@12.1.3)
3126
2804
  transitivePeerDependencies:
3127
2805
  - encoding
3128
2806
  - openapi-types
3129
2807
  - supports-color
3130
2808
 
3131
- '@orval/zod@7.4.1(openapi-types@12.1.3)':
2809
+ '@orval/zod@7.7.0(openapi-types@12.1.3)':
3132
2810
  dependencies:
3133
- '@orval/core': 7.4.1(openapi-types@12.1.3)
2811
+ '@orval/core': 7.7.0(openapi-types@12.1.3)
3134
2812
  lodash.uniq: 4.5.0
3135
2813
  transitivePeerDependencies:
3136
2814
  - encoding
@@ -3194,35 +2872,12 @@ snapshots:
3194
2872
  '@rollup/rollup-win32-x64-msvc@4.30.1':
3195
2873
  optional: true
3196
2874
 
3197
- '@shikijs/core@1.26.1':
3198
- dependencies:
3199
- '@shikijs/engine-javascript': 1.26.1
3200
- '@shikijs/engine-oniguruma': 1.26.1
3201
- '@shikijs/types': 1.26.1
3202
- '@shikijs/vscode-textmate': 10.0.1
3203
- '@types/hast': 3.0.4
3204
- hast-util-to-html: 9.0.4
3205
-
3206
- '@shikijs/engine-javascript@1.26.1':
3207
- dependencies:
3208
- '@shikijs/types': 1.26.1
3209
- '@shikijs/vscode-textmate': 10.0.1
3210
- oniguruma-to-es: 0.10.0
3211
-
3212
- '@shikijs/engine-oniguruma@1.26.1':
2875
+ '@shikijs/engine-oniguruma@1.29.2':
3213
2876
  dependencies:
3214
- '@shikijs/types': 1.26.1
2877
+ '@shikijs/types': 1.29.2
3215
2878
  '@shikijs/vscode-textmate': 10.0.1
3216
2879
 
3217
- '@shikijs/langs@1.26.1':
3218
- dependencies:
3219
- '@shikijs/types': 1.26.1
3220
-
3221
- '@shikijs/themes@1.26.1':
3222
- dependencies:
3223
- '@shikijs/types': 1.26.1
3224
-
3225
- '@shikijs/types@1.26.1':
2880
+ '@shikijs/types@1.29.2':
3226
2881
  dependencies:
3227
2882
  '@shikijs/vscode-textmate': 10.0.1
3228
2883
  '@types/hast': 3.0.4
@@ -3427,21 +3082,17 @@ snapshots:
3427
3082
 
3428
3083
  '@types/json-schema@7.0.15': {}
3429
3084
 
3430
- '@types/mdast@4.0.4':
3431
- dependencies:
3432
- '@types/unist': 3.0.3
3433
-
3434
3085
  '@types/node@22.10.5':
3435
3086
  dependencies:
3436
3087
  undici-types: 6.20.0
3437
3088
 
3438
3089
  '@types/prop-types@15.7.14': {}
3439
3090
 
3440
- '@types/react-dom@18.3.5(@types/react@18.3.18)':
3091
+ '@types/react-dom@18.3.5(@types/react@18.3.20)':
3441
3092
  dependencies:
3442
- '@types/react': 18.3.18
3093
+ '@types/react': 18.3.20
3443
3094
 
3444
- '@types/react@18.3.18':
3095
+ '@types/react@18.3.20':
3445
3096
  dependencies:
3446
3097
  '@types/prop-types': 15.7.14
3447
3098
  csstype: 3.1.3
@@ -3450,93 +3101,91 @@ snapshots:
3450
3101
 
3451
3102
  '@types/urijs@1.19.25': {}
3452
3103
 
3453
- '@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0)(typescript@5.6.3))(eslint@9.17.0)(typescript@5.6.3)':
3104
+ '@typescript-eslint/eslint-plugin@8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0)(typescript@5.8.2))(eslint@9.23.0)(typescript@5.8.2)':
3454
3105
  dependencies:
3455
3106
  '@eslint-community/regexpp': 4.12.1
3456
- '@typescript-eslint/parser': 8.18.2(eslint@9.17.0)(typescript@5.6.3)
3457
- '@typescript-eslint/scope-manager': 8.18.2
3458
- '@typescript-eslint/type-utils': 8.18.2(eslint@9.17.0)(typescript@5.6.3)
3459
- '@typescript-eslint/utils': 8.18.2(eslint@9.17.0)(typescript@5.6.3)
3460
- '@typescript-eslint/visitor-keys': 8.18.2
3461
- eslint: 9.17.0
3107
+ '@typescript-eslint/parser': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
3108
+ '@typescript-eslint/scope-manager': 8.28.0
3109
+ '@typescript-eslint/type-utils': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
3110
+ '@typescript-eslint/utils': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
3111
+ '@typescript-eslint/visitor-keys': 8.28.0
3112
+ eslint: 9.23.0
3462
3113
  graphemer: 1.4.0
3463
3114
  ignore: 5.3.2
3464
3115
  natural-compare: 1.4.0
3465
- ts-api-utils: 1.4.3(typescript@5.6.3)
3466
- typescript: 5.6.3
3116
+ ts-api-utils: 2.1.0(typescript@5.8.2)
3117
+ typescript: 5.8.2
3467
3118
  transitivePeerDependencies:
3468
3119
  - supports-color
3469
3120
 
3470
- '@typescript-eslint/parser@8.18.2(eslint@9.17.0)(typescript@5.6.3)':
3121
+ '@typescript-eslint/parser@8.28.0(eslint@9.23.0)(typescript@5.8.2)':
3471
3122
  dependencies:
3472
- '@typescript-eslint/scope-manager': 8.18.2
3473
- '@typescript-eslint/types': 8.18.2
3474
- '@typescript-eslint/typescript-estree': 8.18.2(typescript@5.6.3)
3475
- '@typescript-eslint/visitor-keys': 8.18.2
3123
+ '@typescript-eslint/scope-manager': 8.28.0
3124
+ '@typescript-eslint/types': 8.28.0
3125
+ '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2)
3126
+ '@typescript-eslint/visitor-keys': 8.28.0
3476
3127
  debug: 4.4.0
3477
- eslint: 9.17.0
3478
- typescript: 5.6.3
3128
+ eslint: 9.23.0
3129
+ typescript: 5.8.2
3479
3130
  transitivePeerDependencies:
3480
3131
  - supports-color
3481
3132
 
3482
- '@typescript-eslint/scope-manager@8.18.2':
3133
+ '@typescript-eslint/scope-manager@8.28.0':
3483
3134
  dependencies:
3484
- '@typescript-eslint/types': 8.18.2
3485
- '@typescript-eslint/visitor-keys': 8.18.2
3135
+ '@typescript-eslint/types': 8.28.0
3136
+ '@typescript-eslint/visitor-keys': 8.28.0
3486
3137
 
3487
- '@typescript-eslint/type-utils@8.18.2(eslint@9.17.0)(typescript@5.6.3)':
3138
+ '@typescript-eslint/type-utils@8.28.0(eslint@9.23.0)(typescript@5.8.2)':
3488
3139
  dependencies:
3489
- '@typescript-eslint/typescript-estree': 8.18.2(typescript@5.6.3)
3490
- '@typescript-eslint/utils': 8.18.2(eslint@9.17.0)(typescript@5.6.3)
3140
+ '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2)
3141
+ '@typescript-eslint/utils': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
3491
3142
  debug: 4.4.0
3492
- eslint: 9.17.0
3493
- ts-api-utils: 1.4.3(typescript@5.6.3)
3494
- typescript: 5.6.3
3143
+ eslint: 9.23.0
3144
+ ts-api-utils: 2.1.0(typescript@5.8.2)
3145
+ typescript: 5.8.2
3495
3146
  transitivePeerDependencies:
3496
3147
  - supports-color
3497
3148
 
3498
- '@typescript-eslint/types@8.18.2': {}
3149
+ '@typescript-eslint/types@8.28.0': {}
3499
3150
 
3500
- '@typescript-eslint/typescript-estree@8.18.2(typescript@5.6.3)':
3151
+ '@typescript-eslint/typescript-estree@8.28.0(typescript@5.8.2)':
3501
3152
  dependencies:
3502
- '@typescript-eslint/types': 8.18.2
3503
- '@typescript-eslint/visitor-keys': 8.18.2
3153
+ '@typescript-eslint/types': 8.28.0
3154
+ '@typescript-eslint/visitor-keys': 8.28.0
3504
3155
  debug: 4.4.0
3505
3156
  fast-glob: 3.3.3
3506
3157
  is-glob: 4.0.3
3507
3158
  minimatch: 9.0.5
3508
3159
  semver: 7.6.3
3509
- ts-api-utils: 1.4.3(typescript@5.6.3)
3510
- typescript: 5.6.3
3160
+ ts-api-utils: 2.1.0(typescript@5.8.2)
3161
+ typescript: 5.8.2
3511
3162
  transitivePeerDependencies:
3512
3163
  - supports-color
3513
3164
 
3514
- '@typescript-eslint/utils@8.18.2(eslint@9.17.0)(typescript@5.6.3)':
3165
+ '@typescript-eslint/utils@8.28.0(eslint@9.23.0)(typescript@5.8.2)':
3515
3166
  dependencies:
3516
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0)
3517
- '@typescript-eslint/scope-manager': 8.18.2
3518
- '@typescript-eslint/types': 8.18.2
3519
- '@typescript-eslint/typescript-estree': 8.18.2(typescript@5.6.3)
3520
- eslint: 9.17.0
3521
- typescript: 5.6.3
3167
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0)
3168
+ '@typescript-eslint/scope-manager': 8.28.0
3169
+ '@typescript-eslint/types': 8.28.0
3170
+ '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2)
3171
+ eslint: 9.23.0
3172
+ typescript: 5.8.2
3522
3173
  transitivePeerDependencies:
3523
3174
  - supports-color
3524
3175
 
3525
- '@typescript-eslint/visitor-keys@8.18.2':
3176
+ '@typescript-eslint/visitor-keys@8.28.0':
3526
3177
  dependencies:
3527
- '@typescript-eslint/types': 8.18.2
3178
+ '@typescript-eslint/types': 8.28.0
3528
3179
  eslint-visitor-keys: 4.2.0
3529
3180
 
3530
- '@ungap/structured-clone@1.2.1': {}
3531
-
3532
- '@vitejs/plugin-react@4.3.4(vite@6.0.14(@types/node@22.10.5)(tsx@4.19.2)(yaml@2.6.1))':
3181
+ '@vitejs/plugin-react@4.3.4(vite@6.2.4(@types/node@22.10.5)(tsx@4.19.3)(yaml@2.7.1))':
3533
3182
  dependencies:
3534
3183
  '@babel/core': 7.26.0
3535
3184
  '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
3536
3185
  '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
3537
3186
  '@types/babel__core': 7.20.5
3538
3187
  react-refresh: 0.14.2
3539
- vite: 6.0.14(@types/node@22.10.5)(tsx@4.19.2)(yaml@2.6.1)
3188
+ vite: 6.2.4(@types/node@22.10.5)(tsx@4.19.3)(yaml@2.7.1)
3540
3189
  transitivePeerDependencies:
3541
3190
  - supports-color
3542
3191
 
@@ -3664,8 +3313,6 @@ snapshots:
3664
3313
 
3665
3314
  caniuse-lite@1.0.30001692: {}
3666
3315
 
3667
- ccount@2.0.1: {}
3668
-
3669
3316
  chalk@4.1.2:
3670
3317
  dependencies:
3671
3318
  ansi-styles: 4.3.0
@@ -3673,10 +3320,6 @@ snapshots:
3673
3320
 
3674
3321
  chalk@5.4.1: {}
3675
3322
 
3676
- character-entities-html4@2.1.0: {}
3677
-
3678
- character-entities-legacy@3.0.0: {}
3679
-
3680
3323
  chokidar@4.0.3:
3681
3324
  dependencies:
3682
3325
  readdirp: 4.1.1
@@ -3704,9 +3347,7 @@ snapshots:
3704
3347
 
3705
3348
  colorette@2.0.20: {}
3706
3349
 
3707
- comma-separated-tokens@2.0.3: {}
3708
-
3709
- commander@12.1.0: {}
3350
+ commander@13.1.0: {}
3710
3351
 
3711
3352
  compare-versions@6.1.1: {}
3712
3353
 
@@ -3764,10 +3405,6 @@ snapshots:
3764
3405
 
3765
3406
  dequal@2.0.3: {}
3766
3407
 
3767
- devlop@1.1.0:
3768
- dependencies:
3769
- dequal: 2.0.3
3770
-
3771
3408
  dir-glob@3.0.1:
3772
3409
  dependencies:
3773
3410
  path-type: 4.0.0
@@ -3780,8 +3417,6 @@ snapshots:
3780
3417
 
3781
3418
  electron-to-chromium@1.5.80: {}
3782
3419
 
3783
- emoji-regex-xs@1.0.0: {}
3784
-
3785
3420
  emoji-regex@10.4.0: {}
3786
3421
 
3787
3422
  emoji-regex@8.0.0: {}
@@ -3883,78 +3518,51 @@ snapshots:
3883
3518
 
3884
3519
  es6-promise@3.3.1: {}
3885
3520
 
3886
- esbuild@0.23.1:
3521
+ esbuild@0.25.2:
3887
3522
  optionalDependencies:
3888
- '@esbuild/aix-ppc64': 0.23.1
3889
- '@esbuild/android-arm': 0.23.1
3890
- '@esbuild/android-arm64': 0.23.1
3891
- '@esbuild/android-x64': 0.23.1
3892
- '@esbuild/darwin-arm64': 0.23.1
3893
- '@esbuild/darwin-x64': 0.23.1
3894
- '@esbuild/freebsd-arm64': 0.23.1
3895
- '@esbuild/freebsd-x64': 0.23.1
3896
- '@esbuild/linux-arm': 0.23.1
3897
- '@esbuild/linux-arm64': 0.23.1
3898
- '@esbuild/linux-ia32': 0.23.1
3899
- '@esbuild/linux-loong64': 0.23.1
3900
- '@esbuild/linux-mips64el': 0.23.1
3901
- '@esbuild/linux-ppc64': 0.23.1
3902
- '@esbuild/linux-riscv64': 0.23.1
3903
- '@esbuild/linux-s390x': 0.23.1
3904
- '@esbuild/linux-x64': 0.23.1
3905
- '@esbuild/netbsd-x64': 0.23.1
3906
- '@esbuild/openbsd-arm64': 0.23.1
3907
- '@esbuild/openbsd-x64': 0.23.1
3908
- '@esbuild/sunos-x64': 0.23.1
3909
- '@esbuild/win32-arm64': 0.23.1
3910
- '@esbuild/win32-ia32': 0.23.1
3911
- '@esbuild/win32-x64': 0.23.1
3912
-
3913
- esbuild@0.24.2:
3914
- optionalDependencies:
3915
- '@esbuild/aix-ppc64': 0.24.2
3916
- '@esbuild/android-arm': 0.24.2
3917
- '@esbuild/android-arm64': 0.24.2
3918
- '@esbuild/android-x64': 0.24.2
3919
- '@esbuild/darwin-arm64': 0.24.2
3920
- '@esbuild/darwin-x64': 0.24.2
3921
- '@esbuild/freebsd-arm64': 0.24.2
3922
- '@esbuild/freebsd-x64': 0.24.2
3923
- '@esbuild/linux-arm': 0.24.2
3924
- '@esbuild/linux-arm64': 0.24.2
3925
- '@esbuild/linux-ia32': 0.24.2
3926
- '@esbuild/linux-loong64': 0.24.2
3927
- '@esbuild/linux-mips64el': 0.24.2
3928
- '@esbuild/linux-ppc64': 0.24.2
3929
- '@esbuild/linux-riscv64': 0.24.2
3930
- '@esbuild/linux-s390x': 0.24.2
3931
- '@esbuild/linux-x64': 0.24.2
3932
- '@esbuild/netbsd-arm64': 0.24.2
3933
- '@esbuild/netbsd-x64': 0.24.2
3934
- '@esbuild/openbsd-arm64': 0.24.2
3935
- '@esbuild/openbsd-x64': 0.24.2
3936
- '@esbuild/sunos-x64': 0.24.2
3937
- '@esbuild/win32-arm64': 0.24.2
3938
- '@esbuild/win32-ia32': 0.24.2
3939
- '@esbuild/win32-x64': 0.24.2
3523
+ '@esbuild/aix-ppc64': 0.25.2
3524
+ '@esbuild/android-arm': 0.25.2
3525
+ '@esbuild/android-arm64': 0.25.2
3526
+ '@esbuild/android-x64': 0.25.2
3527
+ '@esbuild/darwin-arm64': 0.25.2
3528
+ '@esbuild/darwin-x64': 0.25.2
3529
+ '@esbuild/freebsd-arm64': 0.25.2
3530
+ '@esbuild/freebsd-x64': 0.25.2
3531
+ '@esbuild/linux-arm': 0.25.2
3532
+ '@esbuild/linux-arm64': 0.25.2
3533
+ '@esbuild/linux-ia32': 0.25.2
3534
+ '@esbuild/linux-loong64': 0.25.2
3535
+ '@esbuild/linux-mips64el': 0.25.2
3536
+ '@esbuild/linux-ppc64': 0.25.2
3537
+ '@esbuild/linux-riscv64': 0.25.2
3538
+ '@esbuild/linux-s390x': 0.25.2
3539
+ '@esbuild/linux-x64': 0.25.2
3540
+ '@esbuild/netbsd-arm64': 0.25.2
3541
+ '@esbuild/netbsd-x64': 0.25.2
3542
+ '@esbuild/openbsd-arm64': 0.25.2
3543
+ '@esbuild/openbsd-x64': 0.25.2
3544
+ '@esbuild/sunos-x64': 0.25.2
3545
+ '@esbuild/win32-arm64': 0.25.2
3546
+ '@esbuild/win32-ia32': 0.25.2
3547
+ '@esbuild/win32-x64': 0.25.2
3940
3548
 
3941
3549
  escalade@3.2.0: {}
3942
3550
 
3943
3551
  escape-string-regexp@4.0.0: {}
3944
3552
 
3945
- eslint-config-prettier@9.1.0(eslint@9.17.0):
3553
+ eslint-config-prettier@9.1.0(eslint@9.23.0):
3946
3554
  dependencies:
3947
- eslint: 9.17.0
3555
+ eslint: 9.23.0
3948
3556
 
3949
- eslint-plugin-react-hooks@5.0.0(eslint@9.17.0):
3557
+ eslint-plugin-react-hooks@5.2.0(eslint@9.23.0):
3950
3558
  dependencies:
3951
- eslint: 9.17.0
3559
+ eslint: 9.23.0
3952
3560
 
3953
- eslint-plugin-react-refresh@0.4.16(eslint@9.17.0):
3561
+ eslint-plugin-react-refresh@0.4.19(eslint@9.23.0):
3954
3562
  dependencies:
3955
- eslint: 9.17.0
3563
+ eslint: 9.23.0
3956
3564
 
3957
- eslint-scope@8.2.0:
3565
+ eslint-scope@8.3.0:
3958
3566
  dependencies:
3959
3567
  esrecurse: 4.3.0
3960
3568
  estraverse: 5.3.0
@@ -3963,18 +3571,19 @@ snapshots:
3963
3571
 
3964
3572
  eslint-visitor-keys@4.2.0: {}
3965
3573
 
3966
- eslint@9.17.0:
3574
+ eslint@9.23.0:
3967
3575
  dependencies:
3968
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0)
3576
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0)
3969
3577
  '@eslint-community/regexpp': 4.12.1
3970
- '@eslint/config-array': 0.19.1
3971
- '@eslint/core': 0.9.1
3972
- '@eslint/eslintrc': 3.2.0
3973
- '@eslint/js': 9.17.0
3974
- '@eslint/plugin-kit': 0.2.4
3578
+ '@eslint/config-array': 0.19.2
3579
+ '@eslint/config-helpers': 0.2.0
3580
+ '@eslint/core': 0.12.0
3581
+ '@eslint/eslintrc': 3.3.1
3582
+ '@eslint/js': 9.23.0
3583
+ '@eslint/plugin-kit': 0.2.7
3975
3584
  '@humanfs/node': 0.16.6
3976
3585
  '@humanwhocodes/module-importer': 1.0.1
3977
- '@humanwhocodes/retry': 0.4.1
3586
+ '@humanwhocodes/retry': 0.4.2
3978
3587
  '@types/estree': 1.0.6
3979
3588
  '@types/json-schema': 7.0.15
3980
3589
  ajv: 6.12.6
@@ -3982,7 +3591,7 @@ snapshots:
3982
3591
  cross-spawn: 7.0.6
3983
3592
  debug: 4.4.0
3984
3593
  escape-string-regexp: 4.0.0
3985
- eslint-scope: 8.2.0
3594
+ eslint-scope: 8.3.0
3986
3595
  eslint-visitor-keys: 4.2.0
3987
3596
  espree: 10.3.0
3988
3597
  esquery: 1.6.0
@@ -4168,7 +3777,7 @@ snapshots:
4168
3777
 
4169
3778
  globals@14.0.0: {}
4170
3779
 
4171
- globals@15.14.0: {}
3780
+ globals@15.15.0: {}
4172
3781
 
4173
3782
  globalthis@1.0.4:
4174
3783
  dependencies:
@@ -4214,26 +3823,6 @@ snapshots:
4214
3823
  dependencies:
4215
3824
  function-bind: 1.1.2
4216
3825
 
4217
- hast-util-to-html@9.0.4:
4218
- dependencies:
4219
- '@types/hast': 3.0.4
4220
- '@types/unist': 3.0.3
4221
- ccount: 2.0.1
4222
- comma-separated-tokens: 2.0.3
4223
- hast-util-whitespace: 3.0.0
4224
- html-void-elements: 3.0.0
4225
- mdast-util-to-hast: 13.2.0
4226
- property-information: 6.5.0
4227
- space-separated-tokens: 2.0.2
4228
- stringify-entities: 4.0.4
4229
- zwitch: 2.0.4
4230
-
4231
- hast-util-whitespace@3.0.0:
4232
- dependencies:
4233
- '@types/hast': 3.0.4
4234
-
4235
- html-void-elements@3.0.0: {}
4236
-
4237
3826
  http2-client@1.3.5: {}
4238
3827
 
4239
3828
  human-signals@2.1.0: {}
@@ -4242,11 +3831,11 @@ snapshots:
4242
3831
 
4243
3832
  husky@9.1.7: {}
4244
3833
 
4245
- i18next@24.2.1(typescript@5.6.3):
3834
+ i18next@24.2.3(typescript@5.8.2):
4246
3835
  dependencies:
4247
- '@babel/runtime': 7.26.0
3836
+ '@babel/runtime': 7.27.0
4248
3837
  optionalDependencies:
4249
- typescript: 5.6.3
3838
+ typescript: 5.8.2
4250
3839
 
4251
3840
  ignore@5.3.2: {}
4252
3841
 
@@ -4421,6 +4010,8 @@ snapshots:
4421
4010
 
4422
4011
  jsonpointer@5.0.1: {}
4423
4012
 
4013
+ jsonschema@1.5.0: {}
4014
+
4424
4015
  keyv@4.5.4:
4425
4016
  dependencies:
4426
4017
  json-buffer: 3.0.1
@@ -4438,10 +4029,10 @@ snapshots:
4438
4029
  dependencies:
4439
4030
  uc.micro: 2.1.0
4440
4031
 
4441
- lint-staged@15.3.0:
4032
+ lint-staged@15.5.0:
4442
4033
  dependencies:
4443
4034
  chalk: 5.4.1
4444
- commander: 12.1.0
4035
+ commander: 13.1.0
4445
4036
  debug: 4.4.0
4446
4037
  execa: 8.0.1
4447
4038
  lilconfig: 3.1.3
@@ -4449,7 +4040,7 @@ snapshots:
4449
4040
  micromatch: 4.0.8
4450
4041
  pidtree: 0.6.0
4451
4042
  string-argv: 0.3.2
4452
- yaml: 2.6.1
4043
+ yaml: 2.7.1
4453
4044
  transitivePeerDependencies:
4454
4045
  - supports-color
4455
4046
 
@@ -4466,14 +4057,10 @@ snapshots:
4466
4057
  dependencies:
4467
4058
  p-locate: 5.0.0
4468
4059
 
4469
- lodash.get@4.4.2: {}
4470
-
4471
4060
  lodash.isempty@4.4.0: {}
4472
4061
 
4473
4062
  lodash.merge@4.6.2: {}
4474
4063
 
4475
- lodash.omit@4.5.0: {}
4476
-
4477
4064
  lodash.omitby@4.6.0: {}
4478
4065
 
4479
4066
  lodash.topath@4.5.2: {}
@@ -4519,41 +4106,12 @@ snapshots:
4519
4106
 
4520
4107
  math-intrinsics@1.1.0: {}
4521
4108
 
4522
- mdast-util-to-hast@13.2.0:
4523
- dependencies:
4524
- '@types/hast': 3.0.4
4525
- '@types/mdast': 4.0.4
4526
- '@ungap/structured-clone': 1.2.1
4527
- devlop: 1.1.0
4528
- micromark-util-sanitize-uri: 2.0.1
4529
- trim-lines: 3.0.1
4530
- unist-util-position: 5.0.0
4531
- unist-util-visit: 5.0.0
4532
- vfile: 6.0.3
4533
-
4534
4109
  mdurl@2.0.0: {}
4535
4110
 
4536
4111
  merge-stream@2.0.0: {}
4537
4112
 
4538
4113
  merge2@1.4.1: {}
4539
4114
 
4540
- micromark-util-character@2.1.1:
4541
- dependencies:
4542
- micromark-util-symbol: 2.0.1
4543
- micromark-util-types: 2.0.1
4544
-
4545
- micromark-util-encode@2.0.1: {}
4546
-
4547
- micromark-util-sanitize-uri@2.0.1:
4548
- dependencies:
4549
- micromark-util-character: 2.1.1
4550
- micromark-util-encode: 2.0.1
4551
- micromark-util-symbol: 2.0.1
4552
-
4553
- micromark-util-symbol@2.0.1: {}
4554
-
4555
- micromark-util-types@2.0.1: {}
4556
-
4557
4115
  micromatch@4.0.8:
4558
4116
  dependencies:
4559
4117
  braces: 3.0.3
@@ -4671,12 +4229,6 @@ snapshots:
4671
4229
  dependencies:
4672
4230
  mimic-function: 5.0.1
4673
4231
 
4674
- oniguruma-to-es@0.10.0:
4675
- dependencies:
4676
- emoji-regex-xs: 1.0.0
4677
- regex: 5.1.1
4678
- regex-recursion: 5.1.1
4679
-
4680
4232
  openapi-types@12.1.3: {}
4681
4233
 
4682
4234
  openapi3-ts@4.2.2:
@@ -4696,18 +4248,18 @@ snapshots:
4696
4248
  type-check: 0.4.0
4697
4249
  word-wrap: 1.2.5
4698
4250
 
4699
- orval@7.4.1(openapi-types@12.1.3):
4251
+ orval@7.7.0(openapi-types@12.1.3):
4700
4252
  dependencies:
4701
4253
  '@apidevtools/swagger-parser': 10.1.1(openapi-types@12.1.3)
4702
- '@orval/angular': 7.4.1(openapi-types@12.1.3)
4703
- '@orval/axios': 7.4.1(openapi-types@12.1.3)
4704
- '@orval/core': 7.4.1(openapi-types@12.1.3)
4705
- '@orval/fetch': 7.4.1(openapi-types@12.1.3)
4706
- '@orval/hono': 7.4.1(openapi-types@12.1.3)
4707
- '@orval/mock': 7.4.1(openapi-types@12.1.3)
4708
- '@orval/query': 7.4.1(openapi-types@12.1.3)
4709
- '@orval/swr': 7.4.1(openapi-types@12.1.3)
4710
- '@orval/zod': 7.4.1(openapi-types@12.1.3)
4254
+ '@orval/angular': 7.7.0(openapi-types@12.1.3)
4255
+ '@orval/axios': 7.7.0(openapi-types@12.1.3)
4256
+ '@orval/core': 7.7.0(openapi-types@12.1.3)
4257
+ '@orval/fetch': 7.7.0(openapi-types@12.1.3)
4258
+ '@orval/hono': 7.7.0(openapi-types@12.1.3)
4259
+ '@orval/mock': 7.7.0(openapi-types@12.1.3)
4260
+ '@orval/query': 7.7.0(openapi-types@12.1.3)
4261
+ '@orval/swr': 7.7.0(openapi-types@12.1.3)
4262
+ '@orval/zod': 7.7.0(openapi-types@12.1.3)
4711
4263
  ajv: 8.17.1
4712
4264
  cac: 6.7.14
4713
4265
  chalk: 4.1.2
@@ -4719,10 +4271,10 @@ snapshots:
4719
4271
  lodash.uniq: 4.5.0
4720
4272
  openapi3-ts: 4.2.2
4721
4273
  string-argv: 0.3.2
4722
- tsconfck: 2.1.2(typescript@5.6.3)
4723
- typedoc: 0.26.11(typescript@5.6.3)
4724
- typedoc-plugin-markdown: 4.2.10(typedoc@0.26.11(typescript@5.6.3))
4725
- typescript: 5.6.3
4274
+ tsconfck: 2.1.2(typescript@5.8.2)
4275
+ typedoc: 0.27.9(typescript@5.8.2)
4276
+ typedoc-plugin-markdown: 4.6.0(typedoc@0.27.9(typescript@5.8.2))
4277
+ typescript: 5.8.2
4726
4278
  transitivePeerDependencies:
4727
4279
  - encoding
4728
4280
  - openapi-types
@@ -4764,7 +4316,7 @@ snapshots:
4764
4316
 
4765
4317
  possible-typed-array-names@1.0.0: {}
4766
4318
 
4767
- postcss@8.4.49:
4319
+ postcss@8.5.3:
4768
4320
  dependencies:
4769
4321
  nanoid: 3.3.8
4770
4322
  picocolors: 1.1.1
@@ -4772,9 +4324,7 @@ snapshots:
4772
4324
 
4773
4325
  prelude-ls@1.2.1: {}
4774
4326
 
4775
- prettier@3.4.2: {}
4776
-
4777
- property-information@6.5.0: {}
4327
+ prettier@3.5.3: {}
4778
4328
 
4779
4329
  punycode.js@2.3.1: {}
4780
4330
 
@@ -4797,13 +4347,13 @@ snapshots:
4797
4347
  react-fast-compare: 3.2.2
4798
4348
  shallowequal: 1.1.0
4799
4349
 
4800
- react-hook-form@7.54.2(react@18.3.1):
4350
+ react-hook-form@7.55.0(react@18.3.1):
4801
4351
  dependencies:
4802
4352
  react: 18.3.1
4803
4353
 
4804
4354
  react-refresh@0.14.2: {}
4805
4355
 
4806
- react-router@7.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4356
+ react-router@7.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
4807
4357
  dependencies:
4808
4358
  '@types/cookie': 0.6.0
4809
4359
  cookie: 1.0.2
@@ -4834,17 +4384,6 @@ snapshots:
4834
4384
 
4835
4385
  regenerator-runtime@0.14.1: {}
4836
4386
 
4837
- regex-recursion@5.1.1:
4838
- dependencies:
4839
- regex: 5.1.1
4840
- regex-utilities: 2.3.0
4841
-
4842
- regex-utilities@2.3.0: {}
4843
-
4844
- regex@5.1.1:
4845
- dependencies:
4846
- regex-utilities: 2.3.0
4847
-
4848
4387
  regexp.prototype.flags@1.5.4:
4849
4388
  dependencies:
4850
4389
  call-bind: 1.0.8
@@ -4961,17 +4500,6 @@ snapshots:
4961
4500
 
4962
4501
  shebang-regex@3.0.0: {}
4963
4502
 
4964
- shiki@1.26.1:
4965
- dependencies:
4966
- '@shikijs/core': 1.26.1
4967
- '@shikijs/engine-javascript': 1.26.1
4968
- '@shikijs/engine-oniguruma': 1.26.1
4969
- '@shikijs/langs': 1.26.1
4970
- '@shikijs/themes': 1.26.1
4971
- '@shikijs/types': 1.26.1
4972
- '@shikijs/vscode-textmate': 10.0.1
4973
- '@types/hast': 3.0.4
4974
-
4975
4503
  should-equal@2.0.0:
4976
4504
  dependencies:
4977
4505
  should-type: 1.4.0
@@ -5048,8 +4576,6 @@ snapshots:
5048
4576
 
5049
4577
  source-map-js@1.2.1: {}
5050
4578
 
5051
- space-separated-tokens@2.0.2: {}
5052
-
5053
4579
  string-argv@0.3.2: {}
5054
4580
 
5055
4581
  string-width@4.2.3:
@@ -5087,11 +4613,6 @@ snapshots:
5087
4613
  define-properties: 1.2.1
5088
4614
  es-object-atoms: 1.0.0
5089
4615
 
5090
- stringify-entities@4.0.4:
5091
- dependencies:
5092
- character-entities-html4: 2.1.0
5093
- character-entities-legacy: 3.0.0
5094
-
5095
4616
  strip-ansi@6.0.1:
5096
4617
  dependencies:
5097
4618
  ansi-regex: 5.0.1
@@ -5126,7 +4647,7 @@ snapshots:
5126
4647
  transitivePeerDependencies:
5127
4648
  - encoding
5128
4649
 
5129
- swr@2.3.0(react@18.3.1):
4650
+ swr@2.3.3(react@18.3.1):
5130
4651
  dependencies:
5131
4652
  dequal: 2.0.3
5132
4653
  react: 18.3.1
@@ -5138,27 +4659,25 @@ snapshots:
5138
4659
 
5139
4660
  tr46@0.0.3: {}
5140
4661
 
5141
- trim-lines@3.0.1: {}
5142
-
5143
- ts-api-utils@1.4.3(typescript@5.6.3):
4662
+ ts-api-utils@2.1.0(typescript@5.8.2):
5144
4663
  dependencies:
5145
- typescript: 5.6.3
4664
+ typescript: 5.8.2
5146
4665
 
5147
- tsconfck@2.1.2(typescript@5.6.3):
4666
+ tsconfck@2.1.2(typescript@5.8.2):
5148
4667
  optionalDependencies:
5149
- typescript: 5.6.3
4668
+ typescript: 5.8.2
5150
4669
 
5151
- tsconfck@3.1.4(typescript@5.6.3):
4670
+ tsconfck@3.1.4(typescript@5.8.2):
5152
4671
  optionalDependencies:
5153
- typescript: 5.6.3
4672
+ typescript: 5.8.2
5154
4673
 
5155
4674
  tslib@1.14.1: {}
5156
4675
 
5157
4676
  tslib@2.8.1: {}
5158
4677
 
5159
- tsx@4.19.2:
4678
+ tsx@4.19.3:
5160
4679
  dependencies:
5161
- esbuild: 0.23.1
4680
+ esbuild: 0.25.2
5162
4681
  get-tsconfig: 4.8.1
5163
4682
  optionalDependencies:
5164
4683
  fsevents: 2.3.3
@@ -5169,7 +4688,7 @@ snapshots:
5169
4688
  dependencies:
5170
4689
  prelude-ls: 1.2.1
5171
4690
 
5172
- type-fest@4.32.0: {}
4691
+ type-fest@4.38.0: {}
5173
4692
 
5174
4693
  typed-array-buffer@1.0.3:
5175
4694
  dependencies:
@@ -5204,30 +4723,30 @@ snapshots:
5204
4723
  possible-typed-array-names: 1.0.0
5205
4724
  reflect.getprototypeof: 1.0.10
5206
4725
 
5207
- typedoc-plugin-markdown@4.2.10(typedoc@0.26.11(typescript@5.6.3)):
4726
+ typedoc-plugin-markdown@4.6.0(typedoc@0.27.9(typescript@5.8.2)):
5208
4727
  dependencies:
5209
- typedoc: 0.26.11(typescript@5.6.3)
4728
+ typedoc: 0.27.9(typescript@5.8.2)
5210
4729
 
5211
- typedoc@0.26.11(typescript@5.6.3):
4730
+ typedoc@0.27.9(typescript@5.8.2):
5212
4731
  dependencies:
4732
+ '@gerrit0/mini-shiki': 1.27.2
5213
4733
  lunr: 2.3.9
5214
4734
  markdown-it: 14.1.0
5215
4735
  minimatch: 9.0.5
5216
- shiki: 1.26.1
5217
- typescript: 5.6.3
4736
+ typescript: 5.8.2
5218
4737
  yaml: 2.6.1
5219
4738
 
5220
- typescript-eslint@8.18.2(eslint@9.17.0)(typescript@5.6.3):
4739
+ typescript-eslint@8.28.0(eslint@9.23.0)(typescript@5.8.2):
5221
4740
  dependencies:
5222
- '@typescript-eslint/eslint-plugin': 8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0)(typescript@5.6.3))(eslint@9.17.0)(typescript@5.6.3)
5223
- '@typescript-eslint/parser': 8.18.2(eslint@9.17.0)(typescript@5.6.3)
5224
- '@typescript-eslint/utils': 8.18.2(eslint@9.17.0)(typescript@5.6.3)
5225
- eslint: 9.17.0
5226
- typescript: 5.6.3
4741
+ '@typescript-eslint/eslint-plugin': 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0)(typescript@5.8.2))(eslint@9.23.0)(typescript@5.8.2)
4742
+ '@typescript-eslint/parser': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
4743
+ '@typescript-eslint/utils': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
4744
+ eslint: 9.23.0
4745
+ typescript: 5.8.2
5227
4746
  transitivePeerDependencies:
5228
4747
  - supports-color
5229
4748
 
5230
- typescript@5.6.3: {}
4749
+ typescript@5.8.2: {}
5231
4750
 
5232
4751
  uc.micro@2.1.0: {}
5233
4752
 
@@ -5240,29 +4759,6 @@ snapshots:
5240
4759
 
5241
4760
  undici-types@6.20.0: {}
5242
4761
 
5243
- unist-util-is@6.0.0:
5244
- dependencies:
5245
- '@types/unist': 3.0.3
5246
-
5247
- unist-util-position@5.0.0:
5248
- dependencies:
5249
- '@types/unist': 3.0.3
5250
-
5251
- unist-util-stringify-position@4.0.0:
5252
- dependencies:
5253
- '@types/unist': 3.0.3
5254
-
5255
- unist-util-visit-parents@6.0.1:
5256
- dependencies:
5257
- '@types/unist': 3.0.3
5258
- unist-util-is: 6.0.0
5259
-
5260
- unist-util-visit@5.0.0:
5261
- dependencies:
5262
- '@types/unist': 3.0.3
5263
- unist-util-is: 6.0.0
5264
- unist-util-visit-parents: 6.0.1
5265
-
5266
4762
  universalify@2.0.1: {}
5267
4763
 
5268
4764
  update-browserslist-db@1.1.2(browserslist@4.24.4):
@@ -5285,37 +4781,27 @@ snapshots:
5285
4781
 
5286
4782
  validator@13.12.0: {}
5287
4783
 
5288
- vfile-message@4.0.2:
5289
- dependencies:
5290
- '@types/unist': 3.0.3
5291
- unist-util-stringify-position: 4.0.0
5292
-
5293
- vfile@6.0.3:
5294
- dependencies:
5295
- '@types/unist': 3.0.3
5296
- vfile-message: 4.0.2
5297
-
5298
- vite-tsconfig-paths@5.1.3(typescript@5.6.3)(vite@6.0.14(@types/node@22.10.5)(tsx@4.19.2)(yaml@2.6.1)):
4784
+ vite-tsconfig-paths@5.1.4(typescript@5.8.2)(vite@6.2.4(@types/node@22.10.5)(tsx@4.19.3)(yaml@2.7.1)):
5299
4785
  dependencies:
5300
4786
  debug: 4.4.0
5301
4787
  globrex: 0.1.2
5302
- tsconfck: 3.1.4(typescript@5.6.3)
4788
+ tsconfck: 3.1.4(typescript@5.8.2)
5303
4789
  optionalDependencies:
5304
- vite: 6.0.14(@types/node@22.10.5)(tsx@4.19.2)(yaml@2.6.1)
4790
+ vite: 6.2.4(@types/node@22.10.5)(tsx@4.19.3)(yaml@2.7.1)
5305
4791
  transitivePeerDependencies:
5306
4792
  - supports-color
5307
4793
  - typescript
5308
4794
 
5309
- vite@6.0.14(@types/node@22.10.5)(tsx@4.19.2)(yaml@2.6.1):
4795
+ vite@6.2.4(@types/node@22.10.5)(tsx@4.19.3)(yaml@2.7.1):
5310
4796
  dependencies:
5311
- esbuild: 0.24.2
5312
- postcss: 8.4.49
4797
+ esbuild: 0.25.2
4798
+ postcss: 8.5.3
5313
4799
  rollup: 4.30.1
5314
4800
  optionalDependencies:
5315
4801
  '@types/node': 22.10.5
5316
4802
  fsevents: 2.3.3
5317
- tsx: 4.19.2
5318
- yaml: 2.6.1
4803
+ tsx: 4.19.3
4804
+ yaml: 2.7.1
5319
4805
 
5320
4806
  webidl-conversions@3.0.1: {}
5321
4807
 
@@ -5390,6 +4876,8 @@ snapshots:
5390
4876
 
5391
4877
  yaml@2.6.1: {}
5392
4878
 
4879
+ yaml@2.7.1: {}
4880
+
5393
4881
  yargs-parser@21.1.1: {}
5394
4882
 
5395
4883
  yargs@17.7.2:
@@ -5404,11 +4892,9 @@ snapshots:
5404
4892
 
5405
4893
  yocto-queue@0.1.0: {}
5406
4894
 
5407
- zod-i18n-map@2.27.0(i18next@24.2.1(typescript@5.6.3))(zod@3.24.1):
4895
+ zod-i18n-map@2.27.0(i18next@24.2.3(typescript@5.8.2))(zod@3.24.2):
5408
4896
  dependencies:
5409
- i18next: 24.2.1(typescript@5.6.3)
5410
- zod: 3.24.1
5411
-
5412
- zod@3.24.1: {}
4897
+ i18next: 24.2.3(typescript@5.8.2)
4898
+ zod: 3.24.2
5413
4899
 
5414
- zwitch@2.0.4: {}
4900
+ zod@3.24.2: {}