repoburg 1.0.66 → 1.0.68

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 (2066) hide show
  1. package/backend/dist/action-execution/action-execution.service.js +28 -0
  2. package/backend/dist/action-execution/action-execution.service.js.map +1 -1
  3. package/backend/dist/ai-actions/ai-actions.service.js +43 -0
  4. package/backend/dist/ai-actions/ai-actions.service.js.map +1 -1
  5. package/backend/dist/context-generation/context-generation.service.js +55 -0
  6. package/backend/dist/context-generation/context-generation.service.js.map +1 -1
  7. package/backend/dist/llm-response-parser/llm-response-parser.service.js +10 -0
  8. package/backend/dist/llm-response-parser/llm-response-parser.service.js.map +1 -1
  9. package/backend/dist/main.js +2 -0
  10. package/backend/dist/main.js.map +1 -1
  11. package/backend/dist/projects/projects.service.js +20 -0
  12. package/backend/dist/projects/projects.service.js.map +1 -1
  13. package/backend/dist/sessions/sessions.service.js +49 -0
  14. package/backend/dist/sessions/sessions.service.js.map +1 -1
  15. package/backend/dist/tracing.d.ts +1 -0
  16. package/backend/dist/tracing.js +53 -0
  17. package/backend/dist/tracing.js.map +1 -0
  18. package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
  19. package/backend/dist/utils/index.d.ts +1 -0
  20. package/backend/dist/utils/index.js +1 -0
  21. package/backend/dist/utils/index.js.map +1 -1
  22. package/backend/dist/utils/trace.decorator.d.ts +1 -0
  23. package/backend/dist/utils/trace.decorator.js +31 -0
  24. package/backend/dist/utils/trace.decorator.js.map +1 -0
  25. package/backend/dist/workspace/workspace.service.d.ts +1 -0
  26. package/backend/dist/workspace/workspace.service.js +84 -23
  27. package/backend/dist/workspace/workspace.service.js.map +1 -1
  28. package/backend/node_modules/@types/node/LICENSE +21 -0
  29. package/backend/node_modules/@types/node/README.md +15 -0
  30. package/backend/node_modules/@types/node/assert/strict.d.ts +8 -0
  31. package/backend/node_modules/@types/node/assert.d.ts +1044 -0
  32. package/backend/node_modules/@types/node/async_hooks.d.ts +605 -0
  33. package/backend/node_modules/@types/node/buffer.buffer.d.ts +462 -0
  34. package/backend/node_modules/@types/node/buffer.d.ts +1932 -0
  35. package/backend/node_modules/@types/node/child_process.d.ts +1452 -0
  36. package/backend/node_modules/@types/node/cluster.d.ts +578 -0
  37. package/backend/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
  38. package/backend/node_modules/@types/node/compatibility/index.d.ts +9 -0
  39. package/backend/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  40. package/backend/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  41. package/backend/node_modules/@types/node/console.d.ts +452 -0
  42. package/backend/node_modules/@types/node/constants.d.ts +21 -0
  43. package/backend/node_modules/@types/node/crypto.d.ts +4570 -0
  44. package/backend/node_modules/@types/node/dgram.d.ts +596 -0
  45. package/backend/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  46. package/backend/node_modules/@types/node/dns/promises.d.ts +479 -0
  47. package/backend/node_modules/@types/node/dns.d.ts +871 -0
  48. package/backend/node_modules/@types/node/domain.d.ts +170 -0
  49. package/backend/node_modules/@types/node/events.d.ts +931 -0
  50. package/backend/node_modules/@types/node/fs/promises.d.ts +1248 -0
  51. package/backend/node_modules/@types/node/fs.d.ts +4362 -0
  52. package/backend/node_modules/@types/node/globals.d.ts +170 -0
  53. package/backend/node_modules/@types/node/globals.typedarray.d.ts +21 -0
  54. package/backend/node_modules/@types/node/http.d.ts +2031 -0
  55. package/backend/node_modules/@types/node/http2.d.ts +2623 -0
  56. package/backend/node_modules/@types/node/https.d.ts +549 -0
  57. package/backend/node_modules/@types/node/index.d.ts +93 -0
  58. package/backend/node_modules/@types/node/inspector.generated.d.ts +3966 -0
  59. package/backend/node_modules/@types/node/module.d.ts +539 -0
  60. package/backend/node_modules/@types/node/net.d.ts +1011 -0
  61. package/backend/node_modules/@types/node/os.d.ts +495 -0
  62. package/backend/node_modules/@types/node/package.json +140 -0
  63. package/backend/node_modules/@types/node/path.d.ts +200 -0
  64. package/backend/node_modules/@types/node/perf_hooks.d.ts +963 -0
  65. package/backend/node_modules/@types/node/process.d.ts +1956 -0
  66. package/backend/node_modules/@types/node/punycode.d.ts +117 -0
  67. package/backend/node_modules/@types/node/querystring.d.ts +152 -0
  68. package/backend/node_modules/@types/node/readline/promises.d.ts +162 -0
  69. package/backend/node_modules/@types/node/readline.d.ts +589 -0
  70. package/backend/node_modules/@types/node/repl.d.ts +430 -0
  71. package/backend/node_modules/@types/node/sea.d.ts +153 -0
  72. package/backend/node_modules/@types/node/stream/consumers.d.ts +38 -0
  73. package/backend/node_modules/@types/node/stream/promises.d.ts +90 -0
  74. package/backend/node_modules/@types/node/stream/web.d.ts +533 -0
  75. package/backend/node_modules/@types/node/stream.d.ts +1668 -0
  76. package/backend/node_modules/@types/node/string_decoder.d.ts +67 -0
  77. package/backend/node_modules/@types/node/test.d.ts +1807 -0
  78. package/backend/node_modules/@types/node/timers/promises.d.ts +108 -0
  79. package/backend/node_modules/@types/node/timers.d.ts +286 -0
  80. package/backend/node_modules/@types/node/tls.d.ts +1231 -0
  81. package/backend/node_modules/@types/node/trace_events.d.ts +197 -0
  82. package/backend/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +460 -0
  83. package/backend/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +19 -0
  84. package/backend/node_modules/@types/node/ts5.6/index.d.ts +93 -0
  85. package/backend/node_modules/@types/node/tty.d.ts +208 -0
  86. package/backend/node_modules/@types/node/url.d.ts +964 -0
  87. package/backend/node_modules/@types/node/util.d.ts +2331 -0
  88. package/backend/node_modules/@types/node/v8.d.ts +808 -0
  89. package/backend/node_modules/@types/node/vm.d.ts +1030 -0
  90. package/backend/node_modules/@types/node/wasi.d.ts +181 -0
  91. package/backend/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  92. package/backend/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  93. package/backend/node_modules/@types/node/web-globals/events.d.ts +94 -0
  94. package/backend/node_modules/@types/node/web-globals/fetch.d.ts +46 -0
  95. package/backend/node_modules/@types/node/worker_threads.d.ts +743 -0
  96. package/backend/node_modules/@types/node/zlib.d.ts +539 -0
  97. package/backend/package.json +2 -0
  98. package/daemon/node_modules/@types/node/LICENSE +21 -0
  99. package/daemon/node_modules/@types/node/README.md +15 -0
  100. package/daemon/node_modules/@types/node/assert/strict.d.ts +8 -0
  101. package/daemon/node_modules/@types/node/assert.d.ts +1044 -0
  102. package/daemon/node_modules/@types/node/async_hooks.d.ts +605 -0
  103. package/daemon/node_modules/@types/node/buffer.buffer.d.ts +462 -0
  104. package/daemon/node_modules/@types/node/buffer.d.ts +1932 -0
  105. package/daemon/node_modules/@types/node/child_process.d.ts +1452 -0
  106. package/daemon/node_modules/@types/node/cluster.d.ts +578 -0
  107. package/daemon/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
  108. package/daemon/node_modules/@types/node/compatibility/index.d.ts +9 -0
  109. package/daemon/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  110. package/daemon/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  111. package/daemon/node_modules/@types/node/console.d.ts +452 -0
  112. package/daemon/node_modules/@types/node/constants.d.ts +21 -0
  113. package/daemon/node_modules/@types/node/crypto.d.ts +4570 -0
  114. package/daemon/node_modules/@types/node/dgram.d.ts +596 -0
  115. package/daemon/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  116. package/daemon/node_modules/@types/node/dns/promises.d.ts +479 -0
  117. package/daemon/node_modules/@types/node/dns.d.ts +871 -0
  118. package/daemon/node_modules/@types/node/domain.d.ts +170 -0
  119. package/daemon/node_modules/@types/node/events.d.ts +931 -0
  120. package/daemon/node_modules/@types/node/fs/promises.d.ts +1248 -0
  121. package/daemon/node_modules/@types/node/fs.d.ts +4362 -0
  122. package/daemon/node_modules/@types/node/globals.d.ts +170 -0
  123. package/daemon/node_modules/@types/node/globals.typedarray.d.ts +21 -0
  124. package/daemon/node_modules/@types/node/http.d.ts +2031 -0
  125. package/daemon/node_modules/@types/node/http2.d.ts +2623 -0
  126. package/daemon/node_modules/@types/node/https.d.ts +549 -0
  127. package/daemon/node_modules/@types/node/index.d.ts +93 -0
  128. package/daemon/node_modules/@types/node/inspector.generated.d.ts +3966 -0
  129. package/daemon/node_modules/@types/node/module.d.ts +539 -0
  130. package/daemon/node_modules/@types/node/net.d.ts +1011 -0
  131. package/daemon/node_modules/@types/node/os.d.ts +495 -0
  132. package/daemon/node_modules/@types/node/package.json +140 -0
  133. package/daemon/node_modules/@types/node/path.d.ts +200 -0
  134. package/daemon/node_modules/@types/node/perf_hooks.d.ts +963 -0
  135. package/daemon/node_modules/@types/node/process.d.ts +1956 -0
  136. package/daemon/node_modules/@types/node/punycode.d.ts +117 -0
  137. package/daemon/node_modules/@types/node/querystring.d.ts +152 -0
  138. package/daemon/node_modules/@types/node/readline/promises.d.ts +162 -0
  139. package/daemon/node_modules/@types/node/readline.d.ts +589 -0
  140. package/daemon/node_modules/@types/node/repl.d.ts +430 -0
  141. package/daemon/node_modules/@types/node/sea.d.ts +153 -0
  142. package/daemon/node_modules/@types/node/stream/consumers.d.ts +38 -0
  143. package/daemon/node_modules/@types/node/stream/promises.d.ts +90 -0
  144. package/daemon/node_modules/@types/node/stream/web.d.ts +533 -0
  145. package/daemon/node_modules/@types/node/stream.d.ts +1668 -0
  146. package/daemon/node_modules/@types/node/string_decoder.d.ts +67 -0
  147. package/daemon/node_modules/@types/node/test.d.ts +1807 -0
  148. package/daemon/node_modules/@types/node/timers/promises.d.ts +108 -0
  149. package/daemon/node_modules/@types/node/timers.d.ts +286 -0
  150. package/daemon/node_modules/@types/node/tls.d.ts +1231 -0
  151. package/daemon/node_modules/@types/node/trace_events.d.ts +197 -0
  152. package/daemon/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +460 -0
  153. package/daemon/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +19 -0
  154. package/daemon/node_modules/@types/node/ts5.6/index.d.ts +93 -0
  155. package/daemon/node_modules/@types/node/tty.d.ts +208 -0
  156. package/daemon/node_modules/@types/node/url.d.ts +964 -0
  157. package/daemon/node_modules/@types/node/util.d.ts +2331 -0
  158. package/daemon/node_modules/@types/node/v8.d.ts +808 -0
  159. package/daemon/node_modules/@types/node/vm.d.ts +1030 -0
  160. package/daemon/node_modules/@types/node/wasi.d.ts +181 -0
  161. package/daemon/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  162. package/daemon/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  163. package/daemon/node_modules/@types/node/web-globals/events.d.ts +94 -0
  164. package/daemon/node_modules/@types/node/web-globals/fetch.d.ts +46 -0
  165. package/daemon/node_modules/@types/node/worker_threads.d.ts +743 -0
  166. package/daemon/node_modules/@types/node/zlib.d.ts +539 -0
  167. package/package.json +9 -2
  168. package/backend/node_modules/@eslint/eslintrc/LICENSE +0 -19
  169. package/backend/node_modules/@eslint/eslintrc/README.md +0 -115
  170. package/backend/node_modules/@eslint/eslintrc/conf/config-schema.js +0 -79
  171. package/backend/node_modules/@eslint/eslintrc/conf/environments.js +0 -215
  172. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +0 -1104
  173. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +0 -1
  174. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +0 -4344
  175. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +0 -1
  176. package/backend/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +0 -532
  177. package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +0 -523
  178. package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +0 -124
  179. package/backend/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +0 -145
  180. package/backend/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +0 -238
  181. package/backend/node_modules/@eslint/eslintrc/lib/config-array/index.js +0 -19
  182. package/backend/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +0 -225
  183. package/backend/node_modules/@eslint/eslintrc/lib/config-array-factory.js +0 -1151
  184. package/backend/node_modules/@eslint/eslintrc/lib/flat-compat.js +0 -318
  185. package/backend/node_modules/@eslint/eslintrc/lib/index-universal.js +0 -29
  186. package/backend/node_modules/@eslint/eslintrc/lib/index.js +0 -56
  187. package/backend/node_modules/@eslint/eslintrc/lib/shared/ajv.js +0 -191
  188. package/backend/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +0 -135
  189. package/backend/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +0 -325
  190. package/backend/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +0 -63
  191. package/backend/node_modules/@eslint/eslintrc/lib/shared/naming.js +0 -96
  192. package/backend/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +0 -42
  193. package/backend/node_modules/@eslint/eslintrc/lib/shared/types.js +0 -149
  194. package/backend/node_modules/@eslint/eslintrc/package.json +0 -82
  195. package/backend/node_modules/@eslint/eslintrc/universal.js +0 -9
  196. package/backend/node_modules/@typescript-eslint/eslint-plugin/LICENSE +0 -21
  197. package/backend/node_modules/@typescript-eslint/eslint-plugin/README.md +0 -12
  198. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js +0 -156
  199. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js.map +0 -1
  200. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0 -13
  201. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js.map +0 -1
  202. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/disable-type-checked.js +0 -64
  203. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/disable-type-checked.js.map +0 -1
  204. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +0 -31
  205. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js.map +0 -1
  206. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended-type-checked.js +0 -54
  207. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended-type-checked.js.map +0 -1
  208. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended.js +0 -33
  209. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended.js.map +0 -1
  210. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict-type-checked.js +0 -79
  211. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict-type-checked.js.map +0 -1
  212. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict.js +0 -43
  213. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict.js.map +0 -1
  214. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic-type-checked.js +0 -35
  215. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic-type-checked.js.map +0 -1
  216. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic.js +0 -29
  217. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic.js.map +0 -1
  218. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0 -39
  219. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/index.js.map +0 -1
  220. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js +0 -140
  221. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js.map +0 -1
  222. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js +0 -222
  223. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js.map +0 -1
  224. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js +0 -76
  225. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js.map +0 -1
  226. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js +0 -156
  227. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js.map +0 -1
  228. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js +0 -56
  229. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js.map +0 -1
  230. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js +0 -240
  231. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js.map +0 -1
  232. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/block-spacing.js +0 -140
  233. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/block-spacing.js.map +0 -1
  234. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js +0 -99
  235. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js.map +0 -1
  236. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js +0 -123
  237. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js.map +0 -1
  238. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.js +0 -211
  239. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.js.map +0 -1
  240. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js +0 -166
  241. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js.map +0 -1
  242. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js +0 -152
  243. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js.map +0 -1
  244. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.js +0 -109
  245. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.js.map +0 -1
  246. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js +0 -128
  247. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js.map +0 -1
  248. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js +0 -222
  249. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js.map +0 -1
  250. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js +0 -98
  251. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js.map +0 -1
  252. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js +0 -245
  253. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js.map +0 -1
  254. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js +0 -635
  255. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js.map +0 -1
  256. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js +0 -63
  257. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js.map +0 -1
  258. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js +0 -120
  259. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js.map +0 -1
  260. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.js +0 -112
  261. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.js.map +0 -1
  262. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js +0 -164
  263. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js.map +0 -1
  264. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js +0 -283
  265. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js.map +0 -1
  266. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js +0 -366
  267. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js.map +0 -1
  268. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js +0 -147
  269. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js.map +0 -1
  270. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js +0 -415
  271. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js.map +0 -1
  272. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js +0 -288
  273. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js.map +0 -1
  274. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js +0 -48
  275. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js.map +0 -1
  276. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/key-spacing.js +0 -322
  277. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/key-spacing.js.map +0 -1
  278. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js +0 -95
  279. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js.map +0 -1
  280. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-around-comment.js +0 -357
  281. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-around-comment.js.map +0 -1
  282. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js +0 -57
  283. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js.map +0 -1
  284. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.js +0 -67
  285. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.js.map +0 -1
  286. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js +0 -258
  287. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js.map +0 -1
  288. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js +0 -747
  289. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js.map +0 -1
  290. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js +0 -181
  291. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js.map +0 -1
  292. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js +0 -101
  293. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js.map +0 -1
  294. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js +0 -91
  295. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js.map +0 -1
  296. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js +0 -12
  297. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js.map +0 -1
  298. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js +0 -75
  299. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js.map +0 -1
  300. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js +0 -291
  301. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js.map +0 -1
  302. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js +0 -18
  303. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js.map +0 -1
  304. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js +0 -3
  305. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js.map +0 -1
  306. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js +0 -351
  307. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js.map +0 -1
  308. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js +0 -488
  309. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js.map +0 -1
  310. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js +0 -53
  311. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js.map +0 -1
  312. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.js +0 -83
  313. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.js.map +0 -1
  314. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js +0 -164
  315. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js.map +0 -1
  316. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js +0 -78
  317. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js.map +0 -1
  318. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js +0 -293
  319. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js.map +0 -1
  320. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js +0 -51
  321. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js.map +0 -1
  322. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.js +0 -62
  323. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.js.map +0 -1
  324. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.js +0 -139
  325. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.js.map +0 -1
  326. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js +0 -95
  327. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js.map +0 -1
  328. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js +0 -132
  329. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js.map +0 -1
  330. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js +0 -94
  331. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js.map +0 -1
  332. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js +0 -170
  333. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js.map +0 -1
  334. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js +0 -36
  335. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js.map +0 -1
  336. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js +0 -297
  337. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js.map +0 -1
  338. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js +0 -43
  339. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js.map +0 -1
  340. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js +0 -112
  341. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js.map +0 -1
  342. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js +0 -342
  343. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js.map +0 -1
  344. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js +0 -60
  345. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js.map +0 -1
  346. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js +0 -160
  347. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js.map +0 -1
  348. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.js +0 -56
  349. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.js.map +0 -1
  350. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js +0 -185
  351. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js.map +0 -1
  352. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js +0 -76
  353. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js.map +0 -1
  354. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js +0 -182
  355. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js.map +0 -1
  356. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js +0 -169
  357. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js.map +0 -1
  358. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js +0 -39
  359. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js.map +0 -1
  360. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js +0 -213
  361. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js.map +0 -1
  362. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js +0 -96
  363. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js.map +0 -1
  364. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js +0 -82
  365. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js.map +0 -1
  366. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js +0 -523
  367. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js.map +0 -1
  368. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.js +0 -193
  369. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.js.map +0 -1
  370. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js +0 -63
  371. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js.map +0 -1
  372. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js +0 -76
  373. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js.map +0 -1
  374. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js +0 -66
  375. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js.map +0 -1
  376. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js +0 -104
  377. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js.map +0 -1
  378. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js +0 -201
  379. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js.map +0 -1
  380. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.js +0 -372
  381. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.js.map +0 -1
  382. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js +0 -90
  383. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js.map +0 -1
  384. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js +0 -237
  385. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js.map +0 -1
  386. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js +0 -482
  387. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js.map +0 -1
  388. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js +0 -65
  389. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js.map +0 -1
  390. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js +0 -96
  391. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js.map +0 -1
  392. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js +0 -260
  393. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js.map +0 -1
  394. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js +0 -234
  395. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js.map +0 -1
  396. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js +0 -540
  397. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js.map +0 -1
  398. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js +0 -149
  399. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js.map +0 -1
  400. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js +0 -150
  401. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js.map +0 -1
  402. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js +0 -252
  403. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js.map +0 -1
  404. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js +0 -112
  405. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js.map +0 -1
  406. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js +0 -226
  407. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js.map +0 -1
  408. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js +0 -282
  409. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js.map +0 -1
  410. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js +0 -83
  411. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js.map +0 -1
  412. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js +0 -56
  413. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js.map +0 -1
  414. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.js +0 -168
  415. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.js.map +0 -1
  416. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js +0 -123
  417. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js.map +0 -1
  418. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js +0 -161
  419. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js.map +0 -1
  420. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.js +0 -68
  421. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.js.map +0 -1
  422. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js +0 -58
  423. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js.map +0 -1
  424. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js +0 -490
  425. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js.map +0 -1
  426. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js +0 -297
  427. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js.map +0 -1
  428. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js +0 -59
  429. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js.map +0 -1
  430. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.js +0 -72
  431. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.js.map +0 -1
  432. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-template-literals.js +0 -138
  433. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-template-literals.js.map +0 -1
  434. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js +0 -67
  435. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js.map +0 -1
  436. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js +0 -125
  437. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js.map +0 -1
  438. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js +0 -226
  439. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js.map +0 -1
  440. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js +0 -634
  441. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js.map +0 -1
  442. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.js +0 -171
  443. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.js.map +0 -1
  444. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js +0 -73
  445. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js.map +0 -1
  446. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.js +0 -200
  447. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.js.map +0 -1
  448. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js +0 -65
  449. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js.map +0 -1
  450. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js +0 -235
  451. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js.map +0 -1
  452. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js +0 -156
  453. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js.map +0 -1
  454. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js +0 -186
  455. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js.map +0 -1
  456. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js +0 -231
  457. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js.map +0 -1
  458. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js +0 -72
  459. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js.map +0 -1
  460. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js +0 -46
  461. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js.map +0 -1
  462. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js +0 -348
  463. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js.map +0 -1
  464. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.js +0 -3
  465. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.js.map +0 -1
  466. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.js +0 -417
  467. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.js.map +0 -1
  468. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.js +0 -318
  469. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.js.map +0 -1
  470. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.js +0 -279
  471. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.js.map +0 -1
  472. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js +0 -175
  473. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js.map +0 -1
  474. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.js +0 -107
  475. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.js.map +0 -1
  476. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js +0 -82
  477. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js.map +0 -1
  478. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js +0 -315
  479. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js.map +0 -1
  480. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js +0 -74
  481. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js.map +0 -1
  482. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js +0 -159
  483. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js.map +0 -1
  484. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js +0 -137
  485. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js.map +0 -1
  486. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js +0 -508
  487. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js.map +0 -1
  488. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js +0 -62
  489. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js.map +0 -1
  490. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js +0 -182
  491. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js.map +0 -1
  492. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js +0 -63
  493. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js.map +0 -1
  494. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js +0 -62
  495. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js.map +0 -1
  496. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js +0 -212
  497. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js.map +0 -1
  498. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js +0 -211
  499. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js.map +0 -1
  500. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js +0 -145
  501. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js.map +0 -1
  502. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js +0 -268
  503. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js.map +0 -1
  504. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js +0 -64
  505. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js.map +0 -1
  506. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js +0 -228
  507. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js.map +0 -1
  508. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-blocks.js +0 -80
  509. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-blocks.js.map +0 -1
  510. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js +0 -143
  511. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js.map +0 -1
  512. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js +0 -133
  513. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js.map +0 -1
  514. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js +0 -800
  515. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js.map +0 -1
  516. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js +0 -242
  517. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js.map +0 -1
  518. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js +0 -110
  519. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js.map +0 -1
  520. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js +0 -228
  521. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js.map +0 -1
  522. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js +0 -200
  523. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js.map +0 -1
  524. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js +0 -245
  525. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js.map +0 -1
  526. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js +0 -398
  527. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js.map +0 -1
  528. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js +0 -89
  529. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js.map +0 -1
  530. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js +0 -562
  531. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js.map +0 -1
  532. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js +0 -6
  533. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js.map +0 -1
  534. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js +0 -16
  535. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js.map +0 -1
  536. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js +0 -241
  537. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js.map +0 -1
  538. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js +0 -45
  539. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js.map +0 -1
  540. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js +0 -163
  541. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js.map +0 -1
  542. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.js +0 -418
  543. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.js.map +0 -1
  544. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.js +0 -46
  545. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.js.map +0 -1
  546. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.js +0 -20
  547. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.js.map +0 -1
  548. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js +0 -26
  549. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js.map +0 -1
  550. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.js +0 -8
  551. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.js.map +0 -1
  552. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js +0 -155
  553. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js.map +0 -1
  554. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js +0 -42
  555. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js.map +0 -1
  556. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.js +0 -27
  557. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.js.map +0 -1
  558. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.js +0 -9
  559. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.js.map +0 -1
  560. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.js +0 -9
  561. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.js.map +0 -1
  562. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js +0 -189
  563. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js.map +0 -1
  564. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js +0 -27
  565. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js.map +0 -1
  566. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/README.md +0 -60
  567. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/TEMPLATE.md +0 -30
  568. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/adjacent-overload-signatures.md +0 -99
  569. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/array-type.md +0 -111
  570. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/await-thenable.md +0 -42
  571. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-ts-comment.md +0 -151
  572. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-tslint-comment.md +0 -39
  573. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-types.md +0 -132
  574. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/block-spacing.md +0 -10
  575. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/brace-style.md +0 -10
  576. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/camelcase.md +0 -13
  577. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/class-literal-property-style.md +0 -105
  578. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/class-methods-use-this.md +0 -96
  579. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-dangle.md +0 -20
  580. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-spacing.md +0 -10
  581. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-generic-constructors.md +0 -76
  582. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-indexed-object-style.md +0 -80
  583. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-assertions.md +0 -113
  584. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-definitions.md +0 -81
  585. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-exports.md +0 -105
  586. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-imports.md +0 -108
  587. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/default-param-last.md +0 -58
  588. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/dot-notation.md +0 -82
  589. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-function-return-type.md +0 -320
  590. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-member-accessibility.md +0 -344
  591. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-module-boundary-types.md +0 -249
  592. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/func-call-spacing.md +0 -10
  593. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/indent.md +0 -18
  594. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/init-declarations.md +0 -10
  595. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/key-spacing.md +0 -10
  596. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/keyword-spacing.md +0 -10
  597. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/lines-around-comment.md +0 -25
  598. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/lines-between-class-members.md +0 -55
  599. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/max-params.md +0 -10
  600. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-delimiter-style.md +0 -164
  601. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-ordering.md +0 -1438
  602. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/method-signature-style.md +0 -113
  603. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/naming-convention.md +0 -721
  604. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-array-constructor.md +0 -29
  605. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-array-delete.md +0 -40
  606. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-base-to-string.md +0 -88
  607. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-non-null-assertion.md +0 -56
  608. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-void-expression.md +0 -116
  609. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dupe-class-members.md +0 -14
  610. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-enum-values.md +0 -58
  611. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-imports.md +0 -13
  612. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-type-constituents.md +0 -66
  613. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dynamic-delete.md +0 -53
  614. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-function.md +0 -92
  615. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-interface.md +0 -59
  616. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-explicit-any.md +0 -168
  617. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-non-null-assertion.md +0 -54
  618. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-parens.md +0 -10
  619. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-semi.md +0 -12
  620. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extraneous-class.md +0 -295
  621. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-floating-promises.md +0 -124
  622. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-for-in-array.md +0 -61
  623. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-implied-eval.md +0 -102
  624. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-import-type-side-effects.md +0 -74
  625. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-inferrable-types.md +0 -103
  626. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-this.md +0 -14
  627. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-void-type.md +0 -112
  628. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loop-func.md +0 -10
  629. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loss-of-precision.md +0 -10
  630. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-magic-numbers.md +0 -119
  631. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-meaningless-void-operator.md +0 -53
  632. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-new.md +0 -47
  633. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-promises.md +0 -246
  634. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-mixed-enums.md +0 -88
  635. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-namespace.md +0 -131
  636. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md +0 -54
  637. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md +0 -40
  638. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-assertion.md +0 -42
  639. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-parameter-properties.md +0 -12
  640. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-redeclare.md +0 -75
  641. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-redundant-type-constituents.md +0 -92
  642. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-require-imports.md +0 -60
  643. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-restricted-imports.md +0 -71
  644. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-shadow.md +0 -105
  645. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-this-alias.md +0 -108
  646. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-throw-literal.md +0 -109
  647. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-type-alias.md +0 -623
  648. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md +0 -133
  649. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-condition.md +0 -119
  650. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-qualifier.md +0 -51
  651. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md +0 -79
  652. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-assertion.md +0 -77
  653. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-constraint.md +0 -55
  654. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-argument.md +0 -93
  655. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-assignment.md +0 -96
  656. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-call.md +0 -68
  657. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md +0 -59
  658. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-enum-comparison.md +0 -82
  659. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-member-access.md +0 -74
  660. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-return.md +0 -113
  661. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-unary-minus.md +0 -52
  662. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-expressions.md +0 -10
  663. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-vars.md +0 -27
  664. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-use-before-define.md +0 -87
  665. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-constructor.md +0 -19
  666. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-empty-export.md +0 -47
  667. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-template-literals.md +0 -57
  668. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-var-requires.md +0 -60
  669. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md +0 -41
  670. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/object-curly-spacing.md +0 -10
  671. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/padding-line-between-statements.md +0 -33
  672. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/parameter-properties.md +0 -488
  673. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-as-const.md +0 -47
  674. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-destructuring.md +0 -91
  675. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-enum-initializers.md +0 -62
  676. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-find.md +0 -39
  677. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-for-of.md +0 -44
  678. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-function-type.md +0 -92
  679. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-includes.md +0 -75
  680. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-literal-enum-member.md +0 -103
  681. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-namespace-keyword.md +0 -47
  682. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-nullish-coalescing.md +0 -187
  683. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-optional-chain.md +0 -263
  684. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-promise-reject-errors.md +0 -50
  685. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md +0 -389
  686. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly.md +0 -102
  687. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md +0 -60
  688. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-regexp-exec.md +0 -46
  689. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-return-this-type.md +0 -87
  690. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md +0 -58
  691. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-ts-expect-error.md +0 -70
  692. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/promise-function-async.md +0 -132
  693. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/quotes.md +0 -10
  694. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-array-sort-compare.md +0 -78
  695. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-await.md +0 -22
  696. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-plus-operands.md +0 -208
  697. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-template-expressions.md +0 -121
  698. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/return-await.md +0 -216
  699. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/semi.md +0 -12
  700. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/sort-type-constituents.md +0 -163
  701. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-before-blocks.md +0 -43
  702. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-before-function-paren.md +0 -10
  703. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-infix-ops.md +0 -16
  704. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/strict-boolean-expressions.md +0 -190
  705. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/switch-exhaustiveness-check.md +0 -225
  706. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/triple-slash-reference.md +0 -110
  707. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/type-annotation-spacing.md +0 -317
  708. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/typedef.md +0 -320
  709. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unbound-method.md +0 -105
  710. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unified-signatures.md +0 -77
  711. package/backend/node_modules/@typescript-eslint/eslint-plugin/index.d.ts +0 -9
  712. package/backend/node_modules/@typescript-eslint/eslint-plugin/package.json +0 -106
  713. package/backend/node_modules/@typescript-eslint/eslint-plugin/rules.d.ts +0 -45
  714. package/backend/node_modules/@typescript-eslint/parser/LICENSE +0 -22
  715. package/backend/node_modules/@typescript-eslint/parser/README.md +0 -12
  716. package/backend/node_modules/@typescript-eslint/parser/dist/index.d.ts +0 -8
  717. package/backend/node_modules/@typescript-eslint/parser/dist/index.d.ts.map +0 -1
  718. package/backend/node_modules/@typescript-eslint/parser/dist/index.js +0 -17
  719. package/backend/node_modules/@typescript-eslint/parser/dist/index.js.map +0 -1
  720. package/backend/node_modules/@typescript-eslint/parser/dist/parser.d.ts +0 -20
  721. package/backend/node_modules/@typescript-eslint/parser/dist/parser.d.ts.map +0 -1
  722. package/backend/node_modules/@typescript-eslint/parser/dist/parser.js +0 -130
  723. package/backend/node_modules/@typescript-eslint/parser/dist/parser.js.map +0 -1
  724. package/backend/node_modules/@typescript-eslint/parser/package.json +0 -85
  725. package/backend/node_modules/@typescript-eslint/scope-manager/LICENSE +0 -21
  726. package/backend/node_modules/@typescript-eslint/scope-manager/README.md +0 -10
  727. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +0 -4
  728. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts.map +0 -1
  729. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.js +0 -21
  730. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.js.map +0 -1
  731. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +0 -72
  732. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts.map +0 -1
  733. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +0 -183
  734. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js.map +0 -1
  735. package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +0 -56
  736. package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts.map +0 -1
  737. package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +0 -42
  738. package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.js.map +0 -1
  739. package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +0 -3
  740. package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts.map +0 -1
  741. package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.js +0 -11
  742. package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.js.map +0 -1
  743. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +0 -10
  744. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts.map +0 -1
  745. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +0 -14
  746. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js.map +0 -1
  747. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +0 -10
  748. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts.map +0 -1
  749. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +0 -14
  750. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js.map +0 -1
  751. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +0 -14
  752. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts.map +0 -1
  753. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +0 -3
  754. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js.map +0 -1
  755. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +0 -39
  756. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts.map +0 -1
  757. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +0 -19
  758. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js.map +0 -1
  759. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +0 -15
  760. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts.map +0 -1
  761. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +0 -18
  762. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js.map +0 -1
  763. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +0 -10
  764. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts.map +0 -1
  765. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +0 -14
  766. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js.map +0 -1
  767. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +0 -10
  768. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts.map +0 -1
  769. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +0 -14
  770. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js.map +0 -1
  771. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +0 -11
  772. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts.map +0 -1
  773. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +0 -14
  774. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js.map +0 -1
  775. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +0 -14
  776. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts.map +0 -1
  777. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +0 -15
  778. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js.map +0 -1
  779. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +0 -10
  780. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts.map +0 -1
  781. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +0 -14
  782. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js.map +0 -1
  783. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +0 -10
  784. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts.map +0 -1
  785. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +0 -14
  786. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js.map +0 -1
  787. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +0 -10
  788. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts.map +0 -1
  789. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +0 -14
  790. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js.map +0 -1
  791. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +0 -10
  792. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts.map +0 -1
  793. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +0 -14
  794. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js.map +0 -1
  795. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +0 -10
  796. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts.map +0 -1
  797. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +0 -14
  798. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js.map +0 -1
  799. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +0 -14
  800. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts.map +0 -1
  801. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +0 -30
  802. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js.map +0 -1
  803. package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +0 -9
  804. package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts.map +0 -1
  805. package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.js +0 -31
  806. package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.js.map +0 -1
  807. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +0 -16
  808. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts.map +0 -1
  809. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +0 -23
  810. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js.map +0 -1
  811. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts +0 -3
  812. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts.map +0 -1
  813. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js +0 -23
  814. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js.map +0 -1
  815. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts +0 -3
  816. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts.map +0 -1
  817. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js +0 -15
  818. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js.map +0 -1
  819. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +0 -3
  820. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts.map +0 -1
  821. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +0 -3
  822. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts.map +0 -1
  823. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +0 -75
  824. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js.map +0 -1
  825. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +0 -1436
  826. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js.map +0 -1
  827. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +0 -3
  828. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts.map +0 -1
  829. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +0 -21
  830. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js.map +0 -1
  831. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +0 -3
  832. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts.map +0 -1
  833. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +0 -23
  834. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js.map +0 -1
  835. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +0 -3
  836. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts.map +0 -1
  837. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +0 -3
  838. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts.map +0 -1
  839. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +0 -16
  840. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js.map +0 -1
  841. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +0 -3
  842. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts.map +0 -1
  843. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +0 -55
  844. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js.map +0 -1
  845. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +0 -30
  846. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js.map +0 -1
  847. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +0 -3
  848. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts.map +0 -1
  849. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +0 -12
  850. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js.map +0 -1
  851. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +0 -3
  852. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts.map +0 -1
  853. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +0 -13
  854. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js.map +0 -1
  855. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +0 -3
  856. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts.map +0 -1
  857. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +0 -12
  858. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js.map +0 -1
  859. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +0 -3
  860. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts.map +0 -1
  861. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +0 -12
  862. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js.map +0 -1
  863. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +0 -3
  864. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts.map +0 -1
  865. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +0 -46
  866. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js.map +0 -1
  867. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +0 -3
  868. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts.map +0 -1
  869. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +0 -22
  870. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js.map +0 -1
  871. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +0 -3
  872. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts.map +0 -1
  873. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +0 -3
  874. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts.map +0 -1
  875. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +0 -20
  876. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js.map +0 -1
  877. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +0 -14
  878. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js.map +0 -1
  879. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +0 -3
  880. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts.map +0 -1
  881. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts +0 -3
  882. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts.map +0 -1
  883. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js +0 -12
  884. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js.map +0 -1
  885. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +0 -3
  886. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts.map +0 -1
  887. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +0 -20
  888. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js.map +0 -1
  889. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +0 -3
  890. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts.map +0 -1
  891. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +0 -12
  892. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js.map +0 -1
  893. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +0 -24
  894. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js.map +0 -1
  895. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +0 -3
  896. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts.map +0 -1
  897. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +0 -12
  898. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js.map +0 -1
  899. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +0 -3
  900. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts.map +0 -1
  901. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +0 -19
  902. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js.map +0 -1
  903. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +0 -3
  904. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts.map +0 -1
  905. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +0 -12
  906. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js.map +0 -1
  907. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +0 -3
  908. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts.map +0 -1
  909. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +0 -20
  910. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js.map +0 -1
  911. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +0 -3
  912. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts.map +0 -1
  913. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +0 -16
  914. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js.map +0 -1
  915. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +0 -3
  916. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts.map +0 -1
  917. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +0 -19
  918. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js.map +0 -1
  919. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +0 -3
  920. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts.map +0 -1
  921. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +0 -3
  922. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts.map +0 -1
  923. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +0 -20
  924. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js.map +0 -1
  925. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +0 -3
  926. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts.map +0 -1
  927. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +0 -12
  928. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js.map +0 -1
  929. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +0 -22
  930. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js.map +0 -1
  931. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +0 -3
  932. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts.map +0 -1
  933. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +0 -12
  934. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js.map +0 -1
  935. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +0 -3
  936. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts.map +0 -1
  937. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +0 -14
  938. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js.map +0 -1
  939. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +0 -3
  940. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts.map +0 -1
  941. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +0 -14
  942. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js.map +0 -1
  943. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +0 -3
  944. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts.map +0 -1
  945. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +0 -3
  946. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts.map +0 -1
  947. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +0 -20
  948. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js.map +0 -1
  949. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts +0 -3
  950. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts.map +0 -1
  951. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js +0 -12
  952. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js.map +0 -1
  953. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +0 -22
  954. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js.map +0 -1
  955. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +0 -3
  956. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts.map +0 -1
  957. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +0 -14
  958. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js.map +0 -1
  959. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +0 -3
  960. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts.map +0 -1
  961. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +0 -12
  962. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js.map +0 -1
  963. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +0 -3
  964. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts.map +0 -1
  965. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +0 -12
  966. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js.map +0 -1
  967. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +0 -3
  968. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts.map +0 -1
  969. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +0 -22
  970. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js.map +0 -1
  971. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +0 -3
  972. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts.map +0 -1
  973. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +0 -3
  974. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts.map +0 -1
  975. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +0 -14
  976. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js.map +0 -1
  977. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +0 -3
  978. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts.map +0 -1
  979. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +0 -20
  980. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js.map +0 -1
  981. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +0 -3
  982. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts.map +0 -1
  983. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +0 -14
  984. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js.map +0 -1
  985. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +0 -28
  986. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js.map +0 -1
  987. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +0 -3
  988. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts.map +0 -1
  989. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +0 -14
  990. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js.map +0 -1
  991. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +0 -3
  992. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts.map +0 -1
  993. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +0 -15
  994. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js.map +0 -1
  995. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +0 -3
  996. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts.map +0 -1
  997. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +0 -12
  998. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js.map +0 -1
  999. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +0 -3
  1000. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts.map +0 -1
  1001. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +0 -14
  1002. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js.map +0 -1
  1003. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +0 -3
  1004. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts.map +0 -1
  1005. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +0 -17
  1006. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js.map +0 -1
  1007. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +0 -3
  1008. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts.map +0 -1
  1009. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +0 -3
  1010. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts.map +0 -1
  1011. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +0 -20
  1012. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js.map +0 -1
  1013. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +0 -3
  1014. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts.map +0 -1
  1015. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +0 -12
  1016. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js.map +0 -1
  1017. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +0 -20
  1018. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js.map +0 -1
  1019. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +0 -3
  1020. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts.map +0 -1
  1021. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +0 -14
  1022. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js.map +0 -1
  1023. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +0 -3
  1024. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts.map +0 -1
  1025. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +0 -12
  1026. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js.map +0 -1
  1027. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +0 -3
  1028. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts.map +0 -1
  1029. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +0 -15
  1030. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js.map +0 -1
  1031. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +0 -3
  1032. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts.map +0 -1
  1033. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +0 -24
  1034. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js.map +0 -1
  1035. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +0 -3
  1036. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts.map +0 -1
  1037. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +0 -3
  1038. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts.map +0 -1
  1039. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +0 -21
  1040. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js.map +0 -1
  1041. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +0 -3
  1042. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts.map +0 -1
  1043. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +0 -20
  1044. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js.map +0 -1
  1045. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +0 -3
  1046. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts.map +0 -1
  1047. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js +0 -12
  1048. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js.map +0 -1
  1049. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +0 -26
  1050. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js.map +0 -1
  1051. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +0 -3
  1052. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts.map +0 -1
  1053. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +0 -12
  1054. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js.map +0 -1
  1055. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts +0 -3
  1056. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts.map +0 -1
  1057. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js +0 -15
  1058. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js.map +0 -1
  1059. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts +0 -3
  1060. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts.map +0 -1
  1061. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.js +0 -12
  1062. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.js.map +0 -1
  1063. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +0 -3
  1064. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts.map +0 -1
  1065. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +0 -12
  1066. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js.map +0 -1
  1067. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts +0 -3
  1068. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts.map +0 -1
  1069. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js +0 -24
  1070. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js.map +0 -1
  1071. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts +0 -3
  1072. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts.map +0 -1
  1073. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js +0 -12
  1074. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js.map +0 -1
  1075. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts +0 -3
  1076. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts.map +0 -1
  1077. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts +0 -3
  1078. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts.map +0 -1
  1079. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js +0 -20
  1080. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js.map +0 -1
  1081. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js +0 -16
  1082. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js.map +0 -1
  1083. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +0 -3
  1084. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts.map +0 -1
  1085. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +0 -117
  1086. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js.map +0 -1
  1087. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +0 -3
  1088. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts.map +0 -1
  1089. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +0 -30
  1090. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js.map +0 -1
  1091. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +0 -3
  1092. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts.map +0 -1
  1093. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +0 -14
  1094. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js.map +0 -1
  1095. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +0 -3
  1096. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts.map +0 -1
  1097. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +0 -24
  1098. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js.map +0 -1
  1099. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +0 -3
  1100. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts.map +0 -1
  1101. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +0 -19
  1102. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js.map +0 -1
  1103. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +0 -3
  1104. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts.map +0 -1
  1105. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +0 -22
  1106. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js.map +0 -1
  1107. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts +0 -3
  1108. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts.map +0 -1
  1109. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js +0 -12
  1110. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js.map +0 -1
  1111. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +0 -3
  1112. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts.map +0 -1
  1113. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts +0 -3
  1114. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts.map +0 -1
  1115. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js +0 -17
  1116. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js.map +0 -1
  1117. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts +0 -3
  1118. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts.map +0 -1
  1119. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js +0 -22
  1120. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js.map +0 -1
  1121. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +0 -3
  1122. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts.map +0 -1
  1123. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +0 -20
  1124. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js.map +0 -1
  1125. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +0 -3
  1126. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts.map +0 -1
  1127. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +0 -12
  1128. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js.map +0 -1
  1129. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +0 -18
  1130. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js.map +0 -1
  1131. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +0 -3
  1132. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts.map +0 -1
  1133. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +0 -14
  1134. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js.map +0 -1
  1135. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +0 -3
  1136. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts.map +0 -1
  1137. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +0 -12
  1138. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js.map +0 -1
  1139. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +0 -3
  1140. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts.map +0 -1
  1141. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +0 -12
  1142. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js.map +0 -1
  1143. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +0 -3
  1144. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts.map +0 -1
  1145. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +0 -15
  1146. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js.map +0 -1
  1147. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +0 -93
  1148. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts.map +0 -1
  1149. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +0 -189
  1150. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js.map +0 -1
  1151. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +0 -3
  1152. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts.map +0 -1
  1153. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +0 -18
  1154. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js.map +0 -1
  1155. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +0 -3
  1156. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts.map +0 -1
  1157. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +0 -24
  1158. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js.map +0 -1
  1159. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +0 -3
  1160. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts.map +0 -1
  1161. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +0 -3
  1162. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts.map +0 -1
  1163. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +0 -9
  1164. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js.map +0 -1
  1165. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +0 -3
  1166. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts.map +0 -1
  1167. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +0 -34
  1168. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js.map +0 -1
  1169. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +0 -589
  1170. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js.map +0 -1
  1171. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +0 -29
  1172. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts.map +0 -1
  1173. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +0 -311
  1174. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js.map +0 -1
  1175. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +0 -15
  1176. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts.map +0 -1
  1177. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +0 -84
  1178. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js.map +0 -1
  1179. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +0 -14
  1180. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts.map +0 -1
  1181. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +0 -50
  1182. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js.map +0 -1
  1183. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +0 -29
  1184. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts.map +0 -1
  1185. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +0 -108
  1186. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js.map +0 -1
  1187. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +0 -89
  1188. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts.map +0 -1
  1189. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +0 -107
  1190. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js.map +0 -1
  1191. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +0 -87
  1192. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts.map +0 -1
  1193. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +0 -548
  1194. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js.map +0 -1
  1195. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +0 -33
  1196. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts.map +0 -1
  1197. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +0 -230
  1198. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js.map +0 -1
  1199. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +0 -13
  1200. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts.map +0 -1
  1201. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +0 -41
  1202. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js.map +0 -1
  1203. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +0 -22
  1204. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts.map +0 -1
  1205. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +0 -80
  1206. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js.map +0 -1
  1207. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +0 -2
  1208. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts.map +0 -1
  1209. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +0 -6
  1210. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js.map +0 -1
  1211. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +0 -10
  1212. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts.map +0 -1
  1213. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +0 -12
  1214. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js.map +0 -1
  1215. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +0 -10
  1216. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts.map +0 -1
  1217. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +0 -12
  1218. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js.map +0 -1
  1219. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +0 -10
  1220. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts.map +0 -1
  1221. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +0 -12
  1222. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js.map +0 -1
  1223. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +0 -10
  1224. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts.map +0 -1
  1225. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +0 -12
  1226. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js.map +0 -1
  1227. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +0 -10
  1228. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts.map +0 -1
  1229. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +0 -12
  1230. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js.map +0 -1
  1231. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +0 -10
  1232. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts.map +0 -1
  1233. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +0 -12
  1234. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js.map +0 -1
  1235. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +0 -10
  1236. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts.map +0 -1
  1237. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +0 -12
  1238. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js.map +0 -1
  1239. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +0 -11
  1240. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts.map +0 -1
  1241. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +0 -17
  1242. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js.map +0 -1
  1243. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +0 -13
  1244. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts.map +0 -1
  1245. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +0 -36
  1246. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js.map +0 -1
  1247. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +0 -10
  1248. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts.map +0 -1
  1249. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +0 -12
  1250. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js.map +0 -1
  1251. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +0 -18
  1252. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts.map +0 -1
  1253. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +0 -39
  1254. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js.map +0 -1
  1255. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +0 -10
  1256. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts.map +0 -1
  1257. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +0 -12
  1258. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js.map +0 -1
  1259. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +0 -10
  1260. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts.map +0 -1
  1261. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +0 -12
  1262. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js.map +0 -1
  1263. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +0 -21
  1264. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts.map +0 -1
  1265. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +0 -3
  1266. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js.map +0 -1
  1267. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +0 -107
  1268. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts.map +0 -1
  1269. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +0 -351
  1270. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js.map +0 -1
  1271. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +0 -22
  1272. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts.map +0 -1
  1273. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +0 -25
  1274. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js.map +0 -1
  1275. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +0 -10
  1276. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts.map +0 -1
  1277. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +0 -12
  1278. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js.map +0 -1
  1279. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +0 -10
  1280. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts.map +0 -1
  1281. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +0 -12
  1282. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js.map +0 -1
  1283. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +0 -10
  1284. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts.map +0 -1
  1285. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +0 -12
  1286. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js.map +0 -1
  1287. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +0 -10
  1288. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts.map +0 -1
  1289. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +0 -12
  1290. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js.map +0 -1
  1291. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +0 -11
  1292. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts.map +0 -1
  1293. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +0 -22
  1294. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js.map +0 -1
  1295. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +0 -20
  1296. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts.map +0 -1
  1297. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +0 -36
  1298. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js.map +0 -1
  1299. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +0 -34
  1300. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts.map +0 -1
  1301. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +0 -12
  1302. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js.map +0 -1
  1303. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +0 -25
  1304. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts.map +0 -1
  1305. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +0 -19
  1306. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js.map +0 -1
  1307. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +0 -18
  1308. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts.map +0 -1
  1309. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +0 -33
  1310. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js.map +0 -1
  1311. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +0 -44
  1312. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts.map +0 -1
  1313. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +0 -39
  1314. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js.map +0 -1
  1315. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +0 -4
  1316. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts.map +0 -1
  1317. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +0 -10
  1318. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js.map +0 -1
  1319. package/backend/node_modules/@typescript-eslint/scope-manager/package.json +0 -71
  1320. package/backend/node_modules/@typescript-eslint/type-utils/LICENSE +0 -21
  1321. package/backend/node_modules/@typescript-eslint/type-utils/README.md +0 -14
  1322. package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.d.ts +0 -21
  1323. package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.d.ts.map +0 -1
  1324. package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.js +0 -188
  1325. package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.js.map +0 -1
  1326. package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.d.ts +0 -39
  1327. package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.d.ts.map +0 -1
  1328. package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.js +0 -130
  1329. package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.js.map +0 -1
  1330. package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts +0 -10
  1331. package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts.map +0 -1
  1332. package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js +0 -61
  1333. package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js.map +0 -1
  1334. package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts +0 -7
  1335. package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts.map +0 -1
  1336. package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js +0 -15
  1337. package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js.map +0 -1
  1338. package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts +0 -8
  1339. package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts.map +0 -1
  1340. package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js +0 -66
  1341. package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js.map +0 -1
  1342. package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts +0 -7
  1343. package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts.map +0 -1
  1344. package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js +0 -16
  1345. package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js.map +0 -1
  1346. package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts +0 -6
  1347. package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts.map +0 -1
  1348. package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js +0 -38
  1349. package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js.map +0 -1
  1350. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.d.ts +0 -3
  1351. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.d.ts.map +0 -1
  1352. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.js +0 -51
  1353. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.js.map +0 -1
  1354. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.d.ts +0 -6
  1355. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.d.ts.map +0 -1
  1356. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.js +0 -16
  1357. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.js.map +0 -1
  1358. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts +0 -8
  1359. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts.map +0 -1
  1360. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js +0 -74
  1361. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js.map +0 -1
  1362. package/backend/node_modules/@typescript-eslint/type-utils/dist/index.d.ts +0 -19
  1363. package/backend/node_modules/@typescript-eslint/type-utils/dist/index.d.ts.map +0 -1
  1364. package/backend/node_modules/@typescript-eslint/type-utils/dist/index.js +0 -39
  1365. package/backend/node_modules/@typescript-eslint/type-utils/dist/index.js.map +0 -1
  1366. package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.d.ts +0 -3
  1367. package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.d.ts.map +0 -1
  1368. package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.js +0 -18
  1369. package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.js.map +0 -1
  1370. package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts +0 -27
  1371. package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts.map +0 -1
  1372. package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js +0 -226
  1373. package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js.map +0 -1
  1374. package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts +0 -17
  1375. package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts.map +0 -1
  1376. package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js +0 -106
  1377. package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js.map +0 -1
  1378. package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts +0 -58
  1379. package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts.map +0 -1
  1380. package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.js +0 -169
  1381. package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.js.map +0 -1
  1382. package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts +0 -4
  1383. package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts.map +0 -1
  1384. package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js +0 -37
  1385. package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js.map +0 -1
  1386. package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts +0 -4
  1387. package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts.map +0 -1
  1388. package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js +0 -43
  1389. package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js.map +0 -1
  1390. package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts +0 -16
  1391. package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts.map +0 -1
  1392. package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js +0 -59
  1393. package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js.map +0 -1
  1394. package/backend/node_modules/@typescript-eslint/type-utils/package.json +0 -81
  1395. package/backend/node_modules/@typescript-eslint/utils/LICENSE +0 -21
  1396. package/backend/node_modules/@typescript-eslint/utils/README.md +0 -12
  1397. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts +0 -48
  1398. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts.map +0 -1
  1399. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js +0 -36
  1400. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js.map +0 -1
  1401. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +0 -76
  1402. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts.map +0 -1
  1403. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js +0 -40
  1404. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js.map +0 -1
  1405. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts +0 -76
  1406. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts.map +0 -1
  1407. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js +0 -99
  1408. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js.map +0 -1
  1409. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts +0 -6
  1410. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts.map +0 -1
  1411. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js +0 -22
  1412. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js.map +0 -1
  1413. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts +0 -32
  1414. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts.map +0 -1
  1415. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js +0 -72
  1416. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js.map +0 -1
  1417. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +0 -18
  1418. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts.map +0 -1
  1419. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js +0 -44
  1420. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js.map +0 -1
  1421. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts +0 -1231
  1422. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts.map +0 -1
  1423. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js +0 -22
  1424. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js.map +0 -1
  1425. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts +0 -5
  1426. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts.map +0 -1
  1427. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js +0 -21
  1428. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js.map +0 -1
  1429. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts +0 -8
  1430. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts.map +0 -1
  1431. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js +0 -13
  1432. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js.map +0 -1
  1433. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts +0 -70
  1434. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts.map +0 -1
  1435. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js +0 -135
  1436. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js.map +0 -1
  1437. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts +0 -11
  1438. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts.map +0 -1
  1439. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js +0 -3
  1440. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js.map +0 -1
  1441. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts +0 -35
  1442. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts.map +0 -1
  1443. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js +0 -45
  1444. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js.map +0 -1
  1445. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts +0 -10
  1446. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts.map +0 -1
  1447. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js +0 -34
  1448. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js.map +0 -1
  1449. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.d.ts +0 -10
  1450. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.d.ts.map +0 -1
  1451. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.js +0 -32
  1452. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.js.map +0 -1
  1453. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts +0 -17
  1454. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts.map +0 -1
  1455. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js +0 -48
  1456. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js.map +0 -1
  1457. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts +0 -24
  1458. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts.map +0 -1
  1459. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js +0 -46
  1460. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js.map +0 -1
  1461. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts +0 -8
  1462. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts.map +0 -1
  1463. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js +0 -24
  1464. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js.map +0 -1
  1465. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts +0 -14
  1466. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts.map +0 -1
  1467. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js +0 -28
  1468. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js.map +0 -1
  1469. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.d.ts +0 -2
  1470. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.d.ts.map +0 -1
  1471. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.js +0 -8
  1472. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.js.map +0 -1
  1473. package/backend/node_modules/@typescript-eslint/utils/dist/index.d.ts +0 -8
  1474. package/backend/node_modules/@typescript-eslint/utils/dist/index.d.ts.map +0 -1
  1475. package/backend/node_modules/@typescript-eslint/utils/dist/index.js +0 -41
  1476. package/backend/node_modules/@typescript-eslint/utils/dist/index.js.map +0 -1
  1477. package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts +0 -388
  1478. package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts.map +0 -1
  1479. package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.js +0 -9
  1480. package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.js.map +0 -1
  1481. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts +0 -9
  1482. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts.map +0 -1
  1483. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js +0 -4
  1484. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js.map +0 -1
  1485. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.d.ts +0 -131
  1486. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.d.ts.map +0 -1
  1487. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.js +0 -18
  1488. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.js.map +0 -1
  1489. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts +0 -260
  1490. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts.map +0 -1
  1491. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js +0 -4
  1492. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js.map +0 -1
  1493. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts +0 -374
  1494. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts.map +0 -1
  1495. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js +0 -24
  1496. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js.map +0 -1
  1497. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts +0 -247
  1498. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts.map +0 -1
  1499. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js +0 -14
  1500. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js.map +0 -1
  1501. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts +0 -89
  1502. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts.map +0 -1
  1503. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js +0 -4
  1504. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js.map +0 -1
  1505. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts +0 -2
  1506. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts.map +0 -1
  1507. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js +0 -3
  1508. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js.map +0 -1
  1509. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts +0 -37
  1510. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts.map +0 -1
  1511. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js +0 -4
  1512. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js.map +0 -1
  1513. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts +0 -514
  1514. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts.map +0 -1
  1515. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js +0 -3
  1516. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js.map +0 -1
  1517. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts +0 -162
  1518. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts.map +0 -1
  1519. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js +0 -8
  1520. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js.map +0 -1
  1521. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts +0 -44
  1522. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts.map +0 -1
  1523. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js +0 -34
  1524. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js.map +0 -1
  1525. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts +0 -362
  1526. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts.map +0 -1
  1527. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js +0 -9
  1528. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js.map +0 -1
  1529. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts +0 -13
  1530. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts.map +0 -1
  1531. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js +0 -29
  1532. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js.map +0 -1
  1533. package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts +0 -3
  1534. package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts.map +0 -1
  1535. package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.js +0 -10
  1536. package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.js.map +0 -1
  1537. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts +0 -2
  1538. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts.map +0 -1
  1539. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js +0 -18
  1540. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js.map +0 -1
  1541. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts +0 -2
  1542. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts.map +0 -1
  1543. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js +0 -9
  1544. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js.map +0 -1
  1545. package/backend/node_modules/@typescript-eslint/utils/package.json +0 -98
  1546. package/backend/node_modules/@typescript-eslint/visitor-keys/LICENSE +0 -21
  1547. package/backend/node_modules/@typescript-eslint/visitor-keys/README.md +0 -10
  1548. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +0 -4
  1549. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts.map +0 -1
  1550. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +0 -7
  1551. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js.map +0 -1
  1552. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +0 -3
  1553. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts.map +0 -1
  1554. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.js +0 -8
  1555. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.js.map +0 -1
  1556. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +0 -4
  1557. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts.map +0 -1
  1558. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +0 -190
  1559. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js.map +0 -1
  1560. package/backend/node_modules/@typescript-eslint/visitor-keys/package.json +0 -70
  1561. package/backend/node_modules/ansi-styles/index.d.ts +0 -345
  1562. package/backend/node_modules/ansi-styles/index.js +0 -163
  1563. package/backend/node_modules/ansi-styles/license +0 -9
  1564. package/backend/node_modules/ansi-styles/package.json +0 -56
  1565. package/backend/node_modules/ansi-styles/readme.md +0 -152
  1566. package/backend/node_modules/chalk/index.d.ts +0 -415
  1567. package/backend/node_modules/chalk/license +0 -9
  1568. package/backend/node_modules/chalk/package.json +0 -68
  1569. package/backend/node_modules/chalk/readme.md +0 -341
  1570. package/backend/node_modules/chalk/source/index.js +0 -229
  1571. package/backend/node_modules/chalk/source/templates.js +0 -134
  1572. package/backend/node_modules/chalk/source/util.js +0 -39
  1573. package/backend/node_modules/eslint/LICENSE +0 -19
  1574. package/backend/node_modules/eslint/README.md +0 -304
  1575. package/backend/node_modules/eslint/bin/eslint.js +0 -173
  1576. package/backend/node_modules/eslint/conf/config-schema.js +0 -93
  1577. package/backend/node_modules/eslint/conf/default-cli-options.js +0 -32
  1578. package/backend/node_modules/eslint/conf/globals.js +0 -154
  1579. package/backend/node_modules/eslint/conf/replacements.json +0 -22
  1580. package/backend/node_modules/eslint/conf/rule-type-list.json +0 -28
  1581. package/backend/node_modules/eslint/lib/api.js +0 -54
  1582. package/backend/node_modules/eslint/lib/cli-engine/cli-engine.js +0 -1078
  1583. package/backend/node_modules/eslint/lib/cli-engine/file-enumerator.js +0 -547
  1584. package/backend/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +0 -60
  1585. package/backend/node_modules/eslint/lib/cli-engine/formatters/compact.js +0 -60
  1586. package/backend/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +0 -46
  1587. package/backend/node_modules/eslint/lib/cli-engine/formatters/html.js +0 -351
  1588. package/backend/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +0 -41
  1589. package/backend/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +0 -16
  1590. package/backend/node_modules/eslint/lib/cli-engine/formatters/json.js +0 -13
  1591. package/backend/node_modules/eslint/lib/cli-engine/formatters/junit.js +0 -82
  1592. package/backend/node_modules/eslint/lib/cli-engine/formatters/stylish.js +0 -101
  1593. package/backend/node_modules/eslint/lib/cli-engine/formatters/tap.js +0 -95
  1594. package/backend/node_modules/eslint/lib/cli-engine/formatters/unix.js +0 -58
  1595. package/backend/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +0 -63
  1596. package/backend/node_modules/eslint/lib/cli-engine/hash.js +0 -35
  1597. package/backend/node_modules/eslint/lib/cli-engine/index.js +0 -7
  1598. package/backend/node_modules/eslint/lib/cli-engine/lint-result-cache.js +0 -203
  1599. package/backend/node_modules/eslint/lib/cli-engine/load-rules.js +0 -46
  1600. package/backend/node_modules/eslint/lib/cli-engine/xml-escape.js +0 -34
  1601. package/backend/node_modules/eslint/lib/cli.js +0 -471
  1602. package/backend/node_modules/eslint/lib/config/default-config.js +0 -67
  1603. package/backend/node_modules/eslint/lib/config/flat-config-array.js +0 -380
  1604. package/backend/node_modules/eslint/lib/config/flat-config-helpers.js +0 -111
  1605. package/backend/node_modules/eslint/lib/config/flat-config-schema.js +0 -598
  1606. package/backend/node_modules/eslint/lib/config/rule-validator.js +0 -158
  1607. package/backend/node_modules/eslint/lib/eslint/eslint-helpers.js +0 -932
  1608. package/backend/node_modules/eslint/lib/eslint/eslint.js +0 -707
  1609. package/backend/node_modules/eslint/lib/eslint/flat-eslint.js +0 -1159
  1610. package/backend/node_modules/eslint/lib/eslint/index.js +0 -9
  1611. package/backend/node_modules/eslint/lib/linter/apply-disable-directives.js +0 -465
  1612. package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +0 -852
  1613. package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +0 -263
  1614. package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +0 -2348
  1615. package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +0 -342
  1616. package/backend/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +0 -203
  1617. package/backend/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +0 -349
  1618. package/backend/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +0 -45
  1619. package/backend/node_modules/eslint/lib/linter/config-comment-parser.js +0 -185
  1620. package/backend/node_modules/eslint/lib/linter/index.js +0 -13
  1621. package/backend/node_modules/eslint/lib/linter/interpolate.js +0 -28
  1622. package/backend/node_modules/eslint/lib/linter/linter.js +0 -2119
  1623. package/backend/node_modules/eslint/lib/linter/node-event-generator.js +0 -354
  1624. package/backend/node_modules/eslint/lib/linter/report-translator.js +0 -369
  1625. package/backend/node_modules/eslint/lib/linter/rule-fixer.js +0 -140
  1626. package/backend/node_modules/eslint/lib/linter/rules.js +0 -80
  1627. package/backend/node_modules/eslint/lib/linter/safe-emitter.js +0 -52
  1628. package/backend/node_modules/eslint/lib/linter/source-code-fixer.js +0 -152
  1629. package/backend/node_modules/eslint/lib/linter/timing.js +0 -161
  1630. package/backend/node_modules/eslint/lib/options.js +0 -398
  1631. package/backend/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +0 -1131
  1632. package/backend/node_modules/eslint/lib/rule-tester/index.js +0 -5
  1633. package/backend/node_modules/eslint/lib/rule-tester/rule-tester.js +0 -1206
  1634. package/backend/node_modules/eslint/lib/rules/accessor-pairs.js +0 -346
  1635. package/backend/node_modules/eslint/lib/rules/array-bracket-newline.js +0 -261
  1636. package/backend/node_modules/eslint/lib/rules/array-bracket-spacing.js +0 -244
  1637. package/backend/node_modules/eslint/lib/rules/array-callback-return.js +0 -446
  1638. package/backend/node_modules/eslint/lib/rules/array-element-newline.js +0 -311
  1639. package/backend/node_modules/eslint/lib/rules/arrow-body-style.js +0 -296
  1640. package/backend/node_modules/eslint/lib/rules/arrow-parens.js +0 -186
  1641. package/backend/node_modules/eslint/lib/rules/arrow-spacing.js +0 -164
  1642. package/backend/node_modules/eslint/lib/rules/block-scoped-var.js +0 -135
  1643. package/backend/node_modules/eslint/lib/rules/block-spacing.js +0 -174
  1644. package/backend/node_modules/eslint/lib/rules/brace-style.js +0 -197
  1645. package/backend/node_modules/eslint/lib/rules/callback-return.js +0 -187
  1646. package/backend/node_modules/eslint/lib/rules/camelcase.js +0 -399
  1647. package/backend/node_modules/eslint/lib/rules/capitalized-comments.js +0 -300
  1648. package/backend/node_modules/eslint/lib/rules/class-methods-use-this.js +0 -187
  1649. package/backend/node_modules/eslint/lib/rules/comma-dangle.js +0 -373
  1650. package/backend/node_modules/eslint/lib/rules/comma-spacing.js +0 -192
  1651. package/backend/node_modules/eslint/lib/rules/comma-style.js +0 -314
  1652. package/backend/node_modules/eslint/lib/rules/complexity.js +0 -165
  1653. package/backend/node_modules/eslint/lib/rules/computed-property-spacing.js +0 -208
  1654. package/backend/node_modules/eslint/lib/rules/consistent-return.js +0 -210
  1655. package/backend/node_modules/eslint/lib/rules/consistent-this.js +0 -153
  1656. package/backend/node_modules/eslint/lib/rules/constructor-super.js +0 -446
  1657. package/backend/node_modules/eslint/lib/rules/curly.js +0 -486
  1658. package/backend/node_modules/eslint/lib/rules/default-case-last.js +0 -44
  1659. package/backend/node_modules/eslint/lib/rules/default-case.js +0 -97
  1660. package/backend/node_modules/eslint/lib/rules/default-param-last.js +0 -62
  1661. package/backend/node_modules/eslint/lib/rules/dot-location.js +0 -108
  1662. package/backend/node_modules/eslint/lib/rules/dot-notation.js +0 -176
  1663. package/backend/node_modules/eslint/lib/rules/eol-last.js +0 -115
  1664. package/backend/node_modules/eslint/lib/rules/eqeqeq.js +0 -174
  1665. package/backend/node_modules/eslint/lib/rules/for-direction.js +0 -140
  1666. package/backend/node_modules/eslint/lib/rules/func-call-spacing.js +0 -233
  1667. package/backend/node_modules/eslint/lib/rules/func-name-matching.js +0 -253
  1668. package/backend/node_modules/eslint/lib/rules/func-names.js +0 -191
  1669. package/backend/node_modules/eslint/lib/rules/func-style.js +0 -98
  1670. package/backend/node_modules/eslint/lib/rules/function-call-argument-newline.js +0 -125
  1671. package/backend/node_modules/eslint/lib/rules/function-paren-newline.js +0 -292
  1672. package/backend/node_modules/eslint/lib/rules/generator-star-spacing.js +0 -209
  1673. package/backend/node_modules/eslint/lib/rules/getter-return.js +0 -204
  1674. package/backend/node_modules/eslint/lib/rules/global-require.js +0 -90
  1675. package/backend/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +0 -215
  1676. package/backend/node_modules/eslint/lib/rules/guard-for-in.js +0 -76
  1677. package/backend/node_modules/eslint/lib/rules/handle-callback-err.js +0 -101
  1678. package/backend/node_modules/eslint/lib/rules/id-blacklist.js +0 -246
  1679. package/backend/node_modules/eslint/lib/rules/id-denylist.js +0 -228
  1680. package/backend/node_modules/eslint/lib/rules/id-length.js +0 -177
  1681. package/backend/node_modules/eslint/lib/rules/id-match.js +0 -299
  1682. package/backend/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +0 -84
  1683. package/backend/node_modules/eslint/lib/rules/indent-legacy.js +0 -1126
  1684. package/backend/node_modules/eslint/lib/rules/indent.js +0 -1803
  1685. package/backend/node_modules/eslint/lib/rules/index.js +0 -306
  1686. package/backend/node_modules/eslint/lib/rules/init-declarations.js +0 -139
  1687. package/backend/node_modules/eslint/lib/rules/jsx-quotes.js +0 -98
  1688. package/backend/node_modules/eslint/lib/rules/key-spacing.js +0 -687
  1689. package/backend/node_modules/eslint/lib/rules/keyword-spacing.js +0 -640
  1690. package/backend/node_modules/eslint/lib/rules/line-comment-position.js +0 -122
  1691. package/backend/node_modules/eslint/lib/rules/linebreak-style.js +0 -108
  1692. package/backend/node_modules/eslint/lib/rules/lines-around-comment.js +0 -471
  1693. package/backend/node_modules/eslint/lib/rules/lines-around-directive.js +0 -201
  1694. package/backend/node_modules/eslint/lib/rules/lines-between-class-members.js +0 -269
  1695. package/backend/node_modules/eslint/lib/rules/logical-assignment-operators.js +0 -504
  1696. package/backend/node_modules/eslint/lib/rules/max-classes-per-file.js +0 -89
  1697. package/backend/node_modules/eslint/lib/rules/max-depth.js +0 -156
  1698. package/backend/node_modules/eslint/lib/rules/max-len.js +0 -440
  1699. package/backend/node_modules/eslint/lib/rules/max-lines-per-function.js +0 -213
  1700. package/backend/node_modules/eslint/lib/rules/max-lines.js +0 -193
  1701. package/backend/node_modules/eslint/lib/rules/max-nested-callbacks.js +0 -117
  1702. package/backend/node_modules/eslint/lib/rules/max-params.js +0 -102
  1703. package/backend/node_modules/eslint/lib/rules/max-statements-per-line.js +0 -199
  1704. package/backend/node_modules/eslint/lib/rules/max-statements.js +0 -184
  1705. package/backend/node_modules/eslint/lib/rules/multiline-comment-style.js +0 -474
  1706. package/backend/node_modules/eslint/lib/rules/multiline-ternary.js +0 -174
  1707. package/backend/node_modules/eslint/lib/rules/new-cap.js +0 -276
  1708. package/backend/node_modules/eslint/lib/rules/new-parens.js +0 -93
  1709. package/backend/node_modules/eslint/lib/rules/newline-after-var.js +0 -253
  1710. package/backend/node_modules/eslint/lib/rules/newline-before-return.js +0 -217
  1711. package/backend/node_modules/eslint/lib/rules/newline-per-chained-call.js +0 -126
  1712. package/backend/node_modules/eslint/lib/rules/no-alert.js +0 -138
  1713. package/backend/node_modules/eslint/lib/rules/no-array-constructor.js +0 -133
  1714. package/backend/node_modules/eslint/lib/rules/no-async-promise-executor.js +0 -39
  1715. package/backend/node_modules/eslint/lib/rules/no-await-in-loop.js +0 -106
  1716. package/backend/node_modules/eslint/lib/rules/no-bitwise.js +0 -119
  1717. package/backend/node_modules/eslint/lib/rules/no-buffer-constructor.js +0 -50
  1718. package/backend/node_modules/eslint/lib/rules/no-caller.js +0 -46
  1719. package/backend/node_modules/eslint/lib/rules/no-case-declarations.js +0 -64
  1720. package/backend/node_modules/eslint/lib/rules/no-catch-shadow.js +0 -82
  1721. package/backend/node_modules/eslint/lib/rules/no-class-assign.js +0 -63
  1722. package/backend/node_modules/eslint/lib/rules/no-compare-neg-zero.js +0 -60
  1723. package/backend/node_modules/eslint/lib/rules/no-cond-assign.js +0 -159
  1724. package/backend/node_modules/eslint/lib/rules/no-confusing-arrow.js +0 -92
  1725. package/backend/node_modules/eslint/lib/rules/no-console.js +0 -207
  1726. package/backend/node_modules/eslint/lib/rules/no-const-assign.js +0 -56
  1727. package/backend/node_modules/eslint/lib/rules/no-constant-binary-expression.js +0 -509
  1728. package/backend/node_modules/eslint/lib/rules/no-constant-condition.js +0 -150
  1729. package/backend/node_modules/eslint/lib/rules/no-constructor-return.js +0 -62
  1730. package/backend/node_modules/eslint/lib/rules/no-continue.js +0 -39
  1731. package/backend/node_modules/eslint/lib/rules/no-control-regex.js +0 -138
  1732. package/backend/node_modules/eslint/lib/rules/no-debugger.js +0 -43
  1733. package/backend/node_modules/eslint/lib/rules/no-delete-var.js +0 -42
  1734. package/backend/node_modules/eslint/lib/rules/no-div-regex.js +0 -53
  1735. package/backend/node_modules/eslint/lib/rules/no-dupe-args.js +0 -82
  1736. package/backend/node_modules/eslint/lib/rules/no-dupe-class-members.js +0 -104
  1737. package/backend/node_modules/eslint/lib/rules/no-dupe-else-if.js +0 -122
  1738. package/backend/node_modules/eslint/lib/rules/no-dupe-keys.js +0 -142
  1739. package/backend/node_modules/eslint/lib/rules/no-duplicate-case.js +0 -71
  1740. package/backend/node_modules/eslint/lib/rules/no-duplicate-imports.js +0 -290
  1741. package/backend/node_modules/eslint/lib/rules/no-else-return.js +0 -405
  1742. package/backend/node_modules/eslint/lib/rules/no-empty-character-class.js +0 -76
  1743. package/backend/node_modules/eslint/lib/rules/no-empty-function.js +0 -167
  1744. package/backend/node_modules/eslint/lib/rules/no-empty-pattern.js +0 -78
  1745. package/backend/node_modules/eslint/lib/rules/no-empty-static-block.js +0 -47
  1746. package/backend/node_modules/eslint/lib/rules/no-empty.js +0 -103
  1747. package/backend/node_modules/eslint/lib/rules/no-eq-null.js +0 -46
  1748. package/backend/node_modules/eslint/lib/rules/no-eval.js +0 -286
  1749. package/backend/node_modules/eslint/lib/rules/no-ex-assign.js +0 -54
  1750. package/backend/node_modules/eslint/lib/rules/no-extend-native.js +0 -179
  1751. package/backend/node_modules/eslint/lib/rules/no-extra-bind.js +0 -213
  1752. package/backend/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +0 -317
  1753. package/backend/node_modules/eslint/lib/rules/no-extra-label.js +0 -149
  1754. package/backend/node_modules/eslint/lib/rules/no-extra-parens.js +0 -1322
  1755. package/backend/node_modules/eslint/lib/rules/no-extra-semi.js +0 -147
  1756. package/backend/node_modules/eslint/lib/rules/no-fallthrough.js +0 -196
  1757. package/backend/node_modules/eslint/lib/rules/no-floating-decimal.js +0 -73
  1758. package/backend/node_modules/eslint/lib/rules/no-func-assign.js +0 -78
  1759. package/backend/node_modules/eslint/lib/rules/no-global-assign.js +0 -95
  1760. package/backend/node_modules/eslint/lib/rules/no-implicit-coercion.js +0 -380
  1761. package/backend/node_modules/eslint/lib/rules/no-implicit-globals.js +0 -146
  1762. package/backend/node_modules/eslint/lib/rules/no-implied-eval.js +0 -132
  1763. package/backend/node_modules/eslint/lib/rules/no-import-assign.js +0 -241
  1764. package/backend/node_modules/eslint/lib/rules/no-inline-comments.js +0 -110
  1765. package/backend/node_modules/eslint/lib/rules/no-inner-declarations.js +0 -110
  1766. package/backend/node_modules/eslint/lib/rules/no-invalid-regexp.js +0 -194
  1767. package/backend/node_modules/eslint/lib/rules/no-invalid-this.js +0 -150
  1768. package/backend/node_modules/eslint/lib/rules/no-irregular-whitespace.js +0 -276
  1769. package/backend/node_modules/eslint/lib/rules/no-iterator.js +0 -52
  1770. package/backend/node_modules/eslint/lib/rules/no-label-var.js +0 -80
  1771. package/backend/node_modules/eslint/lib/rules/no-labels.js +0 -149
  1772. package/backend/node_modules/eslint/lib/rules/no-lone-blocks.js +0 -136
  1773. package/backend/node_modules/eslint/lib/rules/no-lonely-if.js +0 -88
  1774. package/backend/node_modules/eslint/lib/rules/no-loop-func.js +0 -206
  1775. package/backend/node_modules/eslint/lib/rules/no-loss-of-precision.js +0 -214
  1776. package/backend/node_modules/eslint/lib/rules/no-magic-numbers.js +0 -243
  1777. package/backend/node_modules/eslint/lib/rules/no-misleading-character-class.js +0 -300
  1778. package/backend/node_modules/eslint/lib/rules/no-mixed-operators.js +0 -229
  1779. package/backend/node_modules/eslint/lib/rules/no-mixed-requires.js +0 -238
  1780. package/backend/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +0 -116
  1781. package/backend/node_modules/eslint/lib/rules/no-multi-assign.js +0 -67
  1782. package/backend/node_modules/eslint/lib/rules/no-multi-spaces.js +0 -141
  1783. package/backend/node_modules/eslint/lib/rules/no-multi-str.js +0 -65
  1784. package/backend/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +0 -154
  1785. package/backend/node_modules/eslint/lib/rules/no-native-reassign.js +0 -98
  1786. package/backend/node_modules/eslint/lib/rules/no-negated-condition.js +0 -95
  1787. package/backend/node_modules/eslint/lib/rules/no-negated-in-lhs.js +0 -46
  1788. package/backend/node_modules/eslint/lib/rules/no-nested-ternary.js +0 -44
  1789. package/backend/node_modules/eslint/lib/rules/no-new-func.js +0 -87
  1790. package/backend/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +0 -66
  1791. package/backend/node_modules/eslint/lib/rules/no-new-object.js +0 -67
  1792. package/backend/node_modules/eslint/lib/rules/no-new-require.js +0 -50
  1793. package/backend/node_modules/eslint/lib/rules/no-new-symbol.js +0 -56
  1794. package/backend/node_modules/eslint/lib/rules/no-new-wrappers.js +0 -60
  1795. package/backend/node_modules/eslint/lib/rules/no-new.js +0 -43
  1796. package/backend/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +0 -148
  1797. package/backend/node_modules/eslint/lib/rules/no-obj-calls.js +0 -86
  1798. package/backend/node_modules/eslint/lib/rules/no-object-constructor.js +0 -117
  1799. package/backend/node_modules/eslint/lib/rules/no-octal-escape.js +0 -56
  1800. package/backend/node_modules/eslint/lib/rules/no-octal.js +0 -45
  1801. package/backend/node_modules/eslint/lib/rules/no-param-reassign.js +0 -230
  1802. package/backend/node_modules/eslint/lib/rules/no-path-concat.js +0 -64
  1803. package/backend/node_modules/eslint/lib/rules/no-plusplus.js +0 -105
  1804. package/backend/node_modules/eslint/lib/rules/no-process-env.js +0 -51
  1805. package/backend/node_modules/eslint/lib/rules/no-process-exit.js +0 -47
  1806. package/backend/node_modules/eslint/lib/rules/no-promise-executor-return.js +0 -263
  1807. package/backend/node_modules/eslint/lib/rules/no-proto.js +0 -48
  1808. package/backend/node_modules/eslint/lib/rules/no-prototype-builtins.js +0 -159
  1809. package/backend/node_modules/eslint/lib/rules/no-redeclare.js +0 -174
  1810. package/backend/node_modules/eslint/lib/rules/no-regex-spaces.js +0 -197
  1811. package/backend/node_modules/eslint/lib/rules/no-restricted-exports.js +0 -193
  1812. package/backend/node_modules/eslint/lib/rules/no-restricted-globals.js +0 -124
  1813. package/backend/node_modules/eslint/lib/rules/no-restricted-imports.js +0 -410
  1814. package/backend/node_modules/eslint/lib/rules/no-restricted-modules.js +0 -213
  1815. package/backend/node_modules/eslint/lib/rules/no-restricted-properties.js +0 -168
  1816. package/backend/node_modules/eslint/lib/rules/no-restricted-syntax.js +0 -70
  1817. package/backend/node_modules/eslint/lib/rules/no-return-assign.js +0 -80
  1818. package/backend/node_modules/eslint/lib/rules/no-return-await.js +0 -135
  1819. package/backend/node_modules/eslint/lib/rules/no-script-url.js +0 -61
  1820. package/backend/node_modules/eslint/lib/rules/no-self-assign.js +0 -183
  1821. package/backend/node_modules/eslint/lib/rules/no-self-compare.js +0 -60
  1822. package/backend/node_modules/eslint/lib/rules/no-sequences.js +0 -138
  1823. package/backend/node_modules/eslint/lib/rules/no-setter-return.js +0 -226
  1824. package/backend/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +0 -65
  1825. package/backend/node_modules/eslint/lib/rules/no-shadow.js +0 -336
  1826. package/backend/node_modules/eslint/lib/rules/no-spaced-func.js +0 -83
  1827. package/backend/node_modules/eslint/lib/rules/no-sparse-arrays.js +0 -50
  1828. package/backend/node_modules/eslint/lib/rules/no-sync.js +0 -64
  1829. package/backend/node_modules/eslint/lib/rules/no-tabs.js +0 -81
  1830. package/backend/node_modules/eslint/lib/rules/no-template-curly-in-string.js +0 -44
  1831. package/backend/node_modules/eslint/lib/rules/no-ternary.js +0 -41
  1832. package/backend/node_modules/eslint/lib/rules/no-this-before-super.js +0 -331
  1833. package/backend/node_modules/eslint/lib/rules/no-throw-literal.js +0 -51
  1834. package/backend/node_modules/eslint/lib/rules/no-trailing-spaces.js +0 -193
  1835. package/backend/node_modules/eslint/lib/rules/no-undef-init.js +0 -75
  1836. package/backend/node_modules/eslint/lib/rules/no-undef.js +0 -79
  1837. package/backend/node_modules/eslint/lib/rules/no-undefined.js +0 -86
  1838. package/backend/node_modules/eslint/lib/rules/no-underscore-dangle.js +0 -335
  1839. package/backend/node_modules/eslint/lib/rules/no-unexpected-multiline.js +0 -120
  1840. package/backend/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +0 -360
  1841. package/backend/node_modules/eslint/lib/rules/no-unneeded-ternary.js +0 -166
  1842. package/backend/node_modules/eslint/lib/rules/no-unreachable-loop.js +0 -185
  1843. package/backend/node_modules/eslint/lib/rules/no-unreachable.js +0 -293
  1844. package/backend/node_modules/eslint/lib/rules/no-unsafe-finally.js +0 -111
  1845. package/backend/node_modules/eslint/lib/rules/no-unsafe-negation.js +0 -128
  1846. package/backend/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +0 -205
  1847. package/backend/node_modules/eslint/lib/rules/no-unused-expressions.js +0 -186
  1848. package/backend/node_modules/eslint/lib/rules/no-unused-labels.js +0 -143
  1849. package/backend/node_modules/eslint/lib/rules/no-unused-private-class-members.js +0 -195
  1850. package/backend/node_modules/eslint/lib/rules/no-unused-vars.js +0 -718
  1851. package/backend/node_modules/eslint/lib/rules/no-use-before-define.js +0 -348
  1852. package/backend/node_modules/eslint/lib/rules/no-useless-backreference.js +0 -194
  1853. package/backend/node_modules/eslint/lib/rules/no-useless-call.js +0 -90
  1854. package/backend/node_modules/eslint/lib/rules/no-useless-catch.js +0 -57
  1855. package/backend/node_modules/eslint/lib/rules/no-useless-computed-key.js +0 -168
  1856. package/backend/node_modules/eslint/lib/rules/no-useless-concat.js +0 -115
  1857. package/backend/node_modules/eslint/lib/rules/no-useless-constructor.js +0 -189
  1858. package/backend/node_modules/eslint/lib/rules/no-useless-escape.js +0 -333
  1859. package/backend/node_modules/eslint/lib/rules/no-useless-rename.js +0 -172
  1860. package/backend/node_modules/eslint/lib/rules/no-useless-return.js +0 -364
  1861. package/backend/node_modules/eslint/lib/rules/no-var.js +0 -334
  1862. package/backend/node_modules/eslint/lib/rules/no-void.js +0 -64
  1863. package/backend/node_modules/eslint/lib/rules/no-warning-comments.js +0 -201
  1864. package/backend/node_modules/eslint/lib/rules/no-whitespace-before-property.js +0 -116
  1865. package/backend/node_modules/eslint/lib/rules/no-with.js +0 -39
  1866. package/backend/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +0 -127
  1867. package/backend/node_modules/eslint/lib/rules/object-curly-newline.js +0 -324
  1868. package/backend/node_modules/eslint/lib/rules/object-curly-spacing.js +0 -311
  1869. package/backend/node_modules/eslint/lib/rules/object-property-newline.js +0 -102
  1870. package/backend/node_modules/eslint/lib/rules/object-shorthand.js +0 -520
  1871. package/backend/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +0 -95
  1872. package/backend/node_modules/eslint/lib/rules/one-var.js +0 -567
  1873. package/backend/node_modules/eslint/lib/rules/operator-assignment.js +0 -209
  1874. package/backend/node_modules/eslint/lib/rules/operator-linebreak.js +0 -253
  1875. package/backend/node_modules/eslint/lib/rules/padded-blocks.js +0 -310
  1876. package/backend/node_modules/eslint/lib/rules/padding-line-between-statements.js +0 -590
  1877. package/backend/node_modules/eslint/lib/rules/prefer-arrow-callback.js +0 -381
  1878. package/backend/node_modules/eslint/lib/rules/prefer-const.js +0 -501
  1879. package/backend/node_modules/eslint/lib/rules/prefer-destructuring.js +0 -301
  1880. package/backend/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +0 -191
  1881. package/backend/node_modules/eslint/lib/rules/prefer-named-capture-group.js +0 -178
  1882. package/backend/node_modules/eslint/lib/rules/prefer-numeric-literals.js +0 -148
  1883. package/backend/node_modules/eslint/lib/rules/prefer-object-has-own.js +0 -114
  1884. package/backend/node_modules/eslint/lib/rules/prefer-object-spread.js +0 -298
  1885. package/backend/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +0 -132
  1886. package/backend/node_modules/eslint/lib/rules/prefer-reflect.js +0 -127
  1887. package/backend/node_modules/eslint/lib/rules/prefer-regex-literals.js +0 -507
  1888. package/backend/node_modules/eslint/lib/rules/prefer-rest-params.js +0 -118
  1889. package/backend/node_modules/eslint/lib/rules/prefer-spread.js +0 -87
  1890. package/backend/node_modules/eslint/lib/rules/prefer-template.js +0 -275
  1891. package/backend/node_modules/eslint/lib/rules/quote-props.js +0 -310
  1892. package/backend/node_modules/eslint/lib/rules/quotes.js +0 -350
  1893. package/backend/node_modules/eslint/lib/rules/radix.js +0 -198
  1894. package/backend/node_modules/eslint/lib/rules/require-atomic-updates.js +0 -331
  1895. package/backend/node_modules/eslint/lib/rules/require-await.js +0 -113
  1896. package/backend/node_modules/eslint/lib/rules/require-jsdoc.js +0 -122
  1897. package/backend/node_modules/eslint/lib/rules/require-unicode-regexp.js +0 -129
  1898. package/backend/node_modules/eslint/lib/rules/require-yield.js +0 -77
  1899. package/backend/node_modules/eslint/lib/rules/rest-spread-spacing.js +0 -123
  1900. package/backend/node_modules/eslint/lib/rules/semi-spacing.js +0 -248
  1901. package/backend/node_modules/eslint/lib/rules/semi-style.js +0 -158
  1902. package/backend/node_modules/eslint/lib/rules/semi.js +0 -438
  1903. package/backend/node_modules/eslint/lib/rules/sort-imports.js +0 -241
  1904. package/backend/node_modules/eslint/lib/rules/sort-keys.js +0 -230
  1905. package/backend/node_modules/eslint/lib/rules/sort-vars.js +0 -104
  1906. package/backend/node_modules/eslint/lib/rules/space-before-blocks.js +0 -204
  1907. package/backend/node_modules/eslint/lib/rules/space-before-function-paren.js +0 -167
  1908. package/backend/node_modules/eslint/lib/rules/space-in-parens.js +0 -285
  1909. package/backend/node_modules/eslint/lib/rules/space-infix-ops.js +0 -198
  1910. package/backend/node_modules/eslint/lib/rules/space-unary-ops.js +0 -324
  1911. package/backend/node_modules/eslint/lib/rules/spaced-comment.js +0 -385
  1912. package/backend/node_modules/eslint/lib/rules/strict.js +0 -277
  1913. package/backend/node_modules/eslint/lib/rules/switch-colon-spacing.js +0 -132
  1914. package/backend/node_modules/eslint/lib/rules/symbol-description.js +0 -73
  1915. package/backend/node_modules/eslint/lib/rules/template-curly-spacing.js +0 -144
  1916. package/backend/node_modules/eslint/lib/rules/template-tag-spacing.js +0 -93
  1917. package/backend/node_modules/eslint/lib/rules/unicode-bom.js +0 -73
  1918. package/backend/node_modules/eslint/lib/rules/use-isnan.js +0 -141
  1919. package/backend/node_modules/eslint/lib/rules/utils/ast-utils.js +0 -2282
  1920. package/backend/node_modules/eslint/lib/rules/utils/fix-tracker.js +0 -114
  1921. package/backend/node_modules/eslint/lib/rules/utils/keywords.js +0 -67
  1922. package/backend/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +0 -115
  1923. package/backend/node_modules/eslint/lib/rules/utils/patterns/letters.js +0 -36
  1924. package/backend/node_modules/eslint/lib/rules/utils/regular-expressions.js +0 -42
  1925. package/backend/node_modules/eslint/lib/rules/utils/unicode/index.js +0 -11
  1926. package/backend/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +0 -13
  1927. package/backend/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +0 -13
  1928. package/backend/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +0 -13
  1929. package/backend/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +0 -14
  1930. package/backend/node_modules/eslint/lib/rules/valid-jsdoc.js +0 -516
  1931. package/backend/node_modules/eslint/lib/rules/valid-typeof.js +0 -127
  1932. package/backend/node_modules/eslint/lib/rules/vars-on-top.js +0 -157
  1933. package/backend/node_modules/eslint/lib/rules/wrap-iife.js +0 -207
  1934. package/backend/node_modules/eslint/lib/rules/wrap-regex.js +0 -61
  1935. package/backend/node_modules/eslint/lib/rules/yield-star-spacing.js +0 -130
  1936. package/backend/node_modules/eslint/lib/rules/yoda.js +0 -353
  1937. package/backend/node_modules/eslint/lib/shared/ajv.js +0 -34
  1938. package/backend/node_modules/eslint/lib/shared/ast-utils.js +0 -29
  1939. package/backend/node_modules/eslint/lib/shared/config-validator.js +0 -347
  1940. package/backend/node_modules/eslint/lib/shared/deprecation-warnings.js +0 -58
  1941. package/backend/node_modules/eslint/lib/shared/directives.js +0 -15
  1942. package/backend/node_modules/eslint/lib/shared/logging.js +0 -30
  1943. package/backend/node_modules/eslint/lib/shared/relative-module-resolver.js +0 -50
  1944. package/backend/node_modules/eslint/lib/shared/runtime-info.js +0 -167
  1945. package/backend/node_modules/eslint/lib/shared/severity.js +0 -49
  1946. package/backend/node_modules/eslint/lib/shared/string-utils.js +0 -60
  1947. package/backend/node_modules/eslint/lib/shared/traverser.js +0 -195
  1948. package/backend/node_modules/eslint/lib/shared/types.js +0 -216
  1949. package/backend/node_modules/eslint/lib/source-code/index.js +0 -5
  1950. package/backend/node_modules/eslint/lib/source-code/source-code.js +0 -1055
  1951. package/backend/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +0 -57
  1952. package/backend/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +0 -58
  1953. package/backend/node_modules/eslint/lib/source-code/token-store/cursor.js +0 -76
  1954. package/backend/node_modules/eslint/lib/source-code/token-store/cursors.js +0 -90
  1955. package/backend/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +0 -39
  1956. package/backend/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +0 -43
  1957. package/backend/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +0 -57
  1958. package/backend/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +0 -63
  1959. package/backend/node_modules/eslint/lib/source-code/token-store/index.js +0 -627
  1960. package/backend/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +0 -40
  1961. package/backend/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +0 -38
  1962. package/backend/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +0 -42
  1963. package/backend/node_modules/eslint/lib/source-code/token-store/utils.js +0 -107
  1964. package/backend/node_modules/eslint/lib/unsupported-api.js +0 -30
  1965. package/backend/node_modules/eslint/messages/all-files-ignored.js +0 -16
  1966. package/backend/node_modules/eslint/messages/eslintrc-incompat.js +0 -98
  1967. package/backend/node_modules/eslint/messages/eslintrc-plugins.js +0 -24
  1968. package/backend/node_modules/eslint/messages/extend-config-missing.js +0 -13
  1969. package/backend/node_modules/eslint/messages/failed-to-read-json.js +0 -11
  1970. package/backend/node_modules/eslint/messages/file-not-found.js +0 -10
  1971. package/backend/node_modules/eslint/messages/invalid-rule-options.js +0 -17
  1972. package/backend/node_modules/eslint/messages/invalid-rule-severity.js +0 -13
  1973. package/backend/node_modules/eslint/messages/no-config-found.js +0 -15
  1974. package/backend/node_modules/eslint/messages/plugin-conflict.js +0 -22
  1975. package/backend/node_modules/eslint/messages/plugin-invalid.js +0 -16
  1976. package/backend/node_modules/eslint/messages/plugin-missing.js +0 -19
  1977. package/backend/node_modules/eslint/messages/print-config-with-directory-path.js +0 -8
  1978. package/backend/node_modules/eslint/messages/shared.js +0 -18
  1979. package/backend/node_modules/eslint/messages/whitespace-found.js +0 -11
  1980. package/backend/node_modules/eslint/package.json +0 -181
  1981. package/backend/node_modules/supports-color/browser.js +0 -5
  1982. package/backend/node_modules/supports-color/index.js +0 -135
  1983. package/backend/node_modules/supports-color/license +0 -9
  1984. package/backend/node_modules/supports-color/package.json +0 -53
  1985. package/backend/node_modules/supports-color/readme.md +0 -76
  1986. package/backend/node_modules/ts-api-utils/LICENSE.md +0 -20
  1987. package/backend/node_modules/ts-api-utils/README.md +0 -83
  1988. package/backend/node_modules/ts-api-utils/lib/index.cjs +0 -2307
  1989. package/backend/node_modules/ts-api-utils/lib/index.d.cts +0 -3063
  1990. package/backend/node_modules/ts-api-utils/lib/index.d.ts +0 -3063
  1991. package/backend/node_modules/ts-api-utils/lib/index.js +0 -2106
  1992. package/backend/node_modules/ts-api-utils/package.json +0 -107
  1993. package/backend/node_modules/tsconfig-paths/CHANGELOG.md +0 -407
  1994. package/backend/node_modules/tsconfig-paths/LICENSE +0 -21
  1995. package/backend/node_modules/tsconfig-paths/README.md +0 -269
  1996. package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.d.ts +0 -1
  1997. package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.js +0 -87
  1998. package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.js.map +0 -1
  1999. package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.d.ts +0 -17
  2000. package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.js +0 -216
  2001. package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.js.map +0 -1
  2002. package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.d.ts +0 -1
  2003. package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.js +0 -56
  2004. package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.js.map +0 -1
  2005. package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.d.ts +0 -1
  2006. package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.js +0 -39
  2007. package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.js.map +0 -1
  2008. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.d.ts +0 -1
  2009. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.js +0 -18
  2010. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.js.map +0 -1
  2011. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.d.ts +0 -1
  2012. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.js +0 -14
  2013. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.js.map +0 -1
  2014. package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.d.ts +0 -1
  2015. package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.js +0 -124
  2016. package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.js.map +0 -1
  2017. package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.d.ts +0 -1
  2018. package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.js +0 -328
  2019. package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.js.map +0 -1
  2020. package/backend/node_modules/tsconfig-paths/lib/config-loader.d.ts +0 -33
  2021. package/backend/node_modules/tsconfig-paths/lib/config-loader.js +0 -48
  2022. package/backend/node_modules/tsconfig-paths/lib/config-loader.js.map +0 -1
  2023. package/backend/node_modules/tsconfig-paths/lib/filesystem.d.ts +0 -34
  2024. package/backend/node_modules/tsconfig-paths/lib/filesystem.js +0 -61
  2025. package/backend/node_modules/tsconfig-paths/lib/filesystem.js.map +0 -1
  2026. package/backend/node_modules/tsconfig-paths/lib/index.d.ts +0 -5
  2027. package/backend/node_modules/tsconfig-paths/lib/index.js +0 -15
  2028. package/backend/node_modules/tsconfig-paths/lib/index.js.map +0 -1
  2029. package/backend/node_modules/tsconfig-paths/lib/mapping-entry.d.ts +0 -18
  2030. package/backend/node_modules/tsconfig-paths/lib/mapping-entry.js +0 -54
  2031. package/backend/node_modules/tsconfig-paths/lib/mapping-entry.js.map +0 -1
  2032. package/backend/node_modules/tsconfig-paths/lib/match-path-async.d.ts +0 -21
  2033. package/backend/node_modules/tsconfig-paths/lib/match-path-async.js +0 -116
  2034. package/backend/node_modules/tsconfig-paths/lib/match-path-async.js.map +0 -1
  2035. package/backend/node_modules/tsconfig-paths/lib/match-path-sync.d.ts +0 -32
  2036. package/backend/node_modules/tsconfig-paths/lib/match-path-sync.js +0 -91
  2037. package/backend/node_modules/tsconfig-paths/lib/match-path-sync.js.map +0 -1
  2038. package/backend/node_modules/tsconfig-paths/lib/register.d.ts +0 -12
  2039. package/backend/node_modules/tsconfig-paths/lib/register.js +0 -112
  2040. package/backend/node_modules/tsconfig-paths/lib/register.js.map +0 -1
  2041. package/backend/node_modules/tsconfig-paths/lib/try-path.d.ts +0 -15
  2042. package/backend/node_modules/tsconfig-paths/lib/try-path.js +0 -91
  2043. package/backend/node_modules/tsconfig-paths/lib/try-path.js.map +0 -1
  2044. package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts +0 -28
  2045. package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.js +0 -148
  2046. package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.js.map +0 -1
  2047. package/backend/node_modules/tsconfig-paths/package.json +0 -74
  2048. package/backend/node_modules/tsconfig-paths/register.js +0 -1
  2049. package/backend/node_modules/tsconfig-paths/src/__tests__/config-loader.test.ts +0 -101
  2050. package/backend/node_modules/tsconfig-paths/src/__tests__/data/match-path-data.ts +0 -230
  2051. package/backend/node_modules/tsconfig-paths/src/__tests__/filesystem.test.ts +0 -57
  2052. package/backend/node_modules/tsconfig-paths/src/__tests__/mapping-entry.test.ts +0 -43
  2053. package/backend/node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts +0 -26
  2054. package/backend/node_modules/tsconfig-paths/src/__tests__/match-path-sync.test.ts +0 -22
  2055. package/backend/node_modules/tsconfig-paths/src/__tests__/try-path.test.ts +0 -141
  2056. package/backend/node_modules/tsconfig-paths/src/__tests__/tsconfig-loader.test.ts +0 -428
  2057. package/backend/node_modules/tsconfig-paths/src/__tests__/tsconfig-named.json +0 -10
  2058. package/backend/node_modules/tsconfig-paths/src/config-loader.ts +0 -89
  2059. package/backend/node_modules/tsconfig-paths/src/filesystem.ts +0 -93
  2060. package/backend/node_modules/tsconfig-paths/src/index.ts +0 -24
  2061. package/backend/node_modules/tsconfig-paths/src/mapping-entry.ts +0 -65
  2062. package/backend/node_modules/tsconfig-paths/src/match-path-async.ts +0 -223
  2063. package/backend/node_modules/tsconfig-paths/src/match-path-sync.ts +0 -146
  2064. package/backend/node_modules/tsconfig-paths/src/register.ts +0 -123
  2065. package/backend/node_modules/tsconfig-paths/src/try-path.ts +0 -103
  2066. package/backend/node_modules/tsconfig-paths/src/tsconfig-loader.ts +0 -229
