repoburg 1.3.86 → 1.3.88

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 (534) hide show
  1. package/backend/dist/src/ai-actions/ai-actions.controller.js +67 -0
  2. package/backend/dist/src/ai-actions/ai-actions.controller.js.map +1 -1
  3. package/backend/dist/src/application-state/application-state.controller.js +123 -0
  4. package/backend/dist/src/application-state/application-state.controller.js.map +1 -1
  5. package/backend/dist/src/application-state/dto/set-alibaba-config.dto.js +2 -0
  6. package/backend/dist/src/application-state/dto/set-alibaba-config.dto.js.map +1 -1
  7. package/backend/dist/src/application-state/dto/set-auto-context-fetch-enabled.dto.js +4 -0
  8. package/backend/dist/src/application-state/dto/set-auto-context-fetch-enabled.dto.js.map +1 -1
  9. package/backend/dist/src/application-state/dto/set-auto-send-to-ai-studio-enabled.dto.js +2 -0
  10. package/backend/dist/src/application-state/dto/set-auto-send-to-ai-studio-enabled.dto.js.map +1 -1
  11. package/backend/dist/src/application-state/dto/set-context-token-limit.dto.js +6 -0
  12. package/backend/dist/src/application-state/dto/set-context-token-limit.dto.js.map +1 -1
  13. package/backend/dist/src/application-state/dto/set-execution-strategy.dto.js +6 -0
  14. package/backend/dist/src/application-state/dto/set-execution-strategy.dto.js.map +1 -1
  15. package/backend/dist/src/application-state/dto/set-followup-token-limit.dto.js +5 -0
  16. package/backend/dist/src/application-state/dto/set-followup-token-limit.dto.js.map +1 -1
  17. package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js +4 -0
  18. package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js.map +1 -1
  19. package/backend/dist/src/application-state/dto/set-llm-retry-enabled.dto.js +4 -0
  20. package/backend/dist/src/application-state/dto/set-llm-retry-enabled.dto.js.map +1 -1
  21. package/backend/dist/src/application-state/dto/set-llm-retry-max-attempts.dto.js +6 -0
  22. package/backend/dist/src/application-state/dto/set-llm-retry-max-attempts.dto.js.map +1 -1
  23. package/backend/dist/src/application-state/dto/set-manual-llm-enabled.dto.js +4 -0
  24. package/backend/dist/src/application-state/dto/set-manual-llm-enabled.dto.js.map +1 -1
  25. package/backend/dist/src/application-state/dto/set-openrouter-config.dto.js +2 -0
  26. package/backend/dist/src/application-state/dto/set-openrouter-config.dto.js.map +1 -1
  27. package/backend/dist/src/application-state/dto/set-streaming-enabled.dto.js +2 -0
  28. package/backend/dist/src/application-state/dto/set-streaming-enabled.dto.js.map +1 -1
  29. package/backend/dist/src/application-state/dto/set-syntax-validation-enabled.dto.js +4 -0
  30. package/backend/dist/src/application-state/dto/set-syntax-validation-enabled.dto.js.map +1 -1
  31. package/backend/dist/src/application-state/dto/set-theme.dto.js +6 -0
  32. package/backend/dist/src/application-state/dto/set-theme.dto.js.map +1 -1
  33. package/backend/dist/src/application-state/dto/set-tools-enabled.dto.js +4 -0
  34. package/backend/dist/src/application-state/dto/set-tools-enabled.dto.js.map +1 -1
  35. package/backend/dist/src/application-state/dto/set-websocket-enabled.dto.js +2 -0
  36. package/backend/dist/src/application-state/dto/set-websocket-enabled.dto.js.map +1 -1
  37. package/backend/dist/src/application-state/dto/set-yolo-mode-message.dto.js +5 -0
  38. package/backend/dist/src/application-state/dto/set-yolo-mode-message.dto.js.map +1 -1
  39. package/backend/dist/src/application-state/dto/set-yolo-mode.dto.js +4 -0
  40. package/backend/dist/src/application-state/dto/set-yolo-mode.dto.js.map +1 -1
  41. package/backend/dist/src/application-state/dto/set-zai-config.dto.js +2 -0
  42. package/backend/dist/src/application-state/dto/set-zai-config.dto.js.map +1 -1
  43. package/backend/dist/src/context-snippets/context-snippets.controller.js +38 -0
  44. package/backend/dist/src/context-snippets/context-snippets.controller.js.map +1 -1
  45. package/backend/dist/src/context-templates/context-templates.controller.js +104 -0
  46. package/backend/dist/src/context-templates/context-templates.controller.js.map +1 -1
  47. package/backend/dist/src/context-templates/dto/context-template.dto.d.ts +1 -1
  48. package/backend/dist/src/context-templates/dto/context-template.dto.js +44 -1
  49. package/backend/dist/src/context-templates/dto/context-template.dto.js.map +1 -1
  50. package/backend/dist/src/core-entities/ai-action.entity.js +73 -0
  51. package/backend/dist/src/core-entities/ai-action.entity.js.map +1 -1
  52. package/backend/dist/src/core-entities/base.entity.js +18 -0
  53. package/backend/dist/src/core-entities/base.entity.js.map +1 -1
  54. package/backend/dist/src/core-entities/context-snippet.entity.js +12 -0
  55. package/backend/dist/src/core-entities/context-snippet.entity.js.map +1 -1
  56. package/backend/dist/src/core-entities/context-template.entity.d.ts +2 -4
  57. package/backend/dist/src/core-entities/context-template.entity.js +50 -7
  58. package/backend/dist/src/core-entities/context-template.entity.js.map +1 -1
  59. package/backend/dist/src/core-entities/custom-snippet.entity.js +16 -0
  60. package/backend/dist/src/core-entities/custom-snippet.entity.js.map +1 -1
  61. package/backend/dist/src/core-entities/custom-variable.entity.js +24 -0
  62. package/backend/dist/src/core-entities/custom-variable.entity.js.map +1 -1
  63. package/backend/dist/src/core-entities/enums.d.ts +64 -0
  64. package/backend/dist/src/core-entities/enums.js +77 -0
  65. package/backend/dist/src/core-entities/enums.js.map +1 -0
  66. package/backend/dist/src/core-entities/execution-log.entity.js +15 -0
  67. package/backend/dist/src/core-entities/execution-log.entity.js.map +1 -1
  68. package/backend/dist/src/core-entities/index.d.ts +1 -2
  69. package/backend/dist/src/core-entities/index.js +1 -2
  70. package/backend/dist/src/core-entities/index.js.map +1 -1
  71. package/backend/dist/src/core-entities/llm-call-log.entity.js +43 -0
  72. package/backend/dist/src/core-entities/llm-call-log.entity.js.map +1 -1
  73. package/backend/dist/src/core-entities/mcp-config.entity.js +27 -0
  74. package/backend/dist/src/core-entities/mcp-config.entity.js.map +1 -1
  75. package/backend/dist/src/core-entities/mcp-tool.entity.js +26 -0
  76. package/backend/dist/src/core-entities/mcp-tool.entity.js.map +1 -1
  77. package/backend/dist/src/core-entities/project.entity.js +13 -0
  78. package/backend/dist/src/core-entities/project.entity.js.map +1 -1
  79. package/backend/dist/src/core-entities/session-input.entity.js +94 -0
  80. package/backend/dist/src/core-entities/session-input.entity.js.map +1 -1
  81. package/backend/dist/src/core-entities/session.entity.d.ts +1 -1
  82. package/backend/dist/src/core-entities/session.entity.js +96 -1
  83. package/backend/dist/src/core-entities/session.entity.js.map +1 -1
  84. package/backend/dist/src/core-entities/system-prompt.entity.js +29 -0
  85. package/backend/dist/src/core-entities/system-prompt.entity.js.map +1 -1
  86. package/backend/dist/src/core-entities/tool-hook.entity.js +21 -0
  87. package/backend/dist/src/core-entities/tool-hook.entity.js.map +1 -1
  88. package/backend/dist/src/custom-snippets/custom-snippets.controller.js +48 -0
  89. package/backend/dist/src/custom-snippets/custom-snippets.controller.js.map +1 -1
  90. package/backend/dist/src/custom-variables/custom-variables.controller.js +46 -0
  91. package/backend/dist/src/custom-variables/custom-variables.controller.js.map +1 -1
  92. package/backend/dist/src/global-config/global-config.controller.js +12 -0
  93. package/backend/dist/src/global-config/global-config.controller.js.map +1 -1
  94. package/backend/dist/src/interactive-chat/streaming.controller.js +38 -0
  95. package/backend/dist/src/interactive-chat/streaming.controller.js.map +1 -1
  96. package/backend/dist/src/llm-call-logs/llm-call-logs.controller.js +96 -0
  97. package/backend/dist/src/llm-call-logs/llm-call-logs.controller.js.map +1 -1
  98. package/backend/dist/src/llm-provider/llm-provider.controller.js +18 -0
  99. package/backend/dist/src/llm-provider/llm-provider.controller.js.map +1 -1
  100. package/backend/dist/src/llm-responses/dto/submit-llm-response.dto.js +45 -0
  101. package/backend/dist/src/llm-responses/dto/submit-llm-response.dto.js.map +1 -1
  102. package/backend/dist/src/llm-responses/dto/sync-conversation.dto.js +24 -0
  103. package/backend/dist/src/llm-responses/dto/sync-conversation.dto.js.map +1 -1
  104. package/backend/dist/src/llm-responses/llm-responses.controller.js +32 -0
  105. package/backend/dist/src/llm-responses/llm-responses.controller.js.map +1 -1
  106. package/backend/dist/src/main.js +9 -0
  107. package/backend/dist/src/main.js.map +1 -1
  108. package/backend/dist/src/mcp/dto/batch-update-mcp-tools.dto.js +8 -0
  109. package/backend/dist/src/mcp/dto/batch-update-mcp-tools.dto.js.map +1 -1
  110. package/backend/dist/src/mcp/dto/create-mcp-config.dto.js +5 -0
  111. package/backend/dist/src/mcp/dto/create-mcp-config.dto.js.map +1 -1
  112. package/backend/dist/src/mcp/dto/update-mcp-config.dto.js +2 -0
  113. package/backend/dist/src/mcp/dto/update-mcp-config.dto.js.map +1 -1
  114. package/backend/dist/src/mcp/mcp.controller.js +21 -0
  115. package/backend/dist/src/mcp/mcp.controller.js.map +1 -1
  116. package/backend/dist/src/projects/dto/project.dto.js +14 -0
  117. package/backend/dist/src/projects/dto/project.dto.js.map +1 -1
  118. package/backend/dist/src/projects/projects.controller.js +31 -0
  119. package/backend/dist/src/projects/projects.controller.js.map +1 -1
  120. package/backend/dist/src/session-inputs/dto/session-input.dto.d.ts +12 -1
  121. package/backend/dist/src/session-inputs/dto/session-input.dto.js +103 -1
  122. package/backend/dist/src/session-inputs/dto/session-input.dto.js.map +1 -1
  123. package/backend/dist/src/session-inputs/session-input.subscriber.js.map +1 -1
  124. package/backend/dist/src/session-inputs/session-inputs.controller.d.ts +2 -1
  125. package/backend/dist/src/session-inputs/session-inputs.controller.js +84 -0
  126. package/backend/dist/src/session-inputs/session-inputs.controller.js.map +1 -1
  127. package/backend/dist/src/session-inputs/session-inputs.module.js +1 -0
  128. package/backend/dist/src/session-inputs/session-inputs.module.js.map +1 -1
  129. package/backend/dist/src/session-inputs/session-inputs.service.d.ts +7 -3
  130. package/backend/dist/src/session-inputs/session-inputs.service.js +51 -4
  131. package/backend/dist/src/session-inputs/session-inputs.service.js.map +1 -1
  132. package/backend/dist/src/sessions/dto/session.dto.js +91 -0
  133. package/backend/dist/src/sessions/dto/session.dto.js.map +1 -1
  134. package/backend/dist/src/sessions/sessions.controller.js +112 -0
  135. package/backend/dist/src/sessions/sessions.controller.js.map +1 -1
  136. package/backend/dist/src/sub-agents/dto/create-sub-agent.dto.js +26 -0
  137. package/backend/dist/src/sub-agents/dto/create-sub-agent.dto.js.map +1 -1
  138. package/backend/dist/src/sub-agents/dto/update-sub-agent.dto.js +22 -0
  139. package/backend/dist/src/sub-agents/dto/update-sub-agent.dto.js.map +1 -1
  140. package/backend/dist/src/sub-agents/sub-agent-run.entity.d.ts +2 -7
  141. package/backend/dist/src/sub-agents/sub-agent-run.entity.js +63 -9
  142. package/backend/dist/src/sub-agents/sub-agent-run.entity.js.map +1 -1
  143. package/backend/dist/src/sub-agents/sub-agent-runs.controller.js +63 -0
  144. package/backend/dist/src/sub-agents/sub-agent-runs.controller.js.map +1 -1
  145. package/backend/dist/src/sub-agents/sub-agent.entity.js +47 -0
  146. package/backend/dist/src/sub-agents/sub-agent.entity.js.map +1 -1
  147. package/backend/dist/src/sub-agents/sub-agents.controller.js +25 -0
  148. package/backend/dist/src/sub-agents/sub-agents.controller.js.map +1 -1
  149. package/backend/dist/src/system-prompts/dto/set-enabled-tools.dto.js +9 -0
  150. package/backend/dist/src/system-prompts/dto/set-enabled-tools.dto.js.map +1 -1
  151. package/backend/dist/src/system-prompts/dto/system-prompt.dto.js +43 -0
  152. package/backend/dist/src/system-prompts/dto/system-prompt.dto.js.map +1 -1
  153. package/backend/dist/src/system-prompts/dto/toggle-tool.dto.js +5 -0
  154. package/backend/dist/src/system-prompts/dto/toggle-tool.dto.js.map +1 -1
  155. package/backend/dist/src/system-prompts/system-prompts.controller.js +80 -0
  156. package/backend/dist/src/system-prompts/system-prompts.controller.js.map +1 -1
  157. package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js +14 -0
  158. package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js.map +1 -1
  159. package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js +11 -0
  160. package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js.map +1 -1
  161. package/backend/dist/src/tool-hooks/tool-hooks.controller.js +52 -0
  162. package/backend/dist/src/tool-hooks/tool-hooks.controller.js.map +1 -1
  163. package/backend/dist/src/visual-editor/visual-editor.controller.js +15 -0
  164. package/backend/dist/src/visual-editor/visual-editor.controller.js.map +1 -1
  165. package/backend/dist/src/workspace/workspace.controller.js +41 -0
  166. package/backend/dist/src/workspace/workspace.controller.js.map +1 -1
  167. package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
  168. package/{daemon/node_modules/undici-types → backend/node_modules/@eslint/eslintrc}/LICENSE +5 -7
  169. package/backend/node_modules/@eslint/eslintrc/README.md +115 -0
  170. package/backend/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
  171. package/backend/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
  172. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1104 -0
  173. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
  174. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4344 -0
  175. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
  176. package/backend/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +532 -0
  177. package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +523 -0
  178. package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +124 -0
  179. package/backend/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
  180. package/backend/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +238 -0
  181. package/backend/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
  182. package/backend/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +225 -0
  183. package/backend/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1151 -0
  184. package/backend/node_modules/@eslint/eslintrc/lib/flat-compat.js +318 -0
  185. package/backend/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
  186. package/backend/node_modules/@eslint/eslintrc/lib/index.js +56 -0
  187. package/backend/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
  188. package/backend/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
  189. package/backend/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +325 -0
  190. package/backend/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
  191. package/backend/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
  192. package/backend/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +42 -0
  193. package/backend/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
  194. package/backend/node_modules/@eslint/eslintrc/package.json +82 -0
  195. package/backend/node_modules/@eslint/eslintrc/universal.js +9 -0
  196. package/backend/package.json +1 -3
  197. package/package.json +3 -1
  198. package/visual-editor-proxy/dist/tsconfig.tsbuildinfo +1 -1
  199. package/backend/node_modules/@types/node/LICENSE +0 -21
  200. package/backend/node_modules/@types/node/README.md +0 -15
  201. package/backend/node_modules/@types/node/assert/strict.d.ts +0 -8
  202. package/backend/node_modules/@types/node/assert.d.ts +0 -1044
  203. package/backend/node_modules/@types/node/async_hooks.d.ts +0 -605
  204. package/backend/node_modules/@types/node/buffer.buffer.d.ts +0 -462
  205. package/backend/node_modules/@types/node/buffer.d.ts +0 -1932
  206. package/backend/node_modules/@types/node/child_process.d.ts +0 -1452
  207. package/backend/node_modules/@types/node/cluster.d.ts +0 -578
  208. package/backend/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  209. package/backend/node_modules/@types/node/compatibility/index.d.ts +0 -9
  210. package/backend/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  211. package/backend/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  212. package/backend/node_modules/@types/node/console.d.ts +0 -452
  213. package/backend/node_modules/@types/node/constants.d.ts +0 -21
  214. package/backend/node_modules/@types/node/crypto.d.ts +0 -4570
  215. package/backend/node_modules/@types/node/dgram.d.ts +0 -596
  216. package/backend/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  217. package/backend/node_modules/@types/node/dns/promises.d.ts +0 -479
  218. package/backend/node_modules/@types/node/dns.d.ts +0 -871
  219. package/backend/node_modules/@types/node/domain.d.ts +0 -170
  220. package/backend/node_modules/@types/node/events.d.ts +0 -931
  221. package/backend/node_modules/@types/node/fs/promises.d.ts +0 -1248
  222. package/backend/node_modules/@types/node/fs.d.ts +0 -4362
  223. package/backend/node_modules/@types/node/globals.d.ts +0 -170
  224. package/backend/node_modules/@types/node/globals.typedarray.d.ts +0 -21
  225. package/backend/node_modules/@types/node/http.d.ts +0 -2031
  226. package/backend/node_modules/@types/node/http2.d.ts +0 -2623
  227. package/backend/node_modules/@types/node/https.d.ts +0 -549
  228. package/backend/node_modules/@types/node/index.d.ts +0 -93
  229. package/backend/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  230. package/backend/node_modules/@types/node/module.d.ts +0 -539
  231. package/backend/node_modules/@types/node/net.d.ts +0 -1011
  232. package/backend/node_modules/@types/node/os.d.ts +0 -495
  233. package/backend/node_modules/@types/node/package.json +0 -140
  234. package/backend/node_modules/@types/node/path.d.ts +0 -200
  235. package/backend/node_modules/@types/node/perf_hooks.d.ts +0 -963
  236. package/backend/node_modules/@types/node/process.d.ts +0 -1956
  237. package/backend/node_modules/@types/node/punycode.d.ts +0 -117
  238. package/backend/node_modules/@types/node/querystring.d.ts +0 -152
  239. package/backend/node_modules/@types/node/readline/promises.d.ts +0 -162
  240. package/backend/node_modules/@types/node/readline.d.ts +0 -589
  241. package/backend/node_modules/@types/node/repl.d.ts +0 -430
  242. package/backend/node_modules/@types/node/sea.d.ts +0 -153
  243. package/backend/node_modules/@types/node/stream/consumers.d.ts +0 -38
  244. package/backend/node_modules/@types/node/stream/promises.d.ts +0 -90
  245. package/backend/node_modules/@types/node/stream/web.d.ts +0 -533
  246. package/backend/node_modules/@types/node/stream.d.ts +0 -1668
  247. package/backend/node_modules/@types/node/string_decoder.d.ts +0 -67
  248. package/backend/node_modules/@types/node/test.d.ts +0 -1807
  249. package/backend/node_modules/@types/node/timers/promises.d.ts +0 -108
  250. package/backend/node_modules/@types/node/timers.d.ts +0 -286
  251. package/backend/node_modules/@types/node/tls.d.ts +0 -1231
  252. package/backend/node_modules/@types/node/trace_events.d.ts +0 -197
  253. package/backend/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
  254. package/backend/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
  255. package/backend/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  256. package/backend/node_modules/@types/node/tty.d.ts +0 -208
  257. package/backend/node_modules/@types/node/url.d.ts +0 -964
  258. package/backend/node_modules/@types/node/util.d.ts +0 -2331
  259. package/backend/node_modules/@types/node/v8.d.ts +0 -808
  260. package/backend/node_modules/@types/node/vm.d.ts +0 -1030
  261. package/backend/node_modules/@types/node/wasi.d.ts +0 -181
  262. package/backend/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  263. package/backend/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  264. package/backend/node_modules/@types/node/web-globals/events.d.ts +0 -94
  265. package/backend/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
  266. package/backend/node_modules/@types/node/worker_threads.d.ts +0 -743
  267. package/backend/node_modules/@types/node/zlib.d.ts +0 -539
  268. package/backend/node_modules/debug/LICENSE +0 -20
  269. package/backend/node_modules/debug/README.md +0 -481
  270. package/backend/node_modules/debug/package.json +0 -64
  271. package/backend/node_modules/debug/src/browser.js +0 -272
  272. package/backend/node_modules/debug/src/common.js +0 -292
  273. package/backend/node_modules/debug/src/index.js +0 -10
  274. package/backend/node_modules/debug/src/node.js +0 -263
  275. package/backend/node_modules/undici-types/LICENSE +0 -21
  276. package/backend/node_modules/undici-types/README.md +0 -6
  277. package/backend/node_modules/undici-types/agent.d.ts +0 -31
  278. package/backend/node_modules/undici-types/api.d.ts +0 -43
  279. package/backend/node_modules/undici-types/balanced-pool.d.ts +0 -29
  280. package/backend/node_modules/undici-types/cache.d.ts +0 -36
  281. package/backend/node_modules/undici-types/client.d.ts +0 -108
  282. package/backend/node_modules/undici-types/connector.d.ts +0 -34
  283. package/backend/node_modules/undici-types/content-type.d.ts +0 -21
  284. package/backend/node_modules/undici-types/cookies.d.ts +0 -28
  285. package/backend/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  286. package/backend/node_modules/undici-types/dispatcher.d.ts +0 -256
  287. package/backend/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  288. package/backend/node_modules/undici-types/errors.d.ts +0 -149
  289. package/backend/node_modules/undici-types/eventsource.d.ts +0 -61
  290. package/backend/node_modules/undici-types/fetch.d.ts +0 -209
  291. package/backend/node_modules/undici-types/file.d.ts +0 -39
  292. package/backend/node_modules/undici-types/filereader.d.ts +0 -54
  293. package/backend/node_modules/undici-types/formdata.d.ts +0 -108
  294. package/backend/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  295. package/backend/node_modules/undici-types/global-origin.d.ts +0 -7
  296. package/backend/node_modules/undici-types/handlers.d.ts +0 -15
  297. package/backend/node_modules/undici-types/header.d.ts +0 -4
  298. package/backend/node_modules/undici-types/index.d.ts +0 -71
  299. package/backend/node_modules/undici-types/interceptors.d.ts +0 -17
  300. package/backend/node_modules/undici-types/mock-agent.d.ts +0 -50
  301. package/backend/node_modules/undici-types/mock-client.d.ts +0 -25
  302. package/backend/node_modules/undici-types/mock-errors.d.ts +0 -12
  303. package/backend/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  304. package/backend/node_modules/undici-types/mock-pool.d.ts +0 -25
  305. package/backend/node_modules/undici-types/package.json +0 -55
  306. package/backend/node_modules/undici-types/patch.d.ts +0 -33
  307. package/backend/node_modules/undici-types/pool-stats.d.ts +0 -19
  308. package/backend/node_modules/undici-types/pool.d.ts +0 -39
  309. package/backend/node_modules/undici-types/proxy-agent.d.ts +0 -28
  310. package/backend/node_modules/undici-types/readable.d.ts +0 -65
  311. package/backend/node_modules/undici-types/retry-agent.d.ts +0 -8
  312. package/backend/node_modules/undici-types/retry-handler.d.ts +0 -116
  313. package/backend/node_modules/undici-types/util.d.ts +0 -18
  314. package/backend/node_modules/undici-types/webidl.d.ts +0 -228
  315. package/backend/node_modules/undici-types/websocket.d.ts +0 -150
  316. package/daemon/node_modules/@types/node/LICENSE +0 -21
  317. package/daemon/node_modules/@types/node/README.md +0 -15
  318. package/daemon/node_modules/@types/node/assert/strict.d.ts +0 -8
  319. package/daemon/node_modules/@types/node/assert.d.ts +0 -1044
  320. package/daemon/node_modules/@types/node/async_hooks.d.ts +0 -605
  321. package/daemon/node_modules/@types/node/buffer.buffer.d.ts +0 -462
  322. package/daemon/node_modules/@types/node/buffer.d.ts +0 -1932
  323. package/daemon/node_modules/@types/node/child_process.d.ts +0 -1452
  324. package/daemon/node_modules/@types/node/cluster.d.ts +0 -578
  325. package/daemon/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  326. package/daemon/node_modules/@types/node/compatibility/index.d.ts +0 -9
  327. package/daemon/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  328. package/daemon/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  329. package/daemon/node_modules/@types/node/console.d.ts +0 -452
  330. package/daemon/node_modules/@types/node/constants.d.ts +0 -21
  331. package/daemon/node_modules/@types/node/crypto.d.ts +0 -4570
  332. package/daemon/node_modules/@types/node/dgram.d.ts +0 -596
  333. package/daemon/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  334. package/daemon/node_modules/@types/node/dns/promises.d.ts +0 -479
  335. package/daemon/node_modules/@types/node/dns.d.ts +0 -871
  336. package/daemon/node_modules/@types/node/domain.d.ts +0 -170
  337. package/daemon/node_modules/@types/node/events.d.ts +0 -931
  338. package/daemon/node_modules/@types/node/fs/promises.d.ts +0 -1248
  339. package/daemon/node_modules/@types/node/fs.d.ts +0 -4362
  340. package/daemon/node_modules/@types/node/globals.d.ts +0 -170
  341. package/daemon/node_modules/@types/node/globals.typedarray.d.ts +0 -21
  342. package/daemon/node_modules/@types/node/http.d.ts +0 -2031
  343. package/daemon/node_modules/@types/node/http2.d.ts +0 -2623
  344. package/daemon/node_modules/@types/node/https.d.ts +0 -549
  345. package/daemon/node_modules/@types/node/index.d.ts +0 -93
  346. package/daemon/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  347. package/daemon/node_modules/@types/node/module.d.ts +0 -539
  348. package/daemon/node_modules/@types/node/net.d.ts +0 -1011
  349. package/daemon/node_modules/@types/node/os.d.ts +0 -495
  350. package/daemon/node_modules/@types/node/package.json +0 -140
  351. package/daemon/node_modules/@types/node/path.d.ts +0 -200
  352. package/daemon/node_modules/@types/node/perf_hooks.d.ts +0 -963
  353. package/daemon/node_modules/@types/node/process.d.ts +0 -1956
  354. package/daemon/node_modules/@types/node/punycode.d.ts +0 -117
  355. package/daemon/node_modules/@types/node/querystring.d.ts +0 -152
  356. package/daemon/node_modules/@types/node/readline/promises.d.ts +0 -162
  357. package/daemon/node_modules/@types/node/readline.d.ts +0 -589
  358. package/daemon/node_modules/@types/node/repl.d.ts +0 -430
  359. package/daemon/node_modules/@types/node/sea.d.ts +0 -153
  360. package/daemon/node_modules/@types/node/stream/consumers.d.ts +0 -38
  361. package/daemon/node_modules/@types/node/stream/promises.d.ts +0 -90
  362. package/daemon/node_modules/@types/node/stream/web.d.ts +0 -533
  363. package/daemon/node_modules/@types/node/stream.d.ts +0 -1668
  364. package/daemon/node_modules/@types/node/string_decoder.d.ts +0 -67
  365. package/daemon/node_modules/@types/node/test.d.ts +0 -1807
  366. package/daemon/node_modules/@types/node/timers/promises.d.ts +0 -108
  367. package/daemon/node_modules/@types/node/timers.d.ts +0 -286
  368. package/daemon/node_modules/@types/node/tls.d.ts +0 -1231
  369. package/daemon/node_modules/@types/node/trace_events.d.ts +0 -197
  370. package/daemon/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
  371. package/daemon/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
  372. package/daemon/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  373. package/daemon/node_modules/@types/node/tty.d.ts +0 -208
  374. package/daemon/node_modules/@types/node/url.d.ts +0 -964
  375. package/daemon/node_modules/@types/node/util.d.ts +0 -2331
  376. package/daemon/node_modules/@types/node/v8.d.ts +0 -808
  377. package/daemon/node_modules/@types/node/vm.d.ts +0 -1030
  378. package/daemon/node_modules/@types/node/wasi.d.ts +0 -181
  379. package/daemon/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  380. package/daemon/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  381. package/daemon/node_modules/@types/node/web-globals/events.d.ts +0 -94
  382. package/daemon/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
  383. package/daemon/node_modules/@types/node/worker_threads.d.ts +0 -743
  384. package/daemon/node_modules/@types/node/zlib.d.ts +0 -539
  385. package/daemon/node_modules/undici-types/README.md +0 -6
  386. package/daemon/node_modules/undici-types/agent.d.ts +0 -31
  387. package/daemon/node_modules/undici-types/api.d.ts +0 -43
  388. package/daemon/node_modules/undici-types/balanced-pool.d.ts +0 -29
  389. package/daemon/node_modules/undici-types/cache.d.ts +0 -36
  390. package/daemon/node_modules/undici-types/client.d.ts +0 -108
  391. package/daemon/node_modules/undici-types/connector.d.ts +0 -34
  392. package/daemon/node_modules/undici-types/content-type.d.ts +0 -21
  393. package/daemon/node_modules/undici-types/cookies.d.ts +0 -28
  394. package/daemon/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  395. package/daemon/node_modules/undici-types/dispatcher.d.ts +0 -256
  396. package/daemon/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  397. package/daemon/node_modules/undici-types/errors.d.ts +0 -149
  398. package/daemon/node_modules/undici-types/eventsource.d.ts +0 -61
  399. package/daemon/node_modules/undici-types/fetch.d.ts +0 -209
  400. package/daemon/node_modules/undici-types/file.d.ts +0 -39
  401. package/daemon/node_modules/undici-types/filereader.d.ts +0 -54
  402. package/daemon/node_modules/undici-types/formdata.d.ts +0 -108
  403. package/daemon/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  404. package/daemon/node_modules/undici-types/global-origin.d.ts +0 -7
  405. package/daemon/node_modules/undici-types/handlers.d.ts +0 -15
  406. package/daemon/node_modules/undici-types/header.d.ts +0 -4
  407. package/daemon/node_modules/undici-types/index.d.ts +0 -71
  408. package/daemon/node_modules/undici-types/interceptors.d.ts +0 -17
  409. package/daemon/node_modules/undici-types/mock-agent.d.ts +0 -50
  410. package/daemon/node_modules/undici-types/mock-client.d.ts +0 -25
  411. package/daemon/node_modules/undici-types/mock-errors.d.ts +0 -12
  412. package/daemon/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  413. package/daemon/node_modules/undici-types/mock-pool.d.ts +0 -25
  414. package/daemon/node_modules/undici-types/package.json +0 -55
  415. package/daemon/node_modules/undici-types/patch.d.ts +0 -33
  416. package/daemon/node_modules/undici-types/pool-stats.d.ts +0 -19
  417. package/daemon/node_modules/undici-types/pool.d.ts +0 -39
  418. package/daemon/node_modules/undici-types/proxy-agent.d.ts +0 -28
  419. package/daemon/node_modules/undici-types/readable.d.ts +0 -65
  420. package/daemon/node_modules/undici-types/retry-agent.d.ts +0 -8
  421. package/daemon/node_modules/undici-types/retry-handler.d.ts +0 -116
  422. package/daemon/node_modules/undici-types/util.d.ts +0 -18
  423. package/daemon/node_modules/undici-types/webidl.d.ts +0 -228
  424. package/daemon/node_modules/undici-types/websocket.d.ts +0 -150
  425. package/visual-editor-proxy/node_modules/@types/node/LICENSE +0 -21
  426. package/visual-editor-proxy/node_modules/@types/node/README.md +0 -15
  427. package/visual-editor-proxy/node_modules/@types/node/assert/strict.d.ts +0 -8
  428. package/visual-editor-proxy/node_modules/@types/node/assert.d.ts +0 -1062
  429. package/visual-editor-proxy/node_modules/@types/node/async_hooks.d.ts +0 -605
  430. package/visual-editor-proxy/node_modules/@types/node/buffer.buffer.d.ts +0 -462
  431. package/visual-editor-proxy/node_modules/@types/node/buffer.d.ts +0 -1932
  432. package/visual-editor-proxy/node_modules/@types/node/child_process.d.ts +0 -1458
  433. package/visual-editor-proxy/node_modules/@types/node/cluster.d.ts +0 -577
  434. package/visual-editor-proxy/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  435. package/visual-editor-proxy/node_modules/@types/node/compatibility/index.d.ts +0 -9
  436. package/visual-editor-proxy/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  437. package/visual-editor-proxy/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  438. package/visual-editor-proxy/node_modules/@types/node/console.d.ts +0 -452
  439. package/visual-editor-proxy/node_modules/@types/node/constants.d.ts +0 -21
  440. package/visual-editor-proxy/node_modules/@types/node/crypto.d.ts +0 -4570
  441. package/visual-editor-proxy/node_modules/@types/node/dgram.d.ts +0 -596
  442. package/visual-editor-proxy/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  443. package/visual-editor-proxy/node_modules/@types/node/dns/promises.d.ts +0 -479
  444. package/visual-editor-proxy/node_modules/@types/node/dns.d.ts +0 -871
  445. package/visual-editor-proxy/node_modules/@types/node/domain.d.ts +0 -170
  446. package/visual-editor-proxy/node_modules/@types/node/events.d.ts +0 -977
  447. package/visual-editor-proxy/node_modules/@types/node/fs/promises.d.ts +0 -1248
  448. package/visual-editor-proxy/node_modules/@types/node/fs.d.ts +0 -4362
  449. package/visual-editor-proxy/node_modules/@types/node/globals.d.ts +0 -172
  450. package/visual-editor-proxy/node_modules/@types/node/globals.typedarray.d.ts +0 -21
  451. package/visual-editor-proxy/node_modules/@types/node/http.d.ts +0 -2030
  452. package/visual-editor-proxy/node_modules/@types/node/http2.d.ts +0 -2624
  453. package/visual-editor-proxy/node_modules/@types/node/https.d.ts +0 -546
  454. package/visual-editor-proxy/node_modules/@types/node/index.d.ts +0 -93
  455. package/visual-editor-proxy/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  456. package/visual-editor-proxy/node_modules/@types/node/module.d.ts +0 -539
  457. package/visual-editor-proxy/node_modules/@types/node/net.d.ts +0 -1011
  458. package/visual-editor-proxy/node_modules/@types/node/os.d.ts +0 -505
  459. package/visual-editor-proxy/node_modules/@types/node/package.json +0 -140
  460. package/visual-editor-proxy/node_modules/@types/node/path.d.ts +0 -200
  461. package/visual-editor-proxy/node_modules/@types/node/perf_hooks.d.ts +0 -961
  462. package/visual-editor-proxy/node_modules/@types/node/process.d.ts +0 -1944
  463. package/visual-editor-proxy/node_modules/@types/node/punycode.d.ts +0 -117
  464. package/visual-editor-proxy/node_modules/@types/node/querystring.d.ts +0 -152
  465. package/visual-editor-proxy/node_modules/@types/node/readline/promises.d.ts +0 -162
  466. package/visual-editor-proxy/node_modules/@types/node/readline.d.ts +0 -589
  467. package/visual-editor-proxy/node_modules/@types/node/repl.d.ts +0 -430
  468. package/visual-editor-proxy/node_modules/@types/node/sea.d.ts +0 -153
  469. package/visual-editor-proxy/node_modules/@types/node/stream/consumers.d.ts +0 -38
  470. package/visual-editor-proxy/node_modules/@types/node/stream/promises.d.ts +0 -90
  471. package/visual-editor-proxy/node_modules/@types/node/stream/web.d.ts +0 -533
  472. package/visual-editor-proxy/node_modules/@types/node/stream.d.ts +0 -1675
  473. package/visual-editor-proxy/node_modules/@types/node/string_decoder.d.ts +0 -67
  474. package/visual-editor-proxy/node_modules/@types/node/test.d.ts +0 -1787
  475. package/visual-editor-proxy/node_modules/@types/node/timers/promises.d.ts +0 -108
  476. package/visual-editor-proxy/node_modules/@types/node/timers.d.ts +0 -286
  477. package/visual-editor-proxy/node_modules/@types/node/tls.d.ts +0 -1231
  478. package/visual-editor-proxy/node_modules/@types/node/trace_events.d.ts +0 -197
  479. package/visual-editor-proxy/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
  480. package/visual-editor-proxy/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
  481. package/visual-editor-proxy/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  482. package/visual-editor-proxy/node_modules/@types/node/tty.d.ts +0 -208
  483. package/visual-editor-proxy/node_modules/@types/node/url.d.ts +0 -964
  484. package/visual-editor-proxy/node_modules/@types/node/util.d.ts +0 -2331
  485. package/visual-editor-proxy/node_modules/@types/node/v8.d.ts +0 -808
  486. package/visual-editor-proxy/node_modules/@types/node/vm.d.ts +0 -1000
  487. package/visual-editor-proxy/node_modules/@types/node/wasi.d.ts +0 -181
  488. package/visual-editor-proxy/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  489. package/visual-editor-proxy/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  490. package/visual-editor-proxy/node_modules/@types/node/web-globals/events.d.ts +0 -97
  491. package/visual-editor-proxy/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
  492. package/visual-editor-proxy/node_modules/@types/node/worker_threads.d.ts +0 -715
  493. package/visual-editor-proxy/node_modules/@types/node/zlib.d.ts +0 -539
  494. package/visual-editor-proxy/node_modules/undici-types/LICENSE +0 -21
  495. package/visual-editor-proxy/node_modules/undici-types/README.md +0 -6
  496. package/visual-editor-proxy/node_modules/undici-types/agent.d.ts +0 -31
  497. package/visual-editor-proxy/node_modules/undici-types/api.d.ts +0 -43
  498. package/visual-editor-proxy/node_modules/undici-types/balanced-pool.d.ts +0 -29
  499. package/visual-editor-proxy/node_modules/undici-types/cache.d.ts +0 -36
  500. package/visual-editor-proxy/node_modules/undici-types/client.d.ts +0 -108
  501. package/visual-editor-proxy/node_modules/undici-types/connector.d.ts +0 -34
  502. package/visual-editor-proxy/node_modules/undici-types/content-type.d.ts +0 -21
  503. package/visual-editor-proxy/node_modules/undici-types/cookies.d.ts +0 -28
  504. package/visual-editor-proxy/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  505. package/visual-editor-proxy/node_modules/undici-types/dispatcher.d.ts +0 -256
  506. package/visual-editor-proxy/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  507. package/visual-editor-proxy/node_modules/undici-types/errors.d.ts +0 -149
  508. package/visual-editor-proxy/node_modules/undici-types/eventsource.d.ts +0 -61
  509. package/visual-editor-proxy/node_modules/undici-types/fetch.d.ts +0 -209
  510. package/visual-editor-proxy/node_modules/undici-types/file.d.ts +0 -39
  511. package/visual-editor-proxy/node_modules/undici-types/filereader.d.ts +0 -54
  512. package/visual-editor-proxy/node_modules/undici-types/formdata.d.ts +0 -108
  513. package/visual-editor-proxy/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  514. package/visual-editor-proxy/node_modules/undici-types/global-origin.d.ts +0 -7
  515. package/visual-editor-proxy/node_modules/undici-types/handlers.d.ts +0 -15
  516. package/visual-editor-proxy/node_modules/undici-types/header.d.ts +0 -4
  517. package/visual-editor-proxy/node_modules/undici-types/index.d.ts +0 -71
  518. package/visual-editor-proxy/node_modules/undici-types/interceptors.d.ts +0 -17
  519. package/visual-editor-proxy/node_modules/undici-types/mock-agent.d.ts +0 -50
  520. package/visual-editor-proxy/node_modules/undici-types/mock-client.d.ts +0 -25
  521. package/visual-editor-proxy/node_modules/undici-types/mock-errors.d.ts +0 -12
  522. package/visual-editor-proxy/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  523. package/visual-editor-proxy/node_modules/undici-types/mock-pool.d.ts +0 -25
  524. package/visual-editor-proxy/node_modules/undici-types/package.json +0 -55
  525. package/visual-editor-proxy/node_modules/undici-types/patch.d.ts +0 -33
  526. package/visual-editor-proxy/node_modules/undici-types/pool-stats.d.ts +0 -19
  527. package/visual-editor-proxy/node_modules/undici-types/pool.d.ts +0 -39
  528. package/visual-editor-proxy/node_modules/undici-types/proxy-agent.d.ts +0 -28
  529. package/visual-editor-proxy/node_modules/undici-types/readable.d.ts +0 -65
  530. package/visual-editor-proxy/node_modules/undici-types/retry-agent.d.ts +0 -8
  531. package/visual-editor-proxy/node_modules/undici-types/retry-handler.d.ts +0 -116
  532. package/visual-editor-proxy/node_modules/undici-types/util.d.ts +0 -18
  533. package/visual-editor-proxy/node_modules/undici-types/webidl.d.ts +0 -228
  534. 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>;