@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
@@ -9,23 +9,23 @@ importers:
9
9
  .:
10
10
  dependencies:
11
11
  '@anatine/zod-openapi':
12
- specifier: 2.2.6
13
- version: 2.2.6(openapi3-ts@4.3.3)(zod@3.24.1)
12
+ specifier: 2.2.7
13
+ version: 2.2.7(openapi3-ts@4.3.3)(zod@3.24.2)
14
14
  '@fastify/static':
15
15
  specifier: 8.1.1
16
16
  version: 8.1.1
17
17
  '@nestjs/common':
18
18
  specifier: 10.4.15
19
- version: 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1)
19
+ version: 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2)
20
20
  '@nestjs/core':
21
21
  specifier: 10.4.15
22
- version: 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.1)
22
+ version: 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.2)
23
23
  '@nestjs/platform-fastify':
24
24
  specifier: 10.4.15
25
- version: 10.4.15(@fastify/static@8.1.1)(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)
25
+ version: 10.4.15(@fastify/static@8.1.1)(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.15)
26
26
  '@nestjs/swagger':
27
27
  specifier: 7.4.2
28
- version: 7.4.2(@fastify/static@8.1.1)(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)(reflect-metadata@0.2.2)
28
+ version: 7.4.2(@fastify/static@8.1.1)(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.15)(reflect-metadata@0.2.2)
29
29
  dotenv:
30
30
  specifier: 16.4.7
31
31
  version: 16.4.7
@@ -42,84 +42,84 @@ importers:
42
42
  specifier: 5.6.0
43
43
  version: 5.6.0
44
44
  rxjs:
45
- specifier: 7.8.1
46
- version: 7.8.1
45
+ specifier: 7.8.2
46
+ version: 7.8.2
47
47
  zod:
48
- specifier: 3.24.1
49
- version: 3.24.1
48
+ specifier: 3.24.2
49
+ version: 3.24.2
50
50
  devDependencies:
51
51
  '@eslint/js':
52
- specifier: 9.17.0
53
- version: 9.17.0
52
+ specifier: 9.23.0
53
+ version: 9.23.0
54
54
  '@faker-js/faker':
55
- specifier: 9.3.0
56
- version: 9.3.0
55
+ specifier: 9.6.0
56
+ version: 9.6.0
57
57
  '@nestjs/cli':
58
58
  specifier: 10.4.9
59
- version: 10.4.9(@swc/cli@0.5.2(@swc/core@1.10.1)(chokidar@3.6.0))(@swc/core@1.10.1)
59
+ version: 10.4.9(@swc/cli@0.6.0(@swc/core@1.11.13)(chokidar@3.6.0))(@swc/core@1.11.13)
60
60
  '@nestjs/schematics':
61
61
  specifier: 10.2.3
62
- version: 10.2.3(chokidar@3.6.0)(typescript@5.7.2)
62
+ version: 10.2.3(chokidar@3.6.0)(typescript@5.8.2)
63
63
  '@nestjs/testing':
64
64
  specifier: 10.4.15
65
- version: 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)(@nestjs/platform-express@10.3.10)
65
+ version: 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.15)(@nestjs/platform-express@10.3.10)
66
66
  '@swc/cli':
67
- specifier: 0.5.2
68
- version: 0.5.2(@swc/core@1.10.1)(chokidar@3.6.0)
67
+ specifier: 0.6.0
68
+ version: 0.6.0(@swc/core@1.11.13)(chokidar@3.6.0)
69
69
  '@swc/core':
70
- specifier: 1.10.1
71
- version: 1.10.1
70
+ specifier: 1.11.13
71
+ version: 1.11.13
72
72
  '@types/mime-types':
73
73
  specifier: 2.1.4
74
74
  version: 2.1.4
75
75
  '@types/node':
76
- specifier: 22.10.2
77
- version: 22.10.2
76
+ specifier: 22.13.14
77
+ version: 22.13.14
78
78
  '@types/supertest':
79
- specifier: 6.0.2
80
- version: 6.0.2
79
+ specifier: 6.0.3
80
+ version: 6.0.3
81
81
  '@vitest/coverage-v8':
82
- specifier: 1.6.0
83
- version: 1.6.0(vitest@1.6.1(@types/node@22.10.2)(terser@5.31.3))
82
+ specifier: 1.6.1
83
+ version: 1.6.1(vitest@1.6.1(@types/node@22.13.14)(terser@5.31.3))
84
84
  '@vitest/eslint-plugin':
85
- specifier: 1.1.18
86
- version: 1.1.18(@typescript-eslint/utils@8.18.1(eslint@9.17.0)(typescript@5.7.2))(eslint@9.17.0)(typescript@5.7.2)(vitest@1.6.1(@types/node@22.10.2)(terser@5.31.3))
85
+ specifier: 1.1.38
86
+ version: 1.1.38(@typescript-eslint/utils@8.28.0(eslint@9.23.0)(typescript@5.8.2))(eslint@9.23.0)(typescript@5.8.2)(vitest@1.6.1(@types/node@22.13.14)(terser@5.31.3))
87
87
  eslint:
88
- specifier: 9.17.0
89
- version: 9.17.0
88
+ specifier: 9.23.0
89
+ version: 9.23.0
90
90
  eslint-config-prettier:
91
91
  specifier: 9.1.0
92
- version: 9.1.0(eslint@9.17.0)
92
+ version: 9.1.0(eslint@9.23.0)
93
93
  globals:
94
- specifier: 15.14.0
95
- version: 15.14.0
94
+ specifier: 15.15.0
95
+ version: 15.15.0
96
96
  husky:
97
97
  specifier: 9.1.7
98
98
  version: 9.1.7
99
99
  lint-staged:
100
- specifier: 15.2.11
101
- version: 15.2.11
100
+ specifier: 15.5.0
101
+ version: 15.5.0
102
102
  prettier:
103
- specifier: 3.4.2
104
- version: 3.4.2
103
+ specifier: 3.5.3
104
+ version: 3.5.3
105
105
  supertest:
106
- specifier: 7.0.0
107
- version: 7.0.0
106
+ specifier: 7.1.0
107
+ version: 7.1.0
108
108
  type-fest:
109
- specifier: 4.30.2
110
- version: 4.30.2
109
+ specifier: 4.38.0
110
+ version: 4.38.0
111
111
  typescript:
112
- specifier: 5.7.2
113
- version: 5.7.2
112
+ specifier: 5.8.2
113
+ version: 5.8.2
114
114
  typescript-eslint:
115
- specifier: 8.18.1
116
- version: 8.18.1(eslint@9.17.0)(typescript@5.7.2)
115
+ specifier: 8.28.0
116
+ version: 8.28.0(eslint@9.23.0)(typescript@5.8.2)
117
117
  unplugin-swc:
118
118
  specifier: 1.5.1
119
- version: 1.5.1(@swc/core@1.10.1)(rollup@4.19.0)
119
+ version: 1.5.1(@swc/core@1.11.13)(rollup@4.19.0)
120
120
  vitest:
121
121
  specifier: 1.6.1
122
- version: 1.6.1(@types/node@22.10.2)(terser@5.31.3)
122
+ version: 1.6.1(@types/node@22.13.14)(terser@5.31.3)
123
123
 
124
124
  packages:
125
125
 
@@ -127,8 +127,8 @@ packages:
127
127
  resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
128
128
  engines: {node: '>=6.0.0'}
129
129
 
130
- '@anatine/zod-openapi@2.2.6':
131
- resolution: {integrity: sha512-Z5sr2Nq2xifEpPbPdUcvyl776LY652oR3VHMV++WFSmRrRL8RDP2XTkbuGn+vgfVNOD7UrndYwCWnxaiw7IZog==}
130
+ '@anatine/zod-openapi@2.2.7':
131
+ resolution: {integrity: sha512-kv/bGowgSGHNY2d/KIzx941ym0/elc7xoBiPri31qEUqbDPOSIppiMOZ88AedaTtLk5J1K96++h0CEsHkgFFyQ==}
132
132
  peerDependencies:
133
133
  openapi3-ts: ^4.1.2
134
134
  zod: ^3.20.0
@@ -327,40 +327,40 @@ packages:
327
327
  peerDependencies:
328
328
  eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
329
329
 
330
- '@eslint-community/regexpp@4.11.0':
331
- resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
332
- engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
333
-
334
330
  '@eslint-community/regexpp@4.12.1':
335
331
  resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
336
332
  engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
337
333
 
338
- '@eslint/config-array@0.19.1':
339
- resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
334
+ '@eslint/config-array@0.19.2':
335
+ resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
336
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
337
+
338
+ '@eslint/config-helpers@0.2.0':
339
+ resolution: {integrity: sha512-yJLLmLexii32mGrhW29qvU3QBVTu0GUmEf/J4XsBtVhp4JkIUFN/BjWqTF63yRvGApIDpZm5fa97LtYtINmfeQ==}
340
340
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
341
341
 
342
- '@eslint/core@0.9.1':
343
- resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==}
342
+ '@eslint/core@0.12.0':
343
+ resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
344
344
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
345
345
 
346
- '@eslint/eslintrc@3.2.0':
347
- resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
346
+ '@eslint/eslintrc@3.3.1':
347
+ resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
348
348
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
349
349
 
350
- '@eslint/js@9.17.0':
351
- resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
350
+ '@eslint/js@9.23.0':
351
+ resolution: {integrity: sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==}
352
352
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
353
353
 
354
- '@eslint/object-schema@2.1.5':
355
- resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
354
+ '@eslint/object-schema@2.1.6':
355
+ resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
356
356
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
357
357
 
358
- '@eslint/plugin-kit@0.2.4':
359
- resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==}
358
+ '@eslint/plugin-kit@0.2.7':
359
+ resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
360
360
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
361
361
 
362
- '@faker-js/faker@9.3.0':
363
- resolution: {integrity: sha512-r0tJ3ZOkMd9xsu3VRfqlFR6cz0V/jFYRswAIpC+m/DIfAUXq7g8N7wTAlhSANySXYGKzGryfDXwtwsY8TxEIDw==}
362
+ '@faker-js/faker@9.6.0':
363
+ resolution: {integrity: sha512-3vm4by+B5lvsFPSyep3ELWmZfE3kicDtmemVpuwl1yH7tqtnHdsA6hG8fbXedMVdkzgtvzWoRgjSB4Q+FHnZiw==}
364
364
  engines: {node: '>=18.0.0', npm: '>=9.0.0'}
365
365
 
366
366
  '@fastify/accept-negotiator@2.0.1':
@@ -413,8 +413,8 @@ packages:
413
413
  resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
414
414
  engines: {node: '>=18.18'}
415
415
 
416
- '@humanwhocodes/retry@0.4.1':
417
- resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
416
+ '@humanwhocodes/retry@0.4.2':
417
+ resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
418
418
  engines: {node: '>=18.18'}
419
419
 
420
420
  '@isaacs/cliui@8.0.2':
@@ -695,79 +695,79 @@ packages:
695
695
  resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
