repoburg 1.3.87 → 1.3.91

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