repoburg 1.3.87 → 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 (544) 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/application-state/application-state.controller.js +123 -0
  8. package/backend/dist/src/application-state/application-state.controller.js.map +1 -1
  9. package/backend/dist/src/application-state/dto/set-alibaba-config.dto.js +2 -0
  10. package/backend/dist/src/application-state/dto/set-alibaba-config.dto.js.map +1 -1
  11. package/backend/dist/src/application-state/dto/set-auto-context-fetch-enabled.dto.js +4 -0
  12. package/backend/dist/src/application-state/dto/set-auto-context-fetch-enabled.dto.js.map +1 -1
  13. package/backend/dist/src/application-state/dto/set-auto-send-to-ai-studio-enabled.dto.js +2 -0
  14. package/backend/dist/src/application-state/dto/set-auto-send-to-ai-studio-enabled.dto.js.map +1 -1
  15. package/backend/dist/src/application-state/dto/set-context-token-limit.dto.js +6 -0
  16. package/backend/dist/src/application-state/dto/set-context-token-limit.dto.js.map +1 -1
  17. package/backend/dist/src/application-state/dto/set-execution-strategy.dto.js +6 -0
  18. package/backend/dist/src/application-state/dto/set-execution-strategy.dto.js.map +1 -1
  19. package/backend/dist/src/application-state/dto/set-followup-token-limit.dto.js +5 -0
  20. package/backend/dist/src/application-state/dto/set-followup-token-limit.dto.js.map +1 -1
  21. package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js +4 -0
  22. package/backend/dist/src/application-state/dto/set-history-compression-enabled.dto.js.map +1 -1
  23. package/backend/dist/src/application-state/dto/set-llm-retry-enabled.dto.js +4 -0
  24. package/backend/dist/src/application-state/dto/set-llm-retry-enabled.dto.js.map +1 -1
  25. package/backend/dist/src/application-state/dto/set-llm-retry-max-attempts.dto.js +6 -0
  26. package/backend/dist/src/application-state/dto/set-llm-retry-max-attempts.dto.js.map +1 -1
  27. package/backend/dist/src/application-state/dto/set-manual-llm-enabled.dto.js +4 -0
  28. package/backend/dist/src/application-state/dto/set-manual-llm-enabled.dto.js.map +1 -1
  29. package/backend/dist/src/application-state/dto/set-openrouter-config.dto.js +2 -0
  30. package/backend/dist/src/application-state/dto/set-openrouter-config.dto.js.map +1 -1
  31. package/backend/dist/src/application-state/dto/set-streaming-enabled.dto.js +2 -0
  32. package/backend/dist/src/application-state/dto/set-streaming-enabled.dto.js.map +1 -1
  33. package/backend/dist/src/application-state/dto/set-syntax-validation-enabled.dto.js +4 -0
  34. package/backend/dist/src/application-state/dto/set-syntax-validation-enabled.dto.js.map +1 -1
  35. package/backend/dist/src/application-state/dto/set-theme.dto.js +6 -0
  36. package/backend/dist/src/application-state/dto/set-theme.dto.js.map +1 -1
  37. package/backend/dist/src/application-state/dto/set-tools-enabled.dto.js +4 -0
  38. package/backend/dist/src/application-state/dto/set-tools-enabled.dto.js.map +1 -1
  39. package/backend/dist/src/application-state/dto/set-websocket-enabled.dto.js +2 -0
  40. package/backend/dist/src/application-state/dto/set-websocket-enabled.dto.js.map +1 -1
  41. package/backend/dist/src/application-state/dto/set-yolo-mode-message.dto.js +5 -0
  42. package/backend/dist/src/application-state/dto/set-yolo-mode-message.dto.js.map +1 -1
  43. package/backend/dist/src/application-state/dto/set-yolo-mode.dto.js +4 -0
  44. package/backend/dist/src/application-state/dto/set-yolo-mode.dto.js.map +1 -1
  45. package/backend/dist/src/application-state/dto/set-zai-config.dto.js +2 -0
  46. package/backend/dist/src/application-state/dto/set-zai-config.dto.js.map +1 -1
  47. package/backend/dist/src/context-snippets/context-snippets.controller.js +38 -0
  48. package/backend/dist/src/context-snippets/context-snippets.controller.js.map +1 -1
  49. package/backend/dist/src/context-templates/context-templates.controller.js +104 -0
  50. package/backend/dist/src/context-templates/context-templates.controller.js.map +1 -1
  51. package/backend/dist/src/context-templates/dto/context-template.dto.d.ts +1 -1
  52. package/backend/dist/src/context-templates/dto/context-template.dto.js +44 -1
  53. package/backend/dist/src/context-templates/dto/context-template.dto.js.map +1 -1
  54. package/backend/dist/src/core-entities/ai-action.entity.js +73 -0
  55. package/backend/dist/src/core-entities/ai-action.entity.js.map +1 -1
  56. package/backend/dist/src/core-entities/base.entity.js +18 -0
  57. package/backend/dist/src/core-entities/base.entity.js.map +1 -1
  58. package/backend/dist/src/core-entities/context-snippet.entity.js +12 -0
  59. package/backend/dist/src/core-entities/context-snippet.entity.js.map +1 -1
  60. package/backend/dist/src/core-entities/context-template.entity.d.ts +2 -4
  61. package/backend/dist/src/core-entities/context-template.entity.js +50 -7
  62. package/backend/dist/src/core-entities/context-template.entity.js.map +1 -1
  63. package/backend/dist/src/core-entities/custom-snippet.entity.js +16 -0
  64. package/backend/dist/src/core-entities/custom-snippet.entity.js.map +1 -1
  65. package/backend/dist/src/core-entities/custom-variable.entity.js +24 -0
  66. package/backend/dist/src/core-entities/custom-variable.entity.js.map +1 -1
  67. package/backend/dist/src/core-entities/enums.d.ts +64 -0
  68. package/backend/dist/src/core-entities/enums.js +77 -0
  69. package/backend/dist/src/core-entities/enums.js.map +1 -0
  70. package/backend/dist/src/core-entities/execution-log.entity.js +15 -0
  71. package/backend/dist/src/core-entities/execution-log.entity.js.map +1 -1
  72. package/backend/dist/src/core-entities/index.d.ts +1 -2
  73. package/backend/dist/src/core-entities/index.js +1 -2
  74. package/backend/dist/src/core-entities/index.js.map +1 -1
  75. package/backend/dist/src/core-entities/llm-call-log.entity.js +43 -0
  76. package/backend/dist/src/core-entities/llm-call-log.entity.js.map +1 -1
  77. package/backend/dist/src/core-entities/mcp-config.entity.js +27 -0
  78. package/backend/dist/src/core-entities/mcp-config.entity.js.map +1 -1
  79. package/backend/dist/src/core-entities/mcp-tool.entity.js +26 -0
  80. package/backend/dist/src/core-entities/mcp-tool.entity.js.map +1 -1
  81. package/backend/dist/src/core-entities/project.entity.js +13 -0
  82. package/backend/dist/src/core-entities/project.entity.js.map +1 -1
  83. package/backend/dist/src/core-entities/session-input.entity.js +94 -0
  84. package/backend/dist/src/core-entities/session-input.entity.js.map +1 -1
  85. package/backend/dist/src/core-entities/session.entity.d.ts +1 -1
  86. package/backend/dist/src/core-entities/session.entity.js +96 -1
  87. package/backend/dist/src/core-entities/session.entity.js.map +1 -1
  88. package/backend/dist/src/core-entities/system-prompt.entity.js +29 -0
  89. package/backend/dist/src/core-entities/system-prompt.entity.js.map +1 -1
  90. package/backend/dist/src/core-entities/tool-hook.entity.js +21 -0
  91. package/backend/dist/src/core-entities/tool-hook.entity.js.map +1 -1
  92. package/backend/dist/src/custom-snippets/custom-snippets.controller.js +48 -0
  93. package/backend/dist/src/custom-snippets/custom-snippets.controller.js.map +1 -1
  94. package/backend/dist/src/custom-variables/custom-variables.controller.js +46 -0
  95. package/backend/dist/src/custom-variables/custom-variables.controller.js.map +1 -1
  96. package/backend/dist/src/global-config/global-config.controller.js +12 -0
  97. package/backend/dist/src/global-config/global-config.controller.js.map +1 -1
  98. package/backend/dist/src/interactive-chat/streaming.controller.js +38 -0
  99. package/backend/dist/src/interactive-chat/streaming.controller.js.map +1 -1
  100. package/backend/dist/src/llm-call-logs/llm-call-logs.controller.js +96 -0
  101. package/backend/dist/src/llm-call-logs/llm-call-logs.controller.js.map +1 -1
  102. package/backend/dist/src/llm-provider/llm-provider.controller.js +18 -0
  103. package/backend/dist/src/llm-provider/llm-provider.controller.js.map +1 -1
  104. package/backend/dist/src/llm-provider/zai-llm.provider.js +0 -1
  105. package/backend/dist/src/llm-provider/zai-llm.provider.js.map +1 -1
  106. package/backend/dist/src/llm-responses/dto/submit-llm-response.dto.js +45 -0
  107. package/backend/dist/src/llm-responses/dto/submit-llm-response.dto.js.map +1 -1
  108. package/backend/dist/src/llm-responses/dto/sync-conversation.dto.js +24 -0
  109. package/backend/dist/src/llm-responses/dto/sync-conversation.dto.js.map +1 -1
  110. package/backend/dist/src/llm-responses/llm-responses.controller.js +32 -0
  111. package/backend/dist/src/llm-responses/llm-responses.controller.js.map +1 -1
  112. package/backend/dist/src/main.js +9 -0
  113. package/backend/dist/src/main.js.map +1 -1
  114. package/backend/dist/src/mcp/dto/batch-update-mcp-tools.dto.js +8 -0
  115. package/backend/dist/src/mcp/dto/batch-update-mcp-tools.dto.js.map +1 -1
  116. package/backend/dist/src/mcp/dto/create-mcp-config.dto.js +5 -0
  117. package/backend/dist/src/mcp/dto/create-mcp-config.dto.js.map +1 -1
  118. package/backend/dist/src/mcp/dto/update-mcp-config.dto.js +2 -0
  119. package/backend/dist/src/mcp/dto/update-mcp-config.dto.js.map +1 -1
  120. package/backend/dist/src/mcp/mcp.controller.js +21 -0
  121. package/backend/dist/src/mcp/mcp.controller.js.map +1 -1
  122. package/backend/dist/src/projects/dto/project.dto.js +14 -0
  123. package/backend/dist/src/projects/dto/project.dto.js.map +1 -1
  124. package/backend/dist/src/projects/projects.controller.js +31 -0
  125. package/backend/dist/src/projects/projects.controller.js.map +1 -1
  126. package/backend/dist/src/session-inputs/dto/session-input.dto.d.ts +12 -1
  127. package/backend/dist/src/session-inputs/dto/session-input.dto.js +103 -1
  128. package/backend/dist/src/session-inputs/dto/session-input.dto.js.map +1 -1
  129. package/backend/dist/src/session-inputs/session-input.subscriber.js.map +1 -1
  130. package/backend/dist/src/session-inputs/session-inputs.controller.d.ts +2 -1
  131. package/backend/dist/src/session-inputs/session-inputs.controller.js +84 -0
  132. package/backend/dist/src/session-inputs/session-inputs.controller.js.map +1 -1
  133. package/backend/dist/src/session-inputs/session-inputs.module.js +1 -0
  134. package/backend/dist/src/session-inputs/session-inputs.module.js.map +1 -1
  135. package/backend/dist/src/session-inputs/session-inputs.service.d.ts +7 -3
  136. package/backend/dist/src/session-inputs/session-inputs.service.js +51 -4
  137. package/backend/dist/src/session-inputs/session-inputs.service.js.map +1 -1
  138. package/backend/dist/src/sessions/dto/session.dto.js +91 -0
  139. package/backend/dist/src/sessions/dto/session.dto.js.map +1 -1
  140. package/backend/dist/src/sessions/sessions.controller.js +112 -0
  141. package/backend/dist/src/sessions/sessions.controller.js.map +1 -1
  142. package/backend/dist/src/sub-agents/dto/create-sub-agent.dto.js +26 -0
  143. package/backend/dist/src/sub-agents/dto/create-sub-agent.dto.js.map +1 -1
  144. package/backend/dist/src/sub-agents/dto/update-sub-agent.dto.js +22 -0
  145. package/backend/dist/src/sub-agents/dto/update-sub-agent.dto.js.map +1 -1
  146. package/backend/dist/src/sub-agents/sub-agent-run.entity.d.ts +2 -7
  147. package/backend/dist/src/sub-agents/sub-agent-run.entity.js +63 -9
  148. package/backend/dist/src/sub-agents/sub-agent-run.entity.js.map +1 -1
  149. package/backend/dist/src/sub-agents/sub-agent-runs.controller.js +63 -0
  150. package/backend/dist/src/sub-agents/sub-agent-runs.controller.js.map +1 -1
  151. package/backend/dist/src/sub-agents/sub-agent.entity.js +47 -0
  152. package/backend/dist/src/sub-agents/sub-agent.entity.js.map +1 -1
  153. package/backend/dist/src/sub-agents/sub-agents.controller.js +25 -0
  154. package/backend/dist/src/sub-agents/sub-agents.controller.js.map +1 -1
  155. package/backend/dist/src/system-prompts/dto/set-enabled-tools.dto.js +9 -0
  156. package/backend/dist/src/system-prompts/dto/set-enabled-tools.dto.js.map +1 -1
  157. package/backend/dist/src/system-prompts/dto/system-prompt.dto.js +43 -0
  158. package/backend/dist/src/system-prompts/dto/system-prompt.dto.js.map +1 -1
  159. package/backend/dist/src/system-prompts/dto/toggle-tool.dto.js +5 -0
  160. package/backend/dist/src/system-prompts/dto/toggle-tool.dto.js.map +1 -1
  161. package/backend/dist/src/system-prompts/system-prompts.controller.js +80 -0
  162. package/backend/dist/src/system-prompts/system-prompts.controller.js.map +1 -1
  163. package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js +14 -0
  164. package/backend/dist/src/tool-hooks/dto/create-tool-hook.dto.js.map +1 -1
  165. package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js +11 -0
  166. package/backend/dist/src/tool-hooks/dto/update-tool-hook.dto.js.map +1 -1
  167. package/backend/dist/src/tool-hooks/tool-hooks.controller.js +52 -0
  168. package/backend/dist/src/tool-hooks/tool-hooks.controller.js.map +1 -1
  169. package/backend/dist/src/visual-editor/visual-editor.controller.js +15 -0
  170. package/backend/dist/src/visual-editor/visual-editor.controller.js.map +1 -1
  171. package/backend/dist/src/workspace/workspace.controller.js +41 -0
  172. package/backend/dist/src/workspace/workspace.controller.js.map +1 -1
  173. package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
  174. package/{daemon/node_modules/undici-types → backend/node_modules/@eslint/eslintrc}/LICENSE +5 -7
  175. package/backend/node_modules/@eslint/eslintrc/README.md +115 -0
  176. package/backend/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
  177. package/backend/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
  178. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1104 -0
  179. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
  180. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4344 -0
  181. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
  182. package/backend/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +532 -0
  183. package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +523 -0
  184. package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +124 -0
  185. package/backend/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
  186. package/backend/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +238 -0
  187. package/backend/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
  188. package/backend/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +225 -0
  189. package/backend/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1151 -0
  190. package/backend/node_modules/@eslint/eslintrc/lib/flat-compat.js +318 -0
  191. package/backend/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
  192. package/backend/node_modules/@eslint/eslintrc/lib/index.js +56 -0
  193. package/backend/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
  194. package/backend/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
  195. package/backend/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +325 -0
  196. package/backend/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
  197. package/backend/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
  198. package/backend/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +42 -0
  199. package/backend/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
  200. package/backend/node_modules/@eslint/eslintrc/package.json +82 -0
  201. package/backend/node_modules/@eslint/eslintrc/universal.js +9 -0
  202. package/backend/package.json +1 -3
  203. package/daemon/dist/api/system.js +25 -0
  204. package/daemon/dist/daemon.blob +0 -0
  205. package/daemon/dist/index.js +0 -0
  206. package/package.json +3 -1
  207. package/visual-editor-proxy/.repoburg/data.sqlite +0 -0
  208. package/visual-editor-proxy/dist/tsconfig.tsbuildinfo +1 -1
  209. package/backend/node_modules/@types/node/LICENSE +0 -21
  210. package/backend/node_modules/@types/node/README.md +0 -15
  211. package/backend/node_modules/@types/node/assert/strict.d.ts +0 -8
  212. package/backend/node_modules/@types/node/assert.d.ts +0 -1044
  213. package/backend/node_modules/@types/node/async_hooks.d.ts +0 -605
  214. package/backend/node_modules/@types/node/buffer.buffer.d.ts +0 -462
  215. package/backend/node_modules/@types/node/buffer.d.ts +0 -1932
  216. package/backend/node_modules/@types/node/child_process.d.ts +0 -1452
  217. package/backend/node_modules/@types/node/cluster.d.ts +0 -578
  218. package/backend/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  219. package/backend/node_modules/@types/node/compatibility/index.d.ts +0 -9
  220. package/backend/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  221. package/backend/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  222. package/backend/node_modules/@types/node/console.d.ts +0 -452
  223. package/backend/node_modules/@types/node/constants.d.ts +0 -21
  224. package/backend/node_modules/@types/node/crypto.d.ts +0 -4570
  225. package/backend/node_modules/@types/node/dgram.d.ts +0 -596
  226. package/backend/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  227. package/backend/node_modules/@types/node/dns/promises.d.ts +0 -479
  228. package/backend/node_modules/@types/node/dns.d.ts +0 -871
  229. package/backend/node_modules/@types/node/domain.d.ts +0 -170
  230. package/backend/node_modules/@types/node/events.d.ts +0 -931
  231. package/backend/node_modules/@types/node/fs/promises.d.ts +0 -1248
  232. package/backend/node_modules/@types/node/fs.d.ts +0 -4362
  233. package/backend/node_modules/@types/node/globals.d.ts +0 -170
  234. package/backend/node_modules/@types/node/globals.typedarray.d.ts +0 -21
  235. package/backend/node_modules/@types/node/http.d.ts +0 -2031
  236. package/backend/node_modules/@types/node/http2.d.ts +0 -2623
  237. package/backend/node_modules/@types/node/https.d.ts +0 -549
  238. package/backend/node_modules/@types/node/index.d.ts +0 -93
  239. package/backend/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  240. package/backend/node_modules/@types/node/module.d.ts +0 -539
  241. package/backend/node_modules/@types/node/net.d.ts +0 -1011
  242. package/backend/node_modules/@types/node/os.d.ts +0 -495
  243. package/backend/node_modules/@types/node/package.json +0 -140
  244. package/backend/node_modules/@types/node/path.d.ts +0 -200
  245. package/backend/node_modules/@types/node/perf_hooks.d.ts +0 -963
  246. package/backend/node_modules/@types/node/process.d.ts +0 -1956
  247. package/backend/node_modules/@types/node/punycode.d.ts +0 -117
  248. package/backend/node_modules/@types/node/querystring.d.ts +0 -152
  249. package/backend/node_modules/@types/node/readline/promises.d.ts +0 -162
  250. package/backend/node_modules/@types/node/readline.d.ts +0 -589
  251. package/backend/node_modules/@types/node/repl.d.ts +0 -430
  252. package/backend/node_modules/@types/node/sea.d.ts +0 -153
  253. package/backend/node_modules/@types/node/stream/consumers.d.ts +0 -38
  254. package/backend/node_modules/@types/node/stream/promises.d.ts +0 -90
  255. package/backend/node_modules/@types/node/stream/web.d.ts +0 -533
  256. package/backend/node_modules/@types/node/stream.d.ts +0 -1668
  257. package/backend/node_modules/@types/node/string_decoder.d.ts +0 -67
  258. package/backend/node_modules/@types/node/test.d.ts +0 -1807
  259. package/backend/node_modules/@types/node/timers/promises.d.ts +0 -108
  260. package/backend/node_modules/@types/node/timers.d.ts +0 -286
  261. package/backend/node_modules/@types/node/tls.d.ts +0 -1231
  262. package/backend/node_modules/@types/node/trace_events.d.ts +0 -197
  263. package/backend/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
  264. package/backend/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
  265. package/backend/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  266. package/backend/node_modules/@types/node/tty.d.ts +0 -208
  267. package/backend/node_modules/@types/node/url.d.ts +0 -964
  268. package/backend/node_modules/@types/node/util.d.ts +0 -2331
  269. package/backend/node_modules/@types/node/v8.d.ts +0 -808
  270. package/backend/node_modules/@types/node/vm.d.ts +0 -1030
  271. package/backend/node_modules/@types/node/wasi.d.ts +0 -181
  272. package/backend/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  273. package/backend/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  274. package/backend/node_modules/@types/node/web-globals/events.d.ts +0 -94
  275. package/backend/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
  276. package/backend/node_modules/@types/node/worker_threads.d.ts +0 -743
  277. package/backend/node_modules/@types/node/zlib.d.ts +0 -539
  278. package/backend/node_modules/debug/LICENSE +0 -20
  279. package/backend/node_modules/debug/README.md +0 -481
  280. package/backend/node_modules/debug/package.json +0 -64
  281. package/backend/node_modules/debug/src/browser.js +0 -272
  282. package/backend/node_modules/debug/src/common.js +0 -292
  283. package/backend/node_modules/debug/src/index.js +0 -10
  284. package/backend/node_modules/debug/src/node.js +0 -263
  285. package/backend/node_modules/undici-types/LICENSE +0 -21
  286. package/backend/node_modules/undici-types/README.md +0 -6
  287. package/backend/node_modules/undici-types/agent.d.ts +0 -31
  288. package/backend/node_modules/undici-types/api.d.ts +0 -43
  289. package/backend/node_modules/undici-types/balanced-pool.d.ts +0 -29
  290. package/backend/node_modules/undici-types/cache.d.ts +0 -36
  291. package/backend/node_modules/undici-types/client.d.ts +0 -108
  292. package/backend/node_modules/undici-types/connector.d.ts +0 -34
  293. package/backend/node_modules/undici-types/content-type.d.ts +0 -21
  294. package/backend/node_modules/undici-types/cookies.d.ts +0 -28
  295. package/backend/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  296. package/backend/node_modules/undici-types/dispatcher.d.ts +0 -256
  297. package/backend/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  298. package/backend/node_modules/undici-types/errors.d.ts +0 -149
  299. package/backend/node_modules/undici-types/eventsource.d.ts +0 -61
  300. package/backend/node_modules/undici-types/fetch.d.ts +0 -209
  301. package/backend/node_modules/undici-types/file.d.ts +0 -39
  302. package/backend/node_modules/undici-types/filereader.d.ts +0 -54
  303. package/backend/node_modules/undici-types/formdata.d.ts +0 -108
  304. package/backend/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  305. package/backend/node_modules/undici-types/global-origin.d.ts +0 -7
  306. package/backend/node_modules/undici-types/handlers.d.ts +0 -15
  307. package/backend/node_modules/undici-types/header.d.ts +0 -4
  308. package/backend/node_modules/undici-types/index.d.ts +0 -71
  309. package/backend/node_modules/undici-types/interceptors.d.ts +0 -17
  310. package/backend/node_modules/undici-types/mock-agent.d.ts +0 -50
  311. package/backend/node_modules/undici-types/mock-client.d.ts +0 -25
  312. package/backend/node_modules/undici-types/mock-errors.d.ts +0 -12
  313. package/backend/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  314. package/backend/node_modules/undici-types/mock-pool.d.ts +0 -25
  315. package/backend/node_modules/undici-types/package.json +0 -55
  316. package/backend/node_modules/undici-types/patch.d.ts +0 -33
  317. package/backend/node_modules/undici-types/pool-stats.d.ts +0 -19
  318. package/backend/node_modules/undici-types/pool.d.ts +0 -39
  319. package/backend/node_modules/undici-types/proxy-agent.d.ts +0 -28
  320. package/backend/node_modules/undici-types/readable.d.ts +0 -65
  321. package/backend/node_modules/undici-types/retry-agent.d.ts +0 -8
  322. package/backend/node_modules/undici-types/retry-handler.d.ts +0 -116
  323. package/backend/node_modules/undici-types/util.d.ts +0 -18
  324. package/backend/node_modules/undici-types/webidl.d.ts +0 -228
  325. package/backend/node_modules/undici-types/websocket.d.ts +0 -150
  326. package/daemon/node_modules/@types/node/LICENSE +0 -21
  327. package/daemon/node_modules/@types/node/README.md +0 -15
  328. package/daemon/node_modules/@types/node/assert/strict.d.ts +0 -8
  329. package/daemon/node_modules/@types/node/assert.d.ts +0 -1044
  330. package/daemon/node_modules/@types/node/async_hooks.d.ts +0 -605
  331. package/daemon/node_modules/@types/node/buffer.buffer.d.ts +0 -462
  332. package/daemon/node_modules/@types/node/buffer.d.ts +0 -1932
  333. package/daemon/node_modules/@types/node/child_process.d.ts +0 -1452
  334. package/daemon/node_modules/@types/node/cluster.d.ts +0 -578
  335. package/daemon/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  336. package/daemon/node_modules/@types/node/compatibility/index.d.ts +0 -9
  337. package/daemon/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  338. package/daemon/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  339. package/daemon/node_modules/@types/node/console.d.ts +0 -452
  340. package/daemon/node_modules/@types/node/constants.d.ts +0 -21
  341. package/daemon/node_modules/@types/node/crypto.d.ts +0 -4570
  342. package/daemon/node_modules/@types/node/dgram.d.ts +0 -596
  343. package/daemon/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  344. package/daemon/node_modules/@types/node/dns/promises.d.ts +0 -479
  345. package/daemon/node_modules/@types/node/dns.d.ts +0 -871
  346. package/daemon/node_modules/@types/node/domain.d.ts +0 -170
  347. package/daemon/node_modules/@types/node/events.d.ts +0 -931
  348. package/daemon/node_modules/@types/node/fs/promises.d.ts +0 -1248
  349. package/daemon/node_modules/@types/node/fs.d.ts +0 -4362
  350. package/daemon/node_modules/@types/node/globals.d.ts +0 -170
  351. package/daemon/node_modules/@types/node/globals.typedarray.d.ts +0 -21
  352. package/daemon/node_modules/@types/node/http.d.ts +0 -2031
  353. package/daemon/node_modules/@types/node/http2.d.ts +0 -2623
  354. package/daemon/node_modules/@types/node/https.d.ts +0 -549
  355. package/daemon/node_modules/@types/node/index.d.ts +0 -93
  356. package/daemon/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  357. package/daemon/node_modules/@types/node/module.d.ts +0 -539
  358. package/daemon/node_modules/@types/node/net.d.ts +0 -1011
  359. package/daemon/node_modules/@types/node/os.d.ts +0 -495
  360. package/daemon/node_modules/@types/node/package.json +0 -140
  361. package/daemon/node_modules/@types/node/path.d.ts +0 -200
  362. package/daemon/node_modules/@types/node/perf_hooks.d.ts +0 -963
  363. package/daemon/node_modules/@types/node/process.d.ts +0 -1956
  364. package/daemon/node_modules/@types/node/punycode.d.ts +0 -117
  365. package/daemon/node_modules/@types/node/querystring.d.ts +0 -152
  366. package/daemon/node_modules/@types/node/readline/promises.d.ts +0 -162
  367. package/daemon/node_modules/@types/node/readline.d.ts +0 -589
  368. package/daemon/node_modules/@types/node/repl.d.ts +0 -430
  369. package/daemon/node_modules/@types/node/sea.d.ts +0 -153
  370. package/daemon/node_modules/@types/node/stream/consumers.d.ts +0 -38
  371. package/daemon/node_modules/@types/node/stream/promises.d.ts +0 -90
  372. package/daemon/node_modules/@types/node/stream/web.d.ts +0 -533
  373. package/daemon/node_modules/@types/node/stream.d.ts +0 -1668
  374. package/daemon/node_modules/@types/node/string_decoder.d.ts +0 -67
  375. package/daemon/node_modules/@types/node/test.d.ts +0 -1807
  376. package/daemon/node_modules/@types/node/timers/promises.d.ts +0 -108
  377. package/daemon/node_modules/@types/node/timers.d.ts +0 -286
  378. package/daemon/node_modules/@types/node/tls.d.ts +0 -1231
  379. package/daemon/node_modules/@types/node/trace_events.d.ts +0 -197
  380. package/daemon/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
  381. package/daemon/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
  382. package/daemon/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  383. package/daemon/node_modules/@types/node/tty.d.ts +0 -208
  384. package/daemon/node_modules/@types/node/url.d.ts +0 -964
  385. package/daemon/node_modules/@types/node/util.d.ts +0 -2331
  386. package/daemon/node_modules/@types/node/v8.d.ts +0 -808
  387. package/daemon/node_modules/@types/node/vm.d.ts +0 -1030
  388. package/daemon/node_modules/@types/node/wasi.d.ts +0 -181
  389. package/daemon/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  390. package/daemon/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  391. package/daemon/node_modules/@types/node/web-globals/events.d.ts +0 -94
  392. package/daemon/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
  393. package/daemon/node_modules/@types/node/worker_threads.d.ts +0 -743
  394. package/daemon/node_modules/@types/node/zlib.d.ts +0 -539
  395. package/daemon/node_modules/undici-types/README.md +0 -6
  396. package/daemon/node_modules/undici-types/agent.d.ts +0 -31
  397. package/daemon/node_modules/undici-types/api.d.ts +0 -43
  398. package/daemon/node_modules/undici-types/balanced-pool.d.ts +0 -29
  399. package/daemon/node_modules/undici-types/cache.d.ts +0 -36
  400. package/daemon/node_modules/undici-types/client.d.ts +0 -108
  401. package/daemon/node_modules/undici-types/connector.d.ts +0 -34
  402. package/daemon/node_modules/undici-types/content-type.d.ts +0 -21
  403. package/daemon/node_modules/undici-types/cookies.d.ts +0 -28
  404. package/daemon/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  405. package/daemon/node_modules/undici-types/dispatcher.d.ts +0 -256
  406. package/daemon/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  407. package/daemon/node_modules/undici-types/errors.d.ts +0 -149
  408. package/daemon/node_modules/undici-types/eventsource.d.ts +0 -61
  409. package/daemon/node_modules/undici-types/fetch.d.ts +0 -209
  410. package/daemon/node_modules/undici-types/file.d.ts +0 -39
  411. package/daemon/node_modules/undici-types/filereader.d.ts +0 -54
  412. package/daemon/node_modules/undici-types/formdata.d.ts +0 -108
  413. package/daemon/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  414. package/daemon/node_modules/undici-types/global-origin.d.ts +0 -7
  415. package/daemon/node_modules/undici-types/handlers.d.ts +0 -15
  416. package/daemon/node_modules/undici-types/header.d.ts +0 -4
  417. package/daemon/node_modules/undici-types/index.d.ts +0 -71
  418. package/daemon/node_modules/undici-types/interceptors.d.ts +0 -17
  419. package/daemon/node_modules/undici-types/mock-agent.d.ts +0 -50
  420. package/daemon/node_modules/undici-types/mock-client.d.ts +0 -25
  421. package/daemon/node_modules/undici-types/mock-errors.d.ts +0 -12
  422. package/daemon/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  423. package/daemon/node_modules/undici-types/mock-pool.d.ts +0 -25
  424. package/daemon/node_modules/undici-types/package.json +0 -55
  425. package/daemon/node_modules/undici-types/patch.d.ts +0 -33
  426. package/daemon/node_modules/undici-types/pool-stats.d.ts +0 -19
  427. package/daemon/node_modules/undici-types/pool.d.ts +0 -39
  428. package/daemon/node_modules/undici-types/proxy-agent.d.ts +0 -28
  429. package/daemon/node_modules/undici-types/readable.d.ts +0 -65
  430. package/daemon/node_modules/undici-types/retry-agent.d.ts +0 -8
  431. package/daemon/node_modules/undici-types/retry-handler.d.ts +0 -116
  432. package/daemon/node_modules/undici-types/util.d.ts +0 -18
  433. package/daemon/node_modules/undici-types/webidl.d.ts +0 -228
  434. package/daemon/node_modules/undici-types/websocket.d.ts +0 -150
  435. package/visual-editor-proxy/node_modules/@types/node/LICENSE +0 -21
  436. package/visual-editor-proxy/node_modules/@types/node/README.md +0 -15
  437. package/visual-editor-proxy/node_modules/@types/node/assert/strict.d.ts +0 -8
  438. package/visual-editor-proxy/node_modules/@types/node/assert.d.ts +0 -1062
  439. package/visual-editor-proxy/node_modules/@types/node/async_hooks.d.ts +0 -605
  440. package/visual-editor-proxy/node_modules/@types/node/buffer.buffer.d.ts +0 -462
  441. package/visual-editor-proxy/node_modules/@types/node/buffer.d.ts +0 -1932
  442. package/visual-editor-proxy/node_modules/@types/node/child_process.d.ts +0 -1458
  443. package/visual-editor-proxy/node_modules/@types/node/cluster.d.ts +0 -577
  444. package/visual-editor-proxy/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  445. package/visual-editor-proxy/node_modules/@types/node/compatibility/index.d.ts +0 -9
  446. package/visual-editor-proxy/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  447. package/visual-editor-proxy/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  448. package/visual-editor-proxy/node_modules/@types/node/console.d.ts +0 -452
  449. package/visual-editor-proxy/node_modules/@types/node/constants.d.ts +0 -21
  450. package/visual-editor-proxy/node_modules/@types/node/crypto.d.ts +0 -4570
  451. package/visual-editor-proxy/node_modules/@types/node/dgram.d.ts +0 -596
  452. package/visual-editor-proxy/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  453. package/visual-editor-proxy/node_modules/@types/node/dns/promises.d.ts +0 -479
  454. package/visual-editor-proxy/node_modules/@types/node/dns.d.ts +0 -871
  455. package/visual-editor-proxy/node_modules/@types/node/domain.d.ts +0 -170
  456. package/visual-editor-proxy/node_modules/@types/node/events.d.ts +0 -977
  457. package/visual-editor-proxy/node_modules/@types/node/fs/promises.d.ts +0 -1248
  458. package/visual-editor-proxy/node_modules/@types/node/fs.d.ts +0 -4362
  459. package/visual-editor-proxy/node_modules/@types/node/globals.d.ts +0 -172
  460. package/visual-editor-proxy/node_modules/@types/node/globals.typedarray.d.ts +0 -21
  461. package/visual-editor-proxy/node_modules/@types/node/http.d.ts +0 -2030
  462. package/visual-editor-proxy/node_modules/@types/node/http2.d.ts +0 -2624
  463. package/visual-editor-proxy/node_modules/@types/node/https.d.ts +0 -546
  464. package/visual-editor-proxy/node_modules/@types/node/index.d.ts +0 -93
  465. package/visual-editor-proxy/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  466. package/visual-editor-proxy/node_modules/@types/node/module.d.ts +0 -539
  467. package/visual-editor-proxy/node_modules/@types/node/net.d.ts +0 -1011
  468. package/visual-editor-proxy/node_modules/@types/node/os.d.ts +0 -505
  469. package/visual-editor-proxy/node_modules/@types/node/package.json +0 -140
  470. package/visual-editor-proxy/node_modules/@types/node/path.d.ts +0 -200
  471. package/visual-editor-proxy/node_modules/@types/node/perf_hooks.d.ts +0 -961
  472. package/visual-editor-proxy/node_modules/@types/node/process.d.ts +0 -1944
  473. package/visual-editor-proxy/node_modules/@types/node/punycode.d.ts +0 -117
  474. package/visual-editor-proxy/node_modules/@types/node/querystring.d.ts +0 -152
  475. package/visual-editor-proxy/node_modules/@types/node/readline/promises.d.ts +0 -162
  476. package/visual-editor-proxy/node_modules/@types/node/readline.d.ts +0 -589
  477. package/visual-editor-proxy/node_modules/@types/node/repl.d.ts +0 -430
  478. package/visual-editor-proxy/node_modules/@types/node/sea.d.ts +0 -153
  479. package/visual-editor-proxy/node_modules/@types/node/stream/consumers.d.ts +0 -38
  480. package/visual-editor-proxy/node_modules/@types/node/stream/promises.d.ts +0 -90
  481. package/visual-editor-proxy/node_modules/@types/node/stream/web.d.ts +0 -533
  482. package/visual-editor-proxy/node_modules/@types/node/stream.d.ts +0 -1675
  483. package/visual-editor-proxy/node_modules/@types/node/string_decoder.d.ts +0 -67
  484. package/visual-editor-proxy/node_modules/@types/node/test.d.ts +0 -1787
  485. package/visual-editor-proxy/node_modules/@types/node/timers/promises.d.ts +0 -108
  486. package/visual-editor-proxy/node_modules/@types/node/timers.d.ts +0 -286
  487. package/visual-editor-proxy/node_modules/@types/node/tls.d.ts +0 -1231
  488. package/visual-editor-proxy/node_modules/@types/node/trace_events.d.ts +0 -197
  489. package/visual-editor-proxy/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -460
  490. package/visual-editor-proxy/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -19
  491. package/visual-editor-proxy/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  492. package/visual-editor-proxy/node_modules/@types/node/tty.d.ts +0 -208
  493. package/visual-editor-proxy/node_modules/@types/node/url.d.ts +0 -964
  494. package/visual-editor-proxy/node_modules/@types/node/util.d.ts +0 -2331
  495. package/visual-editor-proxy/node_modules/@types/node/v8.d.ts +0 -808
  496. package/visual-editor-proxy/node_modules/@types/node/vm.d.ts +0 -1000
  497. package/visual-editor-proxy/node_modules/@types/node/wasi.d.ts +0 -181
  498. package/visual-editor-proxy/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  499. package/visual-editor-proxy/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  500. package/visual-editor-proxy/node_modules/@types/node/web-globals/events.d.ts +0 -97
  501. package/visual-editor-proxy/node_modules/@types/node/web-globals/fetch.d.ts +0 -46
  502. package/visual-editor-proxy/node_modules/@types/node/worker_threads.d.ts +0 -715
  503. package/visual-editor-proxy/node_modules/@types/node/zlib.d.ts +0 -539
  504. package/visual-editor-proxy/node_modules/undici-types/LICENSE +0 -21
  505. package/visual-editor-proxy/node_modules/undici-types/README.md +0 -6
  506. package/visual-editor-proxy/node_modules/undici-types/agent.d.ts +0 -31
  507. package/visual-editor-proxy/node_modules/undici-types/api.d.ts +0 -43
  508. package/visual-editor-proxy/node_modules/undici-types/balanced-pool.d.ts +0 -29
  509. package/visual-editor-proxy/node_modules/undici-types/cache.d.ts +0 -36
  510. package/visual-editor-proxy/node_modules/undici-types/client.d.ts +0 -108
  511. package/visual-editor-proxy/node_modules/undici-types/connector.d.ts +0 -34
  512. package/visual-editor-proxy/node_modules/undici-types/content-type.d.ts +0 -21
  513. package/visual-editor-proxy/node_modules/undici-types/cookies.d.ts +0 -28
  514. package/visual-editor-proxy/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  515. package/visual-editor-proxy/node_modules/undici-types/dispatcher.d.ts +0 -256
  516. package/visual-editor-proxy/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  517. package/visual-editor-proxy/node_modules/undici-types/errors.d.ts +0 -149
  518. package/visual-editor-proxy/node_modules/undici-types/eventsource.d.ts +0 -61
  519. package/visual-editor-proxy/node_modules/undici-types/fetch.d.ts +0 -209
  520. package/visual-editor-proxy/node_modules/undici-types/file.d.ts +0 -39
  521. package/visual-editor-proxy/node_modules/undici-types/filereader.d.ts +0 -54
  522. package/visual-editor-proxy/node_modules/undici-types/formdata.d.ts +0 -108
  523. package/visual-editor-proxy/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  524. package/visual-editor-proxy/node_modules/undici-types/global-origin.d.ts +0 -7
  525. package/visual-editor-proxy/node_modules/undici-types/handlers.d.ts +0 -15
  526. package/visual-editor-proxy/node_modules/undici-types/header.d.ts +0 -4
  527. package/visual-editor-proxy/node_modules/undici-types/index.d.ts +0 -71
  528. package/visual-editor-proxy/node_modules/undici-types/interceptors.d.ts +0 -17
  529. package/visual-editor-proxy/node_modules/undici-types/mock-agent.d.ts +0 -50
  530. package/visual-editor-proxy/node_modules/undici-types/mock-client.d.ts +0 -25
  531. package/visual-editor-proxy/node_modules/undici-types/mock-errors.d.ts +0 -12
  532. package/visual-editor-proxy/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  533. package/visual-editor-proxy/node_modules/undici-types/mock-pool.d.ts +0 -25
  534. package/visual-editor-proxy/node_modules/undici-types/package.json +0 -55
  535. package/visual-editor-proxy/node_modules/undici-types/patch.d.ts +0 -33
  536. package/visual-editor-proxy/node_modules/undici-types/pool-stats.d.ts +0 -19
  537. package/visual-editor-proxy/node_modules/undici-types/pool.d.ts +0 -39
  538. package/visual-editor-proxy/node_modules/undici-types/proxy-agent.d.ts +0 -28
  539. package/visual-editor-proxy/node_modules/undici-types/readable.d.ts +0 -65
  540. package/visual-editor-proxy/node_modules/undici-types/retry-agent.d.ts +0 -8
  541. package/visual-editor-proxy/node_modules/undici-types/retry-handler.d.ts +0 -116
  542. package/visual-editor-proxy/node_modules/undici-types/util.d.ts +0 -18
  543. package/visual-editor-proxy/node_modules/undici-types/webidl.d.ts +0 -228
  544. package/visual-editor-proxy/node_modules/undici-types/websocket.d.ts +0 -150