696
696
  engines: {node: '>=14.16'}
697
697
 
698
- '@swc/cli@0.5.2':
699
- resolution: {integrity: sha512-ul2qIqjM5bfe9zWLqFDmHZCf9HXXSZZAlZLe4czn+lH4PewO+OWZnQcYCscnJKlbx6MuWjzXVR7gkspjNEJwJA==}
698
+ '@swc/cli@0.6.0':
699
+ resolution: {integrity: sha512-Q5FsI3Cw0fGMXhmsg7c08i4EmXCrcl+WnAxb6LYOLHw4JFFC3yzmx9LaXZ7QMbA+JZXbigU2TirI7RAfO0Qlnw==}
700
700
  engines: {node: '>= 16.14.0'}
701
701
  hasBin: true
702
702
  peerDependencies:
703
703
  '@swc/core': ^1.2.66
704
- chokidar: ^3.5.1
704
+ chokidar: ^4.0.1
705
705
  peerDependenciesMeta:
706
706
  chokidar:
707
707
  optional: true
708
708
 
709
- '@swc/core-darwin-arm64@1.10.1':
710
- resolution: {integrity: sha512-NyELPp8EsVZtxH/mEqvzSyWpfPJ1lugpTQcSlMduZLj1EASLO4sC8wt8hmL1aizRlsbjCX+r0PyL+l0xQ64/6Q==}
709
+ '@swc/core-darwin-arm64@1.11.13':
710
+ resolution: {integrity: sha512-loSERhLaQ9XDS+5Kdx8cLe2tM1G0HLit8MfehipAcsdctpo79zrRlkW34elOf3tQoVPKUItV0b/rTuhjj8NtHg==}
711
711
  engines: {node: '>=10'}
712
712
  cpu: [arm64]
713
713
  os: [darwin]
714
714
 
715
- '@swc/core-darwin-x64@1.10.1':
716
- resolution: {integrity: sha512-L4BNt1fdQ5ZZhAk5qoDfUnXRabDOXKnXBxMDJ+PWLSxOGBbWE6aJTnu4zbGjJvtot0KM46m2LPAPY8ttknqaZA==}
715
+ '@swc/core-darwin-x64@1.11.13':
716
+ resolution: {integrity: sha512-uSA4UwgsDCIysUPfPS8OrQTH2h9spO7IYFd+1NB6dJlVGUuR6jLKuMBOP1IeLeax4cGHayvkcwSJ3OvxHwgcZQ==}
717
717
  engines: {node: '>=10'}
718
718
  cpu: [x64]
719
719
  os: [darwin]
720
720
 
721
- '@swc/core-linux-arm-gnueabihf@1.10.1':
722
- resolution: {integrity: sha512-Y1u9OqCHgvVp2tYQAJ7hcU9qO5brDMIrA5R31rwWQIAKDkJKtv3IlTHF0hrbWk1wPR0ZdngkQSJZple7G+Grvw==}
721
+ '@swc/core-linux-arm-gnueabihf@1.11.13':
722
+ resolution: {integrity: sha512-boVtyJzS8g30iQfe8Q46W5QE/cmhKRln/7NMz/5sBP/am2Lce9NL0d05NnFwEWJp1e2AMGHFOdRr3Xg1cDiPKw==}
723
723
  engines: {node: '>=10'}
724
724
  cpu: [arm]
725
725
  os: [linux]
726
726
 
727
- '@swc/core-linux-arm64-gnu@1.10.1':
728
- resolution: {integrity: sha512-tNQHO/UKdtnqjc7o04iRXng1wTUXPgVd8Y6LI4qIbHVoVPwksZydISjMcilKNLKIwOoUQAkxyJ16SlOAeADzhQ==}
727
+ '@swc/core-linux-arm64-gnu@1.11.13':
728
+ resolution: {integrity: sha512-+IK0jZ84zHUaKtwpV+T+wT0qIUBnK9v2xXD03vARubKF+eUqCsIvcVHXmLpFuap62dClMrhCiwW10X3RbXNlHw==}
729
729
  engines: {node: '>=10'}
730
730
  cpu: [arm64]
731
731
  os: [linux]
732
732
 
733
- '@swc/core-linux-arm64-musl@1.10.1':
734
- resolution: {integrity: sha512-x0L2Pd9weQ6n8dI1z1Isq00VHFvpBClwQJvrt3NHzmR+1wCT/gcYl1tp9P5xHh3ldM8Cn4UjWCw+7PaUgg8FcQ==}
733
+ '@swc/core-linux-arm64-musl@1.11.13':
734
+ resolution: {integrity: sha512-+ukuB8RHD5BHPCUjQwuLP98z+VRfu+NkKQVBcLJGgp0/+w7y0IkaxLY/aKmrAS5ofCNEGqKL+AOVyRpX1aw+XA==}
735
735
  engines: {node: '>=10'}
736
736
  cpu: [arm64]
737
737
  os: [linux]
738
738
 
739
- '@swc/core-linux-x64-gnu@1.10.1':
740
- resolution: {integrity: sha512-yyYEwQcObV3AUsC79rSzN9z6kiWxKAVJ6Ntwq2N9YoZqSPYph+4/Am5fM1xEQYf/kb99csj0FgOelomJSobxQA==}
739
+ '@swc/core-linux-x64-gnu@1.11.13':
740
+ resolution: {integrity: sha512-q9H3WI3U3dfJ34tdv60zc8oTuWvSd5fOxytyAO9Pc5M82Hic3jjWaf2xBekUg07ubnMZpyfnv+MlD+EbUI3Llw==}
741
741
  engines: {node: '>=10'}
742
742
  cpu: [x64]
743
743
  os: [linux]
744
744
 
745
- '@swc/core-linux-x64-musl@1.10.1':
746
- resolution: {integrity: sha512-tcaS43Ydd7Fk7sW5ROpaf2Kq1zR+sI5K0RM+0qYLYYurvsJruj3GhBCaiN3gkzd8m/8wkqNqtVklWaQYSDsyqA==}
745
+ '@swc/core-linux-x64-musl@1.11.13':
746
+ resolution: {integrity: sha512-9aaZnnq2pLdTbAzTSzy/q8dr7Woy3aYIcQISmw1+Q2/xHJg5y80ZzbWSWKYca/hKonDMjIbGR6dp299I5J0aeA==}
747
747
  engines: {node: '>=10'}
748
748
  cpu: [x64]
749
749
  os: [linux]
750
750
 
751
- '@swc/core-win32-arm64-msvc@1.10.1':
752
- resolution: {integrity: sha512-D3Qo1voA7AkbOzQ2UGuKNHfYGKL6eejN8VWOoQYtGHHQi1p5KK/Q7V1ku55oxXBsj79Ny5FRMqiRJpVGad7bjQ==}
751
+ '@swc/core-win32-arm64-msvc@1.11.13':
752
+ resolution: {integrity: sha512-n3QZmDewkHANcoHvtwvA6yJbmS4XJf0MBMmwLZoKDZ2dOnC9D/jHiXw7JOohEuzYcpLoL5tgbqmjxa3XNo9Oow==}
753
753
  engines: {node: '>=10'}
754
754
  cpu: [arm64]
755
755
  os: [win32]
756
756
 
757
- '@swc/core-win32-ia32-msvc@1.10.1':
758
- resolution: {integrity: sha512-WalYdFoU3454Og+sDKHM1MrjvxUGwA2oralknXkXL8S0I/8RkWZOB++p3pLaGbTvOO++T+6znFbQdR8KRaa7DA==}
757
+ '@swc/core-win32-ia32-msvc@1.11.13':
758
+ resolution: {integrity: sha512-wM+Nt4lc6YSJFthCx3W2dz0EwFNf++j0/2TQ0Js9QLJuIxUQAgukhNDVCDdq8TNcT0zuA399ALYbvj5lfIqG6g==}
759
759
  engines: {node: '>=10'}
760
760
  cpu: [ia32]
761
761
  os: [win32]
762
762
 
763
- '@swc/core-win32-x64-msvc@1.10.1':
764
- resolution: {integrity: sha512-JWobfQDbTnoqaIwPKQ3DVSywihVXlQMbDuwik/dDWlj33A8oEHcjPOGs4OqcA3RHv24i+lfCQpM3Mn4FAMfacA==}
763
+ '@swc/core-win32-x64-msvc@1.11.13':
764
+ resolution: {integrity: sha512-+X5/uW3s1L5gK7wAo0E27YaAoidJDo51dnfKSfU7gF3mlEUuWH8H1bAy5OTt2mU4eXtfsdUMEVXSwhDlLtQkuA==}
765
765
  engines: {node: '>=10'}
766
766
  cpu: [x64]
767
767
  os: [win32]
768
768
 
769
- '@swc/core@1.10.1':
770
- resolution: {integrity: sha512-rQ4dS6GAdmtzKiCRt3LFVxl37FaY1cgL9kSUTnhQ2xc3fmHOd7jdJK/V4pSZMG1ruGTd0bsi34O2R0Olg9Zo/w==}
769
+ '@swc/core@1.11.13':
770
+ resolution: {integrity: sha512-9BXdYz12Wl0zWmZ80PvtjBWeg2ncwJ9L5WJzjhN6yUTZWEV/AwAdVdJnIEp4pro3WyKmAaMxcVOSbhuuOZco5g==}
771
771
  engines: {node: '>=10'}
772
772
  peerDependencies:
773
773
  '@swc/helpers': '*'
@@ -778,8 +778,8 @@ packages:
778
778
  '@swc/counter@0.1.3':
779
779
  resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
780
780
 
781
- '@swc/types@0.1.17':
782
- resolution: {integrity: sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==}
781
+ '@swc/types@0.1.20':
782
+ resolution: {integrity: sha512-/rlIpxwKrhz4BIplXf6nsEHtqlhzuNN34/k3kMAXH4/lvVoA3cdq+60aqVNnyvw2uITEaCi0WV3pxBe4dQqoXQ==}
783
783
 
784
784
  '@szmarczak/http-timer@5.0.1':
785
785
  resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
@@ -815,71 +815,71 @@ packages:
815
815
  '@types/mime-types@2.1.4':
816
816
  resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==}
817
817
 
818
- '@types/node@22.10.2':
819
- resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==}
818
+ '@types/node@22.13.14':
819
+ resolution: {integrity: sha512-Zs/Ollc1SJ8nKUAgc7ivOEdIBM8JAKgrqqUYi2J997JuKO7/tpQC+WCetQ1sypiKCQWHdvdg9wBNpUPEWZae7w==}
820
820
 
821
821
  '@types/superagent@8.1.8':
822
822
  resolution: {integrity: sha512-nTqHJ2OTa7PFEpLahzSEEeFeqbMpmcN7OeayiOc7v+xk+/vyTKljRe+o4MPqSnPeRCMvtxuLG+5QqluUVQJOnA==}
823
823
 