@@ -0,0 +1,2623 @@
1
+ /**
2
+ * The `node:http2` module provides an implementation of the [HTTP/2](https://tools.ietf.org/html/rfc7540) protocol.
3
+ * It can be accessed using:
4
+ *
5
+ * ```js
6
+ * import http2 from 'node:http2';
7
+ * ```
8
+ * @since v8.4.0
9
+ * @see [source](https://github.com/nodejs/node/blob/v20.13.1/lib/http2.js)
10
+ */
11
+ declare module "http2" {
12
+ import EventEmitter = require("node:events");
13
+ import * as fs from "node:fs";
14
+ import * as net from "node:net";
15
+ import * as stream from "node:stream";
16
+ import * as tls from "node:tls";
17
+ import * as url from "node:url";
18
+ import {
19
+ IncomingHttpHeaders as Http1IncomingHttpHeaders,
20
+ IncomingMessage,
21
+ OutgoingHttpHeaders,
22
+ ServerResponse,
23
+ } from "node:http";
24
+ export { OutgoingHttpHeaders } from "node:http";
25
+ export interface IncomingHttpStatusHeader {
26
+ ":status"?: number | undefined;
27
+ }
28
+ export interface IncomingHttpHeaders extends Http1IncomingHttpHeaders {
29
+ ":path"?: string | undefined;
30
+ ":method"?: string | undefined;
31
+ ":authority"?: string | undefined;
32
+ ":scheme"?: string | undefined;
33
+ }
34
+ // Http2Stream
35
+ export interface StreamPriorityOptions {
36
+ exclusive?: boolean | undefined;
37
+ parent?: number | undefined;
38
+ weight?: number | undefined;
39
+ silent?: boolean | undefined;
40
+ }
41
+ export interface StreamState {
42
+ localWindowSize?: number | undefined;
43
+ state?: number | undefined;
44
+ localClose?: number | undefined;
45
+ remoteClose?: number | undefined;
46
+ sumDependencyWeight?: number | undefined;
47
+ weight?: number | undefined;
48
+ }
49
+ export interface ServerStreamResponseOptions {
50
+ endStream?: boolean | undefined;
51
+ waitForTrailers?: boolean | undefined;
52
+ }
53
+ export interface StatOptions {
54
+ offset: number;
55
+ length: number;
56
+ }
57
+ export interface ServerStreamFileResponseOptions {
58
+ // eslint-disable-next-line @typescript-eslint/no-invalid-void-type
59
+ statCheck?(stats: fs.Stats, headers: OutgoingHttpHeaders, statOptions: StatOptions): void | boolean;
60
+ waitForTrailers?: boolean | undefined;
61
+ offset?: number | undefined;
62
+ length?: number | undefined;
63
+ }
64
+ export interface ServerStreamFileResponseOptionsWithError extends ServerStreamFileResponseOptions {
65
+ onError?(err: NodeJS.ErrnoException): void;
66
+ }
67
+ export interface Http2Stream extends stream.Duplex {
68
+ /**
69
+ * Set to `true` if the `Http2Stream` instance was aborted abnormally. When set,
70
+ * the `'aborted'` event will have been emitted.
71
+ * @since v8.4.0
72
+ */
73
+ readonly aborted: boolean;
74
+ /**
75
+ * This property shows the number of characters currently buffered to be written.
76
+ * See `net.Socket.bufferSize` for details.
77
+ * @since v11.2.0, v10.16.0
78
+ */
79
+ readonly bufferSize: number;
80
+ /**
81
+ * Set to `true` if the `Http2Stream` instance has been closed.
82
+ * @since v9.4.0
83
+ */
84
+ readonly closed: boolean;
85
+ /**
86
+ * Set to `true` if the `Http2Stream` instance has been destroyed and is no longer
87
+ * usable.
88
+ * @since v8.4.0
89
+ */
90
+ readonly destroyed: boolean;
91
+ /**
92
+ * Set to `true` if the `END_STREAM` flag was set in the request or response
93
+ * HEADERS frame received, indicating that no additional data should be received
94
+ * and the readable side of the `Http2Stream` will be closed.
95
+ * @since v10.11.0
96
+ */
97
+ readonly endAfterHeaders: boolean;
98
+ /**
99
+ * The numeric stream identifier of this `Http2Stream` instance. Set to `undefined` if the stream identifier has not yet been assigned.
100
+ * @since v8.4.0
101
+ */
102
+ readonly id?: number | undefined;
103
+ /**
104
+ * Set to `true` if the `Http2Stream` instance has not yet been assigned a
105
+ * numeric stream identifier.
106
+ * @since v9.4.0
107
+ */
108
+ readonly pending: boolean;
109
+ /**
110
+ * Set to the `RST_STREAM` `error code` reported when the `Http2Stream` is
111
+ * destroyed after either receiving an `RST_STREAM` frame from the connected peer,
112
+ * calling `http2stream.close()`, or `http2stream.destroy()`. Will be `undefined` if the `Http2Stream` has not been closed.
113
+ * @since v8.4.0
114
+ */
115
+ readonly rstCode: number;
116
+ /**
117
+ * An object containing the outbound headers sent for this `Http2Stream`.
118
+ * @since v9.5.0
119
+ */
120
+ readonly sentHeaders: OutgoingHttpHeaders;
121
+ /**
122
+ * An array of objects containing the outbound informational (additional) headers
123
+ * sent for this `Http2Stream`.
124
+ * @since v9.5.0
125
+ */
126
+ readonly sentInfoHeaders?: OutgoingHttpHeaders[] | undefined;
127
+ /**
128
+ * An object containing the outbound trailers sent for this `HttpStream`.
129
+ * @since v9.5.0
130
+ */
131
+ readonly sentTrailers?: OutgoingHttpHeaders | undefined;
132
+ /**
133
+ * A reference to the `Http2Session` instance that owns this `Http2Stream`. The
134
+ * value will be `undefined` after the `Http2Stream` instance is destroyed.
135
+ * @since v8.4.0
136
+ */
137
+ readonly session: Http2Session | undefined;
138
+ /**
139
+ * Provides miscellaneous information about the current state of the `Http2Stream`.
140
+ *
141
+ * A current state of this `Http2Stream`.
142
+ * @since v8.4.0
143
+ */
144
+ readonly state: StreamState;
145
+ /**
146
+ * Closes the `Http2Stream` instance by sending an `RST_STREAM` frame to the
147
+ * connected HTTP/2 peer.
148
+ * @since v8.4.0
149
+ * @param [code=http2.constants.NGHTTP2_NO_ERROR] Unsigned 32-bit integer identifying the error code.
150
+ * @param callback An optional function registered to listen for the `'close'` event.
151
+ */
152
+ close(code?: number, callback?: () => void): void;
153
+ /**
154
+ * Updates the priority for this `Http2Stream` instance.
155
+ * @since v8.4.0
156
+ */
157
+ priority(options: StreamPriorityOptions): void;
158
+ /**
159
+ * ```js
160
+ * import http2 from 'node:http2';
161
+ * const client = http2.connect('http://example.org:8000');
162
+ * const { NGHTTP2_CANCEL } = http2.constants;
163
+ * const req = client.request({ ':path': '/' });
164
+ *
165
+ * // Cancel the stream if there's no activity after 5 seconds
166
+ * req.setTimeout(5000, () => req.close(NGHTTP2_CANCEL));
167
+ * ```
168
+ * @since v8.4.0
169
+ */
170
+ setTimeout(msecs: number, callback?: () => void): void;
171
+ /**
172
+ * Sends a trailing `HEADERS` frame to the connected HTTP/2 peer. This method
173
+ * will cause the `Http2Stream` to be immediately closed and must only be
174
+ * called after the `'wantTrailers'` event has been emitted. When sending a
175
+ * request or sending a response, the `options.waitForTrailers` option must be set
176
+ * in order to keep the `Http2Stream` open after the final `DATA` frame so that
177
+ * trailers can be sent.
178
+ *
179
+ * ```js
180
+ * import http2 from 'node:http2';
181
+ * const server = http2.createServer();
182
+ * server.on('stream', (stream) => {
183
+ * stream.respond(undefined, { waitForTrailers: true });
184
+ * stream.on('wantTrailers', () => {
185
+ * stream.sendTrailers({ xyz: 'abc' });
186
+ * });
187
+ * stream.end('Hello World');
188
+ * });
189
+ * ```
190
+ *
191
+ * The HTTP/1 specification forbids trailers from containing HTTP/2 pseudo-header
192
+ * fields (e.g. `':method'`, `':path'`, etc).
193
+ * @since v10.0.0
194
+ */
195
+ sendTrailers(headers: OutgoingHttpHeaders): void;
196
+ addListener(event: "aborted", listener: () => void): this;
197
+ addListener(event: "close", listener: () => void): this;
198
+ addListener(event: "data", listener: (chunk: Buffer | string) => void): this;
199
+ addListener(event: "drain", listener: () => void): this;
200
+ addListener(event: "end", listener: () => void): this;
201
+ addListener(event: "error", listener: (err: Error) => void): this;
202
+ addListener(event: "finish", listener: () => void): this;
203
+ addListener(event: "frameError", listener: (frameType: number, errorCode: number) => void): this;
204
+ addListener(event: "pipe", listener: (src: stream.Readable) => void): this;
205
+ addListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
206
+ addListener(event: "streamClosed", listener: (code: number) => void): this;
207
+ addListener(event: "timeout", listener: () => void): this;
208
+ addListener(event: "trailers", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this;
209
+ addListener(event: "wantTrailers", listener: () => void): this;
210
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
211
+ emit(event: "aborted"): boolean;
212
+ emit(event: "close"): boolean;
213
+ emit(event: "data", chunk: Buffer | string): boolean;
214
+ emit(event: "drain"): boolean;
215
+ emit(event: "end"): boolean;
216
+ emit(event: "error", err: Error): boolean;
217
+ emit(event: "finish"): boolean;
218
+ emit(event: "frameError", frameType: number, errorCode: number): boolean;
219
+ emit(event: "pipe", src: stream.Readable): boolean;
220
+ emit(event: "unpipe", src: stream.Readable): boolean;
221
+ emit(event: "streamClosed", code: number): boolean;
222
+ emit(event: "timeout"): boolean;
223
+ emit(event: "trailers", trailers: IncomingHttpHeaders, flags: number): boolean;
224
+ emit(event: "wantTrailers"): boolean;
225
+ emit(event: string | symbol, ...args: any[]): boolean;
226
+ on(event: "aborted", listener: () => void): this;
227
+ on(event: "close", listener: () => void): this;
228
+ on(event: "data", listener: (chunk: Buffer | string) => void): this;
229
+ on(event: "drain", listener: () => void): this;
230
+ on(event: "end", listener: () => void): this;
231
+ on(event: "error", listener: (err: Error) => void): this;
232
+ on(event: "finish", listener: () => void): this;
233
+ on(event: "frameError", listener: (frameType: number, errorCode: number) => void): this;
234
+ on(event: "pipe", listener: (src: stream.Readable) => void): this;
235
+ on(event: "unpipe", listener: (src: stream.Readable) => void): this;
236
+ on(event: "streamClosed", listener: (code: number) => void): this;
237
+ on(event: "timeout", listener: () => void): this;
238
+ on(event: "trailers", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this;
239
+ on(event: "wantTrailers", listener: () => void): this;
240
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
241
+ once(event: "aborted", listener: () => void): this;
242
+ once(event: "close", listener: () => void): this;
243
+ once(event: "data", listener: (chunk: Buffer | string) => void): this;
244
+ once(event: "drain", listener: () => void): this;
245
+ once(event: "end", listener: () => void): this;
246
+ once(event: "error", listener: (err: Error) => void): this;
247
+ once(event: "finish", listener: () => void): this;
248
+ once(event: "frameError", listener: (frameType: number, errorCode: number) => void): this;
249
+ once(event: "pipe", listener: (src: stream.Readable) => void): this;
250
+ once(event: "unpipe", listener: (src: stream.Readable) => void): this;
251
+ once(event: "streamClosed", listener: (code: number) => void): this;
252
+ once(event: "timeout", listener: () => void): this;
253
+ once(event: "trailers", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this;
254
+ once(event: "wantTrailers", listener: () => void): this;
255
+ once(event: string | symbol, listener: (...args: any[]) => void): this;
256
+ prependListener(event: "aborted", listener: () => void): this;
257
+ prependListener(event: "close", listener: () => void): this;
258
+ prependListener(event: "data", listener: (chunk: Buffer | string) => void): this;
259
+ prependListener(event: "drain", listener: () => void): this;
260
+ prependListener(event: "end", listener: () => void): this;
261
+ prependListener(event: "error", listener: (err: Error) => void): this;
262
+ prependListener(event: "finish", listener: () => void): this;
263
+ prependListener(event: "frameError", listener: (frameType: number, errorCode: number) => void): this;
264
+ prependListener(event: "pipe", listener: (src: stream.Readable) => void): this;
265
+ prependListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
266
+ prependListener(event: "streamClosed", listener: (code: number) => void): this;
267
+ prependListener(event: "timeout", listener: () => void): this;
268
+ prependListener(event: "trailers", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this;
269
+ prependListener(event: "wantTrailers", listener: () => void): this;
270
+ prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
271
+ prependOnceListener(event: "aborted", listener: () => void): this;
272
+ prependOnceListener(event: "close", listener: () => void): this;
273
+ prependOnceListener(event: "data", listener: (chunk: Buffer | string) => void): this;
274
+ prependOnceListener(event: "drain", listener: () => void): this;
275
+ prependOnceListener(event: "end", listener: () => void): this;
276
+ prependOnceListener(event: "error", listener: (err: Error) => void): this;
277
+ prependOnceListener(event: "finish", listener: () => void): this;
278
+ prependOnceListener(event: "frameError", listener: (frameType: number, errorCode: number) => void): this;
279
+ prependOnceListener(event: "pipe", listener: (src: stream.Readable) => void): this;
280
+ prependOnceListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
281
+ prependOnceListener(event: "streamClosed", listener: (code: number) => void): this;
282
+ prependOnceListener(event: "timeout", listener: () => void): this;
283
+ prependOnceListener(event: "trailers", listener: (trailers: IncomingHttpHeaders, flags: number) => void): this;
284
+ prependOnceListener(event: "wantTrailers", listener: () => void): this;
285
+ prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
286
+ }
287
+ export interface ClientHttp2Stream extends Http2Stream {
288
+ addListener(event: "continue", listener: () => {}): this;
289
+ addListener(
290
+ event: "headers",
291
+ listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,
292
+ ): this;
293
+ addListener(event: "push", listener: (headers: IncomingHttpHeaders, flags: number) => void): this;
294
+ addListener(
295
+ event: "response",
296
+ listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,
297
+ ): this;
298
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
299
+ emit(event: "continue"): boolean;
300
+ emit(event: "headers", headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean;
301
+ emit(event: "push", headers: IncomingHttpHeaders, flags: number): boolean;
302
+ emit(event: "response", headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number): boolean;
303
+ emit(event: string | symbol, ...args: any[]): boolean;
304
+ on(event: "continue", listener: () => {}): this;
305
+ on(
306
+ event: "headers",
307
+ listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,
308
+ ): this;
309
+ on(event: "push", listener: (headers: IncomingHttpHeaders, flags: number) => void): this;
310
+ on(
311
+ event: "response",
312
+ listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,
313
+ ): this;
314
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
315
+ once(event: "continue", listener: () => {}): this;
316
+ once(
317
+ event: "headers",
318
+ listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,
319
+ ): this;
320
+ once(event: "push", listener: (headers: IncomingHttpHeaders, flags: number) => void): this;
321
+ once(
322
+ event: "response",
323
+ listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,
324
+ ): this;
325
+ once(event: string | symbol, listener: (...args: any[]) => void): this;
326
+ prependListener(event: "continue", listener: () => {}): this;
327
+ prependListener(
328
+ event: "headers",
329
+ listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,
330
+ ): this;
331
+ prependListener(event: "push", listener: (headers: IncomingHttpHeaders, flags: number) => void): this;
332
+ prependListener(
333
+ event: "response",
334
+ listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,
335
+ ): this;
336
+ prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
337
+ prependOnceListener(event: "continue", listener: () => {}): this;
338
+ prependOnceListener(
339
+ event: "headers",
340
+ listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,
341
+ ): this;
342
+ prependOnceListener(event: "push", listener: (headers: IncomingHttpHeaders, flags: number) => void): this;
343
+ prependOnceListener(
344
+ event: "response",
345
+ listener: (headers: IncomingHttpHeaders & IncomingHttpStatusHeader, flags: number) => void,
346
+ ): this;
347
+ prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
348
+ }
349
+ export interface ServerHttp2Stream extends Http2Stream {
350
+ /**
351
+ * True if headers were sent, false otherwise (read-only).
352
+ * @since v8.4.0
353
+ */
354
+ readonly headersSent: boolean;
355
+ /**
356
+ * Read-only property mapped to the `SETTINGS_ENABLE_PUSH` flag of the remote
357
+ * client's most recent `SETTINGS` frame. Will be `true` if the remote peer
358
+ * accepts push streams, `false` otherwise. Settings are the same for every `Http2Stream` in the same `Http2Session`.
359
+ * @since v8.4.0
360
+ */
361
+ readonly pushAllowed: boolean;
362
+ /**
363
+ * Sends an additional informational `HEADERS` frame to the connected HTTP/2 peer.
364
+ * @since v8.4.0
365
+ */
366
+ additionalHeaders(headers: OutgoingHttpHeaders): void;
367
+ /**
368
+ * Initiates a push stream. The callback is invoked with the new `Http2Stream` instance created for the push stream passed as the second argument, or an `Error` passed as the first argument.
369
+ *
370
+ * ```js
371
+ * import http2 from 'node:http2';
372
+ * const server = http2.createServer();
373
+ * server.on('stream', (stream) => {
374
+ * stream.respond({ ':status': 200 });
375
+ * stream.pushStream({ ':path': '/' }, (err, pushStream, headers) => {
376
+ * if (err) throw err;
377
+ * pushStream.respond({ ':status': 200 });
378
+ * pushStream.end('some pushed data');
379
+ * });
380
+ * stream.end('some data');
381
+ * });
382
+ * ```
383
+ *
384
+ * Setting the weight of a push stream is not allowed in the `HEADERS` frame. Pass
385
+ * a `weight` value to `http2stream.priority` with the `silent` option set to `true` to enable server-side bandwidth balancing between concurrent streams.
386
+ *
387
+ * Calling `http2stream.pushStream()` from within a pushed stream is not permitted
388
+ * and will throw an error.
389
+ * @since v8.4.0
390
+ * @param callback Callback that is called once the push stream has been initiated.
391
+ */
392
+ pushStream(
393
+ headers: OutgoingHttpHeaders,
394
+ callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void,
395
+ ): void;
396
+ pushStream(
397
+ headers: OutgoingHttpHeaders,
398
+ options?: StreamPriorityOptions,
399
+ callback?: (err: Error | null, pushStream: ServerHttp2Stream, headers: OutgoingHttpHeaders) => void,
400
+ ): void;
401
+ /**
402
+ * ```js
403
+ * import http2 from 'node:http2';
404
+ * const server = http2.createServer();
405
+ * server.on('stream', (stream) => {
406
+ * stream.respond({ ':status': 200 });
407
+ * stream.end('some data');
408
+ * });
409
+ * ```
410
+ *
411
+ * Initiates a response. When the `options.waitForTrailers` option is set, the `'wantTrailers'` event
412
+ * will be emitted immediately after queuing the last chunk of payload data to be sent.
413
+ * The `http2stream.sendTrailers()` method can then be used to send trailing header fields to the peer.
414
+ *
415
+ * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically
416
+ * close when the final `DATA` frame is transmitted. User code must call either `http2stream.sendTrailers()` or `http2stream.close()` to close the `Http2Stream`.
417
+ *
418
+ * ```js
419
+ * import http2 from 'node:http2';
420
+ * const server = http2.createServer();
421
+ * server.on('stream', (stream) => {
422
+ * stream.respond({ ':status': 200 }, { waitForTrailers: true });
423
+ * stream.on('wantTrailers', () => {
424
+ * stream.sendTrailers({ ABC: 'some value to send' });
425
+ * });
426
+ * stream.end('some data');
427
+ * });
428
+ * ```
429
+ * @since v8.4.0
430
+ */
431
+ respond(headers?: OutgoingHttpHeaders, options?: ServerStreamResponseOptions): void;
432
+ /**
433
+ * Initiates a response whose data is read from the given file descriptor. No
434
+ * validation is performed on the given file descriptor. If an error occurs while
435
+ * attempting to read data using the file descriptor, the `Http2Stream` will be
436
+ * closed using an `RST_STREAM` frame using the standard `INTERNAL_ERROR` code.
437
+ *
438
+ * When used, the `Http2Stream` object's `Duplex` interface will be closed
439
+ * automatically.
440
+ *
441
+ * ```js
442
+ * import http2 from 'node:http2';
443
+ * import fs from 'node:fs';
444
+ *
445
+ * const server = http2.createServer();
446
+ * server.on('stream', (stream) => {
447
+ * const fd = fs.openSync('/some/file', 'r');
448
+ *
449
+ * const stat = fs.fstatSync(fd);
450
+ * const headers = {
451
+ * 'content-length': stat.size,
452
+ * 'last-modified': stat.mtime.toUTCString(),
453
+ * 'content-type': 'text/plain; charset=utf-8',
454
+ * };
455
+ * stream.respondWithFD(fd, headers);
456
+ * stream.on('close', () => fs.closeSync(fd));
457
+ * });
458
+ * ```
459
+ *
460
+ * The optional `options.statCheck` function may be specified to give user code
461
+ * an opportunity to set additional content headers based on the `fs.Stat` details
462
+ * of the given fd. If the `statCheck` function is provided, the `http2stream.respondWithFD()` method will
463
+ * perform an `fs.fstat()` call to collect details on the provided file descriptor.
464
+ *
465
+ * The `offset` and `length` options may be used to limit the response to a
466
+ * specific range subset. This can be used, for instance, to support HTTP Range
467
+ * requests.
468
+ *
469
+ * The file descriptor or `FileHandle` is not closed when the stream is closed,
470
+ * so it will need to be closed manually once it is no longer needed.
471
+ * Using the same file descriptor concurrently for multiple streams
472
+ * is not supported and may result in data loss. Re-using a file descriptor
473
+ * after a stream has finished is supported.
474
+ *
475
+ * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event
476
+ * will be emitted immediately after queuing the last chunk of payload data to be
477
+ * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing
478
+ * header fields to the peer.
479
+ *
480
+ * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically
481
+ * close when the final `DATA` frame is transmitted. User code _must_ call either `http2stream.sendTrailers()`
482
+ * or `http2stream.close()` to close the `Http2Stream`.
483
+ *
484
+ * ```js
485
+ * import http2 from 'node:http2';
486
+ * import fs from 'node:fs';
487
+ *
488
+ * const server = http2.createServer();
489
+ * server.on('stream', (stream) => {
490
+ * const fd = fs.openSync('/some/file', 'r');
491
+ *
492
+ * const stat = fs.fstatSync(fd);
493
+ * const headers = {
494
+ * 'content-length': stat.size,
495
+ * 'last-modified': stat.mtime.toUTCString(),
496
+ * 'content-type': 'text/plain; charset=utf-8',
497
+ * };
498
+ * stream.respondWithFD(fd, headers, { waitForTrailers: true });
499
+ * stream.on('wantTrailers', () => {
500
+ * stream.sendTrailers({ ABC: 'some value to send' });
501
+ * });
502
+ *
503
+ * stream.on('close', () => fs.closeSync(fd));
504
+ * });
505
+ * ```
506
+ * @since v8.4.0
507
+ * @param fd A readable file descriptor.
508
+ */
509
+ respondWithFD(
510
+ fd: number | fs.promises.FileHandle,
511
+ headers?: OutgoingHttpHeaders,
512
+ options?: ServerStreamFileResponseOptions,
513
+ ): void;
514
+ /**
515
+ * Sends a regular file as the response. The `path` must specify a regular file
516
+ * or an `'error'` event will be emitted on the `Http2Stream` object.
517
+ *
518
+ * When used, the `Http2Stream` object's `Duplex` interface will be closed
519
+ * automatically.
520
+ *
521
+ * The optional `options.statCheck` function may be specified to give user code
522
+ * an opportunity to set additional content headers based on the `fs.Stat` details
523
+ * of the given file:
524
+ *
525
+ * If an error occurs while attempting to read the file data, the `Http2Stream` will be closed using an
526
+ * `RST_STREAM` frame using the standard `INTERNAL_ERROR` code.
527
+ * If the `onError` callback is defined, then it will be called. Otherwise, the stream will be destroyed.
528
+ *
529
+ * Example using a file path:
530
+ *
531
+ * ```js
532
+ * import http2 from 'node:http2';
533
+ * const server = http2.createServer();
534
+ * server.on('stream', (stream) => {
535
+ * function statCheck(stat, headers) {
536
+ * headers['last-modified'] = stat.mtime.toUTCString();
537
+ * }
538
+ *
539
+ * function onError(err) {
540
+ * // stream.respond() can throw if the stream has been destroyed by
541
+ * // the other side.
542
+ * try {
543
+ * if (err.code === 'ENOENT') {
544
+ * stream.respond({ ':status': 404 });
545
+ * } else {
546
+ * stream.respond({ ':status': 500 });
547
+ * }
548
+ * } catch (err) {
549
+ * // Perform actual error handling.
550
+ * console.error(err);
551
+ * }
552
+ * stream.end();
553
+ * }
554
+ *
555
+ * stream.respondWithFile('/some/file',
556
+ * { 'content-type': 'text/plain; charset=utf-8' },
557
+ * { statCheck, onError });
558
+ * });
559
+ * ```
560
+ *
561
+ * The `options.statCheck` function may also be used to cancel the send operation
562
+ * by returning `false`. For instance, a conditional request may check the stat
563
+ * results to determine if the file has been modified to return an appropriate `304` response:
564
+ *
565
+ * ```js
566
+ * import http2 from 'node:http2';
567
+ * const server = http2.createServer();
568
+ * server.on('stream', (stream) => {
569
+ * function statCheck(stat, headers) {
570
+ * // Check the stat here...
571
+ * stream.respond({ ':status': 304 });
572
+ * return false; // Cancel the send operation
573
+ * }
574
+ * stream.respondWithFile('/some/file',
575
+ * { 'content-type': 'text/plain; charset=utf-8' },
576
+ * { statCheck });
577
+ * });
578
+ * ```
579
+ *
580
+ * The `content-length` header field will be automatically set.
581
+ *
582
+ * The `offset` and `length` options may be used to limit the response to a
583
+ * specific range subset. This can be used, for instance, to support HTTP Range
584
+ * requests.
585
+ *
586
+ * The `options.onError` function may also be used to handle all the errors
587
+ * that could happen before the delivery of the file is initiated. The
588
+ * default behavior is to destroy the stream.
589
+ *
590
+ * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event
591
+ * will be emitted immediately after queuing the last chunk of payload data to be
592
+ * sent. The `http2stream.sendTrailers()` method can then be used to sent trailing
593
+ * header fields to the peer.
594
+ *
595
+ * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically
596
+ * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`.
597
+ *
598
+ * ```js
599
+ * import http2 from 'node:http2';
600
+ * const server = http2.createServer();
601
+ * server.on('stream', (stream) => {
602
+ * stream.respondWithFile('/some/file',
603
+ * { 'content-type': 'text/plain; charset=utf-8' },
604
+ * { waitForTrailers: true });
605
+ * stream.on('wantTrailers', () => {
606
+ * stream.sendTrailers({ ABC: 'some value to send' });
607
+ * });
608
+ * });
609
+ * ```
610
+ * @since v8.4.0
611
+ */
612
+ respondWithFile(
613
+ path: string,
614
+ headers?: OutgoingHttpHeaders,
615
+ options?: ServerStreamFileResponseOptionsWithError,
616
+ ): void;
617
+ }
618
+ // Http2Session
619
+ export interface Settings {
620
+ headerTableSize?: number | undefined;
621
+ enablePush?: boolean | undefined;
622
+ initialWindowSize?: number | undefined;
623
+ maxFrameSize?: number | undefined;
624
+ maxConcurrentStreams?: number | undefined;
625
+ maxHeaderListSize?: number | undefined;
626
+ enableConnectProtocol?: boolean | undefined;
627
+ }
628
+ export interface ClientSessionRequestOptions {
629
+ endStream?: boolean | undefined;
630
+ exclusive?: boolean | undefined;
631
+ parent?: number | undefined;
632
+ weight?: number | undefined;
633
+ waitForTrailers?: boolean | undefined;
634
+ signal?: AbortSignal | undefined;
635
+ }
636
+ export interface SessionState {
637
+ effectiveLocalWindowSize?: number | undefined;
638
+ effectiveRecvDataLength?: number | undefined;
639
+ nextStreamID?: number | undefined;
640
+ localWindowSize?: number | undefined;
641
+ lastProcStreamID?: number | undefined;
642
+ remoteWindowSize?: number | undefined;
643
+ outboundQueueSize?: number | undefined;
644
+ deflateDynamicTableSize?: number | undefined;
645
+ inflateDynamicTableSize?: number | undefined;
646
+ }
647
+ export interface Http2Session extends EventEmitter {
648
+ /**
649
+ * Value will be `undefined` if the `Http2Session` is not yet connected to a
650
+ * socket, `h2c` if the `Http2Session` is not connected to a `TLSSocket`, or
651
+ * will return the value of the connected `TLSSocket`'s own `alpnProtocol` property.
652
+ * @since v9.4.0
653
+ */
654
+ readonly alpnProtocol?: string | undefined;
655
+ /**
656
+ * Will be `true` if this `Http2Session` instance has been closed, otherwise `false`.
657
+ * @since v9.4.0
658
+ */
659
+ readonly closed: boolean;
660
+ /**
661
+ * Will be `true` if this `Http2Session` instance is still connecting, will be set
662
+ * to `false` before emitting `connect` event and/or calling the `http2.connect` callback.
663
+ * @since v10.0.0
664
+ */
665
+ readonly connecting: boolean;
666
+ /**
667
+ * Will be `true` if this `Http2Session` instance has been destroyed and must no
668
+ * longer be used, otherwise `false`.
669
+ * @since v8.4.0
670
+ */
671
+ readonly destroyed: boolean;
672
+ /**
673
+ * Value is `undefined` if the `Http2Session` session socket has not yet been
674
+ * connected, `true` if the `Http2Session` is connected with a `TLSSocket`,
675
+ * and `false` if the `Http2Session` is connected to any other kind of socket
676
+ * or stream.
677
+ * @since v9.4.0
678
+ */
679
+ readonly encrypted?: boolean | undefined;
680
+ /**
681
+ * A prototype-less object describing the current local settings of this `Http2Session`.
682
+ * The local settings are local to _this_`Http2Session` instance.
683
+ * @since v8.4.0
684
+ */
685
+ readonly localSettings: Settings;
686
+ /**
687
+ * If the `Http2Session` is connected to a `TLSSocket`, the `originSet` property
688
+ * will return an `Array` of origins for which the `Http2Session` may be
689
+ * considered authoritative.
690
+ *
691
+ * The `originSet` property is only available when using a secure TLS connection.
692
+ * @since v9.4.0
693
+ */
694
+ readonly originSet?: string[] | undefined;
695
+ /**
696
+ * Indicates whether the `Http2Session` is currently waiting for acknowledgment of
697
+ * a sent `SETTINGS` frame. Will be `true` after calling the `http2session.settings()` method.
698
+ * Will be `false` once all sent `SETTINGS` frames have been acknowledged.
699
+ * @since v8.4.0
700
+ */
701
+ readonly pendingSettingsAck: boolean;
702
+ /**
703
+ * A prototype-less object describing the current remote settings of this`Http2Session`.
704
+ * The remote settings are set by the _connected_ HTTP/2 peer.
705
+ * @since v8.4.0
706
+ */
707
+ readonly remoteSettings: Settings;
708
+ /**
709
+ * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but
710
+ * limits available methods to ones safe to use with HTTP/2.
711
+ *
712
+ * `destroy`, `emit`, `end`, `pause`, `read`, `resume`, and `write` will throw
713
+ * an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for more information.
714
+ *
715
+ * `setTimeout` method will be called on this `Http2Session`.
716
+ *
717
+ * All other interactions will be routed directly to the socket.
718
+ * @since v8.4.0
719
+ */
720
+ readonly socket: net.Socket | tls.TLSSocket;
721
+ /**
722
+ * Provides miscellaneous information about the current state of the`Http2Session`.
723
+ *
724
+ * An object describing the current status of this `Http2Session`.
725
+ * @since v8.4.0
726
+ */
727
+ readonly state: SessionState;
728
+ /**
729
+ * The `http2session.type` will be equal to `http2.constants.NGHTTP2_SESSION_SERVER` if this `Http2Session` instance is a
730
+ * server, and `http2.constants.NGHTTP2_SESSION_CLIENT` if the instance is a
731
+ * client.
732
+ * @since v8.4.0
733
+ */
734
+ readonly type: number;
735
+ /**
736
+ * Gracefully closes the `Http2Session`, allowing any existing streams to
737
+ * complete on their own and preventing new `Http2Stream` instances from being
738
+ * created. Once closed, `http2session.destroy()`_might_ be called if there
739
+ * are no open `Http2Stream` instances.
740
+ *
741
+ * If specified, the `callback` function is registered as a handler for the`'close'` event.
742
+ * @since v9.4.0
743
+ */
744
+ close(callback?: () => void): void;
745
+ /**
746
+ * Immediately terminates the `Http2Session` and the associated `net.Socket` or `tls.TLSSocket`.
747
+ *
748
+ * Once destroyed, the `Http2Session` will emit the `'close'` event. If `error` is not undefined, an `'error'` event will be emitted immediately before the `'close'` event.
749
+ *
750
+ * If there are any remaining open `Http2Streams` associated with the `Http2Session`, those will also be destroyed.
751
+ * @since v8.4.0
752
+ * @param error An `Error` object if the `Http2Session` is being destroyed due to an error.
753
+ * @param code The HTTP/2 error code to send in the final `GOAWAY` frame. If unspecified, and `error` is not undefined, the default is `INTERNAL_ERROR`, otherwise defaults to `NO_ERROR`.
754
+ */
755
+ destroy(error?: Error, code?: number): void;
756
+ /**
757
+ * Transmits a `GOAWAY` frame to the connected peer _without_ shutting down the`Http2Session`.
758
+ * @since v9.4.0
759
+ * @param code An HTTP/2 error code
760
+ * @param lastStreamID The numeric ID of the last processed `Http2Stream`
761
+ * @param opaqueData A `TypedArray` or `DataView` instance containing additional data to be carried within the `GOAWAY` frame.
762
+ */
763
+ goaway(code?: number, lastStreamID?: number, opaqueData?: NodeJS.ArrayBufferView): void;
764
+ /**
765
+ * Sends a `PING` frame to the connected HTTP/2 peer. A `callback` function must
766
+ * be provided. The method will return `true` if the `PING` was sent, `false` otherwise.
767
+ *
768
+ * The maximum number of outstanding (unacknowledged) pings is determined by the `maxOutstandingPings` configuration option. The default maximum is 10.
769
+ *
770
+ * If provided, the `payload` must be a `Buffer`, `TypedArray`, or `DataView` containing 8 bytes of data that will be transmitted with the `PING` and
771
+ * returned with the ping acknowledgment.
772
+ *
773
+ * The callback will be invoked with three arguments: an error argument that will
774
+ * be `null` if the `PING` was successfully acknowledged, a `duration` argument
775
+ * that reports the number of milliseconds elapsed since the ping was sent and the
776
+ * acknowledgment was received, and a `Buffer` containing the 8-byte `PING` payload.
777
+ *
778
+ * ```js
779
+ * session.ping(Buffer.from('abcdefgh'), (err, duration, payload) => {
780
+ * if (!err) {
781
+ * console.log(`Ping acknowledged in ${duration} milliseconds`);
782
+ * console.log(`With payload '${payload.toString()}'`);
783
+ * }
784
+ * });
785
+ * ```
786
+ *
787
+ * If the `payload` argument is not specified, the default payload will be the
788
+ * 64-bit timestamp (little endian) marking the start of the `PING` duration.
789
+ * @since v8.9.3
790
+ * @param payload Optional ping payload.
791
+ */
792
+ ping(callback: (err: Error | null, duration: number, payload: Buffer) => void): boolean;
793
+ ping(
794
+ payload: NodeJS.ArrayBufferView,
795
+ callback: (err: Error | null, duration: number, payload: Buffer) => void,
796
+ ): boolean;
797
+ /**
798
+ * Calls `ref()` on this `Http2Session` instance's underlying `net.Socket`.
799
+ * @since v9.4.0
800
+ */
801
+ ref(): void;
802
+ /**
803
+ * Sets the local endpoint's window size.
804
+ * The `windowSize` is the total window size to set, not
805
+ * the delta.
806
+ *
807
+ * ```js
808
+ * import http2 from 'node:http2';
809
+ *
810
+ * const server = http2.createServer();
811
+ * const expectedWindowSize = 2 ** 20;
812
+ * server.on('connect', (session) => {
813
+ *
814
+ * // Set local window size to be 2 ** 20
815
+ * session.setLocalWindowSize(expectedWindowSize);
816
+ * });
817
+ * ```
818
+ * @since v15.3.0, v14.18.0
819
+ */
820
+ setLocalWindowSize(windowSize: number): void;
821
+ /**
822
+ * Used to set a callback function that is called when there is no activity on
823
+ * the `Http2Session` after `msecs` milliseconds. The given `callback` is
824
+ * registered as a listener on the `'timeout'` event.
825
+ * @since v8.4.0
826
+ */
827
+ setTimeout(msecs: number, callback?: () => void): void;
828
+ /**
829
+ * Updates the current local settings for this `Http2Session` and sends a new `SETTINGS` frame to the connected HTTP/2 peer.
830
+ *
831
+ * Once called, the `http2session.pendingSettingsAck` property will be `true` while the session is waiting for the remote peer to acknowledge the new
832
+ * settings.
833
+ *
834
+ * The new settings will not become effective until the `SETTINGS` acknowledgment
835
+ * is received and the `'localSettings'` event is emitted. It is possible to send
836
+ * multiple `SETTINGS` frames while acknowledgment is still pending.
837
+ * @since v8.4.0
838
+ * @param callback Callback that is called once the session is connected or right away if the session is already connected.
839
+ */
840
+ settings(
841
+ settings: Settings,
842
+ callback?: (err: Error | null, settings: Settings, duration: number) => void,
843
+ ): void;
844
+ /**
845
+ * Calls `unref()` on this `Http2Session`instance's underlying `net.Socket`.
846
+ * @since v9.4.0
847
+ */
848
+ unref(): void;
849
+ addListener(event: "close", listener: () => void): this;
850
+ addListener(event: "error", listener: (err: Error) => void): this;
851
+ addListener(
852
+ event: "frameError",
853
+ listener: (frameType: number, errorCode: number, streamID: number) => void,
854
+ ): this;
855
+ addListener(
856
+ event: "goaway",
857
+ listener: (errorCode: number, lastStreamID: number, opaqueData?: Buffer) => void,
858
+ ): this;
859
+ addListener(event: "localSettings", listener: (settings: Settings) => void): this;
860
+ addListener(event: "ping", listener: () => void): this;
861
+ addListener(event: "remoteSettings", listener: (settings: Settings) => void): this;
862
+ addListener(event: "timeout", listener: () => void): this;
863
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
864
+ emit(event: "close"): boolean;
865
+ emit(event: "error", err: Error): boolean;
866
+ emit(event: "frameError", frameType: number, errorCode: number, streamID: number): boolean;
867
+ emit(event: "goaway", errorCode: number, lastStreamID: number, opaqueData?: Buffer): boolean;
868
+ emit(event: "localSettings", settings: Settings): boolean;
869
+ emit(event: "ping"): boolean;
870
+ emit(event: "remoteSettings", settings: Settings): boolean;
871
+ emit(event: "timeout"): boolean;
872
+ emit(event: string | symbol, ...args: any[]): boolean;
873
+ on(event: "close", listener: () => void): this;
874
+ on(event: "error", listener: (err: Error) => void): this;
875
+ on(event: "frameError", listener: (frameType: number, errorCode: number, streamID: number) => void): this;
876
+ on(event: "goaway", listener: (errorCode: number, lastStreamID: number, opaqueData?: Buffer) => void): this;
877
+ on(event: "localSettings", listener: (settings: Settings) => void): this;
878
+ on(event: "ping", listener: () => void): this;
879
+ on(event: "remoteSettings", listener: (settings: Settings) => void): this;
880
+ on(event: "timeout", listener: () => void): this;
881
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
882
+ once(event: "close", listener: () => void): this;
883
+ once(event: "error", listener: (err: Error) => void): this;
884
+ once(event: "frameError", listener: (frameType: number, errorCode: number, streamID: number) => void): this;
885
+ once(event: "goaway", listener: (errorCode: number, lastStreamID: number, opaqueData?: Buffer) => void): this;
886
+ once(event: "localSettings", listener: (settings: Settings) => void): this;
887
+ once(event: "ping", listener: () => void): this;
888
+ once(event: "remoteSettings", listener: (settings: Settings) => void): this;
889
+ once(event: "timeout", listener: () => void): this;
890
+ once(event: string | symbol, listener: (...args: any[]) => void): this;
891
+ prependListener(event: "close", listener: () => void): this;
892
+ prependListener(event: "error", listener: (err: Error) => void): this;
893
+ prependListener(
894
+ event: "frameError",
895
+ listener: (frameType: number, errorCode: number, streamID: number) => void,
896
+ ): this;
897
+ prependListener(
898
+ event: "goaway",
899
+ listener: (errorCode: number, lastStreamID: number, opaqueData?: Buffer) => void,
900
+ ): this;
901
+ prependListener(event: "localSettings", listener: (settings: Settings) => void): this;
902
+ prependListener(event: "ping", listener: () => void): this;
903
+ prependListener(event: "remoteSettings", listener: (settings: Settings) => void): this;
904
+ prependListener(event: "timeout", listener: () => void): this;
905
+ prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
906
+ prependOnceListener(event: "close", listener: () => void): this;
907
+ prependOnceListener(event: "error", listener: (err: Error) => void): this;
908
+ prependOnceListener(
909
+ event: "frameError",
910
+ listener: (frameType: number, errorCode: number, streamID: number) => void,
911
+ ): this;
912
+ prependOnceListener(
913
+ event: "goaway",
914
+ listener: (errorCode: number, lastStreamID: number, opaqueData?: Buffer) => void,
915
+ ): this;
916
+ prependOnceListener(event: "localSettings", listener: (settings: Settings) => void): this;
917
+ prependOnceListener(event: "ping", listener: () => void): this;
918
+ prependOnceListener(event: "remoteSettings", listener: (settings: Settings) => void): this;
919
+ prependOnceListener(event: "timeout", listener: () => void): this;
920
+ prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
921
+ }
922
+ export interface ClientHttp2Session extends Http2Session {
923
+ /**
924
+ * For HTTP/2 Client `Http2Session` instances only, the `http2session.request()` creates and returns an `Http2Stream` instance that can be used to send an
925
+ * HTTP/2 request to the connected server.
926
+ *
927
+ * When a `ClientHttp2Session` is first created, the socket may not yet be
928
+ * connected. if `clienthttp2session.request()` is called during this time, the
929
+ * actual request will be deferred until the socket is ready to go.
930
+ * If the `session` is closed before the actual request be executed, an `ERR_HTTP2_GOAWAY_SESSION` is thrown.
931
+ *
932
+ * This method is only available if `http2session.type` is equal to `http2.constants.NGHTTP2_SESSION_CLIENT`.
933
+ *
934
+ * ```js
935
+ * import http2 from 'node:http2';
936
+ * const clientSession = http2.connect('https://localhost:1234');
937
+ * const {
938
+ * HTTP2_HEADER_PATH,
939
+ * HTTP2_HEADER_STATUS,
940
+ * } = http2.constants;
941
+ *
942
+ * const req = clientSession.request({ [HTTP2_HEADER_PATH]: '/' });
943
+ * req.on('response', (headers) => {
944
+ * console.log(headers[HTTP2_HEADER_STATUS]);
945
+ * req.on('data', (chunk) => { // .. });
946
+ * req.on('end', () => { // .. });
947
+ * });
948
+ * ```
949
+ *
950
+ * When the `options.waitForTrailers` option is set, the `'wantTrailers'` event
951
+ * is emitted immediately after queuing the last chunk of payload data to be sent.
952
+ * The `http2stream.sendTrailers()` method can then be called to send trailing
953
+ * headers to the peer.
954
+ *
955
+ * When `options.waitForTrailers` is set, the `Http2Stream` will not automatically
956
+ * close when the final `DATA` frame is transmitted. User code must call either`http2stream.sendTrailers()` or `http2stream.close()` to close the`Http2Stream`.
957
+ *
958
+ * When `options.signal` is set with an `AbortSignal` and then `abort` on the
959
+ * corresponding `AbortController` is called, the request will emit an `'error'`event with an `AbortError` error.
960
+ *
961
+ * The `:method` and `:path` pseudo-headers are not specified within `headers`,
962
+ * they respectively default to:
963
+ *
964
+ * * `:method` \= `'GET'`
965
+ * * `:path` \= `/`
966
+ * @since v8.4.0
967
+ */
968
+ request(headers?: OutgoingHttpHeaders, options?: ClientSessionRequestOptions): ClientHttp2Stream;
969
+ addListener(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this;
970
+ addListener(event: "origin", listener: (origins: string[]) => void): this;
971
+ addListener(
972
+ event: "connect",
973
+ listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,
974
+ ): this;
975
+ addListener(
976
+ event: "stream",
977
+ listener: (
978
+ stream: ClientHttp2Stream,
979
+ headers: IncomingHttpHeaders & IncomingHttpStatusHeader,
980
+ flags: number,
981
+ ) => void,
982
+ ): this;
983
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
984
+ emit(event: "altsvc", alt: string, origin: string, stream: number): boolean;
985
+ emit(event: "origin", origins: readonly string[]): boolean;
986
+ emit(event: "connect", session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket): boolean;
987
+ emit(
988
+ event: "stream",
989
+ stream: ClientHttp2Stream,
990
+ headers: IncomingHttpHeaders & IncomingHttpStatusHeader,
991
+ flags: number,
992
+ ): boolean;
993
+ emit(event: string | symbol, ...args: any[]): boolean;
994
+ on(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this;
995
+ on(event: "origin", listener: (origins: string[]) => void): this;
996
+ on(event: "connect", listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void): this;
997
+ on(
998
+ event: "stream",
999
+ listener: (
1000
+ stream: ClientHttp2Stream,
1001
+ headers: IncomingHttpHeaders & IncomingHttpStatusHeader,
1002
+ flags: number,
1003
+ ) => void,
1004
+ ): this;
1005
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
1006
+ once(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this;
1007
+ once(event: "origin", listener: (origins: string[]) => void): this;
1008
+ once(
1009
+ event: "connect",
1010
+ listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,
1011
+ ): this;
1012
+ once(
1013
+ event: "stream",
1014
+ listener: (
1015
+ stream: ClientHttp2Stream,
1016
+ headers: IncomingHttpHeaders & IncomingHttpStatusHeader,
1017
+ flags: number,
1018
+ ) => void,
1019
+ ): this;
1020
+ once(event: string | symbol, listener: (...args: any[]) => void): this;
1021
+ prependListener(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this;
1022
+ prependListener(event: "origin", listener: (origins: string[]) => void): this;
1023
+ prependListener(
1024
+ event: "connect",
1025
+ listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,
1026
+ ): this;
1027
+ prependListener(
1028
+ event: "stream",
1029
+ listener: (
1030
+ stream: ClientHttp2Stream,
1031
+ headers: IncomingHttpHeaders & IncomingHttpStatusHeader,
1032
+ flags: number,
1033
+ ) => void,
1034
+ ): this;
1035
+ prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
1036
+ prependOnceListener(event: "altsvc", listener: (alt: string, origin: string, stream: number) => void): this;
1037
+ prependOnceListener(event: "origin", listener: (origins: string[]) => void): this;
1038
+ prependOnceListener(
1039
+ event: "connect",
1040
+ listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,
1041
+ ): this;
1042
+ prependOnceListener(
1043
+ event: "stream",
1044
+ listener: (
1045
+ stream: ClientHttp2Stream,
1046
+ headers: IncomingHttpHeaders & IncomingHttpStatusHeader,
1047
+ flags: number,
1048
+ ) => void,
1049
+ ): this;
1050
+ prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
1051
+ }
1052
+ export interface AlternativeServiceOptions {
1053
+ origin: number | string | url.URL;
1054
+ }
1055
+ export interface ServerHttp2Session<
1056
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1057
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1058
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1059
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1060
+ > extends Http2Session {
1061
+ readonly server:
1062
+ | Http2Server<Http1Request, Http1Response, Http2Request, Http2Response>
1063
+ | Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>;
1064
+ /**
1065
+ * Submits an `ALTSVC` frame (as defined by [RFC 7838](https://tools.ietf.org/html/rfc7838)) to the connected client.
1066
+ *
1067
+ * ```js
1068
+ * import http2 from 'node:http2';
1069
+ *
1070
+ * const server = http2.createServer();
1071
+ * server.on('session', (session) => {
1072
+ * // Set altsvc for origin https://example.org:80
1073
+ * session.altsvc('h2=":8000"', 'https://example.org:80');
1074
+ * });
1075
+ *
1076
+ * server.on('stream', (stream) => {
1077
+ * // Set altsvc for a specific stream
1078
+ * stream.session.altsvc('h2=":8000"', stream.id);
1079
+ * });
1080
+ * ```
1081
+ *
1082
+ * Sending an `ALTSVC` frame with a specific stream ID indicates that the alternate
1083
+ * service is associated with the origin of the given `Http2Stream`.
1084
+ *
1085
+ * The `alt` and origin string _must_ contain only ASCII bytes and are
1086
+ * strictly interpreted as a sequence of ASCII bytes. The special value `'clear'`may be passed to clear any previously set alternative service for a given
1087
+ * domain.
1088
+ *
1089
+ * When a string is passed for the `originOrStream` argument, it will be parsed as
1090
+ * a URL and the origin will be derived. For instance, the origin for the
1091
+ * HTTP URL `'https://example.org/foo/bar'` is the ASCII string`'https://example.org'`. An error will be thrown if either the given string
1092
+ * cannot be parsed as a URL or if a valid origin cannot be derived.
1093
+ *
1094
+ * A `URL` object, or any object with an `origin` property, may be passed as`originOrStream`, in which case the value of the `origin` property will be
1095
+ * used. The value of the `origin` property _must_ be a properly serialized
1096
+ * ASCII origin.
1097
+ * @since v9.4.0
1098
+ * @param alt A description of the alternative service configuration as defined by `RFC 7838`.
1099
+ * @param originOrStream Either a URL string specifying the origin (or an `Object` with an `origin` property) or the numeric identifier of an active `Http2Stream` as given by the
1100
+ * `http2stream.id` property.
1101
+ */
1102
+ altsvc(alt: string, originOrStream: number | string | url.URL | AlternativeServiceOptions): void;
1103
+ /**
1104
+ * Submits an `ORIGIN` frame (as defined by [RFC 8336](https://tools.ietf.org/html/rfc8336)) to the connected client
1105
+ * to advertise the set of origins for which the server is capable of providing
1106
+ * authoritative responses.
1107
+ *
1108
+ * ```js
1109
+ * import http2 from 'node:http2';
1110
+ * const options = getSecureOptionsSomehow();
1111
+ * const server = http2.createSecureServer(options);
1112
+ * server.on('stream', (stream) => {
1113
+ * stream.respond();
1114
+ * stream.end('ok');
1115
+ * });
1116
+ * server.on('session', (session) => {
1117
+ * session.origin('https://example.com', 'https://example.org');
1118
+ * });
1119
+ * ```
1120
+ *
1121
+ * When a string is passed as an `origin`, it will be parsed as a URL and the
1122
+ * origin will be derived. For instance, the origin for the HTTP URL `'https://example.org/foo/bar'` is the ASCII string` 'https://example.org'`. An error will be thrown if either the given
1123
+ * string
1124
+ * cannot be parsed as a URL or if a valid origin cannot be derived.
1125
+ *
1126
+ * A `URL` object, or any object with an `origin` property, may be passed as
1127
+ * an `origin`, in which case the value of the `origin` property will be
1128
+ * used. The value of the `origin` property _must_ be a properly serialized
1129
+ * ASCII origin.
1130
+ *
1131
+ * Alternatively, the `origins` option may be used when creating a new HTTP/2
1132
+ * server using the `http2.createSecureServer()` method:
1133
+ *
1134
+ * ```js
1135
+ * import http2 from 'node:http2';
1136
+ * const options = getSecureOptionsSomehow();
1137
+ * options.origins = ['https://example.com', 'https://example.org'];
1138
+ * const server = http2.createSecureServer(options);
1139
+ * server.on('stream', (stream) => {
1140
+ * stream.respond();
1141
+ * stream.end('ok');
1142
+ * });
1143
+ * ```
1144
+ * @since v10.12.0
1145
+ * @param origins One or more URL Strings passed as separate arguments.
1146
+ */
1147
+ origin(
1148
+ ...origins: Array<
1149
+ | string
1150
+ | url.URL
1151
+ | {
1152
+ origin: string;
1153
+ }
1154
+ >
1155
+ ): void;
1156
+ addListener(
1157
+ event: "connect",
1158
+ listener: (
1159
+ session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,
1160
+ socket: net.Socket | tls.TLSSocket,
1161
+ ) => void,
1162
+ ): this;
1163
+ addListener(
1164
+ event: "stream",
1165
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1166
+ ): this;
1167
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
1168
+ emit(
1169
+ event: "connect",
1170
+ session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,
1171
+ socket: net.Socket | tls.TLSSocket,
1172
+ ): boolean;
1173
+ emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean;
1174
+ emit(event: string | symbol, ...args: any[]): boolean;
1175
+ on(
1176
+ event: "connect",
1177
+ listener: (
1178
+ session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,
1179
+ socket: net.Socket | tls.TLSSocket,
1180
+ ) => void,
1181
+ ): this;
1182
+ on(
1183
+ event: "stream",
1184
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1185
+ ): this;
1186
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
1187
+ once(
1188
+ event: "connect",
1189
+ listener: (
1190
+ session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,
1191
+ socket: net.Socket | tls.TLSSocket,
1192
+ ) => void,
1193
+ ): this;
1194
+ once(
1195
+ event: "stream",
1196
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1197
+ ): this;
1198
+ once(event: string | symbol, listener: (...args: any[]) => void): this;
1199
+ prependListener(
1200
+ event: "connect",
1201
+ listener: (
1202
+ session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,
1203
+ socket: net.Socket | tls.TLSSocket,
1204
+ ) => void,
1205
+ ): this;
1206
+ prependListener(
1207
+ event: "stream",
1208
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1209
+ ): this;
1210
+ prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
1211
+ prependOnceListener(
1212
+ event: "connect",
1213
+ listener: (
1214
+ session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,
1215
+ socket: net.Socket | tls.TLSSocket,
1216
+ ) => void,
1217
+ ): this;
1218
+ prependOnceListener(
1219
+ event: "stream",
1220
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1221
+ ): this;
1222
+ prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
1223
+ }
1224
+ // Http2Server
1225
+ export interface SessionOptions {
1226
+ /**
1227
+ * Sets the maximum dynamic table size for deflating header fields.
1228
+ * @default 4Kib
1229
+ */
1230
+ maxDeflateDynamicTableSize?: number | undefined;
1231
+ /**
1232
+ * Sets the maximum number of settings entries per `SETTINGS` frame.
1233
+ * The minimum value allowed is `1`.
1234
+ * @default 32
1235
+ */
1236
+ maxSettings?: number | undefined;
1237
+ /**
1238
+ * Sets the maximum memory that the `Http2Session` is permitted to use.
1239
+ * The value is expressed in terms of number of megabytes, e.g. `1` equal 1 megabyte.
1240
+ * The minimum value allowed is `1`.
1241
+ * This is a credit based limit, existing `Http2Stream`s may cause this limit to be exceeded,
1242
+ * but new `Http2Stream` instances will be rejected while this limit is exceeded.
1243
+ * The current number of `Http2Stream` sessions, the current memory use of the header compression tables,
1244
+ * current data queued to be sent, and unacknowledged `PING` and `SETTINGS` frames are all counted towards the current limit.
1245
+ * @default 10
1246
+ */
1247
+ maxSessionMemory?: number | undefined;
1248
+ /**
1249
+ * Sets the maximum number of header entries.
1250
+ * This is similar to `server.maxHeadersCount` or `request.maxHeadersCount` in the `node:http` module.
1251
+ * The minimum value is `1`.
1252
+ * @default 128
1253
+ */
1254
+ maxHeaderListPairs?: number | undefined;
1255
+ /**
1256
+ * Sets the maximum number of outstanding, unacknowledged pings.
1257
+ * @default 10
1258
+ */
1259
+ maxOutstandingPings?: number | undefined;
1260
+ /**
1261
+ * Sets the maximum allowed size for a serialized, compressed block of headers.
1262
+ * Attempts to send headers that exceed this limit will result in
1263
+ * a `'frameError'` event being emitted and the stream being closed and destroyed.
1264
+ */
1265
+ maxSendHeaderBlockLength?: number | undefined;
1266
+ /**
1267
+ * Strategy used for determining the amount of padding to use for `HEADERS` and `DATA` frames.
1268
+ * @default http2.constants.PADDING_STRATEGY_NONE
1269
+ */
1270
+ paddingStrategy?: number | undefined;
1271
+ /**
1272
+ * Sets the maximum number of concurrent streams for the remote peer as if a `SETTINGS` frame had been received.
1273
+ * Will be overridden if the remote peer sets its own value for `maxConcurrentStreams`.
1274
+ * @default 100
1275
+ */
1276
+ peerMaxConcurrentStreams?: number | undefined;
1277
+ /**
1278
+ * The initial settings to send to the remote peer upon connection.
1279
+ */
1280
+ settings?: Settings | undefined;
1281
+ /**
1282
+ * The array of integer values determines the settings types,
1283
+ * which are included in the `CustomSettings`-property of the received remoteSettings.
1284
+ * Please see the `CustomSettings`-property of the `Http2Settings` object for more information, on the allowed setting types.
1285
+ */
1286
+ remoteCustomSettings?: number[] | undefined;
1287
+ /**
1288
+ * Specifies a timeout in milliseconds that
1289
+ * a server should wait when an [`'unknownProtocol'`][] is emitted. If the
1290
+ * socket has not been destroyed by that time the server will destroy it.
1291
+ * @default 100000
1292
+ */
1293
+ unknownProtocolTimeout?: number | undefined;
1294
+ }
1295
+ export interface ClientSessionOptions extends SessionOptions {
1296
+ /**
1297
+ * Sets the maximum number of reserved push streams the client will accept at any given time.
1298
+ * Once the current number of currently reserved push streams exceeds reaches this limit,
1299
+ * new push streams sent by the server will be automatically rejected.
1300
+ * The minimum allowed value is 0. The maximum allowed value is 2<sup>32</sup>-1.
1301
+ * A negative value sets this option to the maximum allowed value.
1302
+ * @default 200
1303
+ */
1304
+ maxReservedRemoteStreams?: number | undefined;
1305
+ /**
1306
+ * An optional callback that receives the `URL` instance passed to `connect` and the `options` object,
1307
+ * and returns any `Duplex` stream that is to be used as the connection for this session.
1308
+ */
1309
+ createConnection?: ((authority: url.URL, option: SessionOptions) => stream.Duplex) | undefined;
1310
+ /**
1311
+ * The protocol to connect with, if not set in the `authority`.
1312
+ * Value may be either `'http:'` or `'https:'`.
1313
+ * @default 'https:'
1314
+ */
1315
+ protocol?: "http:" | "https:" | undefined;
1316
+ }
1317
+ export interface ServerSessionOptions<
1318
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1319
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1320
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1321
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1322
+ > extends SessionOptions {
1323
+ Http1IncomingMessage?: Http1Request | undefined;
1324
+ Http1ServerResponse?: Http1Response | undefined;
1325
+ Http2ServerRequest?: Http2Request | undefined;
1326
+ Http2ServerResponse?: Http2Response | undefined;
1327
+ }
1328
+ export interface SecureClientSessionOptions extends ClientSessionOptions, tls.ConnectionOptions {}
1329
+ export interface SecureServerSessionOptions<
1330
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1331
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1332
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1333
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1334
+ > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response>, tls.TlsOptions {}
1335
+ export interface ServerOptions<
1336
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1337
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1338
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1339
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1340
+ > extends ServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response> {}
1341
+ export interface SecureServerOptions<
1342
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1343
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1344
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1345
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1346
+ > extends SecureServerSessionOptions<Http1Request, Http1Response, Http2Request, Http2Response> {
1347
+ allowHTTP1?: boolean | undefined;
1348
+ origins?: string[] | undefined;
1349
+ }
1350
+ interface HTTP2ServerCommon {
1351
+ setTimeout(msec?: number, callback?: () => void): this;
1352
+ /**
1353
+ * Throws ERR_HTTP2_INVALID_SETTING_VALUE for invalid settings values.
1354
+ * Throws ERR_INVALID_ARG_TYPE for invalid settings argument.
1355
+ */
1356
+ updateSettings(settings: Settings): void;
1357
+ }
1358
+ export interface Http2Server<
1359
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1360
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1361
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1362
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1363
+ > extends net.Server, HTTP2ServerCommon {
1364
+ addListener(
1365
+ event: "checkContinue",
1366
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1367
+ ): this;
1368
+ addListener(
1369
+ event: "request",
1370
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1371
+ ): this;
1372
+ addListener(
1373
+ event: "session",
1374
+ listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,
1375
+ ): this;
1376
+ addListener(event: "sessionError", listener: (err: Error) => void): this;
1377
+ addListener(
1378
+ event: "stream",
1379
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1380
+ ): this;
1381
+ addListener(event: "timeout", listener: () => void): this;
1382
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
1383
+ emit(
1384
+ event: "checkContinue",
1385
+ request: InstanceType<Http2Request>,
1386
+ response: InstanceType<Http2Response>,
1387
+ ): boolean;
1388
+ emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean;
1389
+ emit(
1390
+ event: "session",
1391
+ session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,
1392
+ ): boolean;
1393
+ emit(event: "sessionError", err: Error): boolean;
1394
+ emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean;
1395
+ emit(event: "timeout"): boolean;
1396
+ emit(event: string | symbol, ...args: any[]): boolean;
1397
+ on(
1398
+ event: "checkContinue",
1399
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1400
+ ): this;
1401
+ on(
1402
+ event: "request",
1403
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1404
+ ): this;
1405
+ on(
1406
+ event: "session",
1407
+ listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,
1408
+ ): this;
1409
+ on(event: "sessionError", listener: (err: Error) => void): this;
1410
+ on(
1411
+ event: "stream",
1412
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1413
+ ): this;
1414
+ on(event: "timeout", listener: () => void): this;
1415
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
1416
+ once(
1417
+ event: "checkContinue",
1418
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1419
+ ): this;
1420
+ once(
1421
+ event: "request",
1422
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1423
+ ): this;
1424
+ once(
1425
+ event: "session",
1426
+ listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,
1427
+ ): this;
1428
+ once(event: "sessionError", listener: (err: Error) => void): this;
1429
+ once(
1430
+ event: "stream",
1431
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1432
+ ): this;
1433
+ once(event: "timeout", listener: () => void): this;
1434
+ once(event: string | symbol, listener: (...args: any[]) => void): this;
1435
+ prependListener(
1436
+ event: "checkContinue",
1437
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1438
+ ): this;
1439
+ prependListener(
1440
+ event: "request",
1441
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1442
+ ): this;
1443
+ prependListener(
1444
+ event: "session",
1445
+ listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,
1446
+ ): this;
1447
+ prependListener(event: "sessionError", listener: (err: Error) => void): this;
1448
+ prependListener(
1449
+ event: "stream",
1450
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1451
+ ): this;
1452
+ prependListener(event: "timeout", listener: () => void): this;
1453
+ prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
1454
+ prependOnceListener(
1455
+ event: "checkContinue",
1456
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1457
+ ): this;
1458
+ prependOnceListener(
1459
+ event: "request",
1460
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1461
+ ): this;
1462
+ prependOnceListener(
1463
+ event: "session",
1464
+ listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,
1465
+ ): this;
1466
+ prependOnceListener(event: "sessionError", listener: (err: Error) => void): this;
1467
+ prependOnceListener(
1468
+ event: "stream",
1469
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1470
+ ): this;
1471
+ prependOnceListener(event: "timeout", listener: () => void): this;
1472
+ prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
1473
+ }
1474
+ export interface Http2SecureServer<
1475
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
1476
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
1477
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
1478
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
1479
+ > extends tls.Server, HTTP2ServerCommon {
1480
+ addListener(
1481
+ event: "checkContinue",
1482
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1483
+ ): this;
1484
+ addListener(
1485
+ event: "request",
1486
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1487
+ ): this;
1488
+ addListener(
1489
+ event: "session",
1490
+ listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,
1491
+ ): this;
1492
+ addListener(event: "sessionError", listener: (err: Error) => void): this;
1493
+ addListener(
1494
+ event: "stream",
1495
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1496
+ ): this;
1497
+ addListener(event: "timeout", listener: () => void): this;
1498
+ addListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this;
1499
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
1500
+ emit(
1501
+ event: "checkContinue",
1502
+ request: InstanceType<Http2Request>,
1503
+ response: InstanceType<Http2Response>,
1504
+ ): boolean;
1505
+ emit(event: "request", request: InstanceType<Http2Request>, response: InstanceType<Http2Response>): boolean;
1506
+ emit(
1507
+ event: "session",
1508
+ session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>,
1509
+ ): boolean;
1510
+ emit(event: "sessionError", err: Error): boolean;
1511
+ emit(event: "stream", stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number): boolean;
1512
+ emit(event: "timeout"): boolean;
1513
+ emit(event: "unknownProtocol", socket: tls.TLSSocket): boolean;
1514
+ emit(event: string | symbol, ...args: any[]): boolean;
1515
+ on(
1516
+ event: "checkContinue",
1517
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1518
+ ): this;
1519
+ on(
1520
+ event: "request",
1521
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1522
+ ): this;
1523
+ on(
1524
+ event: "session",
1525
+ listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,
1526
+ ): this;
1527
+ on(event: "sessionError", listener: (err: Error) => void): this;
1528
+ on(
1529
+ event: "stream",
1530
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1531
+ ): this;
1532
+ on(event: "timeout", listener: () => void): this;
1533
+ on(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this;
1534
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
1535
+ once(
1536
+ event: "checkContinue",
1537
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1538
+ ): this;
1539
+ once(
1540
+ event: "request",
1541
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1542
+ ): this;
1543
+ once(
1544
+ event: "session",
1545
+ listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,
1546
+ ): this;
1547
+ once(event: "sessionError", listener: (err: Error) => void): this;
1548
+ once(
1549
+ event: "stream",
1550
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1551
+ ): this;
1552
+ once(event: "timeout", listener: () => void): this;
1553
+ once(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this;
1554
+ once(event: string | symbol, listener: (...args: any[]) => void): this;
1555
+ prependListener(
1556
+ event: "checkContinue",
1557
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1558
+ ): this;
1559
+ prependListener(
1560
+ event: "request",
1561
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1562
+ ): this;
1563
+ prependListener(
1564
+ event: "session",
1565
+ listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,
1566
+ ): this;
1567
+ prependListener(event: "sessionError", listener: (err: Error) => void): this;
1568
+ prependListener(
1569
+ event: "stream",
1570
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1571
+ ): this;
1572
+ prependListener(event: "timeout", listener: () => void): this;
1573
+ prependListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this;
1574
+ prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
1575
+ prependOnceListener(
1576
+ event: "checkContinue",
1577
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1578
+ ): this;
1579
+ prependOnceListener(
1580
+ event: "request",
1581
+ listener: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
1582
+ ): this;
1583
+ prependOnceListener(
1584
+ event: "session",
1585
+ listener: (session: ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>) => void,
1586
+ ): this;
1587
+ prependOnceListener(event: "sessionError", listener: (err: Error) => void): this;
1588
+ prependOnceListener(
1589
+ event: "stream",
1590
+ listener: (stream: ServerHttp2Stream, headers: IncomingHttpHeaders, flags: number) => void,
1591
+ ): this;
1592
+ prependOnceListener(event: "timeout", listener: () => void): this;
1593
+ prependOnceListener(event: "unknownProtocol", listener: (socket: tls.TLSSocket) => void): this;
1594
+ prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
1595
+ }
1596
+ /**
1597
+ * A `Http2ServerRequest` object is created by {@link Server} or {@link SecureServer} and passed as the first argument to the `'request'` event. It may be used to access a request status,
1598
+ * headers, and
1599
+ * data.
1600
+ * @since v8.4.0
1601
+ */
1602
+ export class Http2ServerRequest extends stream.Readable {
1603
+ constructor(
1604
+ stream: ServerHttp2Stream,
1605
+ headers: IncomingHttpHeaders,
1606
+ options: stream.ReadableOptions,
1607
+ rawHeaders: readonly string[],
1608
+ );
1609
+ /**
1610
+ * The `request.aborted` property will be `true` if the request has
1611
+ * been aborted.
1612
+ * @since v10.1.0
1613
+ */
1614
+ readonly aborted: boolean;
1615
+ /**
1616
+ * The request authority pseudo header field. Because HTTP/2 allows requests
1617
+ * to set either `:authority` or `host`, this value is derived from `req.headers[':authority']` if present. Otherwise, it is derived from `req.headers['host']`.
1618
+ * @since v8.4.0
1619
+ */
1620
+ readonly authority: string;
1621
+ /**
1622
+ * See `request.socket`.
1623
+ * @since v8.4.0
1624
+ * @deprecated Since v13.0.0 - Use `socket`.
1625
+ */
1626
+ readonly connection: net.Socket | tls.TLSSocket;
1627
+ /**
1628
+ * The `request.complete` property will be `true` if the request has
1629
+ * been completed, aborted, or destroyed.
1630
+ * @since v12.10.0
1631
+ */
1632
+ readonly complete: boolean;
1633
+ /**
1634
+ * The request/response headers object.
1635
+ *
1636
+ * Key-value pairs of header names and values. Header names are lower-cased.
1637
+ *
1638
+ * ```js
1639
+ * // Prints something like:
1640
+ * //
1641
+ * // { 'user-agent': 'curl/7.22.0',
1642
+ * // host: '127.0.0.1:8000',
1643
+ * // accept: '*' }
1644
+ * console.log(request.headers);
1645
+ * ```
1646
+ *
1647
+ * See `HTTP/2 Headers Object`.
1648
+ *
1649
+ * In HTTP/2, the request path, host name, protocol, and method are represented as
1650
+ * special headers prefixed with the `:` character (e.g. `':path'`). These special
1651
+ * headers will be included in the `request.headers` object. Care must be taken not
1652
+ * to inadvertently modify these special headers or errors may occur. For instance,
1653
+ * removing all headers from the request will cause errors to occur:
1654
+ *
1655
+ * ```js
1656
+ * removeAllHeaders(request.headers);
1657
+ * assert(request.url); // Fails because the :path header has been removed
1658
+ * ```
1659
+ * @since v8.4.0
1660
+ */
1661
+ readonly headers: IncomingHttpHeaders;
1662
+ /**
1663
+ * In case of server request, the HTTP version sent by the client. In the case of
1664
+ * client response, the HTTP version of the connected-to server. Returns `'2.0'`.
1665
+ *
1666
+ * Also `message.httpVersionMajor` is the first integer and `message.httpVersionMinor` is the second.
1667
+ * @since v8.4.0
1668
+ */
1669
+ readonly httpVersion: string;
1670
+ readonly httpVersionMinor: number;
1671
+ readonly httpVersionMajor: number;
1672
+ /**
1673
+ * The request method as a string. Read-only. Examples: `'GET'`, `'DELETE'`.
1674
+ * @since v8.4.0
1675
+ */
1676
+ readonly method: string;
1677
+ /**
1678
+ * The raw request/response headers list exactly as they were received.
1679
+ *
1680
+ * The keys and values are in the same list. It is _not_ a
1681
+ * list of tuples. So, the even-numbered offsets are key values, and the
1682
+ * odd-numbered offsets are the associated values.
1683
+ *
1684
+ * Header names are not lowercased, and duplicates are not merged.
1685
+ *
1686
+ * ```js
1687
+ * // Prints something like:
1688
+ * //
1689
+ * // [ 'user-agent',
1690
+ * // 'this is invalid because there can be only one',
1691
+ * // 'User-Agent',
1692
+ * // 'curl/7.22.0',
1693
+ * // 'Host',
1694
+ * // '127.0.0.1:8000',
1695
+ * // 'ACCEPT',
1696
+ * // '*' ]
1697
+ * console.log(request.rawHeaders);
1698
+ * ```
1699
+ * @since v8.4.0
1700
+ */
1701
+ readonly rawHeaders: string[];
1702
+ /**
1703
+ * The raw request/response trailer keys and values exactly as they were
1704
+ * received. Only populated at the `'end'` event.
1705
+ * @since v8.4.0
1706
+ */
1707
+ readonly rawTrailers: string[];
1708
+ /**
1709
+ * The request scheme pseudo header field indicating the scheme
1710
+ * portion of the target URL.
1711
+ * @since v8.4.0
1712
+ */
1713
+ readonly scheme: string;
1714
+ /**
1715
+ * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but
1716
+ * applies getters, setters, and methods based on HTTP/2 logic.
1717
+ *
1718
+ * `destroyed`, `readable`, and `writable` properties will be retrieved from and
1719
+ * set on `request.stream`.
1720
+ *
1721
+ * `destroy`, `emit`, `end`, `on` and `once` methods will be called on `request.stream`.
1722
+ *
1723
+ * `setTimeout` method will be called on `request.stream.session`.
1724
+ *
1725
+ * `pause`, `read`, `resume`, and `write` will throw an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for
1726
+ * more information.
1727
+ *
1728
+ * All other interactions will be routed directly to the socket. With TLS support,
1729
+ * use `request.socket.getPeerCertificate()` to obtain the client's
1730
+ * authentication details.
1731
+ * @since v8.4.0
1732
+ */
1733
+ readonly socket: net.Socket | tls.TLSSocket;
1734
+ /**
1735
+ * The `Http2Stream` object backing the request.
1736
+ * @since v8.4.0
1737
+ */
1738
+ readonly stream: ServerHttp2Stream;
1739
+ /**
1740
+ * The request/response trailers object. Only populated at the `'end'` event.
1741
+ * @since v8.4.0
1742
+ */
1743
+ readonly trailers: IncomingHttpHeaders;
1744
+ /**
1745
+ * Request URL string. This contains only the URL that is present in the actual
1746
+ * HTTP request. If the request is:
1747
+ *
1748
+ * ```http
1749
+ * GET /status?name=ryan HTTP/1.1
1750
+ * Accept: text/plain
1751
+ * ```
1752
+ *
1753
+ * Then `request.url` will be:
1754
+ *
1755
+ * ```js
1756
+ * '/status?name=ryan'
1757
+ * ```
1758
+ *
1759
+ * To parse the url into its parts, `new URL()` can be used:
1760
+ *
1761
+ * ```console
1762
+ * $ node
1763
+ * > new URL('/status?name=ryan', 'http://example.com')
1764
+ * URL {
1765
+ * href: 'http://example.com/status?name=ryan',
1766
+ * origin: 'http://example.com',
1767
+ * protocol: 'http:',
1768
+ * username: '',
1769
+ * password: '',
1770
+ * host: 'example.com',
1771
+ * hostname: 'example.com',
1772
+ * port: '',
1773
+ * pathname: '/status',
1774
+ * search: '?name=ryan',
1775
+ * searchParams: URLSearchParams { 'name' => 'ryan' },
1776
+ * hash: ''
1777
+ * }
1778
+ * ```
1779
+ * @since v8.4.0
1780
+ */
1781
+ url: string;
1782
+ /**
1783
+ * Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is
1784
+ * provided, then it is added as a listener on the `'timeout'` event on
1785
+ * the response object.
1786
+ *
1787
+ * If no `'timeout'` listener is added to the request, the response, or
1788
+ * the server, then `Http2Stream`s are destroyed when they time out. If a
1789
+ * handler is assigned to the request, the response, or the server's `'timeout'`events, timed out sockets must be handled explicitly.
1790
+ * @since v8.4.0
1791
+ */
1792
+ setTimeout(msecs: number, callback?: () => void): void;
1793
+ read(size?: number): Buffer | string | null;
1794
+ addListener(event: "aborted", listener: (hadError: boolean, code: number) => void): this;
1795
+ addListener(event: "close", listener: () => void): this;
1796
+ addListener(event: "data", listener: (chunk: Buffer | string) => void): this;
1797
+ addListener(event: "end", listener: () => void): this;
1798
+ addListener(event: "readable", listener: () => void): this;
1799
+ addListener(event: "error", listener: (err: Error) => void): this;
1800
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
1801
+ emit(event: "aborted", hadError: boolean, code: number): boolean;
1802
+ emit(event: "close"): boolean;
1803
+ emit(event: "data", chunk: Buffer | string): boolean;
1804
+ emit(event: "end"): boolean;
1805
+ emit(event: "readable"): boolean;
1806
+ emit(event: "error", err: Error): boolean;
1807
+ emit(event: string | symbol, ...args: any[]): boolean;
1808
+ on(event: "aborted", listener: (hadError: boolean, code: number) => void): this;
1809
+ on(event: "close", listener: () => void): this;
1810
+ on(event: "data", listener: (chunk: Buffer | string) => void): this;
1811
+ on(event: "end", listener: () => void): this;
1812
+ on(event: "readable", listener: () => void): this;
1813
+ on(event: "error", listener: (err: Error) => void): this;
1814
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
1815
+ once(event: "aborted", listener: (hadError: boolean, code: number) => void): this;
1816
+ once(event: "close", listener: () => void): this;
1817
+ once(event: "data", listener: (chunk: Buffer | string) => void): this;
1818
+ once(event: "end", listener: () => void): this;
1819
+ once(event: "readable", listener: () => void): this;
1820
+ once(event: "error", listener: (err: Error) => void): this;
1821
+ once(event: string | symbol, listener: (...args: any[]) => void): this;
1822
+ prependListener(event: "aborted", listener: (hadError: boolean, code: number) => void): this;
1823
+ prependListener(event: "close", listener: () => void): this;
1824
+ prependListener(event: "data", listener: (chunk: Buffer | string) => void): this;
1825
+ prependListener(event: "end", listener: () => void): this;
1826
+ prependListener(event: "readable", listener: () => void): this;
1827
+ prependListener(event: "error", listener: (err: Error) => void): this;
1828
+ prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
1829
+ prependOnceListener(event: "aborted", listener: (hadError: boolean, code: number) => void): this;
1830
+ prependOnceListener(event: "close", listener: () => void): this;
1831
+ prependOnceListener(event: "data", listener: (chunk: Buffer | string) => void): this;
1832
+ prependOnceListener(event: "end", listener: () => void): this;
1833
+ prependOnceListener(event: "readable", listener: () => void): this;
1834
+ prependOnceListener(event: "error", listener: (err: Error) => void): this;
1835
+ prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
1836
+ }
1837
+ /**
1838
+ * This object is created internally by an HTTP server, not by the user. It is
1839
+ * passed as the second parameter to the `'request'` event.
1840
+ * @since v8.4.0
1841
+ */
1842
+ export class Http2ServerResponse<Request extends Http2ServerRequest = Http2ServerRequest> extends stream.Writable {
1843
+ constructor(stream: ServerHttp2Stream);
1844
+ /**
1845
+ * See `response.socket`.
1846
+ * @since v8.4.0
1847
+ * @deprecated Since v13.0.0 - Use `socket`.
1848
+ */
1849
+ readonly connection: net.Socket | tls.TLSSocket;
1850
+ /**
1851
+ * Append a single header value to the header object.
1852
+ *
1853
+ * If the value is an array, this is equivalent to calling this method multiple times.
1854
+ *
1855
+ * If there were no previous values for the header, this is equivalent to calling {@link setHeader}.
1856
+ *
1857
+ * Attempting to set a header field name or value that contains invalid characters will result in a
1858
+ * [TypeError](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-typeerror) being thrown.
1859
+ *
1860
+ * ```js
1861
+ * // Returns headers including "set-cookie: a" and "set-cookie: b"
1862
+ * const server = http2.createServer((req, res) => {
1863
+ * res.setHeader('set-cookie', 'a');
1864
+ * res.appendHeader('set-cookie', 'b');
1865
+ * res.writeHead(200);
1866
+ * res.end('ok');
1867
+ * });
1868
+ * ```
1869
+ * @since v20.12.0
1870
+ */
1871
+ appendHeader(name: string, value: string | string[]): void;
1872
+ /**
1873
+ * Boolean value that indicates whether the response has completed. Starts
1874
+ * as `false`. After `response.end()` executes, the value will be `true`.
1875
+ * @since v8.4.0
1876
+ * @deprecated Since v13.4.0,v12.16.0 - Use `writableEnded`.
1877
+ */
1878
+ readonly finished: boolean;
1879
+ /**
1880
+ * True if headers were sent, false otherwise (read-only).
1881
+ * @since v8.4.0
1882
+ */
1883
+ readonly headersSent: boolean;
1884
+ /**
1885
+ * A reference to the original HTTP2 `request` object.
1886
+ * @since v15.7.0
1887
+ */
1888
+ readonly req: Request;
1889
+ /**
1890
+ * Returns a `Proxy` object that acts as a `net.Socket` (or `tls.TLSSocket`) but
1891
+ * applies getters, setters, and methods based on HTTP/2 logic.
1892
+ *
1893
+ * `destroyed`, `readable`, and `writable` properties will be retrieved from and
1894
+ * set on `response.stream`.
1895
+ *
1896
+ * `destroy`, `emit`, `end`, `on` and `once` methods will be called on `response.stream`.
1897
+ *
1898
+ * `setTimeout` method will be called on `response.stream.session`.
1899
+ *
1900
+ * `pause`, `read`, `resume`, and `write` will throw an error with code `ERR_HTTP2_NO_SOCKET_MANIPULATION`. See `Http2Session and Sockets` for
1901
+ * more information.
1902
+ *
1903
+ * All other interactions will be routed directly to the socket.
1904
+ *
1905
+ * ```js
1906
+ * import http2 from 'node:http2';
1907
+ * const server = http2.createServer((req, res) => {
1908
+ * const ip = req.socket.remoteAddress;
1909
+ * const port = req.socket.remotePort;
1910
+ * res.end(`Your IP address is ${ip} and your source port is ${port}.`);
1911
+ * }).listen(3000);
1912
+ * ```
1913
+ * @since v8.4.0
1914
+ */
1915
+ readonly socket: net.Socket | tls.TLSSocket;
1916
+ /**
1917
+ * The `Http2Stream` object backing the response.
1918
+ * @since v8.4.0
1919
+ */
1920
+ readonly stream: ServerHttp2Stream;
1921
+ /**
1922
+ * When true, the Date header will be automatically generated and sent in
1923
+ * the response if it is not already present in the headers. Defaults to true.
1924
+ *
1925
+ * This should only be disabled for testing; HTTP requires the Date header
1926
+ * in responses.
1927
+ * @since v8.4.0
1928
+ */
1929
+ sendDate: boolean;
1930
+ /**
1931
+ * When using implicit headers (not calling `response.writeHead()` explicitly),
1932
+ * this property controls the status code that will be sent to the client when
1933
+ * the headers get flushed.
1934
+ *
1935
+ * ```js
1936
+ * response.statusCode = 404;
1937
+ * ```
1938
+ *
1939
+ * After response header was sent to the client, this property indicates the
1940
+ * status code which was sent out.
1941
+ * @since v8.4.0
1942
+ */
1943
+ statusCode: number;
1944
+ /**
1945
+ * Status message is not supported by HTTP/2 (RFC 7540 8.1.2.4). It returns
1946
+ * an empty string.
1947
+ * @since v8.4.0
1948
+ */
1949
+ statusMessage: "";
1950
+ /**
1951
+ * This method adds HTTP trailing headers (a header but at the end of the
1952
+ * message) to the response.
1953
+ *
1954
+ * Attempting to set a header field name or value that contains invalid characters
1955
+ * will result in a `TypeError` being thrown.
1956
+ * @since v8.4.0
1957
+ */
1958
+ addTrailers(trailers: OutgoingHttpHeaders): void;
1959
+ /**
1960
+ * This method signals to the server that all of the response headers and body
1961
+ * have been sent; that server should consider this message complete.
1962
+ * The method, `response.end()`, MUST be called on each response.
1963
+ *
1964
+ * If `data` is specified, it is equivalent to calling `response.write(data, encoding)` followed by `response.end(callback)`.
1965
+ *
1966
+ * If `callback` is specified, it will be called when the response stream
1967
+ * is finished.
1968
+ * @since v8.4.0
1969
+ */
1970
+ end(callback?: () => void): this;
1971
+ end(data: string | Uint8Array, callback?: () => void): this;
1972
+ end(data: string | Uint8Array, encoding: BufferEncoding, callback?: () => void): this;
1973
+ /**
1974
+ * Reads out a header that has already been queued but not sent to the client.
1975
+ * The name is case-insensitive.
1976
+ *
1977
+ * ```js
1978
+ * const contentType = response.getHeader('content-type');
1979
+ * ```
1980
+ * @since v8.4.0
1981
+ */
1982
+ getHeader(name: string): string;
1983
+ /**
1984
+ * Returns an array containing the unique names of the current outgoing headers.
1985
+ * All header names are lowercase.
1986
+ *
1987
+ * ```js
1988
+ * response.setHeader('Foo', 'bar');
1989
+ * response.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']);
1990
+ *
1991
+ * const headerNames = response.getHeaderNames();
1992
+ * // headerNames === ['foo', 'set-cookie']
1993
+ * ```
1994
+ * @since v8.4.0
1995
+ */
1996
+ getHeaderNames(): string[];
1997
+ /**
1998
+ * Returns a shallow copy of the current outgoing headers. Since a shallow copy
1999
+ * is used, array values may be mutated without additional calls to various
2000
+ * header-related http module methods. The keys of the returned object are the
2001
+ * header names and the values are the respective header values. All header names
2002
+ * are lowercase.
2003
+ *
2004
+ * The object returned by the `response.getHeaders()` method _does not_ prototypically inherit from the JavaScript `Object`. This means that typical `Object` methods such as `obj.toString()`,
2005
+ * `obj.hasOwnProperty()`, and others
2006
+ * are not defined and _will not work_.
2007
+ *
2008
+ * ```js
2009
+ * response.setHeader('Foo', 'bar');
2010
+ * response.setHeader('Set-Cookie', ['foo=bar', 'bar=baz']);
2011
+ *
2012
+ * const headers = response.getHeaders();
2013
+ * // headers === { foo: 'bar', 'set-cookie': ['foo=bar', 'bar=baz'] }
2014
+ * ```
2015
+ * @since v8.4.0
2016
+ */
2017
+ getHeaders(): OutgoingHttpHeaders;
2018
+ /**
2019
+ * Returns `true` if the header identified by `name` is currently set in the
2020
+ * outgoing headers. The header name matching is case-insensitive.
2021
+ *
2022
+ * ```js
2023
+ * const hasContentType = response.hasHeader('content-type');
2024
+ * ```
2025
+ * @since v8.4.0
2026
+ */
2027
+ hasHeader(name: string): boolean;
2028
+ /**
2029
+ * Removes a header that has been queued for implicit sending.
2030
+ *
2031
+ * ```js
2032
+ * response.removeHeader('Content-Encoding');
2033
+ * ```
2034
+ * @since v8.4.0
2035
+ */
2036
+ removeHeader(name: string): void;
2037
+ /**
2038
+ * Sets a single header value for implicit headers. If this header already exists
2039
+ * in the to-be-sent headers, its value will be replaced. Use an array of strings
2040
+ * here to send multiple headers with the same name.
2041
+ *
2042
+ * ```js
2043
+ * response.setHeader('Content-Type', 'text/html; charset=utf-8');
2044
+ * ```
2045
+ *
2046
+ * or
2047
+ *
2048
+ * ```js
2049
+ * response.setHeader('Set-Cookie', ['type=ninja', 'language=javascript']);
2050
+ * ```
2051
+ *
2052
+ * Attempting to set a header field name or value that contains invalid characters
2053
+ * will result in a `TypeError` being thrown.
2054
+ *
2055
+ * When headers have been set with `response.setHeader()`, they will be merged
2056
+ * with any headers passed to `response.writeHead()`, with the headers passed
2057
+ * to `response.writeHead()` given precedence.
2058
+ *
2059
+ * ```js
2060
+ * // Returns content-type = text/plain
2061
+ * const server = http2.createServer((req, res) => {
2062
+ * res.setHeader('Content-Type', 'text/html; charset=utf-8');
2063
+ * res.setHeader('X-Foo', 'bar');
2064
+ * res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });
2065
+ * res.end('ok');
2066
+ * });
2067
+ * ```
2068
+ * @since v8.4.0
2069
+ */
2070
+ setHeader(name: string, value: number | string | readonly string[]): void;
2071
+ /**
2072
+ * Sets the `Http2Stream`'s timeout value to `msecs`. If a callback is
2073
+ * provided, then it is added as a listener on the `'timeout'` event on
2074
+ * the response object.
2075
+ *
2076
+ * If no `'timeout'` listener is added to the request, the response, or
2077
+ * the server, then `Http2Stream` s are destroyed when they time out. If a
2078
+ * handler is assigned to the request, the response, or the server's `'timeout'` events, timed out sockets must be handled explicitly.
2079
+ * @since v8.4.0
2080
+ */
2081
+ setTimeout(msecs: number, callback?: () => void): void;
2082
+ /**
2083
+ * If this method is called and `response.writeHead()` has not been called,
2084
+ * it will switch to implicit header mode and flush the implicit headers.
2085
+ *
2086
+ * This sends a chunk of the response body. This method may
2087
+ * be called multiple times to provide successive parts of the body.
2088
+ *
2089
+ * In the `node:http` module, the response body is omitted when the
2090
+ * request is a HEAD request. Similarly, the `204` and `304` responses _must not_ include a message body.
2091
+ *
2092
+ * `chunk` can be a string or a buffer. If `chunk` is a string,
2093
+ * the second parameter specifies how to encode it into a byte stream.
2094
+ * By default the `encoding` is `'utf8'`. `callback` will be called when this chunk
2095
+ * of data is flushed.
2096
+ *
2097
+ * This is the raw HTTP body and has nothing to do with higher-level multi-part
2098
+ * body encodings that may be used.
2099
+ *
2100
+ * The first time `response.write()` is called, it will send the buffered
2101
+ * header information and the first chunk of the body to the client. The second
2102
+ * time `response.write()` is called, Node.js assumes data will be streamed,
2103
+ * and sends the new data separately. That is, the response is buffered up to the
2104
+ * first chunk of the body.
2105
+ *
2106
+ * Returns `true` if the entire data was flushed successfully to the kernel
2107
+ * buffer. Returns `false` if all or part of the data was queued in user memory.`'drain'` will be emitted when the buffer is free again.
2108
+ * @since v8.4.0
2109
+ */
2110
+ write(chunk: string | Uint8Array, callback?: (err: Error) => void): boolean;
2111
+ write(chunk: string | Uint8Array, encoding: BufferEncoding, callback?: (err: Error) => void): boolean;
2112
+ /**
2113
+ * Sends a status `100 Continue` to the client, indicating that the request body
2114
+ * should be sent. See the `'checkContinue'` event on `Http2Server` and `Http2SecureServer`.
2115
+ * @since v8.4.0
2116
+ */
2117
+ writeContinue(): void;
2118
+ /**
2119
+ * Sends a status `103 Early Hints` to the client with a Link header,
2120
+ * indicating that the user agent can preload/preconnect the linked resources.
2121
+ * The `hints` is an object containing the values of headers to be sent with
2122
+ * early hints message.
2123
+ *
2124
+ * **Example**
2125
+ *
2126
+ * ```js
2127
+ * const earlyHintsLink = '</styles.css>; rel=preload; as=style';
2128
+ * response.writeEarlyHints({
2129
+ * 'link': earlyHintsLink,
2130
+ * });
2131
+ *
2132
+ * const earlyHintsLinks = [
2133
+ * '</styles.css>; rel=preload; as=style',
2134
+ * '</scripts.js>; rel=preload; as=script',
2135
+ * ];
2136
+ * response.writeEarlyHints({
2137
+ * 'link': earlyHintsLinks,
2138
+ * });
2139
+ * ```
2140
+ * @since v18.11.0
2141
+ */
2142
+ writeEarlyHints(hints: Record<string, string | string[]>): void;
2143
+ /**
2144
+ * Sends a response header to the request. The status code is a 3-digit HTTP
2145
+ * status code, like `404`. The last argument, `headers`, are the response headers.
2146
+ *
2147
+ * Returns a reference to the `Http2ServerResponse`, so that calls can be chained.
2148
+ *
2149
+ * For compatibility with `HTTP/1`, a human-readable `statusMessage` may be
2150
+ * passed as the second argument. However, because the `statusMessage` has no
2151
+ * meaning within HTTP/2, the argument will have no effect and a process warning
2152
+ * will be emitted.
2153
+ *
2154
+ * ```js
2155
+ * const body = 'hello world';
2156
+ * response.writeHead(200, {
2157
+ * 'Content-Length': Buffer.byteLength(body),
2158
+ * 'Content-Type': 'text/plain; charset=utf-8',
2159
+ * });
2160
+ * ```
2161
+ *
2162
+ * `Content-Length` is given in bytes not characters. The`Buffer.byteLength()` API may be used to determine the number of bytes in a
2163
+ * given encoding. On outbound messages, Node.js does not check if Content-Length
2164
+ * and the length of the body being transmitted are equal or not. However, when
2165
+ * receiving messages, Node.js will automatically reject messages when the `Content-Length` does not match the actual payload size.
2166
+ *
2167
+ * This method may be called at most one time on a message before `response.end()` is called.
2168
+ *
2169
+ * If `response.write()` or `response.end()` are called before calling
2170
+ * this, the implicit/mutable headers will be calculated and call this function.
2171
+ *
2172
+ * When headers have been set with `response.setHeader()`, they will be merged
2173
+ * with any headers passed to `response.writeHead()`, with the headers passed
2174
+ * to `response.writeHead()` given precedence.
2175
+ *
2176
+ * ```js
2177
+ * // Returns content-type = text/plain
2178
+ * const server = http2.createServer((req, res) => {
2179
+ * res.setHeader('Content-Type', 'text/html; charset=utf-8');
2180
+ * res.setHeader('X-Foo', 'bar');
2181
+ * res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8' });
2182
+ * res.end('ok');
2183
+ * });
2184
+ * ```
2185
+ *
2186
+ * Attempting to set a header field name or value that contains invalid characters
2187
+ * will result in a `TypeError` being thrown.
2188
+ * @since v8.4.0
2189
+ */
2190
+ writeHead(statusCode: number, headers?: OutgoingHttpHeaders): this;
2191
+ writeHead(statusCode: number, statusMessage: string, headers?: OutgoingHttpHeaders): this;
2192
+ /**
2193
+ * Call `http2stream.pushStream()` with the given headers, and wrap the
2194
+ * given `Http2Stream` on a newly created `Http2ServerResponse` as the callback
2195
+ * parameter if successful. When `Http2ServerRequest` is closed, the callback is
2196
+ * called with an error `ERR_HTTP2_INVALID_STREAM`.
2197
+ * @since v8.4.0
2198
+ * @param headers An object describing the headers
2199
+ * @param callback Called once `http2stream.pushStream()` is finished, or either when the attempt to create the pushed `Http2Stream` has failed or has been rejected, or the state of
2200
+ * `Http2ServerRequest` is closed prior to calling the `http2stream.pushStream()` method
2201
+ */
2202
+ createPushResponse(
2203
+ headers: OutgoingHttpHeaders,
2204
+ callback: (err: Error | null, res: Http2ServerResponse) => void,
2205
+ ): void;
2206
+ addListener(event: "close", listener: () => void): this;
2207
+ addListener(event: "drain", listener: () => void): this;
2208
+ addListener(event: "error", listener: (error: Error) => void): this;
2209
+ addListener(event: "finish", listener: () => void): this;
2210
+ addListener(event: "pipe", listener: (src: stream.Readable) => void): this;
2211
+ addListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
2212
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
2213
+ emit(event: "close"): boolean;
2214
+ emit(event: "drain"): boolean;
2215
+ emit(event: "error", error: Error): boolean;
2216
+ emit(event: "finish"): boolean;
2217
+ emit(event: "pipe", src: stream.Readable): boolean;
2218
+ emit(event: "unpipe", src: stream.Readable): boolean;
2219
+ emit(event: string | symbol, ...args: any[]): boolean;
2220
+ on(event: "close", listener: () => void): this;
2221
+ on(event: "drain", listener: () => void): this;
2222
+ on(event: "error", listener: (error: Error) => void): this;
2223
+ on(event: "finish", listener: () => void): this;
2224
+ on(event: "pipe", listener: (src: stream.Readable) => void): this;
2225
+ on(event: "unpipe", listener: (src: stream.Readable) => void): this;
2226
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
2227
+ once(event: "close", listener: () => void): this;
2228
+ once(event: "drain", listener: () => void): this;
2229
+ once(event: "error", listener: (error: Error) => void): this;
2230
+ once(event: "finish", listener: () => void): this;
2231
+ once(event: "pipe", listener: (src: stream.Readable) => void): this;
2232
+ once(event: "unpipe", listener: (src: stream.Readable) => void): this;
2233
+ once(event: string | symbol, listener: (...args: any[]) => void): this;
2234
+ prependListener(event: "close", listener: () => void): this;
2235
+ prependListener(event: "drain", listener: () => void): this;
2236
+ prependListener(event: "error", listener: (error: Error) => void): this;
2237
+ prependListener(event: "finish", listener: () => void): this;
2238
+ prependListener(event: "pipe", listener: (src: stream.Readable) => void): this;
2239
+ prependListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
2240
+ prependListener(event: string | symbol, listener: (...args: any[]) => void): this;
2241
+ prependOnceListener(event: "close", listener: () => void): this;
2242
+ prependOnceListener(event: "drain", listener: () => void): this;
2243
+ prependOnceListener(event: "error", listener: (error: Error) => void): this;
2244
+ prependOnceListener(event: "finish", listener: () => void): this;
2245
+ prependOnceListener(event: "pipe", listener: (src: stream.Readable) => void): this;
2246
+ prependOnceListener(event: "unpipe", listener: (src: stream.Readable) => void): this;
2247
+ prependOnceListener(event: string | symbol, listener: (...args: any[]) => void): this;
2248
+ }
2249
+ export namespace constants {
2250
+ const NGHTTP2_SESSION_SERVER: number;
2251
+ const NGHTTP2_SESSION_CLIENT: number;
2252
+ const NGHTTP2_STREAM_STATE_IDLE: number;
2253
+ const NGHTTP2_STREAM_STATE_OPEN: number;
2254
+ const NGHTTP2_STREAM_STATE_RESERVED_LOCAL: number;
2255
+ const NGHTTP2_STREAM_STATE_RESERVED_REMOTE: number;
2256
+ const NGHTTP2_STREAM_STATE_HALF_CLOSED_LOCAL: number;
2257
+ const NGHTTP2_STREAM_STATE_HALF_CLOSED_REMOTE: number;
2258
+ const NGHTTP2_STREAM_STATE_CLOSED: number;
2259
+ const NGHTTP2_NO_ERROR: number;
2260
+ const NGHTTP2_PROTOCOL_ERROR: number;
2261
+ const NGHTTP2_INTERNAL_ERROR: number;
2262
+ const NGHTTP2_FLOW_CONTROL_ERROR: number;
2263
+ const NGHTTP2_SETTINGS_TIMEOUT: number;
2264
+ const NGHTTP2_STREAM_CLOSED: number;
2265
+ const NGHTTP2_FRAME_SIZE_ERROR: number;
2266
+ const NGHTTP2_REFUSED_STREAM: number;
2267
+ const NGHTTP2_CANCEL: number;
2268
+ const NGHTTP2_COMPRESSION_ERROR: number;
2269
+ const NGHTTP2_CONNECT_ERROR: number;
2270
+ const NGHTTP2_ENHANCE_YOUR_CALM: number;
2271
+ const NGHTTP2_INADEQUATE_SECURITY: number;
2272
+ const NGHTTP2_HTTP_1_1_REQUIRED: number;
2273
+ const NGHTTP2_ERR_FRAME_SIZE_ERROR: number;
2274
+ const NGHTTP2_FLAG_NONE: number;
2275
+ const NGHTTP2_FLAG_END_STREAM: number;
2276
+ const NGHTTP2_FLAG_END_HEADERS: number;
2277
+ const NGHTTP2_FLAG_ACK: number;
2278
+ const NGHTTP2_FLAG_PADDED: number;
2279
+ const NGHTTP2_FLAG_PRIORITY: number;
2280
+ const DEFAULT_SETTINGS_HEADER_TABLE_SIZE: number;
2281
+ const DEFAULT_SETTINGS_ENABLE_PUSH: number;
2282
+ const DEFAULT_SETTINGS_INITIAL_WINDOW_SIZE: number;
2283
+ const DEFAULT_SETTINGS_MAX_FRAME_SIZE: number;
2284
+ const MAX_MAX_FRAME_SIZE: number;
2285
+ const MIN_MAX_FRAME_SIZE: number;
2286
+ const MAX_INITIAL_WINDOW_SIZE: number;
2287
+ const NGHTTP2_DEFAULT_WEIGHT: number;
2288
+ const NGHTTP2_SETTINGS_HEADER_TABLE_SIZE: number;
2289
+ const NGHTTP2_SETTINGS_ENABLE_PUSH: number;
2290
+ const NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS: number;
2291
+ const NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE: number;
2292
+ const NGHTTP2_SETTINGS_MAX_FRAME_SIZE: number;
2293
+ const NGHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE: number;
2294
+ const PADDING_STRATEGY_NONE: number;
2295
+ const PADDING_STRATEGY_MAX: number;
2296
+ const PADDING_STRATEGY_CALLBACK: number;
2297
+ const HTTP2_HEADER_STATUS: string;
2298
+ const HTTP2_HEADER_METHOD: string;
2299
+ const HTTP2_HEADER_AUTHORITY: string;
2300
+ const HTTP2_HEADER_SCHEME: string;
2301
+ const HTTP2_HEADER_PATH: string;
2302
+ const HTTP2_HEADER_ACCEPT_CHARSET: string;
2303
+ const HTTP2_HEADER_ACCEPT_ENCODING: string;
2304
+ const HTTP2_HEADER_ACCEPT_LANGUAGE: string;
2305
+ const HTTP2_HEADER_ACCEPT_RANGES: string;
2306
+ const HTTP2_HEADER_ACCEPT: string;
2307
+ const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_CREDENTIALS: string;
2308
+ const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_HEADERS: string;
2309
+ const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_METHODS: string;
2310
+ const HTTP2_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN: string;
2311
+ const HTTP2_HEADER_ACCESS_CONTROL_EXPOSE_HEADERS: string;
2312
+ const HTTP2_HEADER_ACCESS_CONTROL_REQUEST_HEADERS: string;
2313
+ const HTTP2_HEADER_ACCESS_CONTROL_REQUEST_METHOD: string;
2314
+ const HTTP2_HEADER_AGE: string;
2315
+ const HTTP2_HEADER_ALLOW: string;
2316
+ const HTTP2_HEADER_AUTHORIZATION: string;
2317
+ const HTTP2_HEADER_CACHE_CONTROL: string;
2318
+ const HTTP2_HEADER_CONNECTION: string;
2319
+ const HTTP2_HEADER_CONTENT_DISPOSITION: string;
2320
+ const HTTP2_HEADER_CONTENT_ENCODING: string;
2321
+ const HTTP2_HEADER_CONTENT_LANGUAGE: string;
2322
+ const HTTP2_HEADER_CONTENT_LENGTH: string;
2323
+ const HTTP2_HEADER_CONTENT_LOCATION: string;
2324
+ const HTTP2_HEADER_CONTENT_MD5: string;
2325
+ const HTTP2_HEADER_CONTENT_RANGE: string;
2326
+ const HTTP2_HEADER_CONTENT_TYPE: string;
2327
+ const HTTP2_HEADER_COOKIE: string;
2328
+ const HTTP2_HEADER_DATE: string;
2329
+ const HTTP2_HEADER_ETAG: string;
2330
+ const HTTP2_HEADER_EXPECT: string;
2331
+ const HTTP2_HEADER_EXPIRES: string;
2332
+ const HTTP2_HEADER_FROM: string;
2333
+ const HTTP2_HEADER_HOST: string;
2334
+ const HTTP2_HEADER_IF_MATCH: string;
2335
+ const HTTP2_HEADER_IF_MODIFIED_SINCE: string;
2336
+ const HTTP2_HEADER_IF_NONE_MATCH: string;
2337
+ const HTTP2_HEADER_IF_RANGE: string;
2338
+ const HTTP2_HEADER_IF_UNMODIFIED_SINCE: string;
2339
+ const HTTP2_HEADER_LAST_MODIFIED: string;
2340
+ const HTTP2_HEADER_LINK: string;
2341
+ const HTTP2_HEADER_LOCATION: string;
2342
+ const HTTP2_HEADER_MAX_FORWARDS: string;
2343
+ const HTTP2_HEADER_PREFER: string;
2344
+ const HTTP2_HEADER_PROXY_AUTHENTICATE: string;
2345
+ const HTTP2_HEADER_PROXY_AUTHORIZATION: string;
2346
+ const HTTP2_HEADER_RANGE: string;
2347
+ const HTTP2_HEADER_REFERER: string;
2348
+ const HTTP2_HEADER_REFRESH: string;
2349
+ const HTTP2_HEADER_RETRY_AFTER: string;
2350
+ const HTTP2_HEADER_SERVER: string;
2351
+ const HTTP2_HEADER_SET_COOKIE: string;
2352
+ const HTTP2_HEADER_STRICT_TRANSPORT_SECURITY: string;
2353
+ const HTTP2_HEADER_TRANSFER_ENCODING: string;
2354
+ const HTTP2_HEADER_TE: string;
2355
+ const HTTP2_HEADER_UPGRADE: string;
2356
+ const HTTP2_HEADER_USER_AGENT: string;
2357
+ const HTTP2_HEADER_VARY: string;
2358
+ const HTTP2_HEADER_VIA: string;
2359
+ const HTTP2_HEADER_WWW_AUTHENTICATE: string;
2360
+ const HTTP2_HEADER_HTTP2_SETTINGS: string;
2361
+ const HTTP2_HEADER_KEEP_ALIVE: string;
2362
+ const HTTP2_HEADER_PROXY_CONNECTION: string;
2363
+ const HTTP2_METHOD_ACL: string;
2364
+ const HTTP2_METHOD_BASELINE_CONTROL: string;
2365
+ const HTTP2_METHOD_BIND: string;
2366
+ const HTTP2_METHOD_CHECKIN: string;
2367
+ const HTTP2_METHOD_CHECKOUT: string;
2368
+ const HTTP2_METHOD_CONNECT: string;
2369
+ const HTTP2_METHOD_COPY: string;
2370
+ const HTTP2_METHOD_DELETE: string;
2371
+ const HTTP2_METHOD_GET: string;
2372
+ const HTTP2_METHOD_HEAD: string;
2373
+ const HTTP2_METHOD_LABEL: string;
2374
+ const HTTP2_METHOD_LINK: string;
2375
+ const HTTP2_METHOD_LOCK: string;
2376
+ const HTTP2_METHOD_MERGE: string;
2377
+ const HTTP2_METHOD_MKACTIVITY: string;
2378
+ const HTTP2_METHOD_MKCALENDAR: string;
2379
+ const HTTP2_METHOD_MKCOL: string;
2380
+ const HTTP2_METHOD_MKREDIRECTREF: string;
2381
+ const HTTP2_METHOD_MKWORKSPACE: string;
2382
+ const HTTP2_METHOD_MOVE: string;
2383
+ const HTTP2_METHOD_OPTIONS: string;
2384
+ const HTTP2_METHOD_ORDERPATCH: string;
2385
+ const HTTP2_METHOD_PATCH: string;
2386
+ const HTTP2_METHOD_POST: string;
2387
+ const HTTP2_METHOD_PRI: string;
2388
+ const HTTP2_METHOD_PROPFIND: string;
2389
+ const HTTP2_METHOD_PROPPATCH: string;
2390
+ const HTTP2_METHOD_PUT: string;
2391
+ const HTTP2_METHOD_REBIND: string;
2392
+ const HTTP2_METHOD_REPORT: string;
2393
+ const HTTP2_METHOD_SEARCH: string;
2394
+ const HTTP2_METHOD_TRACE: string;
2395
+ const HTTP2_METHOD_UNBIND: string;
2396
+ const HTTP2_METHOD_UNCHECKOUT: string;
2397
+ const HTTP2_METHOD_UNLINK: string;
2398
+ const HTTP2_METHOD_UNLOCK: string;
2399
+ const HTTP2_METHOD_UPDATE: string;
2400
+ const HTTP2_METHOD_UPDATEREDIRECTREF: string;
2401
+ const HTTP2_METHOD_VERSION_CONTROL: string;
2402
+ const HTTP_STATUS_CONTINUE: number;
2403
+ const HTTP_STATUS_SWITCHING_PROTOCOLS: number;
2404
+ const HTTP_STATUS_PROCESSING: number;
2405
+ const HTTP_STATUS_OK: number;
2406
+ const HTTP_STATUS_CREATED: number;
2407
+ const HTTP_STATUS_ACCEPTED: number;
2408
+ const HTTP_STATUS_NON_AUTHORITATIVE_INFORMATION: number;
2409
+ const HTTP_STATUS_NO_CONTENT: number;
2410
+ const HTTP_STATUS_RESET_CONTENT: number;
2411
+ const HTTP_STATUS_PARTIAL_CONTENT: number;
2412
+ const HTTP_STATUS_MULTI_STATUS: number;
2413
+ const HTTP_STATUS_ALREADY_REPORTED: number;
2414
+ const HTTP_STATUS_IM_USED: number;
2415
+ const HTTP_STATUS_MULTIPLE_CHOICES: number;
2416
+ const HTTP_STATUS_MOVED_PERMANENTLY: number;
2417
+ const HTTP_STATUS_FOUND: number;
2418
+ const HTTP_STATUS_SEE_OTHER: number;
2419
+ const HTTP_STATUS_NOT_MODIFIED: number;
2420
+ const HTTP_STATUS_USE_PROXY: number;
2421
+ const HTTP_STATUS_TEMPORARY_REDIRECT: number;
2422
+ const HTTP_STATUS_PERMANENT_REDIRECT: number;
2423
+ const HTTP_STATUS_BAD_REQUEST: number;
2424
+ const HTTP_STATUS_UNAUTHORIZED: number;
2425
+ const HTTP_STATUS_PAYMENT_REQUIRED: number;
2426
+ const HTTP_STATUS_FORBIDDEN: number;
2427
+ const HTTP_STATUS_NOT_FOUND: number;
2428
+ const HTTP_STATUS_METHOD_NOT_ALLOWED: number;
2429
+ const HTTP_STATUS_NOT_ACCEPTABLE: number;
2430
+ const HTTP_STATUS_PROXY_AUTHENTICATION_REQUIRED: number;
2431
+ const HTTP_STATUS_REQUEST_TIMEOUT: number;
2432
+ const HTTP_STATUS_CONFLICT: number;
2433
+ const HTTP_STATUS_GONE: number;
2434
+ const HTTP_STATUS_LENGTH_REQUIRED: number;
2435
+ const HTTP_STATUS_PRECONDITION_FAILED: number;
2436
+ const HTTP_STATUS_PAYLOAD_TOO_LARGE: number;
2437
+ const HTTP_STATUS_URI_TOO_LONG: number;
2438
+ const HTTP_STATUS_UNSUPPORTED_MEDIA_TYPE: number;
2439
+ const HTTP_STATUS_RANGE_NOT_SATISFIABLE: number;
2440
+ const HTTP_STATUS_EXPECTATION_FAILED: number;
2441
+ const HTTP_STATUS_TEAPOT: number;
2442
+ const HTTP_STATUS_MISDIRECTED_REQUEST: number;
2443
+ const HTTP_STATUS_UNPROCESSABLE_ENTITY: number;
2444
+ const HTTP_STATUS_LOCKED: number;
2445
+ const HTTP_STATUS_FAILED_DEPENDENCY: number;
2446
+ const HTTP_STATUS_UNORDERED_COLLECTION: number;
2447
+ const HTTP_STATUS_UPGRADE_REQUIRED: number;
2448
+ const HTTP_STATUS_PRECONDITION_REQUIRED: number;
2449
+ const HTTP_STATUS_TOO_MANY_REQUESTS: number;
2450
+ const HTTP_STATUS_REQUEST_HEADER_FIELDS_TOO_LARGE: number;
2451
+ const HTTP_STATUS_UNAVAILABLE_FOR_LEGAL_REASONS: number;
2452
+ const HTTP_STATUS_INTERNAL_SERVER_ERROR: number;
2453
+ const HTTP_STATUS_NOT_IMPLEMENTED: number;
2454
+ const HTTP_STATUS_BAD_GATEWAY: number;
2455
+ const HTTP_STATUS_SERVICE_UNAVAILABLE: number;
2456
+ const HTTP_STATUS_GATEWAY_TIMEOUT: number;
2457
+ const HTTP_STATUS_HTTP_VERSION_NOT_SUPPORTED: number;
2458
+ const HTTP_STATUS_VARIANT_ALSO_NEGOTIATES: number;
2459
+ const HTTP_STATUS_INSUFFICIENT_STORAGE: number;
2460
+ const HTTP_STATUS_LOOP_DETECTED: number;
2461
+ const HTTP_STATUS_BANDWIDTH_LIMIT_EXCEEDED: number;
2462
+ const HTTP_STATUS_NOT_EXTENDED: number;
2463
+ const HTTP_STATUS_NETWORK_AUTHENTICATION_REQUIRED: number;
2464
+ }
2465
+ /**
2466
+ * This symbol can be set as a property on the HTTP/2 headers object with
2467
+ * an array value in order to provide a list of headers considered sensitive.
2468
+ */
2469
+ export const sensitiveHeaders: symbol;
2470
+ /**
2471
+ * Returns an object containing the default settings for an `Http2Session` instance. This method returns a new object instance every time it is called
2472
+ * so instances returned may be safely modified for use.
2473
+ * @since v8.4.0
2474
+ */
2475
+ export function getDefaultSettings(): Settings;
2476
+ /**
2477
+ * Returns a `Buffer` instance containing serialized representation of the given
2478
+ * HTTP/2 settings as specified in the [HTTP/2](https://tools.ietf.org/html/rfc7540) specification. This is intended
2479
+ * for use with the `HTTP2-Settings` header field.
2480
+ *
2481
+ * ```js
2482
+ * import http2 from 'node:http2';
2483
+ *
2484
+ * const packed = http2.getPackedSettings({ enablePush: false });
2485
+ *
2486
+ * console.log(packed.toString('base64'));
2487
+ * // Prints: AAIAAAAA
2488
+ * ```
2489
+ * @since v8.4.0
2490
+ */
2491
+ export function getPackedSettings(settings: Settings): Buffer;
2492
+ /**
2493
+ * Returns a `HTTP/2 Settings Object` containing the deserialized settings from
2494
+ * the given `Buffer` as generated by `http2.getPackedSettings()`.
2495
+ * @since v8.4.0
2496
+ * @param buf The packed settings.
2497
+ */
2498
+ export function getUnpackedSettings(buf: Uint8Array): Settings;
2499
+ /**
2500
+ * Returns a `net.Server` instance that creates and manages `Http2Session` instances.
2501
+ *
2502
+ * Since there are no browsers known that support [unencrypted HTTP/2](https://http2.github.io/faq/#does-http2-require-encryption), the use of {@link createSecureServer} is necessary when
2503
+ * communicating
2504
+ * with browser clients.
2505
+ *
2506
+ * ```js
2507
+ * import http2 from 'node:http2';
2508
+ *
2509
+ * // Create an unencrypted HTTP/2 server.
2510
+ * // Since there are no browsers known that support
2511
+ * // unencrypted HTTP/2, the use of `http2.createSecureServer()`
2512
+ * // is necessary when communicating with browser clients.
2513
+ * const server = http2.createServer();
2514
+ *
2515
+ * server.on('stream', (stream, headers) => {
2516
+ * stream.respond({
2517
+ * 'content-type': 'text/html; charset=utf-8',
2518
+ * ':status': 200,
2519
+ * });
2520
+ * stream.end('<h1>Hello World</h1>');
2521
+ * });
2522
+ *
2523
+ * server.listen(8000);
2524
+ * ```
2525
+ * @since v8.4.0
2526
+ * @param onRequestHandler See `Compatibility API`
2527
+ */
2528
+ export function createServer(
2529
+ onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void,
2530
+ ): Http2Server;
2531
+ export function createServer<
2532
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
2533
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
2534
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
2535
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
2536
+ >(
2537
+ options: ServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>,
2538
+ onRequestHandler?: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
2539
+ ): Http2Server<Http1Request, Http1Response, Http2Request, Http2Response>;
2540
+ /**
2541
+ * Returns a `tls.Server` instance that creates and manages `Http2Session` instances.
2542
+ *
2543
+ * ```js
2544
+ * import http2 from 'node:http2';
2545
+ * import fs from 'node:fs';
2546
+ *
2547
+ * const options = {
2548
+ * key: fs.readFileSync('server-key.pem'),
2549
+ * cert: fs.readFileSync('server-cert.pem'),
2550
+ * };
2551
+ *
2552
+ * // Create a secure HTTP/2 server
2553
+ * const server = http2.createSecureServer(options);
2554
+ *
2555
+ * server.on('stream', (stream, headers) => {
2556
+ * stream.respond({
2557
+ * 'content-type': 'text/html; charset=utf-8',
2558
+ * ':status': 200,
2559
+ * });
2560
+ * stream.end('<h1>Hello World</h1>');
2561
+ * });
2562
+ *
2563
+ * server.listen(8443);
2564
+ * ```
2565
+ * @since v8.4.0
2566
+ * @param onRequestHandler See `Compatibility API`
2567
+ */
2568
+ export function createSecureServer(
2569
+ onRequestHandler?: (request: Http2ServerRequest, response: Http2ServerResponse) => void,
2570
+ ): Http2SecureServer;
2571
+ export function createSecureServer<
2572
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
2573
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
2574
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
2575
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
2576
+ >(
2577
+ options: SecureServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>,
2578
+ onRequestHandler?: (request: InstanceType<Http2Request>, response: InstanceType<Http2Response>) => void,
2579
+ ): Http2SecureServer<Http1Request, Http1Response, Http2Request, Http2Response>;
2580
+ /**
2581
+ * Returns a `ClientHttp2Session` instance.
2582
+ *
2583
+ * ```js
2584
+ * import http2 from 'node:http2';
2585
+ * const client = http2.connect('https://localhost:1234');
2586
+ *
2587
+ * // Use the client
2588
+ *
2589
+ * client.close();
2590
+ * ```
2591
+ * @since v8.4.0
2592
+ * @param authority The remote HTTP/2 server to connect to. This must be in the form of a minimal, valid URL with the `http://` or `https://` prefix, host name, and IP port (if a non-default port
2593
+ * is used). Userinfo (user ID and password), path, querystring, and fragment details in the URL will be ignored.
2594
+ * @param listener Will be registered as a one-time listener of the {@link 'connect'} event.
2595
+ */
2596
+ export function connect(
2597
+ authority: string | url.URL,
2598
+ listener: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,
2599
+ ): ClientHttp2Session;
2600
+ export function connect(
2601
+ authority: string | url.URL,
2602
+ options?: ClientSessionOptions | SecureClientSessionOptions,
2603
+ listener?: (session: ClientHttp2Session, socket: net.Socket | tls.TLSSocket) => void,
2604
+ ): ClientHttp2Session;
2605
+ /**
2606
+ * Create an HTTP/2 server session from an existing socket.
2607
+ * @param socket A Duplex Stream
2608
+ * @param options Any `{@link createServer}` options can be provided.
2609
+ * @since v20.12.0
2610
+ */
2611
+ export function performServerHandshake<
2612
+ Http1Request extends typeof IncomingMessage = typeof IncomingMessage,
2613
+ Http1Response extends typeof ServerResponse<InstanceType<Http1Request>> = typeof ServerResponse,
2614
+ Http2Request extends typeof Http2ServerRequest = typeof Http2ServerRequest,
2615
+ Http2Response extends typeof Http2ServerResponse<InstanceType<Http2Request>> = typeof Http2ServerResponse,
2616
+ >(
2617
+ socket: stream.Duplex,
2618
+ options?: ServerOptions<Http1Request, Http1Response, Http2Request, Http2Response>,
2619
+ ): ServerHttp2Session<Http1Request, Http1Response, Http2Request, Http2Response>;
2620
+ }
2621
+ declare module "node:http2" {
2622
+ export * from "http2";
2623
+ }