repoburg 1.3.87 → 1.3.91

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 (568) hide show
  1. package/backend/.env +20 -0
  2. package/backend/.repoburg/hooks/README.md +53 -0
  3. package/backend/.repoburg/hooks/eslint-hook.ts +46 -0
  4. package/backend/.repoburg/hooks/example-hook.ts +62 -0
  5. package/backend/dist/src/ai-actions/ai-actions.controller.js +67 -0
  6. package/backend/dist/src/ai-actions/ai-actions.controller.js.map +1 -1
  7. package/backend/dist/src/app.module.d.ts +3 -1
  8. package/backend/dist/src/app.module.js +17 -1
  9. package/backend/dist/src/app.module.js.map +1 -1
  10. package/backend/dist/src/application-state/application-state.controller.js +123 -0
  11. package/backend/dist/src/application-state/application-state.controller.js.map +1 -1
  12. package/backend/dist/src/application-state/application-state.service.d.ts +3 -0
  13. package/backend/dist/src/application-state/application-state.service.js +18 -1
  14. package/backend/dist/src/application-state/application-state.service.js.map +1 -1
  15. package/backend/dist/src/application-state/dto/set-alibaba-config.dto.js +2 -0
  16. package/backend/dist/src/application-state/dto/set-alibaba-config.dto.js.map +1 -1
  17. package/backend/dist/src/application-state/dto/set-auto-context-fetch-enabled.dto.js +4 -0
  18. package/backend/dist/src/application-state/dto/set-auto-context-fetch-enabled.dto.js.map +1 -1
  19. package/backend/dist/src/application-state/dto/set-auto-send-to-ai-studio-enabled.dto.js +2 -0
  20. package/backend/dist/src/application-state/dto/set-auto-send-to-ai-studio-enabled.dto.js.map +1 -1
  21. package/backend/dist/src/application-state/dto/set-context-token-limit.dto.js +6 -0
  22. package/backend/dist/src/application-state/dto/set-context-token-limit.dto.js.map +1 -1
  23. package/backend/dist/src/application-state/dto/set-execution-strategy.dto.js +6 -0
  24. package/backend/dist/src/application-state/dto/set-execution-strategy.dto.js.map +1 -1
  25. package/backend/dist/src/application-state/dto/set-followup-token-limit.dto.js +5 -0
  26. package/backend/dist/src/application-state/dto/set-followup-token-limit.dto.js.map +1 -1
  27. package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js +4 -0
  28. package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js.map +1 -1
  29. package/backend/dist/src/application-state/dto/set-llm-retry-enabled.dto.js +4 -0
  30. package/backend/dist/src/application-state/dto/set-llm-retry-enabled.dto.js.map +1 -1
  31. package/backend/dist/src/application-state/dto/set-llm-retry-max-attempts.dto.js +6 -0
  32. package/backend/dist/src/application-state/dto/set-llm-retry-max-attempts.dto.js.map +1 -1
  33. package/backend/dist/src/application-state/dto/set-manual-llm-enabled.dto.js +4 -0
  34. package/backend/dist/src/application-state/dto/set-manual-llm-enabled.dto.js.map +1 -1
  35. package/backend/dist/src/application-state/dto/set-openrouter-config.dto.js +2 -0
  36. package/backend/dist/src/application-state/dto/set-openrouter-config.dto.js.map +1 -1
  37. package/backend/dist/src/application-state/dto/set-streaming-enabled.dto.js +2 -0
  38. package/backend/dist/src/application-state/dto/set-streaming-enabled.dto.js.map +1 -1
  39. package/backend/dist/src/application-state/dto/set-syntax-validation-enabled.dto.js +4 -0
  40. package/backend/dist/src/application-state/dto/set-syntax-validation-enabled.dto.js.map +1 -1
  41. package/backend/dist/src/application-state/dto/set-theme.dto.js +6 -0
  42. package/backend/dist/src/application-state/dto/set-theme.dto.js.map +1 -1
  43. package/backend/dist/src/application-state/dto/set-tools-enabled.dto.js +4 -0
  44. package/backend/dist/src/application-state/dto/set-tools-enabled.dto.js.map +1 -1
  45. package/backend/dist/src/application-state/dto/set-websocket-enabled.dto.js +2 -0
  46. package/backend/dist/src/application-state/dto/set-websocket-enabled.dto.js.map +1 -1
  47. package/backend/dist/src/application-state/dto/set-yolo-mode-message.dto.js +5 -0
  48. package/backend/dist/src/application-state/dto/set-yolo-mode-message.dto.js.map +1 -1
  49. package/backend/dist/src/application-state/dto/set-yolo-mode.dto.js +4 -0
  50. package/backend/dist/src/application-state/dto/set-yolo-mode.dto.js.map +1 -1
  51. package/backend/dist/src/application-state/dto/set-zai-config.dto.js +2 -0
  52. package/backend/dist/src/application-state/dto/set-zai-config.dto.js.map +1 -1
  53. package/backend/dist/src/common/cache/etag-cache.service.d.ts +18 -0
  54. package/backend/dist/src/common/cache/etag-cache.service.js +98 -0
  55. package/backend/dist/src/common/cache/etag-cache.service.js.map +1 -0
  56. package/backend/dist/src/common/common.module.d.ts +2 -0
  57. package/backend/dist/src/common/common.module.js +22 -0
  58. package/backend/dist/src/common/common.module.js.map +1 -0
  59. package/backend/dist/src/common/interceptors/etag-cache.interceptor.d.ts +14 -0
  60. package/backend/dist/src/common/interceptors/etag-cache.interceptor.js +69 -0
  61. package/backend/dist/src/common/interceptors/etag-cache.interceptor.js.map +1 -0
  62. package/backend/dist/src/common/middleware/cache.middleware.d.ts +8 -0
  63. package/backend/dist/src/common/middleware/cache.middleware.js +44 -0
  64. package/backend/dist/src/common/middleware/cache.middleware.js.map +1 -0
  65. package/backend/dist/src/context-snippets/context-snippets.controller.js +38 -0
  66. package/backend/dist/src/context-snippets/context-snippets.controller.js.map +1 -1
  67. package/backend/dist/src/context-templates/context-templates.controller.js +104 -0
  68. package/backend/dist/src/context-templates/context-templates.controller.js.map +1 -1
  69. package/backend/dist/src/context-templates/dto/context-template.dto.d.ts +1 -1
  70. package/backend/dist/src/context-templates/dto/context-template.dto.js +44 -1
  71. package/backend/dist/src/context-templates/dto/context-template.dto.js.map +1 -1
  72. package/backend/dist/src/core-entities/ai-action.entity.js +73 -0
  73. package/backend/dist/src/core-entities/ai-action.entity.js.map +1 -1
  74. package/backend/dist/src/core-entities/base.entity.js +18 -0
  75. package/backend/dist/src/core-entities/base.entity.js.map +1 -1
  76. package/backend/dist/src/core-entities/context-snippet.entity.js +12 -0
  77. package/backend/dist/src/core-entities/context-snippet.entity.js.map +1 -1
  78. package/backend/dist/src/core-entities/context-template.entity.d.ts +2 -4
  79. package/backend/dist/src/core-entities/context-template.entity.js +50 -7
  80. package/backend/dist/src/core-entities/context-template.entity.js.map +1 -1
  81. package/backend/dist/src/core-entities/custom-snippet.entity.js +16 -0
  82. package/backend/dist/src/core-entities/custom-snippet.entity.js.map +1 -1
  83. package/backend/dist/src/core-entities/custom-variable.entity.js +24 -0
  84. package/backend/dist/src/core-entities/custom-variable.entity.js.map +1 -1
  85. package/backend/dist/src/core-entities/enums.d.ts +64 -0
  86. package/backend/dist/src/core-entities/enums.js +77 -0
  87. package/backend/dist/src/core-entities/enums.js.map +1 -0
  88. package/backend/dist/src/core-entities/execution-log.entity.js +15 -0
  89. package/backend/dist/src/core-entities/execution-log.entity.js.map +1 -1
  90. package/backend/dist/src/core-entities/index.d.ts +1 -2
  91. package/backend/dist/src/core-entities/index.js +1 -2
  92. package/backend/dist/src/core-entities/index.js.map +1 -1
  93. package/backend/dist/src/core-entities/llm-call-log.entity.js +43 -0
  94. package/backend/dist/src/core-entities/llm-call-log.entity.js.map +1 -1
  95. package/backend/dist/src/core-entities/mcp-config.entity.js +27 -0
  96. package/backend/dist/src/core-entities/mcp-config.entity.js.map +1 -1
  97. package/backend/dist/src/core-entities/mcp-tool.entity.js +26 -0
  98. package/backend/dist/src/core-entities/mcp-tool.entity.js.map +1 -1
  99. package/backend/dist/src/core-entities/project.entity.js +13 -0
  100. package/backend/dist/src/core-entities/project.entity.js.map +1 -1
  101. package/backend/dist/src/core-entities/session-input.entity.js +95 -0
  102. package/backend/dist/src/core-entities/session-input.entity.js.map +1 -1
  103. package/backend/dist/src/core-entities/session.entity.d.ts +1 -1
  104. package/backend/dist/src/core-entities/session.entity.js +96 -1
  105. package/backend/dist/src/core-entities/session.entity.js.map +1 -1
  106. package/backend/dist/src/core-entities/system-prompt.entity.js +29 -0
  107. package/backend/dist/src/core-entities/system-prompt.entity.js.map +1 -1
  108. package/backend/dist/src/core-entities/tool-hook.entity.js +21 -0
  109. package/backend/dist/src/core-entities/tool-hook.entity.js.map +1 -1
  110. package/backend/dist/src/custom-snippets/custom-snippets.controller.js +48 -0
  111. package/backend/dist/src/custom-snippets/custom-snippets.controller.js.map +1 -1
  112. package/backend/dist/src/custom-variables/custom-variables.controller.js +46 -0
  113. package/backend/dist/src/custom-variables/custom-variables.controller.js.map +1 -1
  114. package/backend/dist/src/global-config/global-config.controller.js +12 -0
  115. package/backend/dist/src/global-config/global-config.controller.js.map +1 -1
  116. package/backend/dist/src/global-config/global-config.service.d.ts +1 -0
  117. package/backend/dist/src/global-config/global-config.service.js.map +1 -1
  118. package/backend/dist/src/interactive-chat/streaming.controller.js +38 -0
  119. package/backend/dist/src/interactive-chat/streaming.controller.js.map +1 -1
  120. package/backend/dist/src/llm-call-logs/llm-call-logs.controller.js +96 -0
  121. package/backend/dist/src/llm-call-logs/llm-call-logs.controller.js.map +1 -1
  122. package/backend/dist/src/llm-provider/llm-provider.controller.js +18 -0
  123. package/backend/dist/src/llm-provider/llm-provider.controller.js.map +1 -1
  124. package/backend/dist/src/llm-provider/zai-llm.provider.js +1 -1
  125. package/backend/dist/src/llm-provider/zai-llm.provider.js.map +1 -1
  126. package/backend/dist/src/llm-responses/dto/submit-llm-response.dto.js +45 -0
  127. package/backend/dist/src/llm-responses/dto/submit-llm-response.dto.js.map +1 -1
  128. package/backend/dist/src/llm-responses/dto/sync-conversation.dto.js +24 -0
  129. package/backend/dist/src/llm-responses/dto/sync-conversation.dto.js.map +1 -1
  130. package/backend/dist/src/llm-responses/llm-responses.controller.js +32 -0
  131. package/backend/dist/src/llm-responses/llm-responses.controller.js.map +1 -1
  132. package/backend/dist/src/main.js +9 -0
  133. package/backend/dist/src/main.js.map +1 -1
  134. package/backend/dist/src/mcp/dto/batch-update-mcp-tools.dto.js +8 -0
  135. package/backend/dist/src/mcp/dto/batch-update-mcp-tools.dto.js.map +1 -1
  136. package/backend/dist/src/mcp/dto/create-mcp-config.dto.js +5 -0
  137. package/backend/dist/src/mcp/dto/create-mcp-config.dto.js.map +1 -1
  138. package/backend/dist/src/mcp/dto/update-mcp-config.dto.js +2 -0
  139. package/backend/dist/src/mcp/dto/update-mcp-config.dto.js.map +1 -1
  140. package/backend/dist/src/mcp/mcp.controller.js +21 -0
  141. package/backend/dist/src/mcp/mcp.controller.js.map +1 -1
  142. package/backend/dist/src/projects/dto/project.dto.js +14 -0
  143. package/backend/dist/src/projects/dto/project.dto.js.map +1 -1
  144. package/backend/dist/src/projects/projects.controller.js +31 -0
  145. package/backend/dist/src/projects/projects.controller.js.map +1 -1
  146. package/backend/dist/src/session-inputs/dto/session-input.dto.d.ts +12 -1
  147. package/backend/dist/src/session-inputs/dto/session-input.dto.js +103 -1
  148. package/backend/dist/src/session-inputs/dto/session-input.dto.js.map +1 -1
  149. package/backend/dist/src/session-inputs/session-input.subscriber.js.map +1 -1
  150. package/backend/dist/src/session-inputs/session-inputs.controller.d.ts +2 -1
  151. package/backend/dist/src/session-inputs/session-inputs.controller.js +84 -0
  152. package/backend/dist/src/session-inputs/session-inputs.controller.js.map +1 -1
  153. package/backend/dist/src/session-inputs/session-inputs.module.js +1 -0
  154. package/backend/dist/src/session-inputs/session-inputs.module.js.map +1 -1
  155. package/backend/dist/src/session-inputs/session-inputs.service.d.ts +7 -3
  156. package/backend/dist/src/session-inputs/session-inputs.service.js +51 -4
  157. package/backend/dist/src/session-inputs/session-inputs.service.js.map +1 -1
  158. package/backend/dist/src/sessions/dto/session.dto.js +91 -0
  159. package/backend/dist/src/sessions/dto/session.dto.js.map +1 -1
  160. package/backend/dist/src/sessions/sessions.controller.d.ts +1 -1
  161. package/backend/dist/src/sessions/sessions.controller.js +123 -3
  162. package/backend/dist/src/sessions/sessions.controller.js.map +1 -1
  163. package/backend/dist/src/sessions/sessions.service.d.ts +2 -1
  164. package/backend/dist/src/sessions/sessions.service.js +47 -18
  165. package/backend/dist/src/sessions/sessions.service.js.map +1 -1
  166. package/backend/dist/src/sub-agents/dto/create-sub-agent.dto.js +26 -0
  167. package/backend/dist/src/sub-agents/dto/create-sub-agent.dto.js.map +1 -1
  168. package/backend/dist/src/sub-agents/dto/update-sub-agent.dto.js +22 -0
  169. package/backend/dist/src/sub-agents/dto/update-sub-agent.dto.js.map +1 -1
  170. package/backend/dist/src/sub-agents/sub-agent-run.entity.d.ts +2 -7
  171. package/backend/dist/src/sub-agents/sub-agent-run.entity.js +63 -9
  172. package/backend/dist/src/sub-agents/sub-agent-run.entity.js.map +1 -1
  173. package/backend/dist/src/sub-agents/sub-agent-runs.controller.js +63 -0
  174. package/backend/dist/src/sub-agents/sub-agent-runs.controller.js.map +1 -1
  175. package/backend/dist/src/sub-agents/sub-agent.entity.js +47 -0
  176. package/backend/dist/src/sub-agents/sub-agent.entity.js.map +1 -1
  177. package/backend/dist/src/sub-agents/sub-agents.controller.js +25 -0
  178. package/backend/dist/src/sub-agents/sub-agents.controller.js.map +1 -1
  179. package/backend/dist/src/system-prompts/dto/set-enabled-tools.dto.js +9 -0
  180. package/backend/dist/src/system-prompts/dto/set-enabled-tools.dto.js.map +1 -1
  181. package/backend/dist/src/system-prompts/dto/system-prompt.dto.js +43 -0
  182. package/backend/dist/src/system-prompts/dto/system-prompt.dto.js.map +1 -1
  183. package/backend/dist/src/system-prompts/dto/toggle-tool.dto.js +5 -0
  184. package/backend/dist/src/system-prompts/dto/toggle-tool.dto.js.map +1 -1
  185. package/backend/dist/src/system-prompts/system-prompts.controller.js +80 -0
  186. package/backend/dist/src/system-prompts/system-prompts.controller.js.map +1 -1
  187. package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js +14 -0
  188. package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js.map +1 -1
  189. package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js +11 -0
  190. package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js.map +1 -1
  191. package/backend/dist/src/tool-hooks/tool-hooks.controller.js +52 -0
  192. package/backend/dist/src/tool-hooks/tool-hooks.controller.js.map +1 -1
  193. package/backend/dist/src/visual-editor/visual-editor.controller.js +15 -0
  194. package/backend/dist/src/visual-editor/visual-editor.controller.js.map +1 -1
  195. package/backend/dist/src/workspace/workspace.controller.js +41 -0
  196. package/backend/dist/src/workspace/workspace.controller.js.map +1 -1
  197. package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
  198. package/{daemon/node_modules/undici-types → backend/node_modules/@eslint/eslintrc}/LICENSE +5 -7
  199. package/backend/node_modules/@eslint/eslintrc/README.md +115 -0
  200. package/backend/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
  201. package/backend/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
  202. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1104 -0
  203. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
  204. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4344 -0
  205. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
  206. package/backend/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +532 -0
  207. package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +523 -0
  208. package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +124 -0
  209. package/backend/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
  210. package/backend/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +238 -0
  211. package/backend/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
  212. package/backend/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +225 -0
  213. package/backend/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1151 -0
  214. package/backend/node_modules/@eslint/eslintrc/lib/flat-compat.js +318 -0
  215. package/backend/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
  216. package/backend/node_modules/@eslint/eslintrc/lib/index.js +56 -0
  217. package/backend/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
  218. package/backend/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
  219. package/backend/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +325 -0
  220. package/backend/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
  221. package/backend/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
  222. package/backend/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +42 -0
  223. package/backend/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
  224. package/backend/node_modules/@eslint/eslintrc/package.json +82 -0
  225. package/backend/node_modules/@eslint/eslintrc/universal.js +9 -0
  226. package/backend/package.json +2 -4
  227. package/daemon/dist/api/system.js +25 -0
  228. package/daemon/dist/daemon.blob +0 -0
  229. package/daemon/dist/index.js +0 -0
  230. package/package.json +3 -1
  231. package/visual-editor-proxy/.repoburg/data.sqlite +0 -0
  232. package/visual-editor-proxy/dist/tsconfig.tsbuildinfo +1 -1
  233. package/backend/node_modules/@types/node/LICENSE +0 -21
  234. package/backend/node_modules/@types/node/README.md +0 -15
  235. package/backend/node_modules/@types/node/assert/strict.d.ts +0 -8
  236. package/backend/node_modules/@types/node/assert.d.ts +0 -1044
  237. package/backend/node_modules/@types/node/async_hooks.d.ts +0 -605
  238. package/backend/node_modules/@types/node/buffer.buffer.d.ts +0 -462
  239. package/backend/node_modules/@types/node/buffer.d.ts +0 -1932
  240. package/backend/node_modules/@types/node/child_process.d.ts +0 -1452
  241. package/backend/node_modules/@types/node/cluster.d.ts +0 -578
  242. package/backend/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  243. package/backend/node_modules/@types/node/compatibility/index.d.ts +0 -9
  244. package/backend/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  245. package/backend/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  246. package/backend/node_modules/@types/node/console.d.ts +0 -452
  247. package/backend/node_modules/@types/node/constants.d.ts +0 -21
  248. package/backend/node_modules/@types/node/crypto.d.ts +0 -4570
  249. package/backend/node_modules/@types/node/dgram.d.ts +0 -596
  250. package/backend/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  251. package/backend/node_modules/@types/node/dns/promises.d.ts +0 -479
  252. package/backend/node_modules/@types/node/dns.d.ts +0 -871
  253. package/backend/node_modules/@types/node/domain.d.ts +0 -170
  254. package/backend/node_modules/@types/node/events.d.ts +0 -931
  255. package/backend/node_modules/@types/node/fs/promises.d.ts +0 -1248
  256. package/backend/node_modules/@types/node/fs.d.ts +0 -4362
  257. package/backend/node_modules/@types/node/globals.d.ts +0 -170
  258. package/backend/node_modules/@types/node/globals.typedarray.d.ts +0 -21
  259. package/backend/node_modules/@types/node/http.d.ts +0 -2031
  260. package/backend/node_modules/@types/node/http2.d.ts +0 -2623
  261. package/backend/node_modules/@types/node/https.d.ts +0 -549
  262. package/backend/node_modules/@types/node/index.d.ts +0 -93
  263. package/backend/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  264. package/backend/node_modules/@types/node/module.d.ts +0 -539
  265. package/backend/node_modules/@types/node/net.d.ts +0 -1011
  266. package/backend/node_modules/@types/node/os.d.ts +0 -495
  267. package/backend/node_modules/@types/node/package.json +0 -140
  268. package/backend/node_modules/@types/node/path.d.ts +0 -200
  269. package/backend/node_modules/@types/node/perf_hooks.d.ts +0 -963
  270. package/backend/node_modules/@types/node/process.d.ts +0 -1956
  271. package/backend/node_modules/@types/node/punycode.d.ts +0 -117
  272. package/backend/node_modules/@types/node/querystring.d.ts +0 -152
  273. package/backend/node_modules/@types/node/readline/promises.d.ts +0 -162
  274. package/backend/node_modules/@types/node/readline.d.ts +0 -589
  275. package/backend/node_modules/@types/node/repl.d.ts +0 -430
  276. package/backend/node_modules/@types/node/sea.d.ts +0 -153
  277. package/backend/node_modules/@types/node/stream/consumers.d.ts +0 -38
  278. package/backend/node_modules/@types/node/stream/promises.d.ts +0 -90
  279. package/backend/node_modules/@types/node/stream/web.d.ts +0 -533
  280. package/backend/node_modules/@types/node/stream.d.ts +0 -1668
  281. package/backend/node_modules/@types/node/string_decoder.d.ts +0 -67
  282. package/backend/node_modules/@types/node/test.d.ts +0 -1807
  283. package/backend/node_modules/@types/node/timers/promises.d.ts +0 -108
  284. package/backend/node_modules/@types/node/timers.d.ts +0 -286
  285. package/backend/node_modules/@types/node/tls.d.ts +0 -1231
  286. package/backend/node_modules/@types/node/trace_events.d.ts +0 -197
  287. package/backend/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
  288. package/backend/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
  289. package/backend/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  290. package/backend/node_modules/@types/node/tty.d.ts +0 -208
  291. package/backend/node_modules/@types/node/url.d.ts +0 -964
  292. package/backend/node_modules/@types/node/util.d.ts +0 -2331
  293. package/backend/node_modules/@types/node/v8.d.ts +0 -808
  294. package/backend/node_modules/@types/node/vm.d.ts +0 -1030
  295. package/backend/node_modules/@types/node/wasi.d.ts +0 -181
  296. package/backend/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  297. package/backend/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  298. package/backend/node_modules/@types/node/web-globals/events.d.ts +0 -94
  299. package/backend/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
  300. package/backend/node_modules/@types/node/worker_threads.d.ts +0 -743
  301. package/backend/node_modules/@types/node/zlib.d.ts +0 -539
  302. package/backend/node_modules/debug/LICENSE +0 -20
  303. package/backend/node_modules/debug/README.md +0 -481
  304. package/backend/node_modules/debug/package.json +0 -64
  305. package/backend/node_modules/debug/src/browser.js +0 -272
  306. package/backend/node_modules/debug/src/common.js +0 -292
  307. package/backend/node_modules/debug/src/index.js +0 -10
  308. package/backend/node_modules/debug/src/node.js +0 -263
  309. package/backend/node_modules/undici-types/LICENSE +0 -21
  310. package/backend/node_modules/undici-types/README.md +0 -6
  311. package/backend/node_modules/undici-types/agent.d.ts +0 -31
  312. package/backend/node_modules/undici-types/api.d.ts +0 -43
  313. package/backend/node_modules/undici-types/balanced-pool.d.ts +0 -29
  314. package/backend/node_modules/undici-types/cache.d.ts +0 -36
  315. package/backend/node_modules/undici-types/client.d.ts +0 -108
  316. package/backend/node_modules/undici-types/connector.d.ts +0 -34
  317. package/backend/node_modules/undici-types/content-type.d.ts +0 -21
  318. package/backend/node_modules/undici-types/cookies.d.ts +0 -28
  319. package/backend/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  320. package/backend/node_modules/undici-types/dispatcher.d.ts +0 -256
  321. package/backend/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  322. package/backend/node_modules/undici-types/errors.d.ts +0 -149
  323. package/backend/node_modules/undici-types/eventsource.d.ts +0 -61
  324. package/backend/node_modules/undici-types/fetch.d.ts +0 -209
  325. package/backend/node_modules/undici-types/file.d.ts +0 -39
  326. package/backend/node_modules/undici-types/filereader.d.ts +0 -54
  327. package/backend/node_modules/undici-types/formdata.d.ts +0 -108
  328. package/backend/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  329. package/backend/node_modules/undici-types/global-origin.d.ts +0 -7
  330. package/backend/node_modules/undici-types/handlers.d.ts +0 -15
  331. package/backend/node_modules/undici-types/header.d.ts +0 -4
  332. package/backend/node_modules/undici-types/index.d.ts +0 -71
  333. package/backend/node_modules/undici-types/interceptors.d.ts +0 -17
  334. package/backend/node_modules/undici-types/mock-agent.d.ts +0 -50
  335. package/backend/node_modules/undici-types/mock-client.d.ts +0 -25
  336. package/backend/node_modules/undici-types/mock-errors.d.ts +0 -12
  337. package/backend/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  338. package/backend/node_modules/undici-types/mock-pool.d.ts +0 -25
  339. package/backend/node_modules/undici-types/package.json +0 -55
  340. package/backend/node_modules/undici-types/patch.d.ts +0 -33
  341. package/backend/node_modules/undici-types/pool-stats.d.ts +0 -19
  342. package/backend/node_modules/undici-types/pool.d.ts +0 -39
  343. package/backend/node_modules/undici-types/proxy-agent.d.ts +0 -28
  344. package/backend/node_modules/undici-types/readable.d.ts +0 -65
  345. package/backend/node_modules/undici-types/retry-agent.d.ts +0 -8
  346. package/backend/node_modules/undici-types/retry-handler.d.ts +0 -116
  347. package/backend/node_modules/undici-types/util.d.ts +0 -18
  348. package/backend/node_modules/undici-types/webidl.d.ts +0 -228
  349. package/backend/node_modules/undici-types/websocket.d.ts +0 -150
  350. package/daemon/node_modules/@types/node/LICENSE +0 -21
  351. package/daemon/node_modules/@types/node/README.md +0 -15
  352. package/daemon/node_modules/@types/node/assert/strict.d.ts +0 -8
  353. package/daemon/node_modules/@types/node/assert.d.ts +0 -1044
  354. package/daemon/node_modules/@types/node/async_hooks.d.ts +0 -605
  355. package/daemon/node_modules/@types/node/buffer.buffer.d.ts +0 -462
  356. package/daemon/node_modules/@types/node/buffer.d.ts +0 -1932
  357. package/daemon/node_modules/@types/node/child_process.d.ts +0 -1452
  358. package/daemon/node_modules/@types/node/cluster.d.ts +0 -578
  359. package/daemon/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  360. package/daemon/node_modules/@types/node/compatibility/index.d.ts +0 -9
  361. package/daemon/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  362. package/daemon/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  363. package/daemon/node_modules/@types/node/console.d.ts +0 -452
  364. package/daemon/node_modules/@types/node/constants.d.ts +0 -21
  365. package/daemon/node_modules/@types/node/crypto.d.ts +0 -4570
  366. package/daemon/node_modules/@types/node/dgram.d.ts +0 -596
  367. package/daemon/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  368. package/daemon/node_modules/@types/node/dns/promises.d.ts +0 -479
  369. package/daemon/node_modules/@types/node/dns.d.ts +0 -871
  370. package/daemon/node_modules/@types/node/domain.d.ts +0 -170
  371. package/daemon/node_modules/@types/node/events.d.ts +0 -931
  372. package/daemon/node_modules/@types/node/fs/promises.d.ts +0 -1248
  373. package/daemon/node_modules/@types/node/fs.d.ts +0 -4362
  374. package/daemon/node_modules/@types/node/globals.d.ts +0 -170
  375. package/daemon/node_modules/@types/node/globals.typedarray.d.ts +0 -21
  376. package/daemon/node_modules/@types/node/http.d.ts +0 -2031
  377. package/daemon/node_modules/@types/node/http2.d.ts +0 -2623
  378. package/daemon/node_modules/@types/node/https.d.ts +0 -549
  379. package/daemon/node_modules/@types/node/index.d.ts +0 -93
  380. package/daemon/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  381. package/daemon/node_modules/@types/node/module.d.ts +0 -539
  382. package/daemon/node_modules/@types/node/net.d.ts +0 -1011
  383. package/daemon/node_modules/@types/node/os.d.ts +0 -495
  384. package/daemon/node_modules/@types/node/package.json +0 -140
  385. package/daemon/node_modules/@types/node/path.d.ts +0 -200
  386. package/daemon/node_modules/@types/node/perf_hooks.d.ts +0 -963
  387. package/daemon/node_modules/@types/node/process.d.ts +0 -1956
  388. package/daemon/node_modules/@types/node/punycode.d.ts +0 -117
  389. package/daemon/node_modules/@types/node/querystring.d.ts +0 -152
  390. package/daemon/node_modules/@types/node/readline/promises.d.ts +0 -162
  391. package/daemon/node_modules/@types/node/readline.d.ts +0 -589
  392. package/daemon/node_modules/@types/node/repl.d.ts +0 -430
  393. package/daemon/node_modules/@types/node/sea.d.ts +0 -153
  394. package/daemon/node_modules/@types/node/stream/consumers.d.ts +0 -38
  395. package/daemon/node_modules/@types/node/stream/promises.d.ts +0 -90
  396. package/daemon/node_modules/@types/node/stream/web.d.ts +0 -533
  397. package/daemon/node_modules/@types/node/stream.d.ts +0 -1668
  398. package/daemon/node_modules/@types/node/string_decoder.d.ts +0 -67
  399. package/daemon/node_modules/@types/node/test.d.ts +0 -1807
  400. package/daemon/node_modules/@types/node/timers/promises.d.ts +0 -108
  401. package/daemon/node_modules/@types/node/timers.d.ts +0 -286
  402. package/daemon/node_modules/@types/node/tls.d.ts +0 -1231
  403. package/daemon/node_modules/@types/node/trace_events.d.ts +0 -197
  404. package/daemon/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
  405. package/daemon/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
  406. package/daemon/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  407. package/daemon/node_modules/@types/node/tty.d.ts +0 -208
  408. package/daemon/node_modules/@types/node/url.d.ts +0 -964
  409. package/daemon/node_modules/@types/node/util.d.ts +0 -2331
  410. package/daemon/node_modules/@types/node/v8.d.ts +0 -808
  411. package/daemon/node_modules/@types/node/vm.d.ts +0 -1030
  412. package/daemon/node_modules/@types/node/wasi.d.ts +0 -181
  413. package/daemon/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  414. package/daemon/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  415. package/daemon/node_modules/@types/node/web-globals/events.d.ts +0 -94
  416. package/daemon/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
  417. package/daemon/node_modules/@types/node/worker_threads.d.ts +0 -743
  418. package/daemon/node_modules/@types/node/zlib.d.ts +0 -539
  419. package/daemon/node_modules/undici-types/README.md +0 -6
  420. package/daemon/node_modules/undici-types/agent.d.ts +0 -31
  421. package/daemon/node_modules/undici-types/api.d.ts +0 -43
  422. package/daemon/node_modules/undici-types/balanced-pool.d.ts +0 -29
  423. package/daemon/node_modules/undici-types/cache.d.ts +0 -36
  424. package/daemon/node_modules/undici-types/client.d.ts +0 -108
  425. package/daemon/node_modules/undici-types/connector.d.ts +0 -34
  426. package/daemon/node_modules/undici-types/content-type.d.ts +0 -21
  427. package/daemon/node_modules/undici-types/cookies.d.ts +0 -28
  428. package/daemon/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  429. package/daemon/node_modules/undici-types/dispatcher.d.ts +0 -256
  430. package/daemon/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  431. package/daemon/node_modules/undici-types/errors.d.ts +0 -149
  432. package/daemon/node_modules/undici-types/eventsource.d.ts +0 -61
  433. package/daemon/node_modules/undici-types/fetch.d.ts +0 -209
  434. package/daemon/node_modules/undici-types/file.d.ts +0 -39
  435. package/daemon/node_modules/undici-types/filereader.d.ts +0 -54
  436. package/daemon/node_modules/undici-types/formdata.d.ts +0 -108
  437. package/daemon/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  438. package/daemon/node_modules/undici-types/global-origin.d.ts +0 -7
  439. package/daemon/node_modules/undici-types/handlers.d.ts +0 -15
  440. package/daemon/node_modules/undici-types/header.d.ts +0 -4
  441. package/daemon/node_modules/undici-types/index.d.ts +0 -71
  442. package/daemon/node_modules/undici-types/interceptors.d.ts +0 -17
  443. package/daemon/node_modules/undici-types/mock-agent.d.ts +0 -50
  444. package/daemon/node_modules/undici-types/mock-client.d.ts +0 -25
  445. package/daemon/node_modules/undici-types/mock-errors.d.ts +0 -12
  446. package/daemon/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  447. package/daemon/node_modules/undici-types/mock-pool.d.ts +0 -25
  448. package/daemon/node_modules/undici-types/package.json +0 -55
  449. package/daemon/node_modules/undici-types/patch.d.ts +0 -33
  450. package/daemon/node_modules/undici-types/pool-stats.d.ts +0 -19
  451. package/daemon/node_modules/undici-types/pool.d.ts +0 -39
  452. package/daemon/node_modules/undici-types/proxy-agent.d.ts +0 -28
  453. package/daemon/node_modules/undici-types/readable.d.ts +0 -65
  454. package/daemon/node_modules/undici-types/retry-agent.d.ts +0 -8
  455. package/daemon/node_modules/undici-types/retry-handler.d.ts +0 -116
  456. package/daemon/node_modules/undici-types/util.d.ts +0 -18
  457. package/daemon/node_modules/undici-types/webidl.d.ts +0 -228
  458. package/daemon/node_modules/undici-types/websocket.d.ts +0 -150
  459. package/visual-editor-proxy/node_modules/@types/node/LICENSE +0 -21
  460. package/visual-editor-proxy/node_modules/@types/node/README.md +0 -15
  461. package/visual-editor-proxy/node_modules/@types/node/assert/strict.d.ts +0 -8
  462. package/visual-editor-proxy/node_modules/@types/node/assert.d.ts +0 -1062
  463. package/visual-editor-proxy/node_modules/@types/node/async_hooks.d.ts +0 -605
  464. package/visual-editor-proxy/node_modules/@types/node/buffer.buffer.d.ts +0 -462
  465. package/visual-editor-proxy/node_modules/@types/node/buffer.d.ts +0 -1932
  466. package/visual-editor-proxy/node_modules/@types/node/child_process.d.ts +0 -1458
  467. package/visual-editor-proxy/node_modules/@types/node/cluster.d.ts +0 -577
  468. package/visual-editor-proxy/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  469. package/visual-editor-proxy/node_modules/@types/node/compatibility/index.d.ts +0 -9
  470. package/visual-editor-proxy/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  471. package/visual-editor-proxy/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  472. package/visual-editor-proxy/node_modules/@types/node/console.d.ts +0 -452
  473. package/visual-editor-proxy/node_modules/@types/node/constants.d.ts +0 -21
  474. package/visual-editor-proxy/node_modules/@types/node/crypto.d.ts +0 -4570
  475. package/visual-editor-proxy/node_modules/@types/node/dgram.d.ts +0 -596
  476. package/visual-editor-proxy/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  477. package/visual-editor-proxy/node_modules/@types/node/dns/promises.d.ts +0 -479
  478. package/visual-editor-proxy/node_modules/@types/node/dns.d.ts +0 -871
  479. package/visual-editor-proxy/node_modules/@types/node/domain.d.ts +0 -170
  480. package/visual-editor-proxy/node_modules/@types/node/events.d.ts +0 -977
  481. package/visual-editor-proxy/node_modules/@types/node/fs/promises.d.ts +0 -1248
  482. package/visual-editor-proxy/node_modules/@types/node/fs.d.ts +0 -4362
  483. package/visual-editor-proxy/node_modules/@types/node/globals.d.ts +0 -172
  484. package/visual-editor-proxy/node_modules/@types/node/globals.typedarray.d.ts +0 -21
  485. package/visual-editor-proxy/node_modules/@types/node/http.d.ts +0 -2030
  486. package/visual-editor-proxy/node_modules/@types/node/http2.d.ts +0 -2624
  487. package/visual-editor-proxy/node_modules/@types/node/https.d.ts +0 -546
  488. package/visual-editor-proxy/node_modules/@types/node/index.d.ts +0 -93
  489. package/visual-editor-proxy/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  490. package/visual-editor-proxy/node_modules/@types/node/module.d.ts +0 -539
  491. package/visual-editor-proxy/node_modules/@types/node/net.d.ts +0 -1011
  492. package/visual-editor-proxy/node_modules/@types/node/os.d.ts +0 -505
  493. package/visual-editor-proxy/node_modules/@types/node/package.json +0 -140
  494. package/visual-editor-proxy/node_modules/@types/node/path.d.ts +0 -200
  495. package/visual-editor-proxy/node_modules/@types/node/perf_hooks.d.ts +0 -961
  496. package/visual-editor-proxy/node_modules/@types/node/process.d.ts +0 -1944
  497. package/visual-editor-proxy/node_modules/@types/node/punycode.d.ts +0 -117
  498. package/visual-editor-proxy/node_modules/@types/node/querystring.d.ts +0 -152
  499. package/visual-editor-proxy/node_modules/@types/node/readline/promises.d.ts +0 -162
  500. package/visual-editor-proxy/node_modules/@types/node/readline.d.ts +0 -589
  501. package/visual-editor-proxy/node_modules/@types/node/repl.d.ts +0 -430
  502. package/visual-editor-proxy/node_modules/@types/node/sea.d.ts +0 -153
  503. package/visual-editor-proxy/node_modules/@types/node/stream/consumers.d.ts +0 -38
  504. package/visual-editor-proxy/node_modules/@types/node/stream/promises.d.ts +0 -90
  505. package/visual-editor-proxy/node_modules/@types/node/stream/web.d.ts +0 -533
  506. package/visual-editor-proxy/node_modules/@types/node/stream.d.ts +0 -1675
  507. package/visual-editor-proxy/node_modules/@types/node/string_decoder.d.ts +0 -67
  508. package/visual-editor-proxy/node_modules/@types/node/test.d.ts +0 -1787
  509. package/visual-editor-proxy/node_modules/@types/node/timers/promises.d.ts +0 -108
  510. package/visual-editor-proxy/node_modules/@types/node/timers.d.ts +0 -286
  511. package/visual-editor-proxy/node_modules/@types/node/tls.d.ts +0 -1231
  512. package/visual-editor-proxy/node_modules/@types/node/trace_events.d.ts +0 -197
  513. package/visual-editor-proxy/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
  514. package/visual-editor-proxy/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
  515. package/visual-editor-proxy/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  516. package/visual-editor-proxy/node_modules/@types/node/tty.d.ts +0 -208
  517. package/visual-editor-proxy/node_modules/@types/node/url.d.ts +0 -964
  518. package/visual-editor-proxy/node_modules/@types/node/util.d.ts +0 -2331
  519. package/visual-editor-proxy/node_modules/@types/node/v8.d.ts +0 -808
  520. package/visual-editor-proxy/node_modules/@types/node/vm.d.ts +0 -1000
  521. package/visual-editor-proxy/node_modules/@types/node/wasi.d.ts +0 -181
  522. package/visual-editor-proxy/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  523. package/visual-editor-proxy/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  524. package/visual-editor-proxy/node_modules/@types/node/web-globals/events.d.ts +0 -97
  525. package/visual-editor-proxy/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
  526. package/visual-editor-proxy/node_modules/@types/node/worker_threads.d.ts +0 -715
  527. package/visual-editor-proxy/node_modules/@types/node/zlib.d.ts +0 -539
  528. package/visual-editor-proxy/node_modules/undici-types/LICENSE +0 -21
  529. package/visual-editor-proxy/node_modules/undici-types/README.md +0 -6
  530. package/visual-editor-proxy/node_modules/undici-types/agent.d.ts +0 -31
  531. package/visual-editor-proxy/node_modules/undici-types/api.d.ts +0 -43
  532. package/visual-editor-proxy/node_modules/undici-types/balanced-pool.d.ts +0 -29
  533. package/visual-editor-proxy/node_modules/undici-types/cache.d.ts +0 -36
  534. package/visual-editor-proxy/node_modules/undici-types/client.d.ts +0 -108
  535. package/visual-editor-proxy/node_modules/undici-types/connector.d.ts +0 -34
  536. package/visual-editor-proxy/node_modules/undici-types/content-type.d.ts +0 -21
  537. package/visual-editor-proxy/node_modules/undici-types/cookies.d.ts +0 -28
  538. package/visual-editor-proxy/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  539. package/visual-editor-proxy/node_modules/undici-types/dispatcher.d.ts +0 -256
  540. package/visual-editor-proxy/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  541. package/visual-editor-proxy/node_modules/undici-types/errors.d.ts +0 -149
  542. package/visual-editor-proxy/node_modules/undici-types/eventsource.d.ts +0 -61
  543. package/visual-editor-proxy/node_modules/undici-types/fetch.d.ts +0 -209
  544. package/visual-editor-proxy/node_modules/undici-types/file.d.ts +0 -39
  545. package/visual-editor-proxy/node_modules/undici-types/filereader.d.ts +0 -54
  546. package/visual-editor-proxy/node_modules/undici-types/formdata.d.ts +0 -108
  547. package/visual-editor-proxy/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  548. package/visual-editor-proxy/node_modules/undici-types/global-origin.d.ts +0 -7
  549. package/visual-editor-proxy/node_modules/undici-types/handlers.d.ts +0 -15
  550. package/visual-editor-proxy/node_modules/undici-types/header.d.ts +0 -4
  551. package/visual-editor-proxy/node_modules/undici-types/index.d.ts +0 -71
  552. package/visual-editor-proxy/node_modules/undici-types/interceptors.d.ts +0 -17
  553. package/visual-editor-proxy/node_modules/undici-types/mock-agent.d.ts +0 -50
  554. package/visual-editor-proxy/node_modules/undici-types/mock-client.d.ts +0 -25
  555. package/visual-editor-proxy/node_modules/undici-types/mock-errors.d.ts +0 -12
  556. package/visual-editor-proxy/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  557. package/visual-editor-proxy/node_modules/undici-types/mock-pool.d.ts +0 -25
  558. package/visual-editor-proxy/node_modules/undici-types/package.json +0 -55
  559. package/visual-editor-proxy/node_modules/undici-types/patch.d.ts +0 -33
  560. package/visual-editor-proxy/node_modules/undici-types/pool-stats.d.ts +0 -19
  561. package/visual-editor-proxy/node_modules/undici-types/pool.d.ts +0 -39
  562. package/visual-editor-proxy/node_modules/undici-types/proxy-agent.d.ts +0 -28
  563. package/visual-editor-proxy/node_modules/undici-types/readable.d.ts +0 -65
  564. package/visual-editor-proxy/node_modules/undici-types/retry-agent.d.ts +0 -8
  565. package/visual-editor-proxy/node_modules/undici-types/retry-handler.d.ts +0 -116
  566. package/visual-editor-proxy/node_modules/undici-types/util.d.ts +0 -18
  567. package/visual-editor-proxy/node_modules/undici-types/webidl.d.ts +0 -228
  568. package/visual-editor-proxy/node_modules/undici-types/websocket.d.ts +0 -150