824
- '@types/supertest@6.0.2':
825
- resolution: {integrity: sha512-137ypx2lk/wTQbW6An6safu9hXmajAifU/s7szAHLN/FeIm5w7yR0Wkl9fdJMRSHwOn4HLAI0DaB2TOORuhPDg==}
824
+ '@types/supertest@6.0.3':
825
+ resolution: {integrity: sha512-8WzXq62EXFhJ7QsH3Ocb/iKQ/Ty9ZVWnVzoTKc9tyyFRRF3a74Tk2+TLFgaFFw364Ere+npzHKEJ6ga2LzIL7w==}
826
826
 
827
- '@typescript-eslint/eslint-plugin@8.18.1':
828
- resolution: {integrity: sha512-Ncvsq5CT3Gvh+uJG0Lwlho6suwDfUXH0HztslDf5I+F2wAFAZMRwYLEorumpKLzmO2suAXZ/td1tBg4NZIi9CQ==}
827
+ '@typescript-eslint/eslint-plugin@8.28.0':
828
+ resolution: {integrity: sha512-lvFK3TCGAHsItNdWZ/1FkvpzCxTHUVuFrdnOGLMa0GGCFIbCgQWVk3CzCGdA7kM3qGVc+dfW9tr0Z/sHnGDFyg==}
829
829
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
830
830
  peerDependencies:
831
831
  '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
832
832
  eslint: ^8.57.0 || ^9.0.0
833
- typescript: '>=4.8.4 <5.8.0'
833
+ typescript: '>=4.8.4 <5.9.0'
834
834
 
835
- '@typescript-eslint/parser@8.18.1':
836
- resolution: {integrity: sha512-rBnTWHCdbYM2lh7hjyXqxk70wvon3p2FyaniZuey5TrcGBpfhVp0OxOa6gxr9Q9YhZFKyfbEnxc24ZnVbbUkCA==}
835
+ '@typescript-eslint/parser@8.28.0':
836
+ resolution: {integrity: sha512-LPcw1yHD3ToaDEoljFEfQ9j2xShY367h7FZ1sq5NJT9I3yj4LHer1Xd1yRSOdYy9BpsrxU7R+eoDokChYM53lQ==}
837
837
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
838
838
  peerDependencies:
839
839
  eslint: ^8.57.0 || ^9.0.0
840
- typescript: '>=4.8.4 <5.8.0'
840
+ typescript: '>=4.8.4 <5.9.0'
841
841
 
842
- '@typescript-eslint/scope-manager@8.18.1':
843
- resolution: {integrity: sha512-HxfHo2b090M5s2+/9Z3gkBhI6xBH8OJCFjH9MhQ+nnoZqxU3wNxkLT+VWXWSFWc3UF3Z+CfPAyqdCTdoXtDPCQ==}
842
+ '@typescript-eslint/scope-manager@8.28.0':
843
+ resolution: {integrity: sha512-u2oITX3BJwzWCapoZ/pXw6BCOl8rJP4Ij/3wPoGvY8XwvXflOzd1kLrDUUUAIEdJSFh+ASwdTHqtan9xSg8buw==}
844
844
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
845
845
 
846
- '@typescript-eslint/type-utils@8.18.1':
847
- resolution: {integrity: sha512-jAhTdK/Qx2NJPNOTxXpMwlOiSymtR2j283TtPqXkKBdH8OAMmhiUfP0kJjc/qSE51Xrq02Gj9NY7MwK+UxVwHQ==}
846
+ '@typescript-eslint/type-utils@8.28.0':
847
+ resolution: {integrity: sha512-oRoXu2v0Rsy/VoOGhtWrOKDiIehvI+YNrDk5Oqj40Mwm0Yt01FC/Q7nFqg088d3yAsR1ZcZFVfPCTTFCe/KPwg==}
848
848
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
849
849
  peerDependencies:
850
850
  eslint: ^8.57.0 || ^9.0.0
851
- typescript: '>=4.8.4 <5.8.0'
851
+ typescript: '>=4.8.4 <5.9.0'
852
852
 
853
- '@typescript-eslint/types@8.18.1':
854
- resolution: {integrity: sha512-7uoAUsCj66qdNQNpH2G8MyTFlgerum8ubf21s3TSM3XmKXuIn+H2Sifh/ES2nPOPiYSRJWAk0fDkW0APBWcpfw==}
853
+ '@typescript-eslint/types@8.28.0':
854
+ resolution: {integrity: sha512-bn4WS1bkKEjx7HqiwG2JNB3YJdC1q6Ue7GyGlwPHyt0TnVq6TtD/hiOdTZt71sq0s7UzqBFXD8t8o2e63tXgwA==}
855
855
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
856
856
 
857
- '@typescript-eslint/typescript-estree@8.18.1':
858
- resolution: {integrity: sha512-z8U21WI5txzl2XYOW7i9hJhxoKKNG1kcU4RzyNvKrdZDmbjkmLBo8bgeiOJmA06kizLI76/CCBAAGlTlEeUfyg==}
857
+ '@typescript-eslint/typescript-estree@8.28.0':
858
+ resolution: {integrity: sha512-H74nHEeBGeklctAVUvmDkxB1mk+PAZ9FiOMPFncdqeRBXxk1lWSYraHw8V12b7aa6Sg9HOBNbGdSHobBPuQSuA==}
859
859
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
860
860
  peerDependencies:
861
- typescript: '>=4.8.4 <5.8.0'
861
+ typescript: '>=4.8.4 <5.9.0'
862
862
 
863
- '@typescript-eslint/utils@8.18.1':
864
- resolution: {integrity: sha512-8vikiIj2ebrC4WRdcAdDcmnu9Q/MXXwg+STf40BVfT8exDqBCUPdypvzcUPxEqRGKg9ALagZ0UWcYCtn+4W2iQ==}
863
+ '@typescript-eslint/utils@8.28.0':
864
+ resolution: {integrity: sha512-OELa9hbTYciYITqgurT1u/SzpQVtDLmQMFzy/N8pQE+tefOyCWT79jHsav294aTqV1q1u+VzqDGbuujvRYaeSQ==}
865
865
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
866
866
  peerDependencies:
867
867
  eslint: ^8.57.0 || ^9.0.0
868
- typescript: '>=4.8.4 <5.8.0'
868
+ typescript: '>=4.8.4 <5.9.0'
869
869
 
870
- '@typescript-eslint/visitor-keys@8.18.1':
871
- resolution: {integrity: sha512-Vj0WLm5/ZsD013YeUKn+K0y8p1M0jPpxOkKdbD1wB0ns53a5piVY02zjf072TblEweAbcYiFiPoSMF3kp+VhhQ==}
870
+ '@typescript-eslint/visitor-keys@8.28.0':
871
+ resolution: {integrity: sha512-hbn8SZ8w4u2pRwgQ1GlUrPKE+t2XvcCW5tTRF7j6SMYIuYG37XuzIW44JCZPa36evi0Oy2SnM664BlIaAuQcvg==}
872
872
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
873
873
 
874
- '@vitest/coverage-v8@1.6.0':
875
- resolution: {integrity: sha512-KvapcbMY/8GYIG0rlwwOKCVNRc0OL20rrhFkg/CHNzncV03TE2XWvO5w9uZYoxNiMEBacAJt3unSOiZ7svePew==}
874
+ '@vitest/coverage-v8@1.6.1':
875
+ resolution: {integrity: sha512-6YeRZwuO4oTGKxD3bijok756oktHSIm3eczVVzNe3scqzuhLwltIF3S9ZL/vwOVIpURmU6SnZhziXXAfw8/Qlw==}
876
876
  peerDependencies:
877
- vitest: 1.6.0
877
+ vitest: 1.6.1
878
878
 
879
- '@vitest/eslint-plugin@1.1.18':
880
- resolution: {integrity: sha512-pcnR0hn4KRaWqdEXdZPXLs2wAxzMBD8dKkpVkOuhT+bOOGW1/4BdiUrU3I0LW2loskfVS/XldwcO/lCEoFDyZw==}
879
+ '@vitest/eslint-plugin@1.1.38':
880
+ resolution: {integrity: sha512-KcOTZyVz8RiM5HyriiDVrP1CyBGuhRxle+lBsmSs6NTJEO/8dKVAq+f5vQzHj1/Kc7bYXSDO6yBe62Zx0t5iaw==}
881
881
  peerDependencies:
882
- '@typescript-eslint/utils': '>= 8.0'
882
+ '@typescript-eslint/utils': ^8.24.0
883
883
  eslint: '>= 8.57.0'
884
884
  typescript: '>= 5.0.0'
885
885
  vitest: '*'
@@ -1228,6 +1228,10 @@ packages:
1228
1228
  resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
1229
1229
  engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
1230
1230
 
1231
+ chalk@5.4.1:
1232
+ resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
1233
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
1234
+
1231
1235
  chardet@0.7.0:
1232
1236
  resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
1233
1237
 
@@ -1294,8 +1298,8 @@ packages:
1294
1298
  resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
1295
1299
  engines: {node: '>= 0.8'}
1296
1300
 
1297
- commander@12.1.0:
1298
- resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
1301
+ commander@13.1.0:
1302
+ resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==}
1299
1303
  engines: {node: '>=18'}
1300
1304
 
1301
1305
  commander@2.20.3:
@@ -1375,10 +1379,6 @@ packages:
1375
1379
  typescript:
1376
1380
  optional: true
1377
1381
 
1378
- cross-spawn@7.0.3:
1379
- resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
1380
- engines: {node: '>= 8'}
1381
-
1382
1382
  cross-spawn@7.0.6:
1383
1383
  resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
1384
1384
  engines: {node: '>= 8'}
@@ -1391,15 +1391,6 @@ packages:
1391
1391
  supports-color:
1392
1392
  optional: true
1393
1393
 
1394
- debug@4.3.5:
1395
- resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
1396
- engines: {node: '>=6.0'}
1397
- peerDependencies:
1398
- supports-color: '*'
1399
- peerDependenciesMeta:
1400
- supports-color:
1401
- optional: true
1402
-
1403
1394
  debug@4.4.0:
1404
1395
  resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
1405
1396
  engines: {node: '>=6.0'}
@@ -1536,8 +1527,8 @@ packages:
1536
1527
  resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
1537
1528
  engines: {node: '>=8.0.0'}
1538
1529
 
1539
- eslint-scope@8.2.0:
1540
- resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
1530
+ eslint-scope@8.3.0:
1531
+ resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
1541
1532
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1542
1533
 
1543
1534
  eslint-visitor-keys@3.4.3:
@@ -1548,8 +1539,8 @@ packages:
1548
1539
  resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
1549
1540
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1550
1541
 
1551
- eslint@9.17.0:
1552
- resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==}
1542
+ eslint@9.23.0:
1543
+ resolution: {integrity: sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==}
1553
1544
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1554
1545
  hasBin: true
1555
1546
  peerDependencies:
@@ -1835,8 +1826,8 @@ packages:
1835
1826
  resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
1836
1827
  engines: {node: '>=18'}
1837
1828
 
1838
- globals@15.14.0:
1839
- resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
1829
+ globals@15.15.0:
1830
+ resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
1840
1831
  engines: {node: '>=18'}
