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,197 +0,0 @@
1
- /**
2
- * The `node:trace_events` module provides a mechanism to centralize tracing information
3
- * generated by V8, Node.js core, and userspace code.
4
- *
5
- * Tracing can be enabled with the `--trace-event-categories` command-line flag
6
- * or by using the `trace_events` module. The `--trace-event-categories` flag
7
- * accepts a list of comma-separated category names.
8
- *
9
- * The available categories are:
10
- *
11
- * * `node`: An empty placeholder.
12
- * * `node.async_hooks`: Enables capture of detailed [`async_hooks`](https://nodejs.org/docs/latest-v20.x/api/async_hooks.html) trace data.
13
- * The [`async_hooks`](https://nodejs.org/docs/latest-v20.x/api/async_hooks.html) events have a unique `asyncId` and a special `triggerId` `triggerAsyncId` property.
14
- * * `node.bootstrap`: Enables capture of Node.js bootstrap milestones.
15
- * * `node.console`: Enables capture of `console.time()` and `console.count()` output.
16
- * * `node.threadpoolwork.sync`: Enables capture of trace data for threadpool synchronous operations, such as `blob`, `zlib`, `crypto` and `node_api`.
17
- * * `node.threadpoolwork.async`: Enables capture of trace data for threadpool asynchronous operations, such as `blob`, `zlib`, `crypto` and `node_api`.
18
- * * `node.dns.native`: Enables capture of trace data for DNS queries.
19
- * * `node.net.native`: Enables capture of trace data for network.
20
- * * `node.environment`: Enables capture of Node.js Environment milestones.
21
- * * `node.fs.sync`: Enables capture of trace data for file system sync methods.
22
- * * `node.fs_dir.sync`: Enables capture of trace data for file system sync directory methods.
23
- * * `node.fs.async`: Enables capture of trace data for file system async methods.
24
- * * `node.fs_dir.async`: Enables capture of trace data for file system async directory methods.
25
- * * `node.perf`: Enables capture of [Performance API](https://nodejs.org/docs/latest-v20.x/api/perf_hooks.html) measurements.
26
- * * `node.perf.usertiming`: Enables capture of only Performance API User Timing
27
- * measures and marks.
28
- * * `node.perf.timerify`: Enables capture of only Performance API timerify
29
- * measurements.
30
- * * `node.promises.rejections`: Enables capture of trace data tracking the number
31
- * of unhandled Promise rejections and handled-after-rejections.
32
- * * `node.vm.script`: Enables capture of trace data for the `node:vm` module's `runInNewContext()`, `runInContext()`, and `runInThisContext()` methods.
33
- * * `v8`: The [V8](https://nodejs.org/docs/latest-v20.x/api/v8.html) events are GC, compiling, and execution related.
34
- * * `node.http`: Enables capture of trace data for http request / response.
35
- *
36
- * By default the `node`, `node.async_hooks`, and `v8` categories are enabled.
37
- *
38
- * ```bash
39
- * node --trace-event-categories v8,node,node.async_hooks server.js
40
- * ```
41
- *
42
- * Prior versions of Node.js required the use of the `--trace-events-enabled` flag to enable trace events. This requirement has been removed. However, the `--trace-events-enabled` flag _may_ still be
43
- * used and will enable the `node`, `node.async_hooks`, and `v8` trace event categories by default.
44
- *
45
- * ```bash
46
- * node --trace-events-enabled
47
- *
48
- * # is equivalent to
49
- *
50
- * node --trace-event-categories v8,node,node.async_hooks
51
- * ```
52
- *
53
- * Alternatively, trace events may be enabled using the `node:trace_events` module:
54
- *
55
- * ```js
56
- * import trace_events from 'node:trace_events';
57
- * const tracing = trace_events.createTracing({ categories: ['node.perf'] });
58
- * tracing.enable(); // Enable trace event capture for the 'node.perf' category
59
- *
60
- * // do work
61
- *
62
- * tracing.disable(); // Disable trace event capture for the 'node.perf' category
63
- * ```
64
- *
65
- * Running Node.js with tracing enabled will produce log files that can be opened
66
- * in the [`chrome://tracing`](https://www.chromium.org/developers/how-tos/trace-event-profiling-tool) tab of Chrome.
67
- *
68
- * The logging file is by default called `node_trace.${rotation}.log`, where `${rotation}` is an incrementing log-rotation id. The filepath pattern can
69
- * be specified with `--trace-event-file-pattern` that accepts a template
70
- * string that supports `${rotation}` and `${pid}`:
71
- *
72
- * ```bash
73
- * node --trace-event-categories v8 --trace-event-file-pattern '${pid}-${rotation}.log' server.js
74
- * ```
75
- *
76
- * To guarantee that the log file is properly generated after signal events like `SIGINT`, `SIGTERM`, or `SIGBREAK`, make sure to have the appropriate handlers
77
- * in your code, such as:
78
- *
79
- * ```js
80
- * process.on('SIGINT', function onSigint() {
81
- * console.info('Received SIGINT.');
82
- * process.exit(130); // Or applicable exit code depending on OS and signal
83
- * });
84
- * ```
85
- *
86
- * The tracing system uses the same time source
87
- * as the one used by `process.hrtime()`.
88
- * However the trace-event timestamps are expressed in microseconds,
89
- * unlike `process.hrtime()` which returns nanoseconds.
90
- *
91
- * The features from this module are not available in [`Worker`](https://nodejs.org/docs/latest-v20.x/api/worker_threads.html#class-worker) threads.
92
- * @experimental
93
- * @see [source](https://github.com/nodejs/node/blob/v20.13.1/lib/trace_events.js)
94
- */
95
- declare module "trace_events" {
96
- /**
97
- * The `Tracing` object is used to enable or disable tracing for sets of
98
- * categories. Instances are created using the
99
- * `trace_events.createTracing()` method.
100
- *
101
- * When created, the `Tracing` object is disabled. Calling the
102
- * `tracing.enable()` method adds the categories to the set of enabled trace
103
- * event categories. Calling `tracing.disable()` will remove the categories
104
- * from the set of enabled trace event categories.
105
- */
106
- interface Tracing {
107
- /**
108
- * A comma-separated list of the trace event categories covered by this
109
- * `Tracing` object.
110
- * @since v10.0.0
111
- */
112
- readonly categories: string;
113
- /**
114
- * Disables this `Tracing` object.
115
- *
116
- * Only trace event categories _not_ covered by other enabled `Tracing`
117
- * objects and _not_ specified by the `--trace-event-categories` flag
118
- * will be disabled.
119
- *
120
- * ```js
121
- * import trace_events from 'node:trace_events';
122
- * const t1 = trace_events.createTracing({ categories: ['node', 'v8'] });
123
- * const t2 = trace_events.createTracing({ categories: ['node.perf', 'node'] });
124
- * t1.enable();
125
- * t2.enable();
126
- *
127
- * // Prints 'node,node.perf,v8'
128
- * console.log(trace_events.getEnabledCategories());
129
- *
130
- * t2.disable(); // Will only disable emission of the 'node.perf' category
131
- *
132
- * // Prints 'node,v8'
133
- * console.log(trace_events.getEnabledCategories());
134
- * ```
135
- * @since v10.0.0
136
- */
137
- disable(): void;
138
- /**
139
- * Enables this `Tracing` object for the set of categories covered by
140
- * the `Tracing` object.
141
- * @since v10.0.0
142
- */
143
- enable(): void;
144
- /**
145
- * `true` only if the `Tracing` object has been enabled.
146
- * @since v10.0.0
147
- */
148
- readonly enabled: boolean;
149
- }
150
- interface CreateTracingOptions {
151
- /**
152
- * An array of trace category names. Values included in the array are
153
- * coerced to a string when possible. An error will be thrown if the
154
- * value cannot be coerced.
155
- */
156
- categories: string[];
157
- }
158
- /**
159
- * Creates and returns a `Tracing` object for the given set of `categories`.
160
- *
161
- * ```js
162
- * import trace_events from 'node:trace_events';
163
- * const categories = ['node.perf', 'node.async_hooks'];
164
- * const tracing = trace_events.createTracing({ categories });
165
- * tracing.enable();
166
- * // do stuff
167
- * tracing.disable();
168
- * ```
169
- * @since v10.0.0
170
- */
171
- function createTracing(options: CreateTracingOptions): Tracing;
172
- /**
173
- * Returns a comma-separated list of all currently-enabled trace event
174
- * categories. The current set of enabled trace event categories is determined
175
- * by the _union_ of all currently-enabled `Tracing` objects and any categories
176
- * enabled using the `--trace-event-categories` flag.
177
- *
178
- * Given the file `test.js` below, the command `node --trace-event-categories node.perf test.js` will print `'node.async_hooks,node.perf'` to the console.
179
- *
180
- * ```js
181
- * import trace_events from 'node:trace_events';
182
- * const t1 = trace_events.createTracing({ categories: ['node.async_hooks'] });
183
- * const t2 = trace_events.createTracing({ categories: ['node.perf'] });
184
- * const t3 = trace_events.createTracing({ categories: ['v8'] });
185
- *
186
- * t1.enable();
187
- * t2.enable();
188
- *
189
- * console.log(trace_events.getEnabledCategories());
190
- * ```
191
- * @since v10.0.0
192
- */
193
- function getEnabledCategories(): string | undefined;
194
- }
195
- declare module "node:trace_events" {
196
- export * from "trace_events";
197
- }
@@ -1,460 +0,0 @@
1
- declare module "buffer" {
2
- global {
3
- interface BufferConstructor {
4
- // see ../buffer.d.ts for implementation shared with all TypeScript versions
5
-
6
- /**
7
- * Allocates a new buffer containing the given {str}.
8
- *
9
- * @param str String to store in buffer.
10
- * @param encoding encoding to use, optional. Default is 'utf8'
11
- * @deprecated since v10.0.0 - Use `Buffer.from(string[, encoding])` instead.
12
- */
13
- new(str: string, encoding?: BufferEncoding): Buffer;
14
- /**
15
- * Allocates a new buffer of {size} octets.
16
- *
17
- * @param size count of octets to allocate.
18
- * @deprecated since v10.0.0 - Use `Buffer.alloc()` instead (also see `Buffer.allocUnsafe()`).
19
- */
20
- new(size: number): Buffer;
21
- /**
22
- * Allocates a new buffer containing the given {array} of octets.
23
- *
24
- * @param array The octets to store.
25
- * @deprecated since v10.0.0 - Use `Buffer.from(array)` instead.
26
- */
27
- new(array: ArrayLike<number>): Buffer;
28
- /**
29
- * Produces a Buffer backed by the same allocated memory as
30
- * the given {ArrayBuffer}/{SharedArrayBuffer}.
31
- *
32
- * @param arrayBuffer The ArrayBuffer with which to share memory.
33
- * @deprecated since v10.0.0 - Use `Buffer.from(arrayBuffer[, byteOffset[, length]])` instead.
34
- */
35
- new(arrayBuffer: ArrayBuffer | SharedArrayBuffer): Buffer;
36
- /**
37
- * Allocates a new `Buffer` using an `array` of bytes in the range `0` – `255`.
38
- * Array entries outside that range will be truncated to fit into it.
39
- *
40
- * ```js
41
- * import { Buffer } from 'node:buffer';
42
- *
43
- * // Creates a new Buffer containing the UTF-8 bytes of the string 'buffer'.
44
- * const buf = Buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);
45
- * ```
46
- *
47
- * If `array` is an `Array`-like object (that is, one with a `length` property of
48
- * type `number`), it is treated as if it is an array, unless it is a `Buffer` or
49
- * a `Uint8Array`. This means all other `TypedArray` variants get treated as an
50
- * `Array`. To create a `Buffer` from the bytes backing a `TypedArray`, use
51
- * `Buffer.copyBytesFrom()`.
52
- *
53
- * A `TypeError` will be thrown if `array` is not an `Array` or another type
54
- * appropriate for `Buffer.from()` variants.
55
- *
56
- * `Buffer.from(array)` and `Buffer.from(string)` may also use the internal
57
- * `Buffer` pool like `Buffer.allocUnsafe()` does.
58
- * @since v5.10.0
59
- */
60
- from(array: WithImplicitCoercion<ArrayLike<number>>): Buffer;
61
- /**
62
- * This creates a view of the `ArrayBuffer` without copying the underlying
63
- * memory. For example, when passed a reference to the `.buffer` property of a
64
- * `TypedArray` instance, the newly created `Buffer` will share the same
65
- * allocated memory as the `TypedArray`'s underlying `ArrayBuffer`.
66
- *
67
- * ```js
68
- * import { Buffer } from 'node:buffer';
69
- *
70
- * const arr = new Uint16Array(2);
71
- *
72
- * arr[0] = 5000;
73
- * arr[1] = 4000;
74
- *
75
- * // Shares memory with `arr`.
76
- * const buf = Buffer.from(arr.buffer);
77
- *
78
- * console.log(buf);
79
- * // Prints: <Buffer 88 13 a0 0f>
80
- *
81
- * // Changing the original Uint16Array changes the Buffer also.
82
- * arr[1] = 6000;
83
- *
84
- * console.log(buf);
85
- * // Prints: <Buffer 88 13 70 17>
86
- * ```
87
- *
88
- * The optional `byteOffset` and `length` arguments specify a memory range within
89
- * the `arrayBuffer` that will be shared by the `Buffer`.
90
- *
91
- * ```js
92
- * import { Buffer } from 'node:buffer';
93
- *
94
- * const ab = new ArrayBuffer(10);
95
- * const buf = Buffer.from(ab, 0, 2);
96
- *
97
- * console.log(buf.length);
98
- * // Prints: 2
99
- * ```
100
- *
101
- * A `TypeError` will be thrown if `arrayBuffer` is not an `ArrayBuffer` or a
102
- * `SharedArrayBuffer` or another type appropriate for `Buffer.from()`
103
- * variants.
104
- *
105
- * It is important to remember that a backing `ArrayBuffer` can cover a range
106
- * of memory that extends beyond the bounds of a `TypedArray` view. A new
107
- * `Buffer` created using the `buffer` property of a `TypedArray` may extend
108
- * beyond the range of the `TypedArray`:
109
- *
110
- * ```js
111
- * import { Buffer } from 'node:buffer';
112
- *
113
- * const arrA = Uint8Array.from([0x63, 0x64, 0x65, 0x66]); // 4 elements
114
- * const arrB = new Uint8Array(arrA.buffer, 1, 2); // 2 elements
115
- * console.log(arrA.buffer === arrB.buffer); // true
116
- *
117
- * const buf = Buffer.from(arrB.buffer);
118
- * console.log(buf);
119
- * // Prints: <Buffer 63 64 65 66>
120
- * ```
121
- * @since v5.10.0
122
- * @param arrayBuffer An `ArrayBuffer`, `SharedArrayBuffer`, for example the
123
- * `.buffer` property of a `TypedArray`.
124
- * @param byteOffset Index of first byte to expose. **Default:** `0`.
125
- * @param length Number of bytes to expose. **Default:**
126
- * `arrayBuffer.byteLength - byteOffset`.
127
- */
128
- from(
129
- arrayBuffer: WithImplicitCoercion<ArrayBuffer | SharedArrayBuffer>,
130
- byteOffset?: number,
131
- length?: number,
132
- ): Buffer;
133
- /**
134
- * Creates a new `Buffer` containing `string`. The `encoding` parameter identifies
135
- * the character encoding to be used when converting `string` into bytes.
136
- *
137
- * ```js
138
- * import { Buffer } from 'node:buffer';
139
- *
140
- * const buf1 = Buffer.from('this is a tést');
141
- * const buf2 = Buffer.from('7468697320697320612074c3a97374', 'hex');
142
- *
143
- * console.log(buf1.toString());
144
- * // Prints: this is a tést
145
- * console.log(buf2.toString());
146
- * // Prints: this is a tést
147
- * console.log(buf1.toString('latin1'));
148
- * // Prints: this is a tést
149
- * ```
150
- *
151
- * A `TypeError` will be thrown if `string` is not a string or another type
152
- * appropriate for `Buffer.from()` variants.
153
- *
154
- * `Buffer.from(string)` may also use the internal `Buffer` pool like
155
- * `Buffer.allocUnsafe()` does.
156
- * @since v5.10.0
157
- * @param string A string to encode.
158
- * @param encoding The encoding of `string`. **Default:** `'utf8'`.
159
- */
160
- from(string: WithImplicitCoercion<string>, encoding?: BufferEncoding): Buffer;
161
- from(arrayOrString: WithImplicitCoercion<ArrayLike<number> | string>): Buffer;
162
- /**
163
- * Creates a new Buffer using the passed {data}
164
- * @param values to create a new Buffer
165
- */
166
- of(...items: number[]): Buffer;
167
- /**
168
- * Returns a new `Buffer` which is the result of concatenating all the `Buffer` instances in the `list` together.
169
- *
170
- * If the list has no items, or if the `totalLength` is 0, then a new zero-length `Buffer` is returned.
171
- *
172
- * If `totalLength` is not provided, it is calculated from the `Buffer` instances
173
- * in `list` by adding their lengths.
174
- *
175
- * If `totalLength` is provided, it is coerced to an unsigned integer. If the
176
- * combined length of the `Buffer`s in `list` exceeds `totalLength`, the result is
177
- * truncated to `totalLength`.
178
- *
179
- * ```js
180
- * import { Buffer } from 'node:buffer';
181
- *
182
- * // Create a single `Buffer` from a list of three `Buffer` instances.
183
- *
184
- * const buf1 = Buffer.alloc(10);
185
- * const buf2 = Buffer.alloc(14);
186
- * const buf3 = Buffer.alloc(18);
187
- * const totalLength = buf1.length + buf2.length + buf3.length;
188
- *
189
- * console.log(totalLength);
190
- * // Prints: 42
191
- *
192
- * const bufA = Buffer.concat([buf1, buf2, buf3], totalLength);
193
- *
194
- * console.log(bufA);
195
- * // Prints: <Buffer 00 00 00 00 ...>
196
- * console.log(bufA.length);
197
- * // Prints: 42
198
- * ```
199
- *
200
- * `Buffer.concat()` may also use the internal `Buffer` pool like `Buffer.allocUnsafe()` does.
201
- * @since v0.7.11
202
- * @param list List of `Buffer` or {@link Uint8Array} instances to concatenate.
203
- * @param totalLength Total length of the `Buffer` instances in `list` when concatenated.
204
- */
205
- concat(list: readonly Uint8Array[], totalLength?: number): Buffer;
206
- /**
207
- * Copies the underlying memory of `view` into a new `Buffer`.
208
- *
209
- * ```js
210
- * const u16 = new Uint16Array([0, 0xffff]);
211
- * const buf = Buffer.copyBytesFrom(u16, 1, 1);
212
- * u16[1] = 0;
213
- * console.log(buf.length); // 2
214
- * console.log(buf[0]); // 255
215
- * console.log(buf[1]); // 255
216
- * ```
217
- * @since v19.8.0
218
- * @param view The {TypedArray} to copy.
219
- * @param [offset=0] The starting offset within `view`.
220
- * @param [length=view.length - offset] The number of elements from `view` to copy.
221
- */
222
- copyBytesFrom(view: NodeJS.TypedArray, offset?: number, length?: number): Buffer;
223
- /**
224
- * Allocates a new `Buffer` of `size` bytes. If `fill` is `undefined`, the`Buffer` will be zero-filled.
225
- *
226
- * ```js
227
- * import { Buffer } from 'node:buffer';
228
- *
229
- * const buf = Buffer.alloc(5);
230
- *
231
- * console.log(buf);
232
- * // Prints: <Buffer 00 00 00 00 00>
233
- * ```
234
- *
235
- * If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown.
236
- *
237
- * If `fill` is specified, the allocated `Buffer` will be initialized by calling `buf.fill(fill)`.
238
- *
239
- * ```js
240
- * import { Buffer } from 'node:buffer';
241
- *
242
- * const buf = Buffer.alloc(5, 'a');
243
- *
244
- * console.log(buf);
245
- * // Prints: <Buffer 61 61 61 61 61>
246
- * ```
247
- *
248
- * If both `fill` and `encoding` are specified, the allocated `Buffer` will be
249
- * initialized by calling `buf.fill(fill, encoding)`.
250
- *
251
- * ```js
252
- * import { Buffer } from 'node:buffer';
253
- *
254
- * const buf = Buffer.alloc(11, 'aGVsbG8gd29ybGQ=', 'base64');
255
- *
256
- * console.log(buf);
257
- * // Prints: <Buffer 68 65 6c 6c 6f 20 77 6f 72 6c 64>
258
- * ```
259
- *
260
- * Calling `Buffer.alloc()` can be measurably slower than the alternative `Buffer.allocUnsafe()` but ensures that the newly created `Buffer` instance
261
- * contents will never contain sensitive data from previous allocations, including
262
- * data that might not have been allocated for `Buffer`s.
263
- *
264
- * A `TypeError` will be thrown if `size` is not a number.
265
- * @since v5.10.0
266
- * @param size The desired length of the new `Buffer`.
267
- * @param [fill=0] A value to pre-fill the new `Buffer` with.
268
- * @param [encoding='utf8'] If `fill` is a string, this is its encoding.
269
- */
270
- alloc(size: number, fill?: string | Uint8Array | number, encoding?: BufferEncoding): Buffer;
271
- /**
272
- * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown.
273
- *
274
- * The underlying memory for `Buffer` instances created in this way is _not_
275
- * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `Buffer.alloc()` instead to initialize`Buffer` instances with zeroes.
276
- *
277
- * ```js
278
- * import { Buffer } from 'node:buffer';
279
- *
280
- * const buf = Buffer.allocUnsafe(10);
281
- *
282
- * console.log(buf);
283
- * // Prints (contents may vary): <Buffer a0 8b 28 3f 01 00 00 00 50 32>
284
- *
285
- * buf.fill(0);
286
- *
287
- * console.log(buf);
288
- * // Prints: <Buffer 00 00 00 00 00 00 00 00 00 00>
289
- * ```
290
- *
291
- * A `TypeError` will be thrown if `size` is not a number.
292
- *
293
- * The `Buffer` module pre-allocates an internal `Buffer` instance of
294
- * size `Buffer.poolSize` that is used as a pool for the fast allocation of new `Buffer` instances created using `Buffer.allocUnsafe()`, `Buffer.from(array)`,
295
- * and `Buffer.concat()` only when `size` is less than `Buffer.poolSize >>> 1` (floor of `Buffer.poolSize` divided by two).
296
- *
297
- * Use of this pre-allocated internal memory pool is a key difference between
298
- * calling `Buffer.alloc(size, fill)` vs. `Buffer.allocUnsafe(size).fill(fill)`.
299
- * Specifically, `Buffer.alloc(size, fill)` will _never_ use the internal `Buffer`pool, while `Buffer.allocUnsafe(size).fill(fill)`_will_ use the internal`Buffer` pool if `size` is less
300
- * than or equal to half `Buffer.poolSize`. The
301
- * difference is subtle but can be important when an application requires the
302
- * additional performance that `Buffer.allocUnsafe()` provides.
303
- * @since v5.10.0
304
- * @param size The desired length of the new `Buffer`.
305
- */
306
- allocUnsafe(size: number): Buffer;
307
- /**
308
- * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown. A zero-length `Buffer` is created if
309
- * `size` is 0.
310
- *
311
- * The underlying memory for `Buffer` instances created in this way is _not_
312
- * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `buf.fill(0)` to initialize
313
- * such `Buffer` instances with zeroes.
314
- *
315
- * When using `Buffer.allocUnsafe()` to allocate new `Buffer` instances,
316
- * allocations under 4 KiB are sliced from a single pre-allocated `Buffer`. This
317
- * allows applications to avoid the garbage collection overhead of creating many
318
- * individually allocated `Buffer` instances. This approach improves both
319
- * performance and memory usage by eliminating the need to track and clean up as
320
- * many individual `ArrayBuffer` objects.
321
- *
322
- * However, in the case where a developer may need to retain a small chunk of
323
- * memory from a pool for an indeterminate amount of time, it may be appropriate
324
- * to create an un-pooled `Buffer` instance using `Buffer.allocUnsafeSlow()` and
325
- * then copying out the relevant bits.
326
- *
327
- * ```js
328
- * import { Buffer } from 'node:buffer';
329
- *
330
- * // Need to keep around a few small chunks of memory.
331
- * const store = [];
332
- *
333
- * socket.on('readable', () => {
334
- * let data;
335
- * while (null !== (data = readable.read())) {
336
- * // Allocate for retained data.
337
- * const sb = Buffer.allocUnsafeSlow(10);
338
- *
339
- * // Copy the data into the new allocation.
340
- * data.copy(sb, 0, 0, 10);
341
- *
342
- * store.push(sb);
343
- * }
344
- * });
345
- * ```
346
- *
347
- * A `TypeError` will be thrown if `size` is not a number.
348
- * @since v5.12.0
349
- * @param size The desired length of the new `Buffer`.
350
- */
351
- allocUnsafeSlow(size: number): Buffer;
352
- }
353
- interface Buffer extends Uint8Array {
354
- // see ../buffer.d.ts for implementation shared with all TypeScript versions
355
-
356
- /**
357
- * Returns a new `Buffer` that references the same memory as the original, but
358
- * offset and cropped by the `start` and `end` indices.
359
- *
360
- * This method is not compatible with the `Uint8Array.prototype.slice()`,
361
- * which is a superclass of `Buffer`. To copy the slice, use`Uint8Array.prototype.slice()`.
362
- *
363
- * ```js
364
- * import { Buffer } from 'node:buffer';
365
- *
366
- * const buf = Buffer.from('buffer');
367
- *
368
- * const copiedBuf = Uint8Array.prototype.slice.call(buf);
369
- * copiedBuf[0]++;
370
- * console.log(copiedBuf.toString());
371
- * // Prints: cuffer
372
- *
373
- * console.log(buf.toString());
374
- * // Prints: buffer
375
- *
376
- * // With buf.slice(), the original buffer is modified.
377
- * const notReallyCopiedBuf = buf.slice();
378
- * notReallyCopiedBuf[0]++;
379
- * console.log(notReallyCopiedBuf.toString());
380
- * // Prints: cuffer
381
- * console.log(buf.toString());
382
- * // Also prints: cuffer (!)
383
- * ```
384
- * @since v0.3.0
385
- * @deprecated Use `subarray` instead.
386
- * @param [start=0] Where the new `Buffer` will start.
387
- * @param [end=buf.length] Where the new `Buffer` will end (not inclusive).
388
- */
389
- slice(start?: number, end?: number): Buffer;
390
- /**
391
- * Returns a new `Buffer` that references the same memory as the original, but
392
- * offset and cropped by the `start` and `end` indices.
393
- *
394
- * Specifying `end` greater than `buf.length` will return the same result as
395
- * that of `end` equal to `buf.length`.
396
- *
397
- * This method is inherited from [`TypedArray.prototype.subarray()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray).
398
- *
399
- * Modifying the new `Buffer` slice will modify the memory in the original `Buffer`because the allocated memory of the two objects overlap.
400
- *
401
- * ```js
402
- * import { Buffer } from 'node:buffer';
403
- *
404
- * // Create a `Buffer` with the ASCII alphabet, take a slice, and modify one byte
405
- * // from the original `Buffer`.
406
- *
407
- * const buf1 = Buffer.allocUnsafe(26);
408
- *
409
- * for (let i = 0; i < 26; i++) {
410
- * // 97 is the decimal ASCII value for 'a'.
411
- * buf1[i] = i + 97;
412
- * }
413
- *
414
- * const buf2 = buf1.subarray(0, 3);
415
- *
416
- * console.log(buf2.toString('ascii', 0, buf2.length));
417
- * // Prints: abc
418
- *
419
- * buf1[0] = 33;
420
- *
421
- * console.log(buf2.toString('ascii', 0, buf2.length));
422
- * // Prints: !bc
423
- * ```
424
- *
425
- * Specifying negative indexes causes the slice to be generated relative to the
426
- * end of `buf` rather than the beginning.
427
- *
428
- * ```js
429
- * import { Buffer } from 'node:buffer';
430
- *
431
- * const buf = Buffer.from('buffer');
432
- *
433
- * console.log(buf.subarray(-6, -1).toString());
434
- * // Prints: buffe
435
- * // (Equivalent to buf.subarray(0, 5).)
436
- *
437
- * console.log(buf.subarray(-6, -2).toString());
438
- * // Prints: buff
439
- * // (Equivalent to buf.subarray(0, 4).)
440
- *
441
- * console.log(buf.subarray(-5, -2).toString());
442
- * // Prints: uff
443
- * // (Equivalent to buf.subarray(1, 4).)
444
- * ```
445
- * @since v3.0.0
446
- * @param [start=0] Where the new `Buffer` will start.
447
- * @param [end=buf.length] Where the new `Buffer` will end (not inclusive).
448
- */
449
- subarray(start?: number, end?: number): Buffer;
450
- }
451
- type NonSharedBuffer = Buffer;
452
- type AllowSharedBuffer = Buffer;
453
- }
454
- /** @deprecated Use `Buffer.allocUnsafeSlow()` instead. */
455
- var SlowBuffer: {
456
- /** @deprecated Use `Buffer.allocUnsafeSlow()` instead. */
457
- new(size: number): Buffer;
458
- prototype: Buffer;
459
- };
460
- }
@@ -1,19 +0,0 @@
1
- export {}; // Make this a module
2
-
3
- declare global {
4
- namespace NodeJS {
5
- type TypedArray =
6
- | Uint8Array
7
- | Uint8ClampedArray
8
- | Uint16Array
9
- | Uint32Array
10
- | Int8Array
11
- | Int16Array
12
- | Int32Array
13
- | BigUint64Array
14
- | BigInt64Array
15
- | Float32Array
16
- | Float64Array;
17
- type ArrayBufferView = TypedArray | DataView;
18
- }
19
- }