@@ -1,149 +0,0 @@
1
- import { IncomingHttpHeaders } from "./header";
2
- import Client from './client'
3
-
4
- export default Errors
5
-
6
- declare namespace Errors {
7
- export class UndiciError extends Error {
8
- name: string;
9
- code: string;
10
- }
11
-
12
- /** Connect timeout error. */
13
- export class ConnectTimeoutError extends UndiciError {
14
- name: 'ConnectTimeoutError';
15
- code: 'UND_ERR_CONNECT_TIMEOUT';
16
- }
17
-
18
- /** A header exceeds the `headersTimeout` option. */
19
- export class HeadersTimeoutError extends UndiciError {
20
- name: 'HeadersTimeoutError';
21
- code: 'UND_ERR_HEADERS_TIMEOUT';
22
- }
23
-
24
- /** Headers overflow error. */
25
- export class HeadersOverflowError extends UndiciError {
26
- name: 'HeadersOverflowError'
27
- code: 'UND_ERR_HEADERS_OVERFLOW'
28
- }
29
-
30
- /** A body exceeds the `bodyTimeout` option. */
31
- export class BodyTimeoutError extends UndiciError {
32
- name: 'BodyTimeoutError';
33
- code: 'UND_ERR_BODY_TIMEOUT';
34
- }
35
-
36
- export class ResponseStatusCodeError extends UndiciError {
37
- constructor (
38
- message?: string,
39
- statusCode?: number,
40
- headers?: IncomingHttpHeaders | string[] | null,
41
- body?: null | Record<string, any> | string
42
- );
43
- name: 'ResponseStatusCodeError';
44
- code: 'UND_ERR_RESPONSE_STATUS_CODE';
45
- body: null | Record<string, any> | string
46
- status: number
47
- statusCode: number
48
- headers: IncomingHttpHeaders | string[] | null;
49
- }
50
-
51
- /** Passed an invalid argument. */
52
- export class InvalidArgumentError extends UndiciError {
53
- name: 'InvalidArgumentError';
54
- code: 'UND_ERR_INVALID_ARG';
55
- }
56
-
57
- /** Returned an invalid value. */
58
- export class InvalidReturnValueError extends UndiciError {
59
- name: 'InvalidReturnValueError';
60
- code: 'UND_ERR_INVALID_RETURN_VALUE';
61
- }
62
-
63
- /** The request has been aborted by the user. */
64
- export class RequestAbortedError extends UndiciError {
65
- name: 'AbortError';
66
- code: 'UND_ERR_ABORTED';
67
- }
68
-
69
- /** Expected error with reason. */
70
- export class InformationalError extends UndiciError {
71
- name: 'InformationalError';
72
- code: 'UND_ERR_INFO';
73
- }
74
-
75
- /** Request body length does not match content-length header. */
76
- export class RequestContentLengthMismatchError extends UndiciError {
77
- name: 'RequestContentLengthMismatchError';
78
- code: 'UND_ERR_REQ_CONTENT_LENGTH_MISMATCH';
79
- }
80
-
81
- /** Response body length does not match content-length header. */
82
- export class ResponseContentLengthMismatchError extends UndiciError {
83
- name: 'ResponseContentLengthMismatchError';
84
- code: 'UND_ERR_RES_CONTENT_LENGTH_MISMATCH';
85
- }
86
-
87
- /** Trying to use a destroyed client. */
88
- export class ClientDestroyedError extends UndiciError {
89
- name: 'ClientDestroyedError';
90
- code: 'UND_ERR_DESTROYED';
91
- }
92
-
93
- /** Trying to use a closed client. */
94
- export class ClientClosedError extends UndiciError {
95
- name: 'ClientClosedError';
96
- code: 'UND_ERR_CLOSED';
97
- }
98
-
99
- /** There is an error with the socket. */
100
- export class SocketError extends UndiciError {
101
- name: 'SocketError';
102
- code: 'UND_ERR_SOCKET';
103
- socket: Client.SocketInfo | null
104
- }
105
-
106
- /** Encountered unsupported functionality. */
107
- export class NotSupportedError extends UndiciError {
108
- name: 'NotSupportedError';
109
- code: 'UND_ERR_NOT_SUPPORTED';
110
- }
111
-
112
- /** No upstream has been added to the BalancedPool. */
113
- export class BalancedPoolMissingUpstreamError extends UndiciError {
114
- name: 'MissingUpstreamError';
115
- code: 'UND_ERR_BPL_MISSING_UPSTREAM';
116
- }
117
-
118
- export class HTTPParserError extends UndiciError {
119
- name: 'HTTPParserError';
120
- code: string;
121
- }
122
-
123
- /** The response exceed the length allowed. */
124
- export class ResponseExceededMaxSizeError extends UndiciError {
125
- name: 'ResponseExceededMaxSizeError';
126
- code: 'UND_ERR_RES_EXCEEDED_MAX_SIZE';
127
- }
128
-
129
- export class RequestRetryError extends UndiciError {
130
- constructor (
131
- message: string,
132
- statusCode: number,
133
- headers?: IncomingHttpHeaders | string[] | null,
134
- body?: null | Record<string, any> | string
135
- );
136
- name: 'RequestRetryError';
137
- code: 'UND_ERR_REQ_RETRY';
138
- statusCode: number;
139
- data: {
140
- count: number;
141
- };
142
- headers: Record<string, string | string[]>;
143
- }
144
-
145
- export class SecureProxyConnectionError extends UndiciError {
146
- name: 'SecureProxyConnectionError';
147
- code: 'UND_ERR_PRX_TLS';
148
- }
149
- }
@@ -1,61 +0,0 @@
1
- import { MessageEvent, ErrorEvent } from './websocket'
2
- import Dispatcher from './dispatcher'
3
-
4
- import {
5
- EventListenerOptions,
6
- AddEventListenerOptions,
7
- EventListenerOrEventListenerObject
8
- } from './patch'
9
-
10
- interface EventSourceEventMap {
11
- error: ErrorEvent
12
- message: MessageEvent
13
- open: Event
14
- }
15
-
16
- interface EventSource extends EventTarget {
17
- close(): void
18
- readonly CLOSED: 2
19
- readonly CONNECTING: 0
20
- readonly OPEN: 1
21
- onerror: (this: EventSource, ev: ErrorEvent) => any
22
- onmessage: (this: EventSource, ev: MessageEvent) => any
23
- onopen: (this: EventSource, ev: Event) => any
24
- readonly readyState: 0 | 1 | 2
25
- readonly url: string
26
- readonly withCredentials: boolean
27
-
28
- addEventListener<K extends keyof EventSourceEventMap>(
29
- type: K,
30
- listener: (this: EventSource, ev: EventSourceEventMap[K]) => any,
31
- options?: boolean | AddEventListenerOptions
32
- ): void
33
- addEventListener(
34
- type: string,
35
- listener: EventListenerOrEventListenerObject,
36
- options?: boolean | AddEventListenerOptions
37
- ): void
38
- removeEventListener<K extends keyof EventSourceEventMap>(
39
- type: K,
40
- listener: (this: EventSource, ev: EventSourceEventMap[K]) => any,
41
- options?: boolean | EventListenerOptions
42
- ): void
43
- removeEventListener(
44
- type: string,
45
- listener: EventListenerOrEventListenerObject,
46
- options?: boolean | EventListenerOptions
47
- ): void
48
- }
49
-
50
- export declare const EventSource: {
51
- prototype: EventSource
52
- new (url: string | URL, init?: EventSourceInit): EventSource
53
- readonly CLOSED: 2
54
- readonly CONNECTING: 0
55
- readonly OPEN: 1
56
- }
57
-
58
- interface EventSourceInit {
59
- withCredentials?: boolean,
60
- dispatcher?: Dispatcher
61
- }
@@ -1,209 +0,0 @@
1
- // based on https://github.com/Ethan-Arrowood/undici-fetch/blob/249269714db874351589d2d364a0645d5160ae71/index.d.ts (MIT license)
2
- // and https://github.com/node-fetch/node-fetch/blob/914ce6be5ec67a8bab63d68510aabf07cb818b6d/index.d.ts (MIT license)
3
- /// <reference types="node" />
4
-
5
- import { Blob } from 'buffer'
6
- import { URL, URLSearchParams } from 'url'
7
- import { ReadableStream } from 'stream/web'
8
- import { FormData } from './formdata'
9
-
10
- import Dispatcher from './dispatcher'
11
-
12
- export type RequestInfo = string | URL | Request
13
-
14
- export declare function fetch (
15
- input: RequestInfo,
16
- init?: RequestInit
17
- ): Promise<Response>
18
-
19
- export type BodyInit =
20
- | ArrayBuffer
21
- | AsyncIterable<Uint8Array>
22
- | Blob
23
- | FormData
24
- | Iterable<Uint8Array>
25
- | NodeJS.ArrayBufferView
26
- | URLSearchParams
27
- | null
28
- | string
29
-
30
- export class BodyMixin {
31
- readonly body: ReadableStream | null
32
- readonly bodyUsed: boolean
33
-
34
- readonly arrayBuffer: () => Promise<ArrayBuffer>
35
- readonly blob: () => Promise<Blob>
36
- /**
37
- * @deprecated This method is not recommended for parsing multipart/form-data bodies in server environments.
38
- * It is recommended to use a library such as [@fastify/busboy](https://www.npmjs.com/package/@fastify/busboy) as follows:
39
- *
40
- * @example
41
- * ```js
42
- * import { Busboy } from '@fastify/busboy'
43
- * import { Readable } from 'node:stream'
44
- *
45
- * const response = await fetch('...')
46
- * const busboy = new Busboy({ headers: { 'content-type': response.headers.get('content-type') } })
47
- *
48
- * // handle events emitted from `busboy`
49
- *
50
- * Readable.fromWeb(response.body).pipe(busboy)
51
- * ```
52
- */
53
- readonly formData: () => Promise<FormData>
54
- readonly json: () => Promise<unknown>
55
- readonly text: () => Promise<string>
56
- }
57
-
58
- export interface SpecIterator<T, TReturn = any, TNext = undefined> {
59
- next(...args: [] | [TNext]): IteratorResult<T, TReturn>;
60
- }
61
-
62
- export interface SpecIterableIterator<T> extends SpecIterator<T> {
63
- [Symbol.iterator](): SpecIterableIterator<T>;
64
- }
65
-
66
- export interface SpecIterable<T> {
67
- [Symbol.iterator](): SpecIterator<T>;
68
- }
69
-
70
- export type HeadersInit = string[][] | Record<string, string | ReadonlyArray<string>> | Headers
71
-
72
- export declare class Headers implements SpecIterable<[string, string]> {
73
- constructor (init?: HeadersInit)
74
- readonly append: (name: string, value: string) => void
75
- readonly delete: (name: string) => void
76
- readonly get: (name: string) => string | null
77
- readonly has: (name: string) => boolean
78
- readonly set: (name: string, value: string) => void
79
- readonly getSetCookie: () => string[]
80
- readonly forEach: (
81
- callbackfn: (value: string, key: string, iterable: Headers) => void,
82
- thisArg?: unknown
83
- ) => void
84
-
85
- readonly keys: () => SpecIterableIterator<string>
86
- readonly values: () => SpecIterableIterator<string>
87
- readonly entries: () => SpecIterableIterator<[string, string]>
88
- readonly [Symbol.iterator]: () => SpecIterableIterator<[string, string]>
89
- }
90
-
91
- export type RequestCache =
92
- | 'default'
93
- | 'force-cache'
94
- | 'no-cache'
95
- | 'no-store'
96
- | 'only-if-cached'
97
- | 'reload'
98
-
99
- export type RequestCredentials = 'omit' | 'include' | 'same-origin'
100
-
101
- type RequestDestination =
102
- | ''
103
- | 'audio'
104
- | 'audioworklet'
105
- | 'document'
106
- | 'embed'
107
- | 'font'
108
- | 'image'
109
- | 'manifest'
110
- | 'object'
111
- | 'paintworklet'
112
- | 'report'
113
- | 'script'
114
- | 'sharedworker'
115
- | 'style'
116
- | 'track'
117
- | 'video'
118
- | 'worker'
119
- | 'xslt'
120
-
121
- export interface RequestInit {
122
- method?: string
123
- keepalive?: boolean
124
- headers?: HeadersInit
125
- body?: BodyInit | null
126
- redirect?: RequestRedirect
127
- integrity?: string
128
- signal?: AbortSignal | null
129
- credentials?: RequestCredentials
130
- mode?: RequestMode
131
- referrer?: string
132
- referrerPolicy?: ReferrerPolicy
133
- window?: null
134
- dispatcher?: Dispatcher
135
- duplex?: RequestDuplex
136
- }
137
-
138
- export type ReferrerPolicy =
139
- | ''
140
- | 'no-referrer'
141
- | 'no-referrer-when-downgrade'
142
- | 'origin'
143
- | 'origin-when-cross-origin'
144
- | 'same-origin'
145
- | 'strict-origin'
146
- | 'strict-origin-when-cross-origin'
147
- | 'unsafe-url';
148
-
149
- export type RequestMode = 'cors' | 'navigate' | 'no-cors' | 'same-origin'
150
-
151
- export type RequestRedirect = 'error' | 'follow' | 'manual'
152
-
153
- export type RequestDuplex = 'half'
154
-
155
- export declare class Request extends BodyMixin {
156
- constructor (input: RequestInfo, init?: RequestInit)
157
-
158
- readonly cache: RequestCache
159
- readonly credentials: RequestCredentials
160
- readonly destination: RequestDestination
161
- readonly headers: Headers
162
- readonly integrity: string
163
- readonly method: string
164
- readonly mode: RequestMode
165
- readonly redirect: RequestRedirect
166
- readonly referrer: string
167
- readonly referrerPolicy: ReferrerPolicy
168
- readonly url: string
169
-
170
- readonly keepalive: boolean
171
- readonly signal: AbortSignal
172
- readonly duplex: RequestDuplex
173
-
174
- readonly clone: () => Request
175
- }
176
-
177
- export interface ResponseInit {
178
- readonly status?: number
179
- readonly statusText?: string
180
- readonly headers?: HeadersInit
181
- }
182
-
183
- export type ResponseType =
184
- | 'basic'
185
- | 'cors'
186
- | 'default'
187
- | 'error'
188
- | 'opaque'
189
- | 'opaqueredirect'
190
-
191
- export type ResponseRedirectStatus = 301 | 302 | 303 | 307 | 308
192
-
193
- export declare class Response extends BodyMixin {
194
- constructor (body?: BodyInit, init?: ResponseInit)
195
-
196
- readonly headers: Headers
197
- readonly ok: boolean
198
- readonly status: number
199
- readonly statusText: string
200
- readonly type: ResponseType
201
- readonly url: string
202
- readonly redirected: boolean
203
-
204
- readonly clone: () => Response
205
-
206
- static error (): Response
207
- static json(data: any, init?: ResponseInit): Response
208
- static redirect (url: string | URL, status: ResponseRedirectStatus): Response
209
- }
@@ -1,39 +0,0 @@
1
- // Based on https://github.com/octet-stream/form-data/blob/2d0f0dc371517444ce1f22cdde13f51995d0953a/lib/File.ts (MIT)
2
- /// <reference types="node" />
3
-
4
- import { Blob } from 'buffer'
5
-
6
- export interface BlobPropertyBag {
7
- type?: string
8
- endings?: 'native' | 'transparent'
9
- }
10
-
11
- export interface FilePropertyBag extends BlobPropertyBag {
12
- /**
13
- * The last modified date of the file as the number of milliseconds since the Unix epoch (January 1, 1970 at midnight). Files without a known last modified date return the current date.
14
- */
15
- lastModified?: number
16
- }
17
-
18
- export declare class File extends Blob {
19
- /**
20
- * Creates a new File instance.
21
- *
22
- * @param fileBits An `Array` strings, or [`ArrayBuffer`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer), [`ArrayBufferView`](https://developer.mozilla.org/en-US/docs/Web/API/ArrayBufferView), [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) objects, or a mix of any of such objects, that will be put inside the [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File).
23
- * @param fileName The name of the file.
24
- * @param options An options object containing optional attributes for the file.
25
- */
26
- constructor(fileBits: ReadonlyArray<string | NodeJS.ArrayBufferView | Blob>, fileName: string, options?: FilePropertyBag)
27
-
28
- /**
29
- * Name of the file referenced by the File object.
30
- */
31
- readonly name: string
32
-
33
- /**
34
- * The last modified date of the file as the number of milliseconds since the Unix epoch (January 1, 1970 at midnight). Files without a known last modified date return the current date.
35
- */
36
- readonly lastModified: number
37
-
38
- readonly [Symbol.toStringTag]: string
39
- }
@@ -1,54 +0,0 @@
1
- /// <reference types="node" />
2
-
3
- import { Blob } from 'buffer'
4
- import { DOMException, EventInit } from './patch'
5
-
6
- export declare class FileReader {
7
- __proto__: EventTarget & FileReader
8
-
9
- constructor ()
10
-
11
- readAsArrayBuffer (blob: Blob): void
12
- readAsBinaryString (blob: Blob): void
13
- readAsText (blob: Blob, encoding?: string): void
14
- readAsDataURL (blob: Blob): void
15
-
16
- abort (): void
17
-
18
- static readonly EMPTY = 0
19
- static readonly LOADING = 1
20
- static readonly DONE = 2
21
-
22
- readonly EMPTY = 0
23
- readonly LOADING = 1
24
- readonly DONE = 2
25
-
26
- readonly readyState: number
27
-
28
- readonly result: string | ArrayBuffer | null
29
-
30
- readonly error: DOMException | null
31
-
32
- onloadstart: null | ((this: FileReader, event: ProgressEvent) => void)
33
- onprogress: null | ((this: FileReader, event: ProgressEvent) => void)
34
- onload: null | ((this: FileReader, event: ProgressEvent) => void)
35
- onabort: null | ((this: FileReader, event: ProgressEvent) => void)
36
- onerror: null | ((this: FileReader, event: ProgressEvent) => void)
37
- onloadend: null | ((this: FileReader, event: ProgressEvent) => void)
38
- }
39
-
40
- export interface ProgressEventInit extends EventInit {
41
- lengthComputable?: boolean
42
- loaded?: number
43
- total?: number
44
- }
45
-
46
- export declare class ProgressEvent {
47
- __proto__: Event & ProgressEvent
48
-
49
- constructor (type: string, eventInitDict?: ProgressEventInit)
50
-
51
- readonly lengthComputable: boolean
52
- readonly loaded: number
53
- readonly total: number
54
- }
@@ -1,108 +0,0 @@
1
- // Based on https://github.com/octet-stream/form-data/blob/2d0f0dc371517444ce1f22cdde13f51995d0953a/lib/FormData.ts (MIT)
2
- /// <reference types="node" />
3
-
4
- import { File } from './file'
5
- import { SpecIterableIterator } from './fetch'
6
-
7
- /**
8
- * A `string` or `File` that represents a single value from a set of `FormData` key-value pairs.
9
- */
10
- declare type FormDataEntryValue = string | File
11
-
12
- /**
13
- * Provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using fetch().
14
- */
15
- export declare class FormData {
16
- /**
17
- * Appends a new value onto an existing key inside a FormData object,
18
- * or adds the key if it does not already exist.
19
- *
20
- * The difference between `set()` and `append()` is that if the specified key already exists, `set()` will overwrite all existing values with the new one, whereas `append()` will append the new value onto the end of the existing set of values.
21
- *
22
- * @param name The name of the field whose data is contained in `value`.
23
- * @param value The field's value. This can be [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob)
24
- or [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File). If none of these are specified the value is converted to a string.
25
- * @param fileName The filename reported to the server, when a Blob or File is passed as the second parameter. The default filename for Blob objects is "blob". The default filename for File objects is the file's filename.
26
- */
27
- append(name: string, value: unknown, fileName?: string): void
28
-
29
- /**
30
- * Set a new value for an existing key inside FormData,
31
- * or add the new field if it does not already exist.
32
- *
33
- * @param name The name of the field whose data is contained in `value`.
34
- * @param value The field's value. This can be [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob)
35
- or [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File). If none of these are specified the value is converted to a string.
36
- * @param fileName The filename reported to the server, when a Blob or File is passed as the second parameter. The default filename for Blob objects is "blob". The default filename for File objects is the file's filename.
37
- *
38
- */
39
- set(name: string, value: unknown, fileName?: string): void
40
-
41
- /**
42
- * Returns the first value associated with a given key from within a `FormData` object.
43
- * If you expect multiple values and want all of them, use the `getAll()` method instead.
44
- *
45
- * @param {string} name A name of the value you want to retrieve.
46
- *
47
- * @returns A `FormDataEntryValue` containing the value. If the key doesn't exist, the method returns null.
48
- */
49
- get(name: string): FormDataEntryValue | null
50
-
51
- /**
52
- * Returns all the values associated with a given key from within a `FormData` object.
53
- *
54
- * @param {string} name A name of the value you want to retrieve.
55
- *
56
- * @returns An array of `FormDataEntryValue` whose key matches the value passed in the `name` parameter. If the key doesn't exist, the method returns an empty list.
57
- */
58
- getAll(name: string): FormDataEntryValue[]
59
-
60
- /**
61
- * Returns a boolean stating whether a `FormData` object contains a certain key.
62
- *
63
- * @param name A string representing the name of the key you want to test for.
64
- *
65
- * @return A boolean value.
66
- */
67
- has(name: string): boolean
68
-
69
- /**
70
- * Deletes a key and its value(s) from a `FormData` object.
71
- *
72
- * @param name The name of the key you want to delete.
73
- */
74
- delete(name: string): void
75
-
76
- /**
77
- * Executes given callback function for each field of the FormData instance
78
- */
79
- forEach: (
80
- callbackfn: (value: FormDataEntryValue, key: string, iterable: FormData) => void,
81
- thisArg?: unknown
82
- ) => void
83
-
84
- /**
85
- * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through all keys contained in this `FormData` object.
86
- * Each key is a `string`.
87
- */
88
- keys: () => SpecIterableIterator<string>
89
-
90
- /**
91
- * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through all values contained in this object `FormData` object.
92
- * Each value is a [`FormDataValue`](https://developer.mozilla.org/en-US/docs/Web/API/FormDataEntryValue).
93
- */
94
- values: () => SpecIterableIterator<FormDataEntryValue>
95
-
96
- /**
97
- * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through the `FormData` key/value pairs.
98
- * The key of each pair is a string; the value is a [`FormDataValue`](https://developer.mozilla.org/en-US/docs/Web/API/FormDataEntryValue).
99
- */
100
- entries: () => SpecIterableIterator<[string, FormDataEntryValue]>
101
-
102
- /**
103
- * An alias for FormData#entries()
104
- */
105
- [Symbol.iterator]: () => SpecIterableIterator<[string, FormDataEntryValue]>
106
-
107
- readonly [Symbol.toStringTag]: string
108
- }
@@ -1,9 +0,0 @@
1
- import Dispatcher from "./dispatcher";
2
-
3
- export {
4
- getGlobalDispatcher,
5
- setGlobalDispatcher
6
- }
7
-
8
- declare function setGlobalDispatcher<DispatcherImplementation extends Dispatcher>(dispatcher: DispatcherImplementation): void;
9
- declare function getGlobalDispatcher(): Dispatcher;
@@ -1,7 +0,0 @@
1
- export {
2
- setGlobalOrigin,
3
- getGlobalOrigin
4
- }
5
-
6
- declare function setGlobalOrigin(origin: string | URL | undefined): void;
7
- declare function getGlobalOrigin(): URL | undefined;
@@ -1,15 +0,0 @@
1
- import Dispatcher from "./dispatcher";
2
-
3
- export declare class RedirectHandler implements Dispatcher.DispatchHandlers {
4
- constructor(
5
- dispatch: Dispatcher,
6
- maxRedirections: number,
7
- opts: Dispatcher.DispatchOptions,
8
- handler: Dispatcher.DispatchHandlers,
9
- redirectionLimitReached: boolean
10
- );
11
- }
12
-
13
- export declare class DecoratorHandler implements Dispatcher.DispatchHandlers {
14
- constructor(handler: Dispatcher.DispatchHandlers);
15
- }
@@ -1,4 +0,0 @@
1
- /**
2
- * The header type declaration of `undici`.
3
- */
4
- export type IncomingHttpHeaders = Record<string, string | string[] | undefined>;