1841
1832
 
1842
1833
  gopd@1.0.1:
@@ -2109,8 +2100,8 @@ packages:
2109
2100
  lines-and-columns@1.2.4:
2110
2101
  resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
2111
2102
 
2112
- lint-staged@15.2.11:
2113
- resolution: {integrity: sha512-Ev6ivCTYRTGs9ychvpVw35m/bcNDuBN+mnTeObCL5h+boS5WzBEC6LHI4I9F/++sZm1m+J2LEiy0gxL/R9TBqQ==}
2103
+ lint-staged@15.5.0:
2104
+ resolution: {integrity: sha512-WyCzSbfYGhK7cU+UuDDkzUiytbfbi0ZdPy2orwtM75P3WTtQBzmG40cCxIa8Ii2+XjfxzLH6Be46tUfWS85Xfg==}
2114
2105
  engines: {node: '>=18.12.0'}
2115
2106
  hasBin: true
2116
2107
 
@@ -2198,10 +2189,6 @@ packages:
2198
2189
  resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
2199
2190
  engines: {node: '>= 0.6'}
2200
2191
 
2201
- micromatch@4.0.7:
2202
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
2203
- engines: {node: '>=8.6'}
2204
-
2205
2192
  micromatch@4.0.8:
2206
2193
  resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
2207
2194
  engines: {node: '>=8.6'}
@@ -2289,9 +2276,6 @@ packages:
2289
2276
  ms@2.0.0:
2290
2277
  resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
2291
2278
 
2292
- ms@2.1.2:
2293
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
2294
-
2295
2279
  ms@2.1.3:
2296
2280
  resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
2297
2281
 
@@ -2496,9 +2480,6 @@ packages:
2496
2480
  pend@1.2.0:
2497
2481
  resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
2498
2482
 
2499
- picocolors@1.0.1:
2500
- resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
2501
-
2502
2483
  picocolors@1.1.1:
2503
2484
  resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
2504
2485
 
@@ -2543,8 +2524,8 @@ packages:
2543
2524
  resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
2544
2525
  engines: {node: '>= 0.8.0'}
2545
2526
 
2546
- prettier@3.4.2:
2547
- resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
2527
+ prettier@3.5.3:
2528
+ resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
2548
2529
  engines: {node: '>=14'}
2549
2530
  hasBin: true
2550
2531
 
@@ -2691,6 +2672,9 @@ packages:
2691
2672
  rxjs@7.8.1:
2692
2673
  resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
2693
2674
 
2675
+ rxjs@7.8.2:
2676
+ resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
2677
+
2694
2678
  safe-buffer@5.1.2:
2695
2679
  resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
2696
2680
 
@@ -2893,8 +2877,8 @@ packages:
2893
2877
  resolution: {integrity: sha512-xuW7dzkUpcJq7QnhOsnNUgtYp3xRwpt2F7abdRYIpCsAt0hhUqia0EdxyXZQQpNmGtsCzYHryaKSV3q3GJnq7w==}
2894
2878
  engines: {node: '>=14.18.0'}
2895
2879
 
2896
- supertest@7.0.0:
2897
- resolution: {integrity: sha512-qlsr7fIC0lSddmA3tzojvzubYxvlGtzumcdHgPwbFWMISQwL22MhM2Y3LNt+6w9Yyx7559VW5ab70dgphm8qQA==}
2880
+ supertest@7.1.0:
2881
+ resolution: {integrity: sha512-5QeSO8hSrKghtcWEoPiO036fxH0Ii2wVQfFZSP0oqQhmjk8bOLhDFXr4JrvaFmPuEWUoq4znY3uSi8UzLKxGqw==}
2898
2882
  engines: {node: '>=14.18.0'}
2899
2883
 
2900
2884
  supports-color@5.5.0:
@@ -3002,11 +2986,11 @@ packages:
3002
2986
  resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
3003
2987
  hasBin: true
3004
2988
 
3005
- ts-api-utils@1.4.3:
3006
- resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
3007
- engines: {node: '>=16'}
2989
+ ts-api-utils@2.1.0:
2990
+ resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
2991
+ engines: {node: '>=18.12'}
3008
2992
  peerDependencies:
3009
- typescript: '>=4.2.0'
2993
+ typescript: '>=4.8.4'
3010
2994
 
3011
2995
  ts-deepmerge@6.2.1:
3012
2996
  resolution: {integrity: sha512-8CYSLazCyj0DJDpPIxOFzJG46r93uh6EynYjuey+bxcLltBeqZL7DMfaE5ZPzZNFlav7wx+2TDa/mBl8gkTYzw==}
@@ -3038,8 +3022,8 @@ packages:
3038
3022
  resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
3039
3023
  engines: {node: '>=10'}
3040
3024
 
3041
- type-fest@4.30.2:
3042
- resolution: {integrity: sha512-UJShLPYi1aWqCdq9HycOL/gwsuqda1OISdBO3t8RlXQC4QvtuIz4b5FCfe2dQIWEpmlRExKmcTBfP1r9bhY7ig==}
3025
+ type-fest@4.38.0:
3026
+ resolution: {integrity: sha512-2dBz5D5ycHIoliLYLi0Q2V7KRaDlH0uWIvmk7TYlAg5slqwiPv1ezJdZm1QEM0xgk29oYWMCbIG7E6gHpvChlg==}
3043
3027
  engines: {node: '>=16'}
3044
3028
 
3045
3029
  type-is@1.6.18:
@@ -3049,18 +3033,23 @@ packages:
3049
3033
  typedarray@0.0.6:
3050
3034
  resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
3051
3035
 
3052
- typescript-eslint@8.18.1:
3053
- resolution: {integrity: sha512-Mlaw6yxuaDEPQvb/2Qwu3/TfgeBHy9iTJ3mTwe7OvpPmF6KPQjVOfGyEJpPv6Ez2C34OODChhXrzYw/9phI0MQ==}
3036
+ typescript-eslint@8.28.0:
3037
+ resolution: {integrity: sha512-jfZtxJoHm59bvoCMYCe2BM0/baMswRhMmYhy+w6VfcyHrjxZ0OJe0tGasydCpIpA+A/WIJhTyZfb3EtwNC/kHQ==}
3054
3038
  engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
3055
3039
  peerDependencies:
3056
3040
  eslint: ^8.57.0 || ^9.0.0
3057
- typescript: '>=4.8.4 <5.8.0'
3041
+ typescript: '>=4.8.4 <5.9.0'
3058
3042
 
3059
3043
  typescript@5.7.2:
3060
3044
  resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
3061
3045
  engines: {node: '>=14.17'}
3062
3046
  hasBin: true
3063
3047
 
3048
+ typescript@5.8.2:
3049
+ resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
3050
+ engines: {node: '>=14.17'}
3051
+ hasBin: true
3052
+
3064
3053
  ufo@1.5.4:
3065
3054
  resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
3066
3055
 
@@ -3244,8 +3233,8 @@ packages:
3244
3233
  resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
3245
3234
  engines: {node: '>=0.4'}
3246
3235
 
3247
- yaml@2.6.1:
3248
- resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
3236
+ yaml@2.7.1:
3237
+ resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==}
3249
3238
  engines: {node: '>= 14'}
3250
3239
  hasBin: true
3251
3240
 
@@ -3265,8 +3254,8 @@ packages:
3265
3254
  resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
3266
3255
  engines: {node: '>=12.20'}
3267
3256
 
3268
- zod@3.24.1:
3269
- resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
3257
+ zod@3.24.2:
3258
+ resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==}
3270
3259
 
3271
3260
  snapshots:
3272
3261
 
@@ -3275,11 +3264,11 @@ snapshots:
3275
3264
  '@jridgewell/gen-mapping': 0.3.5
3276
3265
  '@jridgewell/trace-mapping': 0.3.25
3277
3266
 
3278
- '@anatine/zod-openapi@2.2.6(openapi3-ts@4.3.3)(zod@3.24.1)':
3267
+ '@anatine/zod-openapi@2.2.7(openapi3-ts@4.3.3)(zod@3.24.2)':
3279
3268
  dependencies:
3280
3269
  openapi3-ts: 4.3.3
3281
3270
  ts-deepmerge: 6.2.1
3282
- zod: 3.24.1
3271
+ zod: 3.24.2
3283
3272
 
3284
3273
  '@angular-devkit/core@17.3.11(chokidar@3.6.0)':
3285
3274
  dependencies:
@@ -3413,28 +3402,28 @@ snapshots:
3413
3402
  '@esbuild/win32-x64@0.21.5':
3414
3403
  optional: true
3415
3404
 
3416
- '@eslint-community/eslint-utils@4.4.0(eslint@9.17.0)':
3405
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.23.0)':
3417
3406
  dependencies:
3418
- eslint: 9.17.0
3407
+ eslint: 9.23.0
3419
3408
  eslint-visitor-keys: 3.4.3
3420
3409
 
3421
- '@eslint-community/regexpp@4.11.0': {}
3422
-
3423
3410
  '@eslint-community/regexpp@4.12.1': {}
3424
3411
 
3425
- '@eslint/config-array@0.19.1':
3412
+ '@eslint/config-array@0.19.2':
3426
3413
  dependencies:
3427
- '@eslint/object-schema': 2.1.5
3414
+ '@eslint/object-schema': 2.1.6
3428
3415
  debug: 4.4.0
3429
3416
  minimatch: 3.1.2
3430
3417
  transitivePeerDependencies:
3431
3418
  - supports-color
3432
3419
 
3433
- '@eslint/core@0.9.1':
3420
+ '@eslint/config-helpers@0.2.0': {}
3421
+
3422
+ '@eslint/core@0.12.0':
3434
3423
  dependencies:
3435
3424
  '@types/json-schema': 7.0.15
3436
3425
 
3437
- '@eslint/eslintrc@3.2.0':
3426
+ '@eslint/eslintrc@3.3.1':
3438
3427
  dependencies:
3439
3428
  ajv: 6.12.6
3440
3429
  debug: 4.4.0
@@ -3448,15 +3437,16 @@ snapshots:
3448
3437
  transitivePeerDependencies:
3449
3438
  - supports-color
3450
3439
 
3451
- '@eslint/js@9.17.0': {}
3440
+ '@eslint/js@9.23.0': {}
3452
3441
 
3453
- '@eslint/object-schema@2.1.5': {}
3442
+ '@eslint/object-schema@2.1.6': {}
3454
3443
 
3455
- '@eslint/plugin-kit@0.2.4':
3444
+ '@eslint/plugin-kit@0.2.7':
3456
3445
  dependencies:
3446
+ '@eslint/core': 0.12.0
3457
3447
  levn: 0.4.1
3458
3448
 
3459
- '@faker-js/faker@9.3.0': {}
3449
+ '@faker-js/faker@9.6.0': {}
3460
3450
 
3461
3451
  '@fastify/accept-negotiator@2.0.1': {}
3462
3452
 
@@ -3525,7 +3515,7 @@ snapshots:
3525
3515
 
3526
3516
  '@humanwhocodes/retry@0.3.1': {}