@@ -1,90 +0,0 @@
1
- declare module "stream/promises" {
2
- import {
3
- FinishedOptions as _FinishedOptions,
4
- PipelineDestination,
5
- PipelineOptions,
6
- PipelinePromise,
7
- PipelineSource,
8
- PipelineTransform,
9
- } from "node:stream";
10
- interface FinishedOptions extends _FinishedOptions {
11
- /**
12
- * If true, removes the listeners registered by this function before the promise is fulfilled.
13
- * @default false
14
- */
15
- cleanup?: boolean | undefined;
16
- }
17
- function finished(
18
- stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream,
19
- options?: FinishedOptions,
20
- ): Promise<void>;
21
- function pipeline<A extends PipelineSource<any>, B extends PipelineDestination<A, any>>(
22
- source: A,
23
- destination: B,
24
- options?: PipelineOptions,
25
- ): PipelinePromise<B>;
26
- function pipeline<
27
- A extends PipelineSource<any>,
28
- T1 extends PipelineTransform<A, any>,
29
- B extends PipelineDestination<T1, any>,
30
- >(
31
- source: A,
32
- transform1: T1,
33
- destination: B,
34
- options?: PipelineOptions,
35
- ): PipelinePromise<B>;
36
- function pipeline<
37
- A extends PipelineSource<any>,
38
- T1 extends PipelineTransform<A, any>,
39
- T2 extends PipelineTransform<T1, any>,
40
- B extends PipelineDestination<T2, any>,
41
- >(
42
- source: A,
43
- transform1: T1,
44
- transform2: T2,
45
- destination: B,
46
- options?: PipelineOptions,
47
- ): PipelinePromise<B>;
48
- function pipeline<
49
- A extends PipelineSource<any>,
50
- T1 extends PipelineTransform<A, any>,
51
- T2 extends PipelineTransform<T1, any>,
52
- T3 extends PipelineTransform<T2, any>,
53
- B extends PipelineDestination<T3, any>,
54
- >(
55
- source: A,
56
- transform1: T1,
57
- transform2: T2,
58
- transform3: T3,
59
- destination: B,
60
- options?: PipelineOptions,
61
- ): PipelinePromise<B>;
62
- function pipeline<
63
- A extends PipelineSource<any>,
64
- T1 extends PipelineTransform<A, any>,
65
- T2 extends PipelineTransform<T1, any>,
66
- T3 extends PipelineTransform<T2, any>,
67
- T4 extends PipelineTransform<T3, any>,
68
- B extends PipelineDestination<T4, any>,
69
- >(
70
- source: A,
71
- transform1: T1,
72
- transform2: T2,
73
- transform3: T3,
74
- transform4: T4,
75
- destination: B,
76
- options?: PipelineOptions,
77
- ): PipelinePromise<B>;
78
- function pipeline(
79
- streams: ReadonlyArray<NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream>,
80
- options?: PipelineOptions,
81
- ): Promise<void>;
82
- function pipeline(
83
- stream1: NodeJS.ReadableStream,
84
- stream2: NodeJS.ReadWriteStream | NodeJS.WritableStream,
85
- ...streams: Array<NodeJS.ReadWriteStream | NodeJS.WritableStream | PipelineOptions>
86
- ): Promise<void>;
87
- }
88
- declare module "node:stream/promises" {
89
- export * from "stream/promises";
90
- }
@@ -1,533 +0,0 @@
1
- type _ByteLengthQueuingStrategy = typeof globalThis extends { onmessage: any } ? {}
2
- : import("stream/web").ByteLengthQueuingStrategy;
3
- type _CompressionStream = typeof globalThis extends { onmessage: any; ReportingObserver: any } ? {}
4
- : import("stream/web").CompressionStream;
5
- type _CountQueuingStrategy = typeof globalThis extends { onmessage: any } ? {}
6
- : import("stream/web").CountQueuingStrategy;
7
- type _DecompressionStream = typeof globalThis extends { onmessage: any; ReportingObserver: any } ? {}
8
- : import("stream/web").DecompressionStream;
9
- type _QueuingStrategy<T = any> = typeof globalThis extends { onmessage: any } ? {}
10
- : import("stream/web").QueuingStrategy<T>;
11
- type _ReadableByteStreamController = typeof globalThis extends { onmessage: any } ? {}
12
- : import("stream/web").ReadableByteStreamController;
13
- type _ReadableStream<R = any> = typeof globalThis extends { onmessage: any } ? {}
14
- : import("stream/web").ReadableStream<R>;
15
- type _ReadableStreamBYOBReader = typeof globalThis extends { onmessage: any } ? {}
16
- : import("stream/web").ReadableStreamBYOBReader;
17
- type _ReadableStreamBYOBRequest = typeof globalThis extends { onmessage: any } ? {}
18
- : import("stream/web").ReadableStreamBYOBRequest;
19
- type _ReadableStreamDefaultController<R = any> = typeof globalThis extends { onmessage: any } ? {}
20
- : import("stream/web").ReadableStreamDefaultController<R>;
21
- type _ReadableStreamDefaultReader<R = any> = typeof globalThis extends { onmessage: any } ? {}
22
- : import("stream/web").ReadableStreamDefaultReader<R>;
23
- type _TextDecoderStream = typeof globalThis extends { onmessage: any } ? {}
24
- : import("stream/web").TextDecoderStream;
25
- type _TextEncoderStream = typeof globalThis extends { onmessage: any } ? {}
26
- : import("stream/web").TextEncoderStream;
27
- type _TransformStream<I = any, O = any> = typeof globalThis extends { onmessage: any } ? {}
28
- : import("stream/web").TransformStream<I, O>;
29
- type _TransformStreamDefaultController<O = any> = typeof globalThis extends { onmessage: any } ? {}
30
- : import("stream/web").TransformStreamDefaultController<O>;
31
- type _WritableStream<W = any> = typeof globalThis extends { onmessage: any } ? {}
32
- : import("stream/web").WritableStream<W>;
33
- type _WritableStreamDefaultController = typeof globalThis extends { onmessage: any } ? {}
34
- : import("stream/web").WritableStreamDefaultController;
35
- type _WritableStreamDefaultWriter<W = any> = typeof globalThis extends { onmessage: any } ? {}
36
- : import("stream/web").WritableStreamDefaultWriter<W>;
37
-
38
- declare module "stream/web" {
39
- // stub module, pending copy&paste from .d.ts or manual impl
40
- // copy from lib.dom.d.ts
41
- interface ReadableWritablePair<R = any, W = any> {
42
- readable: ReadableStream<R>;
43
- /**
44
- * Provides a convenient, chainable way of piping this readable stream
45
- * through a transform stream (or any other { writable, readable }
46
- * pair). It simply pipes the stream into the writable side of the
47
- * supplied pair, and returns the readable side for further use.
48
- *
49
- * Piping a stream will lock it for the duration of the pipe, preventing
50
- * any other consumer from acquiring a reader.
51
- */
52
- writable: WritableStream<W>;
53
- }
54
- interface StreamPipeOptions {
55
- preventAbort?: boolean;
56
- preventCancel?: boolean;
57
- /**
58
- * Pipes this readable stream to a given writable stream destination.
59
- * The way in which the piping process behaves under various error
60
- * conditions can be customized with a number of passed options. It
61
- * returns a promise that fulfills when the piping process completes
62
- * successfully, or rejects if any errors were encountered.
63
- *
64
- * Piping a stream will lock it for the duration of the pipe, preventing
65
- * any other consumer from acquiring a reader.
66
- *
67
- * Errors and closures of the source and destination streams propagate
68
- * as follows:
69
- *
70
- * An error in this source readable stream will abort destination,
71
- * unless preventAbort is truthy. The returned promise will be rejected
72
- * with the source's error, or with any error that occurs during
73
- * aborting the destination.
74
- *
75
- * An error in destination will cancel this source readable stream,
76
- * unless preventCancel is truthy. The returned promise will be rejected
77
- * with the destination's error, or with any error that occurs during
78
- * canceling the source.
79
- *
80
- * When this source readable stream closes, destination will be closed,
81
- * unless preventClose is truthy. The returned promise will be fulfilled
82
- * once this process completes, unless an error is encountered while
83
- * closing the destination, in which case it will be rejected with that
84
- * error.
85
- *
86
- * If destination starts out closed or closing, this source readable
87
- * stream will be canceled, unless preventCancel is true. The returned
88
- * promise will be rejected with an error indicating piping to a closed
89
- * stream failed, or with any error that occurs during canceling the
90
- * source.
91
- *
92
- * The signal option can be set to an AbortSignal to allow aborting an
93
- * ongoing pipe operation via the corresponding AbortController. In this
94
- * case, this source readable stream will be canceled, and destination
95
- * aborted, unless the respective options preventCancel or preventAbort
96
- * are set.
97
- */
98
- preventClose?: boolean;
99
- signal?: AbortSignal;
100
- }
101
- interface ReadableStreamGenericReader {
102
- readonly closed: Promise<void>;
103
- cancel(reason?: any): Promise<void>;
104
- }
105
- type ReadableStreamController<T> = ReadableStreamDefaultController<T>;
106
- interface ReadableStreamReadValueResult<T> {
107
- done: false;
108
- value: T;
109
- }
110
- interface ReadableStreamReadDoneResult<T> {
111
- done: true;
112
- value?: T;
113
- }
114
- type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
115
- interface ReadableByteStreamControllerCallback {
116
- (controller: ReadableByteStreamController): void | PromiseLike<void>;
117
- }
118
- interface UnderlyingSinkAbortCallback {
119
- (reason?: any): void | PromiseLike<void>;
120
- }
121
- interface UnderlyingSinkCloseCallback {
122
- (): void | PromiseLike<void>;
123
- }
124
- interface UnderlyingSinkStartCallback {
125
- (controller: WritableStreamDefaultController): any;
126
- }
127
- interface UnderlyingSinkWriteCallback<W> {
128
- (chunk: W, controller: WritableStreamDefaultController): void | PromiseLike<void>;
129
- }
130
- interface UnderlyingSourceCancelCallback {
131
- (reason?: any): void | PromiseLike<void>;
132
- }
133
- interface UnderlyingSourcePullCallback<R> {
134
- (controller: ReadableStreamController<R>): void | PromiseLike<void>;
135
- }
136
- interface UnderlyingSourceStartCallback<R> {
137
- (controller: ReadableStreamController<R>): any;
138
- }
139
- interface TransformerFlushCallback<O> {
140
- (controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;
141
- }
142
- interface TransformerStartCallback<O> {
143
- (controller: TransformStreamDefaultController<O>): any;
144
- }
145
- interface TransformerTransformCallback<I, O> {
146
- (chunk: I, controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;
147
- }
148
- interface UnderlyingByteSource {
149
- autoAllocateChunkSize?: number;
150
- cancel?: ReadableStreamErrorCallback;
151
- pull?: ReadableByteStreamControllerCallback;
152
- start?: ReadableByteStreamControllerCallback;
153
- type: "bytes";
154
- }
155
- interface UnderlyingSource<R = any> {
156
- cancel?: UnderlyingSourceCancelCallback;
157
- pull?: UnderlyingSourcePullCallback<R>;
158
- start?: UnderlyingSourceStartCallback<R>;
159
- type?: undefined;
160
- }
161
- interface UnderlyingSink<W = any> {
162
- abort?: UnderlyingSinkAbortCallback;
163
- close?: UnderlyingSinkCloseCallback;
164
- start?: UnderlyingSinkStartCallback;
165
- type?: undefined;
166
- write?: UnderlyingSinkWriteCallback<W>;
167
- }
168
- interface ReadableStreamErrorCallback {
169
- (reason: any): void | PromiseLike<void>;
170
- }
171
- interface ReadableStreamAsyncIterator<T> extends NodeJS.AsyncIterator<T, NodeJS.BuiltinIteratorReturn, unknown> {
172
- [Symbol.asyncIterator](): ReadableStreamAsyncIterator<T>;
173
- }
174
- /** This Streams API interface represents a readable stream of byte data. */
175
- interface ReadableStream<R = any> {
176
- readonly locked: boolean;
177
- cancel(reason?: any): Promise<void>;
178
- getReader(options: { mode: "byob" }): ReadableStreamBYOBReader;
179
- getReader(): ReadableStreamDefaultReader<R>;
180
- getReader(options?: ReadableStreamGetReaderOptions): ReadableStreamReader<R>;
181
- pipeThrough<T>(transform: ReadableWritablePair<T, R>, options?: StreamPipeOptions): ReadableStream<T>;
182
- pipeTo(destination: WritableStream<R>, options?: StreamPipeOptions): Promise<void>;
183
- tee(): [ReadableStream<R>, ReadableStream<R>];
184
- values(options?: { preventCancel?: boolean }): ReadableStreamAsyncIterator<R>;
185
- [Symbol.asyncIterator](): ReadableStreamAsyncIterator<R>;
186
- }
187
- const ReadableStream: {
188
- prototype: ReadableStream;
189
- from<T>(iterable: Iterable<T> | AsyncIterable<T>): ReadableStream<T>;
190
- new(underlyingSource: UnderlyingByteSource, strategy?: QueuingStrategy<Uint8Array>): ReadableStream<Uint8Array>;
191
- new<R = any>(underlyingSource?: UnderlyingSource<R>, strategy?: QueuingStrategy<R>): ReadableStream<R>;
192
- };
193
- type ReadableStreamReaderMode = "byob";
194
- interface ReadableStreamGetReaderOptions {
195
- /**
196
- * Creates a ReadableStreamBYOBReader and locks the stream to the new reader.
197
- *
198
- * This call behaves the same way as the no-argument variant, except that it only works on readable byte streams, i.e. streams which were constructed specifically with the ability to handle "bring your own buffer" reading. The returned BYOB reader provides the ability to directly read individual chunks from the stream via its read() method, into developer-supplied buffers, allowing more precise control over allocation.
199
- */
200
- mode?: ReadableStreamReaderMode;
201
- }
202
- type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;
203
- interface ReadableStreamDefaultReader<R = any> extends ReadableStreamGenericReader {
204
- read(): Promise<ReadableStreamReadResult<R>>;
205
- releaseLock(): void;
206
- }
207
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader) */
208
- interface ReadableStreamBYOBReader extends ReadableStreamGenericReader {
209
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/read) */
210
- read<T extends ArrayBufferView>(
211
- view: T,
212
- options?: {
213
- min?: number;
214
- },
215
- ): Promise<ReadableStreamReadResult<T>>;
216
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/releaseLock) */
217
- releaseLock(): void;
218
- }
219
- const ReadableStreamDefaultReader: {
220
- prototype: ReadableStreamDefaultReader;
221
- new<R = any>(stream: ReadableStream<R>): ReadableStreamDefaultReader<R>;
222
- };
223
- const ReadableStreamBYOBReader: {
224
- prototype: ReadableStreamBYOBReader;
225
- new(stream: ReadableStream): ReadableStreamBYOBReader;
226
- };
227
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest) */
228
- interface ReadableStreamBYOBRequest {
229
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/view) */
230
- readonly view: ArrayBufferView | null;
231
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/respond) */
232
- respond(bytesWritten: number): void;
233
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/respondWithNewView) */
234
- respondWithNewView(view: ArrayBufferView): void;
235
- }
236
- const ReadableStreamBYOBRequest: {
237
- prototype: ReadableStreamBYOBRequest;
238
- new(): ReadableStreamBYOBRequest;
239
- };
240
- interface ReadableByteStreamController {
241
- readonly byobRequest: undefined;
242
- readonly desiredSize: number | null;
243
- close(): void;
244
- enqueue(chunk: ArrayBufferView): void;
245
- error(error?: any): void;
246
- }
247
- const ReadableByteStreamController: {
248
- prototype: ReadableByteStreamController;
249
- new(): ReadableByteStreamController;
250
- };
251
- interface ReadableStreamDefaultController<R = any> {
252
- readonly desiredSize: number | null;
253
- close(): void;
254
- enqueue(chunk?: R): void;
255
- error(e?: any): void;
256
- }
257
- const ReadableStreamDefaultController: {
258
- prototype: ReadableStreamDefaultController;
259
- new(): ReadableStreamDefaultController;
260
- };
261
- interface Transformer<I = any, O = any> {
262
- flush?: TransformerFlushCallback<O>;
263
- readableType?: undefined;
264
- start?: TransformerStartCallback<O>;
265
- transform?: TransformerTransformCallback<I, O>;
266
- writableType?: undefined;
267
- }
268
- interface TransformStream<I = any, O = any> {
269
- readonly readable: ReadableStream<O>;
270
- readonly writable: WritableStream<I>;
271
- }
272
- const TransformStream: {
273
- prototype: TransformStream;
274
- new<I = any, O = any>(
275
- transformer?: Transformer<I, O>,
276
- writableStrategy?: QueuingStrategy<I>,
277
- readableStrategy?: QueuingStrategy<O>,
278
- ): TransformStream<I, O>;
279
- };
280
- interface TransformStreamDefaultController<O = any> {
281
- readonly desiredSize: number | null;
282
- enqueue(chunk?: O): void;
283
- error(reason?: any): void;
284
- terminate(): void;
285
- }
286
- const TransformStreamDefaultController: {
287
- prototype: TransformStreamDefaultController;
288
- new(): TransformStreamDefaultController;
289
- };
290
- /**
291
- * This Streams API interface provides a standard abstraction for writing
292
- * streaming data to a destination, known as a sink. This object comes with
293
- * built-in back pressure and queuing.
294
- */
295
- interface WritableStream<W = any> {
296
- readonly locked: boolean;
297
- abort(reason?: any): Promise<void>;
298
- close(): Promise<void>;
299
- getWriter(): WritableStreamDefaultWriter<W>;
300
- }
301
- const WritableStream: {
302
- prototype: WritableStream;
303
- new<W = any>(underlyingSink?: UnderlyingSink<W>, strategy?: QueuingStrategy<W>): WritableStream<W>;
304
- };
305
- /**
306
- * This Streams API interface is the object returned by
307
- * WritableStream.getWriter() and once created locks the < writer to the
308
- * WritableStream ensuring that no other streams can write to the underlying
309
- * sink.
310
- */
311
- interface WritableStreamDefaultWriter<W = any> {
312
- readonly closed: Promise<void>;
313
- readonly desiredSize: number | null;
314
- readonly ready: Promise<void>;
315
- abort(reason?: any): Promise<void>;
316
- close(): Promise<void>;
317
- releaseLock(): void;
318
- write(chunk?: W): Promise<void>;
319
- }
320
- const WritableStreamDefaultWriter: {
321
- prototype: WritableStreamDefaultWriter;
322
- new<W = any>(stream: WritableStream<W>): WritableStreamDefaultWriter<W>;
323
- };
324
- /**
325
- * This Streams API interface represents a controller allowing control of a
326
- * WritableStream's state. When constructing a WritableStream, the
327
- * underlying sink is given a corresponding WritableStreamDefaultController
328
- * instance to manipulate.
329
- */
330
- interface WritableStreamDefaultController {
331
- error(e?: any): void;
332
- }
333
- const WritableStreamDefaultController: {
334
- prototype: WritableStreamDefaultController;
335
- new(): WritableStreamDefaultController;
336
- };
337
- interface QueuingStrategy<T = any> {
338
- highWaterMark?: number;
339
- size?: QueuingStrategySize<T>;
340
- }
341
- interface QueuingStrategySize<T = any> {
342
- (chunk?: T): number;
343
- }
344
- interface QueuingStrategyInit {
345
- /**
346
- * Creates a new ByteLengthQueuingStrategy with the provided high water
347
- * mark.
348
- *
349
- * Note that the provided high water mark will not be validated ahead of
350
- * time. Instead, if it is negative, NaN, or not a number, the resulting
351
- * ByteLengthQueuingStrategy will cause the corresponding stream
352
- * constructor to throw.
353
- */
354
- highWaterMark: number;
355
- }
356
- /**
357
- * This Streams API interface provides a built-in byte length queuing
358
- * strategy that can be used when constructing streams.
359
- */
360
- interface ByteLengthQueuingStrategy extends QueuingStrategy<ArrayBufferView> {
361
- readonly highWaterMark: number;
362
- readonly size: QueuingStrategySize<ArrayBufferView>;
363
- }
364
- const ByteLengthQueuingStrategy: {
365
- prototype: ByteLengthQueuingStrategy;
366
- new(init: QueuingStrategyInit): ByteLengthQueuingStrategy;
367
- };
368
- /**
369
- * This Streams API interface provides a built-in byte length queuing
370
- * strategy that can be used when constructing streams.
371
- */
372
- interface CountQueuingStrategy extends QueuingStrategy {
373
- readonly highWaterMark: number;
374
- readonly size: QueuingStrategySize;
375
- }
376
- const CountQueuingStrategy: {
377
- prototype: CountQueuingStrategy;
378
- new(init: QueuingStrategyInit): CountQueuingStrategy;
379
- };
380
- interface TextEncoderStream {
381
- /** Returns "utf-8". */
382
- readonly encoding: "utf-8";
383
- readonly readable: ReadableStream<Uint8Array>;
384
- readonly writable: WritableStream<string>;
385
- readonly [Symbol.toStringTag]: string;
386
- }
387
- const TextEncoderStream: {
388
- prototype: TextEncoderStream;
389
- new(): TextEncoderStream;
390
- };
391
- interface TextDecoderOptions {
392
- fatal?: boolean;
393
- ignoreBOM?: boolean;
394
- }
395
- type BufferSource = ArrayBufferView | ArrayBuffer;
396
- interface TextDecoderStream {
397
- /** Returns encoding's name, lower cased. */
398
- readonly encoding: string;
399
- /** Returns `true` if error mode is "fatal", and `false` otherwise. */
400
- readonly fatal: boolean;
401
- /** Returns `true` if ignore BOM flag is set, and `false` otherwise. */
402
- readonly ignoreBOM: boolean;
403
- readonly readable: ReadableStream<string>;
404
- readonly writable: WritableStream<BufferSource>;
405
- readonly [Symbol.toStringTag]: string;
406
- }
407
- const TextDecoderStream: {
408
- prototype: TextDecoderStream;
409
- new(encoding?: string, options?: TextDecoderOptions): TextDecoderStream;
410
- };
411
- interface CompressionStream {
412
- readonly readable: ReadableStream;
413
- readonly writable: WritableStream;
414
- }
415
- const CompressionStream: {
416
- prototype: CompressionStream;
417
- new(format: "deflate" | "deflate-raw" | "gzip"): CompressionStream;
418
- };
419
- interface DecompressionStream {
420
- readonly writable: WritableStream;
421
- readonly readable: ReadableStream;
422
- }
423
- const DecompressionStream: {
424
- prototype: DecompressionStream;
425
- new(format: "deflate" | "deflate-raw" | "gzip"): DecompressionStream;
426
- };
427
-
428
- global {
429
- interface ByteLengthQueuingStrategy extends _ByteLengthQueuingStrategy {}
430
- var ByteLengthQueuingStrategy: typeof globalThis extends { onmessage: any; ByteLengthQueuingStrategy: infer T }
431
- ? T
432
- : typeof import("stream/web").ByteLengthQueuingStrategy;
433
-
434
- interface CompressionStream extends _CompressionStream {}
435
- var CompressionStream: typeof globalThis extends {
436
- onmessage: any;
437
- // CompressionStream, DecompressionStream and ReportingObserver was introduced in the same commit.
438
- // If ReportingObserver check is removed, the type here will form a circular reference in TS5.0+lib.dom.d.ts
439
- ReportingObserver: any;
440
- CompressionStream: infer T;
441
- } ? T
442
- // TS 4.8, 4.9, 5.0
443
- : typeof globalThis extends { onmessage: any; TransformStream: { prototype: infer T } } ? {
444
- prototype: T;
445
- new(format: "deflate" | "deflate-raw" | "gzip"): T;
446
- }
447
- : typeof import("stream/web").CompressionStream;
448
-
449
- interface CountQueuingStrategy extends _CountQueuingStrategy {}
450
- var CountQueuingStrategy: typeof globalThis extends { onmessage: any; CountQueuingStrategy: infer T } ? T
451
- : typeof import("stream/web").CountQueuingStrategy;
452
-
453
- interface DecompressionStream extends _DecompressionStream {}
454
- var DecompressionStream: typeof globalThis extends {
455
- onmessage: any;
456
- // CompressionStream, DecompressionStream and ReportingObserver was introduced in the same commit.
457
- // If ReportingObserver check is removed, the type here will form a circular reference in TS5.0+lib.dom.d.ts
458
- ReportingObserver: any;
459
- DecompressionStream: infer T;
460
- } ? T
461
- // TS 4.8, 4.9, 5.0
462
- : typeof globalThis extends { onmessage: any; TransformStream: { prototype: infer T } } ? {
463
- prototype: T;
464
- new(format: "deflate" | "deflate-raw" | "gzip"): T;
465
- }
466
- : typeof import("stream/web").DecompressionStream;
467
-
468
- interface QueuingStrategy<T = any> extends _QueuingStrategy<T> {}
469
-
470
- interface ReadableByteStreamController extends _ReadableByteStreamController {}
471
- var ReadableByteStreamController: typeof globalThis extends
472
- { onmessage: any; ReadableByteStreamController: infer T } ? T
473
- : typeof import("stream/web").ReadableByteStreamController;
474
-
475
- interface ReadableStream<R = any> extends _ReadableStream<R> {}
476
- var ReadableStream: typeof globalThis extends { onmessage: any; ReadableStream: infer T } ? T
477
- : typeof import("stream/web").ReadableStream;
478
-
479
- interface ReadableStreamBYOBReader extends _ReadableStreamBYOBReader {}
480
- var ReadableStreamBYOBReader: typeof globalThis extends { onmessage: any; ReadableStreamBYOBReader: infer T }
481
- ? T
482
- : typeof import("stream/web").ReadableStreamBYOBReader;
483
-
484
- interface ReadableStreamBYOBRequest extends _ReadableStreamBYOBRequest {}
485
- var ReadableStreamBYOBRequest: typeof globalThis extends { onmessage: any; ReadableStreamBYOBRequest: infer T }
486
- ? T
487
- : typeof import("stream/web").ReadableStreamBYOBRequest;
488
-
489
- interface ReadableStreamDefaultController<R = any> extends _ReadableStreamDefaultController<R> {}
490
- var ReadableStreamDefaultController: typeof globalThis extends
491
- { onmessage: any; ReadableStreamDefaultController: infer T } ? T
492
- : typeof import("stream/web").ReadableStreamDefaultController;
493
-
494
- interface ReadableStreamDefaultReader<R = any> extends _ReadableStreamDefaultReader<R> {}
495
- var ReadableStreamDefaultReader: typeof globalThis extends
496
- { onmessage: any; ReadableStreamDefaultReader: infer T } ? T
497
- : typeof import("stream/web").ReadableStreamDefaultReader;
498
-
499
- interface TextDecoderStream extends _TextDecoderStream {}
500
- var TextDecoderStream: typeof globalThis extends { onmessage: any; TextDecoderStream: infer T } ? T
501
- : typeof import("stream/web").TextDecoderStream;
502
-
503
- interface TextEncoderStream extends _TextEncoderStream {}
504
- var TextEncoderStream: typeof globalThis extends { onmessage: any; TextEncoderStream: infer T } ? T
505
- : typeof import("stream/web").TextEncoderStream;
506
-
507
- interface TransformStream<I = any, O = any> extends _TransformStream<I, O> {}
508
- var TransformStream: typeof globalThis extends { onmessage: any; TransformStream: infer T } ? T
509
- : typeof import("stream/web").TransformStream;
510
-
511
- interface TransformStreamDefaultController<O = any> extends _TransformStreamDefaultController<O> {}
512
- var TransformStreamDefaultController: typeof globalThis extends
513
- { onmessage: any; TransformStreamDefaultController: infer T } ? T
514
- : typeof import("stream/web").TransformStreamDefaultController;
515
-
516
- interface WritableStream<W = any> extends _WritableStream<W> {}
517
- var WritableStream: typeof globalThis extends { onmessage: any; WritableStream: infer T } ? T
518
- : typeof import("stream/web").WritableStream;
519
-
520
- interface WritableStreamDefaultController extends _WritableStreamDefaultController {}
521
- var WritableStreamDefaultController: typeof globalThis extends
522
- { onmessage: any; WritableStreamDefaultController: infer T } ? T
523
- : typeof import("stream/web").WritableStreamDefaultController;
524
-
525
- interface WritableStreamDefaultWriter<W = any> extends _WritableStreamDefaultWriter<W> {}
526
- var WritableStreamDefaultWriter: typeof globalThis extends
527
- { onmessage: any; WritableStreamDefaultWriter: infer T } ? T
528
- : typeof import("stream/web").WritableStreamDefaultWriter;
529
- }
530
- }
531
- declare module "node:stream/web" {
532
- export * from "stream/web";
533
- }