3527
3517
 
3528
- '@humanwhocodes/retry@0.4.1': {}
3518
+ '@humanwhocodes/retry@0.4.2': {}
3529
3519
 
3530
3520
  '@isaacs/cliui@8.0.2':
3531
3521
  dependencies:
@@ -3574,7 +3564,7 @@ snapshots:
3574
3564
 
3575
3565
  '@microsoft/tsdoc@0.15.0': {}
3576
3566
 
3577
- '@nestjs/cli@10.4.9(@swc/cli@0.5.2(@swc/core@1.10.1)(chokidar@3.6.0))(@swc/core@1.10.1)':
3567
+ '@nestjs/cli@10.4.9(@swc/cli@0.6.0(@swc/core@1.11.13)(chokidar@3.6.0))(@swc/core@1.11.13)':
3578
3568
  dependencies:
3579
3569
  '@angular-devkit/core': 17.3.11(chokidar@3.6.0)
3580
3570
  '@angular-devkit/schematics': 17.3.11(chokidar@3.6.0)
@@ -3584,7 +3574,7 @@ snapshots:
3584
3574
  chokidar: 3.6.0
3585
3575
  cli-table3: 0.6.5
3586
3576
  commander: 4.1.1
3587
- fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.10.1))
3577
+ fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.11.13))
3588
3578
  glob: 10.4.5
3589
3579
  inquirer: 8.2.6
3590
3580
  node-emoji: 1.11.0
@@ -3593,49 +3583,49 @@ snapshots:
3593
3583
  tsconfig-paths: 4.2.0
3594
3584
  tsconfig-paths-webpack-plugin: 4.2.0
3595
3585
  typescript: 5.7.2
3596
- webpack: 5.97.1(@swc/core@1.10.1)
3586
+ webpack: 5.97.1(@swc/core@1.11.13)
3597
3587
  webpack-node-externals: 3.0.0
3598
3588
  optionalDependencies:
3599
- '@swc/cli': 0.5.2(@swc/core@1.10.1)(chokidar@3.6.0)
3600
- '@swc/core': 1.10.1
3589
+ '@swc/cli': 0.6.0(@swc/core@1.11.13)(chokidar@3.6.0)
3590
+ '@swc/core': 1.11.13
3601
3591
  transitivePeerDependencies:
3602
3592
  - esbuild
3603
3593
  - uglify-js
3604
3594
  - webpack-cli
3605
3595
 
3606
- '@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1)':
3596
+ '@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2)':
3607
3597
  dependencies:
3608
3598
  iterare: 1.2.1
3609
3599
  reflect-metadata: 0.2.2
3610
- rxjs: 7.8.1
3600
+ rxjs: 7.8.2
3611
3601
  tslib: 2.8.1
3612
3602
  uid: 2.0.2
3613
3603
 
3614
- '@nestjs/core@10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.1)':
3604
+ '@nestjs/core@10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.2)':
3615
3605
  dependencies:
3616
- '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1)
3606
+ '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2)
3617
3607
  '@nuxtjs/opencollective': 0.3.2
3618
3608
  fast-safe-stringify: 2.1.1
3619
3609
  iterare: 1.2.1
3620
3610
  path-to-regexp: 3.3.0
3621
3611
  reflect-metadata: 0.2.2
3622
- rxjs: 7.8.1
3612
+ rxjs: 7.8.2
3623
3613
  tslib: 2.8.1
3624
3614
  uid: 2.0.2
3625
3615
  optionalDependencies:
3626
- '@nestjs/platform-express': 10.3.10(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)
3616
+ '@nestjs/platform-express': 10.3.10(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.15)
3627
3617
  transitivePeerDependencies:
3628
3618
  - encoding
3629
3619
 
3630
- '@nestjs/mapped-types@2.0.5(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(reflect-metadata@0.2.2)':
3620
+ '@nestjs/mapped-types@2.0.5(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(reflect-metadata@0.2.2)':
3631
3621
  dependencies:
3632
- '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1)
3622
+ '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2)
3633
3623
  reflect-metadata: 0.2.2
3634
3624
 
3635
- '@nestjs/platform-express@10.3.10(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)':
3625
+ '@nestjs/platform-express@10.3.10(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.15)':
3636
3626
  dependencies:
3637
- '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1)
3638
- '@nestjs/core': 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.1)
3627
+ '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2)
3628
+ '@nestjs/core': 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.2)
3639
3629
  body-parser: 1.20.2
3640
3630
  cors: 2.8.5
3641
3631
  express: 4.19.2
@@ -3645,13 +3635,13 @@ snapshots:
3645
3635
  - supports-color
3646
3636
  optional: true
3647
3637
 
3648
- '@nestjs/platform-fastify@10.4.15(@fastify/static@8.1.1)(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)':
3638
+ '@nestjs/platform-fastify@10.4.15(@fastify/static@8.1.1)(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.15)':
3649
3639
  dependencies:
3650
3640
  '@fastify/cors': 9.0.1
3651
3641
  '@fastify/formbody': 7.4.0
3652
3642
  '@fastify/middie': 8.3.3
3653
- '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1)
3654
- '@nestjs/core': 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.1)
3643
+ '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2)
3644
+ '@nestjs/core': 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.2)
3655
3645
  fastify: 4.28.1
3656
3646
  light-my-request: 6.3.0
3657
3647
  path-to-regexp: 3.3.0
@@ -3670,12 +3660,23 @@ snapshots:
3670
3660
  transitivePeerDependencies:
3671
3661
  - chokidar
3672
3662
 
3673
- '@nestjs/swagger@7.4.2(@fastify/static@8.1.1)(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)(reflect-metadata@0.2.2)':
3663
+ '@nestjs/schematics@10.2.3(chokidar@3.6.0)(typescript@5.8.2)':
3664
+ dependencies:
3665
+ '@angular-devkit/core': 17.3.11(chokidar@3.6.0)
3666
+ '@angular-devkit/schematics': 17.3.11(chokidar@3.6.0)
3667
+ comment-json: 4.2.5
3668
+ jsonc-parser: 3.3.1
3669
+ pluralize: 8.0.0
3670
+ typescript: 5.8.2
3671
+ transitivePeerDependencies:
3672
+ - chokidar
3673
+
3674
+ '@nestjs/swagger@7.4.2(@fastify/static@8.1.1)(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.15)(reflect-metadata@0.2.2)':
3674
3675
  dependencies:
3675
3676
  '@microsoft/tsdoc': 0.15.0
3676
- '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1)
3677
- '@nestjs/core': 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.1)
3678
- '@nestjs/mapped-types': 2.0.5(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(reflect-metadata@0.2.2)
3677
+ '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2)
3678
+ '@nestjs/core': 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.2)
3679
+ '@nestjs/mapped-types': 2.0.5(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(reflect-metadata@0.2.2)
3679
3680
  js-yaml: 4.1.0
3680
3681
  lodash: 4.17.21
3681
3682
  path-to-regexp: 3.3.0
@@ -3684,13 +3685,13 @@ snapshots:
3684
3685
  optionalDependencies:
3685
3686
  '@fastify/static': 8.1.1
3686
3687
 
3687
- '@nestjs/testing@10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)(@nestjs/platform-express@10.3.10)':
3688
+ '@nestjs/testing@10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.15)(@nestjs/platform-express@10.3.10)':
3688
3689
  dependencies:
3689
- '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1)
3690
- '@nestjs/core': 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.1)
3690
+ '@nestjs/common': 10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2)
3691
+ '@nestjs/core': 10.4.15(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.2.2)(rxjs@7.8.2)
3691
3692
  tslib: 2.8.1
3692
3693
  optionalDependencies:
3693
- '@nestjs/platform-express': 10.3.10(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)
3694
+ '@nestjs/platform-express': 10.3.10(@nestjs/common@10.4.15(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@10.4.15)
3694
3695
 
3695
3696
  '@nodelib/fs.scandir@2.1.5':
3696
3697
  dependencies:
@@ -3777,9 +3778,9 @@ snapshots:
3777
3778
 
3778
3779
  '@sindresorhus/is@5.6.0': {}
3779
3780
 
3780
- '@swc/cli@0.5.2(@swc/core@1.10.1)(chokidar@3.6.0)':
3781
+ '@swc/cli@0.6.0(@swc/core@1.11.13)(chokidar@3.6.0)':
3781
3782
  dependencies:
3782
- '@swc/core': 1.10.1
3783
+ '@swc/core': 1.11.13
3783
3784
  '@swc/counter': 0.1.3
3784
3785
  '@xhmikosr/bin-wrapper': 13.0.5
3785
3786
  commander: 8.3.0
@@ -3792,55 +3793,55 @@ snapshots:
3792
3793
  optionalDependencies:
3793
3794
  chokidar: 3.6.0
3794
3795
 
3795
- '@swc/core-darwin-arm64@1.10.1':
3796
+ '@swc/core-darwin-arm64@1.11.13':
3796
3797
  optional: true
3797
3798
 
3798
- '@swc/core-darwin-x64@1.10.1':
3799
+ '@swc/core-darwin-x64@1.11.13':
3799
3800
  optional: true
3800
3801
 
3801
- '@swc/core-linux-arm-gnueabihf@1.10.1':
3802
+ '@swc/core-linux-arm-gnueabihf@1.11.13':
3802
3803
  optional: true
3803
3804
 
3804
- '@swc/core-linux-arm64-gnu@1.10.1':
3805
+ '@swc/core-linux-arm64-gnu@1.11.13':
3805
3806
  optional: true
3806
3807
 
3807
- '@swc/core-linux-arm64-musl@1.10.1':
3808
+ '@swc/core-linux-arm64-musl@1.11.13':
3808
3809
  optional: true
3809
3810
 
3810
- '@swc/core-linux-x64-gnu@1.10.1':
3811
+ '@swc/core-linux-x64-gnu@1.11.13':
3811
3812
  optional: true
3812
3813
 
3813
- '@swc/core-linux-x64-musl@1.10.1':
3814
+ '@swc/core-linux-x64-musl@1.11.13':
3814
3815
  optional: true
3815
3816
 
3816
- '@swc/core-win32-arm64-msvc@1.10.1':
3817
+ '@swc/core-win32-arm64-msvc@1.11.13':
3817
3818
  optional: true
3818
3819
 
3819
- '@swc/core-win32-ia32-msvc@1.10.1':
3820
+ '@swc/core-win32-ia32-msvc@1.11.13':
3820
3821
  optional: true
3821
3822
 
3822
- '@swc/core-win32-x64-msvc@1.10.1':
3823
+ '@swc/core-win32-x64-msvc@1.11.13':
3823
3824
  optional: true
3824
3825
 
3825
- '@swc/core@1.10.1':
3826
+ '@swc/core@1.11.13':
3826
3827
  dependencies:
3827
3828
  '@swc/counter': 0.1.3
3828
- '@swc/types': 0.1.17
3829
+ '@swc/types': 0.1.20
3829
3830
  optionalDependencies:
3830
- '@swc/core-darwin-arm64': 1.10.1
3831
- '@swc/core-darwin-x64': 1.10.1
3832
- '@swc/core-linux-arm-gnueabihf': 1.10.1
3833
- '@swc/core-linux-arm64-gnu': 1.10.1
3834
- '@swc/core-linux-arm64-musl': 1.10.1
3835
- '@swc/core-linux-x64-gnu': 1.10.1
3836
- '@swc/core-linux-x64-musl': 1.10.1
3837
- '@swc/core-win32-arm64-msvc': 1.10.1
3838
- '@swc/core-win32-ia32-msvc': 1.10.1
3839
- '@swc/core-win32-x64-msvc': 1.10.1
3831
+ '@swc/core-darwin-arm64': 1.11.13
3832
+ '@swc/core-darwin-x64': 1.11.13
3833
+ '@swc/core-linux-arm-gnueabihf': 1.11.13
3834
+ '@swc/core-linux-arm64-gnu': 1.11.13
3835
+ '@swc/core-linux-arm64-musl': 1.11.13
3836
+ '@swc/core-linux-x64-gnu': 1.11.13
3837
+ '@swc/core-linux-x64-musl': 1.11.13
3838
+ '@swc/core-win32-arm64-msvc': 1.11.13
3839
+ '@swc/core-win32-ia32-msvc': 1.11.13
3840
+ '@swc/core-win32-x64-msvc': 1.11.13
3840
3841
 
3841
3842
  '@swc/counter@0.1.3': {}
3842
3843
 
3843
- '@swc/types@0.1.17':
3844
+ '@swc/types@0.1.20':
3844
3845
  dependencies:
3845
3846
  '@swc/counter': 0.1.3
3846
3847
 
@@ -3874,7 +3875,7 @@ snapshots:
3874
3875
 
3875
3876
  '@types/mime-types@2.1.4': {}
3876
3877
 
3877
- '@types/node@22.10.2':
3878
+ '@types/node@22.13.14':
3878
3879
  dependencies:
3879
3880
  undici-types: 6.20.0
3880
3881
 
@@ -3882,117 +3883,117 @@ snapshots:
3882
3883
  dependencies:
3883
3884
  '@types/cookiejar': 2.1.5
3884
3885
  '@types/methods': 1.1.4
3885
- '@types/node': 22.10.2
3886
+ '@types/node': 22.13.14
3886
3887
  form-data: 4.0.0
3887
3888
 
3888
- '@types/supertest@6.0.2':
3889
+ '@types/supertest@6.0.3':
3889
3890
  dependencies:
3890
3891
  '@types/methods': 1.1.4
3891
3892
  '@types/superagent': 8.1.8
3892
3893
 
3893
- '@typescript-eslint/eslint-plugin@8.18.1(@typescript-eslint/parser@8.18.1(eslint@9.17.0)(typescript@5.7.2))(eslint@9.17.0)(typescript@5.7.2)':
3894
+ '@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)':
3894
3895
  dependencies:
3895
- '@eslint-community/regexpp': 4.11.0
3896
- '@typescript-eslint/parser': 8.18.1(eslint@9.17.0)(typescript@5.7.2)
3897
- '@typescript-eslint/scope-manager': 8.18.1
3898
- '@typescript-eslint/type-utils': 8.18.1(eslint@9.17.0)(typescript@5.7.2)
3899
- '@typescript-eslint/utils': 8.18.1(eslint@9.17.0)(typescript@5.7.2)
3900
- '@typescript-eslint/visitor-keys': 8.18.1
3901
- eslint: 9.17.0
3896
+ '@eslint-community/regexpp': 4.12.1
3897
+ '@typescript-eslint/parser': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
3898
+ '@typescript-eslint/scope-manager': 8.28.0
3899
+ '@typescript-eslint/type-utils': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
3900
+ '@typescript-eslint/utils': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
3901
+ '@typescript-eslint/visitor-keys': 8.28.0
3902
+ eslint: 9.23.0
3902
3903
  graphemer: 1.4.0
3903
3904
  ignore: 5.3.1
3904
3905
  natural-compare: 1.4.0
3905
- ts-api-utils: 1.4.3(typescript@5.7.2)
3906
- typescript: 5.7.2
3906
+ ts-api-utils: 2.1.0(typescript@5.8.2)
3907
+ typescript: 5.8.2
3907
3908
  transitivePeerDependencies:
3908
3909
  - supports-color
3909
3910
 
3910
- '@typescript-eslint/parser@8.18.1(eslint@9.17.0)(typescript@5.7.2)':
3911
+ '@typescript-eslint/parser@8.28.0(eslint@9.23.0)(typescript@5.8.2)':
3911
3912
  dependencies:
3912
- '@typescript-eslint/scope-manager': 8.18.1
3913
- '@typescript-eslint/types': 8.18.1
3914
- '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2)
3915
- '@typescript-eslint/visitor-keys': 8.18.1
3913
+ '@typescript-eslint/scope-manager': 8.28.0
3914
+ '@typescript-eslint/types': 8.28.0
3915
+ '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2)
3916
+ '@typescript-eslint/visitor-keys': 8.28.0
3916
3917
  debug: 4.4.0
3917
- eslint: 9.17.0
3918
- typescript: 5.7.2
3918
+ eslint: 9.23.0
3919
+ typescript: 5.8.2
3919
3920
  transitivePeerDependencies:
3920
3921
  - supports-color
3921
3922
 
3922
- '@typescript-eslint/scope-manager@8.18.1':
3923
+ '@typescript-eslint/scope-manager@8.28.0':
3923
3924
  dependencies:
3924
- '@typescript-eslint/types': 8.18.1
3925
- '@typescript-eslint/visitor-keys': 8.18.1
3925
+ '@typescript-eslint/types': 8.28.0
3926
+ '@typescript-eslint/visitor-keys': 8.28.0
3926
3927
 
3927
- '@typescript-eslint/type-utils@8.18.1(eslint@9.17.0)(typescript@5.7.2)':
3928
+ '@typescript-eslint/type-utils@8.28.0(eslint@9.23.0)(typescript@5.8.2)':
3928
3929
  dependencies:
3929
- '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2)
3930
- '@typescript-eslint/utils': 8.18.1(eslint@9.17.0)(typescript@5.7.2)
3930
+ '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2)
3931
+ '@typescript-eslint/utils': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
3931
3932
  debug: 4.4.0
3932
- eslint: 9.17.0
3933
- ts-api-utils: 1.4.3(typescript@5.7.2)
3934
- typescript: 5.7.2
3933
+ eslint: 9.23.0
3934
+ ts-api-utils: 2.1.0(typescript@5.8.2)
3935
+ typescript: 5.8.2
3935
3936
  transitivePeerDependencies:
3936
3937
  - supports-color
3937
3938
 
3938
- '@typescript-eslint/types@8.18.1': {}
3939
+ '@typescript-eslint/types@8.28.0': {}
3939
3940
 
3940
- '@typescript-eslint/typescript-estree@8.18.1(typescript@5.7.2)':
3941
+ '@typescript-eslint/typescript-estree@8.28.0(typescript@5.8.2)':
3941
3942
  dependencies:
3942
- '@typescript-eslint/types': 8.18.1
3943
- '@typescript-eslint/visitor-keys': 8.18.1
3943
+ '@typescript-eslint/types': 8.28.0
3944
+ '@typescript-eslint/visitor-keys': 8.28.0
3944
3945
  debug: 4.4.0
3945
3946
  fast-glob: 3.3.2
3946
3947
  is-glob: 4.0.3
3947
3948
  minimatch: 9.0.5
3948
3949
  semver: 7.6.3
3949
- ts-api-utils: 1.4.3(typescript@5.7.2)
3950
- typescript: 5.7.2
3950
+ ts-api-utils: 2.1.0(typescript@5.8.2)
3951
+ typescript: 5.8.2
3951
3952
  transitivePeerDependencies:
3952
3953
  - supports-color
3953
3954
 
3954
- '@typescript-eslint/utils@8.18.1(eslint@9.17.0)(typescript@5.7.2)':
3955
+ '@typescript-eslint/utils@8.28.0(eslint@9.23.0)(typescript@5.8.2)':
3955
3956
  dependencies:
3956
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.17.0)
3957
- '@typescript-eslint/scope-manager': 8.18.1
3958
- '@typescript-eslint/types': 8.18.1
3959
- '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2)
3960
- eslint: 9.17.0
3961
- typescript: 5.7.2
3957
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.23.0)
3958
+ '@typescript-eslint/scope-manager': 8.28.0
3959
+ '@typescript-eslint/types': 8.28.0
3960
+ '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2)
3961
+ eslint: 9.23.0
3962
+ typescript: 5.8.2
3962
3963
  transitivePeerDependencies:
3963
3964
  - supports-color
3964
3965
 
3965
- '@typescript-eslint/visitor-keys@8.18.1':
3966
+ '@typescript-eslint/visitor-keys@8.28.0':
3966
3967
  dependencies:
3967
- '@typescript-eslint/types': 8.18.1
3968
+ '@typescript-eslint/types': 8.28.0
3968
3969
  eslint-visitor-keys: 4.2.0
3969
3970
 
3970
- '@vitest/coverage-v8@1.6.0(vitest@1.6.1(@types/node@22.10.2)(terser@5.31.3))':
3971
+ '@vitest/coverage-v8@1.6.1(vitest@1.6.1(@types/node@22.13.14)(terser@5.31.3))':
3971
3972
  dependencies:
3972
3973
  '@ampproject/remapping': 2.3.0
3973
3974
  '@bcoe/v8-coverage': 0.2.3
3974
- debug: 4.3.5
3975
+ debug: 4.4.0
3975
3976
  istanbul-lib-coverage: 3.2.2
3976
3977
  istanbul-lib-report: 3.0.1
3977
3978
  istanbul-lib-source-maps: 5.0.6
3978
3979
  istanbul-reports: 3.1.7
3979
3980
  magic-string: 0.30.10
3980
3981
  magicast: 0.3.4
3981
- picocolors: 1.0.1
3982
+ picocolors: 1.1.1
3982
3983
  std-env: 3.7.0
3983
3984
  strip-literal: 2.1.0
3984
3985
  test-exclude: 6.0.0
3985
- vitest: 1.6.1(@types/node@22.10.2)(terser@5.31.3)
3986
+ vitest: 1.6.1(@types/node@22.13.14)(terser@5.31.3)
3986
3987
  transitivePeerDependencies:
3987
3988
  - supports-color
3988
3989
 
3989
- '@vitest/eslint-plugin@1.1.18(@typescript-eslint/utils@8.18.1(eslint@9.17.0)(typescript@5.7.2))(eslint@9.17.0)(typescript@5.7.2)(vitest@1.6.1(@types/node@22.10.2)(terser@5.31.3))':
3990
+ '@vitest/eslint-plugin@1.1.38(@typescript-eslint/utils@8.28.0(eslint@9.23.0)(typescript@5.8.2))(eslint@9.23.0)(typescript@5.8.2)(vitest@1.6.1(@types/node@22.13.14)(terser@5.31.3))':
3990
3991
  dependencies:
3991
- '@typescript-eslint/utils': 8.18.1(eslint@9.17.0)(typescript@5.7.2)
3992
- eslint: 9.17.0
3992
+ '@typescript-eslint/utils': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
3993
+ eslint: 9.23.0
3993
3994
  optionalDependencies:
3994
- typescript: 5.7.2
3995
- vitest: 1.6.1(@types/node@22.10.2)(terser@5.31.3)
3995
+ typescript: 5.8.2
3996
+ vitest: 1.6.1(@types/node@22.13.14)(terser@5.31.3)
3996
3997
 
3997
3998
  '@vitest/expect@1.6.1':
3998
3999
  dependencies:
@@ -4413,6 +4414,8 @@ snapshots:
4413
4414
 
4414
4415
  chalk@5.3.0: {}
4415
4416
 
4417
+ chalk@5.4.1: {}
4418
+
4416
4419
  chardet@0.7.0: {}
4417
4420
 
4418
4421
  check-error@1.0.3:
@@ -4478,7 +4481,7 @@ snapshots:
4478
4481
  dependencies:
4479
4482
  delayed-stream: 1.0.0
4480
4483
 
4481
- commander@12.1.0: {}
4484
+ commander@13.1.0: {}
4482
4485
 
4483
4486
  commander@2.20.3: {}
4484
4487
 
@@ -4552,12 +4555,6 @@ snapshots:
4552
4555
  optionalDependencies:
4553
4556
  typescript: 5.7.2
4554
4557
 
4555
- cross-spawn@7.0.3:
4556
- dependencies:
4557
- path-key: 3.1.1
4558
- shebang-command: 2.0.0
4559
- which: 2.0.2
4560
-
4561
4558
  cross-spawn@7.0.6:
4562
4559
  dependencies:
4563
4560
  path-key: 3.1.1
@@ -4569,10 +4566,6 @@ snapshots:
4569
4566
  ms: 2.0.0
4570
4567
  optional: true
4571
4568
 
4572
- debug@4.3.5:
4573
- dependencies:
4574
- ms: 2.1.2
4575
-
4576
4569
  debug@4.4.0:
4577
4570
  dependencies:
4578
4571
  ms: 2.1.3
@@ -4687,16 +4680,16 @@ snapshots:
4687
4680
 
4688
4681
  escape-string-regexp@4.0.0: {}
4689
4682
 
4690
- eslint-config-prettier@9.1.0(eslint@9.17.0):
4683
+ eslint-config-prettier@9.1.0(eslint@9.23.0):
4691
4684
  dependencies:
4692
- eslint: 9.17.0
4685
+ eslint: 9.23.0
4693
4686
 
4694
4687
  eslint-scope@5.1.1:
4695
4688
  dependencies:
4696
4689
  esrecurse: 4.3.0
4697
4690
  estraverse: 4.3.0
4698
4691
 
4699
- eslint-scope@8.2.0:
4692
+ eslint-scope@8.3.0:
4700
4693
  dependencies:
4701
4694
  esrecurse: 4.3.0
4702
4695
  estraverse: 5.3.0
@@ -4705,18 +4698,19 @@ snapshots:
4705
4698
 
4706
4699
  eslint-visitor-keys@4.2.0: {}
4707
4700
 
4708
- eslint@9.17.0:
4701
+ eslint@9.23.0:
4709
4702
  dependencies:
4710
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.17.0)
4703
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.23.0)
4711
4704
  '@eslint-community/regexpp': 4.12.1
4712
- '@eslint/config-array': 0.19.1
4713
- '@eslint/core': 0.9.1
4714
- '@eslint/eslintrc': 3.2.0
4715
- '@eslint/js': 9.17.0
4716
- '@eslint/plugin-kit': 0.2.4
4705
+ '@eslint/config-array': 0.19.2
4706
+ '@eslint/config-helpers': 0.2.0
4707
+ '@eslint/core': 0.12.0
4708
+ '@eslint/eslintrc': 3.3.1
4709
+ '@eslint/js': 9.23.0
4710
+ '@eslint/plugin-kit': 0.2.7
4717
4711
  '@humanfs/node': 0.16.6
4718
4712
  '@humanwhocodes/module-importer': 1.0.1
4719
- '@humanwhocodes/retry': 0.4.1
4713
+ '@humanwhocodes/retry': 0.4.2
4720
4714
  '@types/estree': 1.0.6
4721
4715
  '@types/json-schema': 7.0.15
4722
4716
  ajv: 6.12.6
@@ -4724,7 +4718,7 @@ snapshots:
4724
4718
  cross-spawn: 7.0.6
4725
4719
  debug: 4.4.0
4726
4720
  escape-string-regexp: 4.0.0
4727
- eslint-scope: 8.2.0
4721
+ eslint-scope: 8.3.0
4728
4722
  eslint-visitor-keys: 4.2.0
4729
4723
  espree: 10.3.0
4730
4724
  esquery: 1.6.0
@@ -4783,7 +4777,7 @@ snapshots:
4783
4777
 
4784
4778
  execa@5.1.1:
4785
4779
  dependencies:
4786
- cross-spawn: 7.0.3
4780
+ cross-spawn: 7.0.6
4787
4781
  get-stream: 6.0.1
4788
4782
  human-signals: 2.1.0
4789
4783
  is-stream: 2.0.1
@@ -4795,7 +4789,7 @@ snapshots:
4795
4789
 
4796
4790
  execa@8.0.1:
4797
4791
  dependencies:
4798
- cross-spawn: 7.0.3
4792
+ cross-spawn: 7.0.6
4799
4793
  get-stream: 8.0.1
4800
4794
  human-signals: 5.0.0
4801
4795
  is-stream: 3.0.0
@@ -4871,7 +4865,7 @@ snapshots:
4871
4865
  '@nodelib/fs.walk': 1.2.8
4872
4866
  glob-parent: 5.1.2
4873
4867
  merge2: 1.4.1
4874
- micromatch: 4.0.7
4868
+ micromatch: 4.0.8
4875
4869
 
4876
4870
  fast-json-stable-stringify@2.1.0: {}
4877
4871
 
@@ -5001,10 +4995,10 @@ snapshots:
5001
4995
 
5002
4996
  foreground-child@3.2.1:
5003
4997
  dependencies:
5004
- cross-spawn: 7.0.3
4998
+ cross-spawn: 7.0.6
5005
4999
  signal-exit: 4.1.0
5006
5000
 
5007
- fork-ts-checker-webpack-plugin@9.0.2(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.10.1)):
5001
+ fork-ts-checker-webpack-plugin@9.0.2(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.11.13)):
5008
5002
  dependencies:
5009
5003
  '@babel/code-frame': 7.24.7
5010
5004
  chalk: 4.1.2
@@ -5019,7 +5013,7 @@ snapshots:
5019
5013
  semver: 7.6.3
5020
5014
  tapable: 2.2.1
5021
5015
  typescript: 5.7.2
5022
- webpack: 5.97.1(@swc/core@1.10.1)
5016
+ webpack: 5.97.1(@swc/core@1.11.13)
5023
5017
 
5024
5018
  form-data-encoder@2.1.4: {}
5025
5019
 
@@ -5115,7 +5109,7 @@ snapshots:
5115
5109
 
5116
5110
  globals@14.0.0: {}
5117
5111
 
5118
- globals@15.14.0: {}
5112
+ globals@15.15.0: {}
5119
5113
 
5120
5114
  gopd@1.0.1:
5121
5115
  dependencies:
@@ -5216,7 +5210,7 @@ snapshots:
5216
5210
  mute-stream: 0.0.8
5217
5211
  ora: 5.4.1
5218
5212
  run-async: 2.4.1
5219
- rxjs: 7.8.1
5213
+ rxjs: 7.8.2
5220
5214
  string-width: 4.2.3
5221
5215
  strip-ansi: 6.0.1
5222
5216
  through: 2.3.8
@@ -5235,7 +5229,7 @@ snapshots:
5235
5229
  mute-stream: 1.0.0
5236
5230
  ora: 5.4.1
5237
5231
  run-async: 3.0.0
5238
- rxjs: 7.8.1
5232
+ rxjs: 7.8.2
5239
5233
  string-width: 4.2.3
5240
5234
  strip-ansi: 6.0.1
5241
5235
  wrap-ansi: 6.2.0
@@ -5296,7 +5290,7 @@ snapshots:
5296
5290
  istanbul-lib-source-maps@5.0.6:
5297
5291
  dependencies:
5298
5292
  '@jridgewell/trace-mapping': 0.3.25
5299
- debug: 4.3.5
5293
+ debug: 4.4.0
5300
5294
  istanbul-lib-coverage: 3.2.2
5301
5295
  transitivePeerDependencies:
5302
5296
  - supports-color
@@ -5320,7 +5314,7 @@ snapshots:
5320
5314
 
5321
5315
  jest-worker@27.5.1:
5322
5316
  dependencies:
5323
- '@types/node': 22.10.2
5317
+ '@types/node': 22.13.14
5324
5318
  merge-stream: 2.0.0
5325
5319
  supports-color: 8.1.1
5326
5320
 
@@ -5385,10 +5379,10 @@ snapshots:
5385
5379
 
5386
5380
  lines-and-columns@1.2.4: {}
5387
5381
 
5388
- lint-staged@15.2.11:
5382
+ lint-staged@15.5.0:
5389
5383
  dependencies:
5390
- chalk: 5.3.0
5391
- commander: 12.1.0
5384
+ chalk: 5.4.1
5385
+ commander: 13.1.0
5392
5386
  debug: 4.4.0
5393
5387
  execa: 8.0.1
5394
5388
  lilconfig: 3.1.3
@@ -5396,7 +5390,7 @@ snapshots:
5396
5390
  micromatch: 4.0.8
5397
5391
  pidtree: 0.6.0
5398
5392
  string-argv: 0.3.2
5399
- yaml: 2.6.1
5393
+ yaml: 2.7.1
5400
5394
  transitivePeerDependencies:
5401
5395
  - supports-color
5402
5396
 
@@ -5482,11 +5476,6 @@ snapshots:
5482
5476
 
5483
5477
  methods@1.1.2: {}
5484
5478
 
5485
- micromatch@4.0.7:
5486
- dependencies:
5487
- braces: 3.0.3
5488
- picomatch: 2.3.1
5489
-
5490
5479
  micromatch@4.0.8:
5491
5480
  dependencies:
5492
5481
  braces: 3.0.3
@@ -5554,8 +5543,6 @@ snapshots:
5554
5543
  ms@2.0.0:
5555
5544
  optional: true
5556
5545
 
5557
- ms@2.1.2: {}
5558
-
5559
5546
  ms@2.1.3: {}
5560
5547
 
5561
5548
  multer@1.4.4-lts.1:
@@ -5649,7 +5636,7 @@ snapshots:
5649
5636
 
5650
5637
  openapi3-ts@4.3.3:
5651
5638
  dependencies:
5652
- yaml: 2.6.1
5639
+ yaml: 2.7.1
5653
5640
 
5654
5641
  optionator@0.9.4:
5655
5642
  dependencies:
@@ -5739,8 +5726,6 @@ snapshots:
5739
5726
 
5740
5727
  pend@1.2.0: {}
5741
5728
 
5742
- picocolors@1.0.1: {}
5743
-
5744
5729
  picocolors@1.1.1: {}
5745
5730
 
5746
5731
  picomatch@2.3.1: {}
@@ -5790,7 +5775,7 @@ snapshots:
5790
5775
 
5791
5776
  prelude-ls@1.2.1: {}
5792
5777
 
5793
- prettier@3.4.2: {}
5778
+ prettier@3.5.3: {}
5794
5779
 
5795
5780
  pretty-bytes@5.6.0: {}
5796
5781
 
@@ -5943,7 +5928,11 @@ snapshots:
5943
5928
 
5944
5929
  rxjs@7.8.1:
5945
5930
  dependencies:
5946
- tslib: 2.6.3
5931
+ tslib: 2.8.1
5932
+
5933
+ rxjs@7.8.2:
5934
+ dependencies:
5935
+ tslib: 2.8.1
5947
5936
 
5948
5937
  safe-buffer@5.1.2:
5949
5938
  optional: true
@@ -6160,7 +6149,7 @@ snapshots:
6160
6149
  dependencies:
6161
6150
  component-emitter: 1.3.1
6162
6151
  cookiejar: 2.1.4
6163
- debug: 4.3.5
6152
+ debug: 4.4.0
6164
6153
  fast-safe-stringify: 2.1.1
6165
6154
  form-data: 4.0.0
6166
6155
  formidable: 3.5.1
@@ -6170,7 +6159,7 @@ snapshots:
6170
6159
  transitivePeerDependencies:
6171
6160
  - supports-color
6172
6161
 
6173
- supertest@7.0.0:
6162
+ supertest@7.1.0:
6174
6163
  dependencies:
6175
6164
  methods: 1.1.2
6176
6165
  superagent: 9.0.2
@@ -6201,16 +6190,16 @@ snapshots:
6201
6190
  fast-fifo: 1.3.2
6202
6191
  streamx: 2.21.1
6203
6192
 
6204
- terser-webpack-plugin@5.3.10(@swc/core@1.10.1)(webpack@5.97.1(@swc/core@1.10.1)):
6193
+ terser-webpack-plugin@5.3.10(@swc/core@1.11.13)(webpack@5.97.1(@swc/core@1.11.13)):
6205
6194
  dependencies:
6206
6195
  '@jridgewell/trace-mapping': 0.3.25
6207
6196
  jest-worker: 27.5.1
6208
6197
  schema-utils: 3.3.0
6209
6198
  serialize-javascript: 6.0.2
6210
6199
  terser: 5.31.3
6211
- webpack: 5.97.1(@swc/core@1.10.1)
6200
+ webpack: 5.97.1(@swc/core@1.11.13)
6212
6201
  optionalDependencies:
6213
- '@swc/core': 1.10.1
6202
+ '@swc/core': 1.11.13
6214
6203
 
6215
6204
  terser@5.31.3:
6216
6205
  dependencies:
@@ -6266,9 +6255,9 @@ snapshots:
6266
6255
 
6267
6256
  tree-kill@1.2.2: {}
6268
6257
 
6269
- ts-api-utils@1.4.3(typescript@5.7.2):
6258
+ ts-api-utils@2.1.0(typescript@5.8.2):
6270
6259
  dependencies:
6271
- typescript: 5.7.2
6260
+ typescript: 5.8.2
6272
6261
 
6273
6262
  ts-deepmerge@6.2.1: {}
6274
6263
 
@@ -6285,7 +6274,8 @@ snapshots:
6285
6274
  minimist: 1.2.8
6286
6275
  strip-bom: 3.0.0
6287
6276
 
6288
- tslib@2.6.3: {}
6277
+ tslib@2.6.3:
6278
+ optional: true
6289
6279
 
6290
6280
  tslib@2.8.1: {}
6291
6281
 
@@ -6297,7 +6287,7 @@ snapshots:
6297
6287
 
6298
6288
  type-fest@0.21.3: {}
6299
6289
 
6300
- type-fest@4.30.2: {}
6290
+ type-fest@4.38.0: {}
6301
6291
 
6302
6292
  type-is@1.6.18:
6303
6293
  dependencies:
@@ -6306,18 +6296,20 @@ snapshots:
6306
6296
 
6307
6297
  typedarray@0.0.6: {}
6308
6298
 
6309
- typescript-eslint@8.18.1(eslint@9.17.0)(typescript@5.7.2):
6299
+ typescript-eslint@8.28.0(eslint@9.23.0)(typescript@5.8.2):
6310
6300
  dependencies:
6311
- '@typescript-eslint/eslint-plugin': 8.18.1(@typescript-eslint/parser@8.18.1(eslint@9.17.0)(typescript@5.7.2))(eslint@9.17.0)(typescript@5.7.2)
6312
- '@typescript-eslint/parser': 8.18.1(eslint@9.17.0)(typescript@5.7.2)
6313
- '@typescript-eslint/utils': 8.18.1(eslint@9.17.0)(typescript@5.7.2)
6314
- eslint: 9.17.0
6315
- typescript: 5.7.2
6301
+ '@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)
6302
+ '@typescript-eslint/parser': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
6303
+ '@typescript-eslint/utils': 8.28.0(eslint@9.23.0)(typescript@5.8.2)
6304
+ eslint: 9.23.0
6305
+ typescript: 5.8.2
6316
6306
  transitivePeerDependencies:
6317
6307
  - supports-color
6318
6308
 
6319
6309
  typescript@5.7.2: {}
6320
6310
 
6311
+ typescript@5.8.2: {}
6312
+
6321
6313
  ufo@1.5.4: {}
6322
6314
 
6323
6315
  uid@2.0.2:
@@ -6338,10 +6330,10 @@ snapshots:
6338
6330
  unpipe@1.0.0:
6339
6331
  optional: true
6340
6332
 
6341
- unplugin-swc@1.5.1(@swc/core@1.10.1)(rollup@4.19.0):
6333
+ unplugin-swc@1.5.1(@swc/core@1.11.13)(rollup@4.19.0):
6342
6334
  dependencies:
6343
6335
  '@rollup/pluginutils': 5.1.0(rollup@4.19.0)
6344
- '@swc/core': 1.10.1
6336
+ '@swc/core': 1.11.13
6345
6337
  load-tsconfig: 0.2.5
6346
6338
  unplugin: 1.12.0
6347
6339
  transitivePeerDependencies:
@@ -6372,13 +6364,13 @@ snapshots:
6372
6364
  vary@1.1.2:
6373
6365
  optional: true
6374
6366
 
6375
- vite-node@1.6.1(@types/node@22.10.2)(terser@5.31.3):
6367
+ vite-node@1.6.1(@types/node@22.13.14)(terser@5.31.3):
6376
6368
  dependencies:
6377
6369
  cac: 6.7.14
6378
6370
  debug: 4.4.0
6379
6371
  pathe: 1.1.2
6380
6372
  picocolors: 1.1.1
6381
- vite: 5.3.4(@types/node@22.10.2)(terser@5.31.3)
6373
+ vite: 5.3.4(@types/node@22.13.14)(terser@5.31.3)
6382
6374
  transitivePeerDependencies:
6383
6375
  - '@types/node'
6384
6376
  - less
@@ -6389,17 +6381,17 @@ snapshots:
6389
6381
  - supports-color
6390
6382
  - terser
6391
6383
 
6392
- vite@5.3.4(@types/node@22.10.2)(terser@5.31.3):
6384
+ vite@5.3.4(@types/node@22.13.14)(terser@5.31.3):
6393
6385
  dependencies:
6394
6386
  esbuild: 0.21.5
6395
6387
  postcss: 8.4.39
6396
6388
  rollup: 4.19.0
6397
6389
  optionalDependencies:
6398
- '@types/node': 22.10.2
6390
+ '@types/node': 22.13.14
6399
6391
  fsevents: 2.3.3
6400
6392
  terser: 5.31.3
6401
6393
 
6402
- vitest@1.6.1(@types/node@22.10.2)(terser@5.31.3):
6394
+ vitest@1.6.1(@types/node@22.13.14)(terser@5.31.3):
6403
6395
  dependencies:
6404
6396
  '@vitest/expect': 1.6.1
6405
6397
  '@vitest/runner': 1.6.1
@@ -6418,11 +6410,11 @@ snapshots:
6418
6410
  strip-literal: 2.1.0
6419
6411
  tinybench: 2.8.0
6420
6412
  tinypool: 0.8.4
6421
- vite: 5.3.4(@types/node@22.10.2)(terser@5.31.3)
6422
- vite-node: 1.6.1(@types/node@22.10.2)(terser@5.31.3)
6413
+ vite: 5.3.4(@types/node@22.13.14)(terser@5.31.3)
6414
+ vite-node: 1.6.1(@types/node@22.13.14)(terser@5.31.3)
6423
6415
  why-is-node-running: 2.3.0
6424
6416
  optionalDependencies:
6425
- '@types/node': 22.10.2
6417
+ '@types/node': 22.13.14
6426
6418
  transitivePeerDependencies:
6427
6419
  - less
6428
6420
  - lightningcss
@@ -6449,7 +6441,7 @@ snapshots:
6449
6441
 
6450
6442
  webpack-virtual-modules@0.6.2: {}
6451
6443
 
6452
- webpack@5.97.1(@swc/core@1.10.1):
6444
+ webpack@5.97.1(@swc/core@1.11.13):
6453
6445
  dependencies:
6454
6446
  '@types/eslint-scope': 3.7.7
6455
6447
  '@types/estree': 1.0.6
@@ -6471,7 +6463,7 @@ snapshots:
6471
6463
  neo-async: 2.6.2
6472
6464
  schema-utils: 3.3.0
6473
6465
  tapable: 2.2.1
6474
- terser-webpack-plugin: 5.3.10(@swc/core@1.10.1)(webpack@5.97.1(@swc/core@1.10.1))
6466
+ terser-webpack-plugin: 5.3.10(@swc/core@1.11.13)(webpack@5.97.1(@swc/core@1.11.13))
6475
6467
  watchpack: 2.4.1
6476
6468
  webpack-sources: 3.2.3
6477
6469
  transitivePeerDependencies:
@@ -6523,7 +6515,7 @@ snapshots:
6523
6515
 
6524
6516
  xtend@4.0.2: {}
6525
6517
 
6526
- yaml@2.6.1: {}
6518
+ yaml@2.7.1: {}
6527
6519
 
6528
6520
  yargs-parser@21.1.1: {}
6529
6521
 
@@ -6536,4 +6528,4 @@ snapshots:
6536
6528
 
6537
6529
  yocto-queue@1.1.1: {}
6538
6530
 
6539
- zod@3.24.1: {}
6531
+ zod@3.24.2: {}