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,871 +0,0 @@
1
- /**
2
- * The `node:dns` module enables name resolution. For example, use it to look up IP
3
- * addresses of host names.
4
- *
5
- * Although named for the [Domain Name System (DNS)](https://en.wikipedia.org/wiki/Domain_Name_System), it does not always use the
6
- * DNS protocol for lookups. {@link lookup} uses the operating system
7
- * facilities to perform name resolution. It may not need to perform any network
8
- * communication. To perform name resolution the way other applications on the same
9
- * system do, use {@link lookup}.
10
- *
11
- * ```js
12
- * import dns from 'node:dns';
13
- *
14
- * dns.lookup('example.org', (err, address, family) => {
15
- * console.log('address: %j family: IPv%s', address, family);
16
- * });
17
- * // address: "93.184.216.34" family: IPv4
18
- * ```
19
- *
20
- * All other functions in the `node:dns` module connect to an actual DNS server to
21
- * perform name resolution. They will always use the network to perform DNS
22
- * queries. These functions do not use the same set of configuration files used by {@link lookup} (e.g. `/etc/hosts`). Use these functions to always perform
23
- * DNS queries, bypassing other name-resolution facilities.
24
- *
25
- * ```js
26
- * import dns from 'node:dns';
27
- *
28
- * dns.resolve4('archive.org', (err, addresses) => {
29
- * if (err) throw err;
30
- *
31
- * console.log(`addresses: ${JSON.stringify(addresses)}`);
32
- *
33
- * addresses.forEach((a) => {
34
- * dns.reverse(a, (err, hostnames) => {
35
- * if (err) {
36
- * throw err;
37
- * }
38
- * console.log(`reverse for ${a}: ${JSON.stringify(hostnames)}`);
39
- * });
40
- * });
41
- * });
42
- * ```
43
- *
44
- * See the [Implementation considerations section](https://nodejs.org/docs/latest-v20.x/api/dns.html#implementation-considerations) for more information.
45
- * @see [source](https://github.com/nodejs/node/blob/v20.13.1/lib/dns.js)
46
- */
47
- declare module "dns" {
48
- import * as dnsPromises from "node:dns/promises";
49
- // Supported getaddrinfo flags.
50
- /**
51
- * Limits returned address types to the types of non-loopback addresses configured on the system. For example, IPv4 addresses are
52
- * only returned if the current system has at least one IPv4 address configured.
53
- */
54
- export const ADDRCONFIG: number;
55
- /**
56
- * If the IPv6 family was specified, but no IPv6 addresses were found, then return IPv4 mapped IPv6 addresses. It is not supported
57
- * on some operating systems (e.g. FreeBSD 10.1).
58
- */
59
- export const V4MAPPED: number;
60
- /**
61
- * If `dns.V4MAPPED` is specified, return resolved IPv6 addresses as
62
- * well as IPv4 mapped IPv6 addresses.
63
- */
64
- export const ALL: number;
65
- export interface LookupOptions {
66
- /**
67
- * The record family. Must be `4`, `6`, or `0`. For backward compatibility reasons, `'IPv4'` and `'IPv6'` are interpreted
68
- * as `4` and `6` respectively. The value 0 indicates that either an IPv4 or IPv6 address is returned. If the value `0` is used
69
- * with `{ all: true } (see below)`, both IPv4 and IPv6 addresses are returned.
70
- * @default 0
71
- */
72
- family?: number | "IPv4" | "IPv6" | undefined;
73
- /**
74
- * One or more [supported `getaddrinfo`](https://nodejs.org/docs/latest-v20.x/api/dns.html#supported-getaddrinfo-flags) flags. Multiple flags may be
75
- * passed by bitwise `OR`ing their values.
76
- */
77
- hints?: number | undefined;
78
- /**
79
- * When `true`, the callback returns all resolved addresses in an array. Otherwise, returns a single address.
80
- * @default false
81
- */
82
- all?: boolean | undefined;
83
- /**
84
- * When `verbatim`, the resolved addresses are return unsorted. When `ipv4first`, the resolved addresses are sorted
85
- * by placing IPv4 addresses before IPv6 addresses. When `ipv6first`, the resolved addresses are sorted by placing IPv6
86
- * addresses before IPv4 addresses. Default value is configurable using
87
- * {@link setDefaultResultOrder} or [`--dns-result-order`](https://nodejs.org/docs/latest-v20.x/api/cli.html#--dns-result-orderorder).
88
- * @default `verbatim` (addresses are not reordered)
89
- */
90
- order?: "ipv4first" | "ipv6first" | "verbatim" | undefined;
91
- /**
92
- * When `true`, the callback receives IPv4 and IPv6 addresses in the order the DNS resolver returned them. When `false`, IPv4
93
- * addresses are placed before IPv6 addresses. This option will be deprecated in favor of `order`. When both are specified,
94
- * `order` has higher precedence. New code should only use `order`. Default value is configurable using {@link setDefaultResultOrder}
95
- * or [`--dns-result-order`](https://nodejs.org/docs/latest-v20.x/api/cli.html#--dns-result-orderorder).
96
- * @default true (addresses are not reordered)
97
- */
98
- verbatim?: boolean | undefined;
99
- }
100
- export interface LookupOneOptions extends LookupOptions {
101
- all?: false | undefined;
102
- }
103
- export interface LookupAllOptions extends LookupOptions {
104
- all: true;
105
- }
106
- export interface LookupAddress {
107
- /**
108
- * A string representation of an IPv4 or IPv6 address.
109
- */
110
- address: string;
111
- /**
112
- * `4` or `6`, denoting the family of `address`, or `0` if the address is not an IPv4 or IPv6 address. `0` is a likely indicator of a
113
- * bug in the name resolution service used by the operating system.
114
- */
115
- family: number;
116
- }
117
- /**
118
- * Resolves a host name (e.g. `'nodejs.org'`) into the first found A (IPv4) or
119
- * AAAA (IPv6) record. All `option` properties are optional. If `options` is an
120
- * integer, then it must be `4` or `6` – if `options` is `0` or not provided, then
121
- * IPv4 and IPv6 addresses are both returned if found.
122
- *
123
- * With the `all` option set to `true`, the arguments for `callback` change to `(err, addresses)`, with `addresses` being an array of objects with the
124
- * properties `address` and `family`.
125
- *
126
- * On error, `err` is an `Error` object, where `err.code` is the error code.
127
- * Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when
128
- * the host name does not exist but also when the lookup fails in other ways
129
- * such as no available file descriptors.
130
- *
131
- * `dns.lookup()` does not necessarily have anything to do with the DNS protocol.
132
- * The implementation uses an operating system facility that can associate names
133
- * with addresses and vice versa. This implementation can have subtle but
134
- * important consequences on the behavior of any Node.js program. Please take some
135
- * time to consult the [Implementation considerations section](https://nodejs.org/docs/latest-v20.x/api/dns.html#implementation-considerations)
136
- * before using `dns.lookup()`.
137
- *
138
- * Example usage:
139
- *
140
- * ```js
141
- * import dns from 'node:dns';
142
- * const options = {
143
- * family: 6,
144
- * hints: dns.ADDRCONFIG | dns.V4MAPPED,
145
- * };
146
- * dns.lookup('example.com', options, (err, address, family) =>
147
- * console.log('address: %j family: IPv%s', address, family));
148
- * // address: "2606:2800:220:1:248:1893:25c8:1946" family: IPv6
149
- *
150
- * // When options.all is true, the result will be an Array.
151
- * options.all = true;
152
- * dns.lookup('example.com', options, (err, addresses) =>
153
- * console.log('addresses: %j', addresses));
154
- * // addresses: [{"address":"2606:2800:220:1:248:1893:25c8:1946","family":6}]
155
- * ```
156
- *
157
- * If this method is invoked as its [util.promisify()](https://nodejs.org/docs/latest-v20.x/api/util.html#utilpromisifyoriginal) ed
158
- * version, and `all` is not set to `true`, it returns a `Promise` for an `Object` with `address` and `family` properties.
159
- * @since v0.1.90
160
- */
161
- export function lookup(
162
- hostname: string,
163
- family: number,
164
- callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void,
165
- ): void;
166
- export function lookup(
167
- hostname: string,
168
- options: LookupOneOptions,
169
- callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void,
170
- ): void;
171
- export function lookup(
172
- hostname: string,
173
- options: LookupAllOptions,
174
- callback: (err: NodeJS.ErrnoException | null, addresses: LookupAddress[]) => void,
175
- ): void;
176
- export function lookup(
177
- hostname: string,
178
- options: LookupOptions,
179
- callback: (err: NodeJS.ErrnoException | null, address: string | LookupAddress[], family: number) => void,
180
- ): void;
181
- export function lookup(
182
- hostname: string,
183
- callback: (err: NodeJS.ErrnoException | null, address: string, family: number) => void,
184
- ): void;
185
- export namespace lookup {
186
- function __promisify__(hostname: string, options: LookupAllOptions): Promise<LookupAddress[]>;
187
- function __promisify__(hostname: string, options?: LookupOneOptions | number): Promise<LookupAddress>;
188
- function __promisify__(hostname: string, options: LookupOptions): Promise<LookupAddress | LookupAddress[]>;
189
- }
190
- /**
191
- * Resolves the given `address` and `port` into a host name and service using
192
- * the operating system's underlying `getnameinfo` implementation.
193
- *
194
- * If `address` is not a valid IP address, a `TypeError` will be thrown.
195
- * The `port` will be coerced to a number. If it is not a legal port, a `TypeError` will be thrown.
196
- *
197
- * On an error, `err` is an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object,
198
- * where `err.code` is the error code.
199
- *
200
- * ```js
201
- * import dns from 'node:dns';
202
- * dns.lookupService('127.0.0.1', 22, (err, hostname, service) => {
203
- * console.log(hostname, service);
204
- * // Prints: localhost ssh
205
- * });
206
- * ```
207
- *
208
- * If this method is invoked as its [util.promisify()](https://nodejs.org/docs/latest-v20.x/api/util.html#utilpromisifyoriginal) ed
209
- * version, it returns a `Promise` for an `Object` with `hostname` and `service` properties.
210
- * @since v0.11.14
211
- */
212
- export function lookupService(
213
- address: string,
214
- port: number,
215
- callback: (err: NodeJS.ErrnoException | null, hostname: string, service: string) => void,
216
- ): void;
217
- export namespace lookupService {
218
- function __promisify__(
219
- address: string,
220
- port: number,
221
- ): Promise<{
222
- hostname: string;
223
- service: string;
224
- }>;
225
- }
226
- export interface ResolveOptions {
227
- ttl: boolean;
228
- }
229
- export interface ResolveWithTtlOptions extends ResolveOptions {
230
- ttl: true;
231
- }
232
- export interface RecordWithTtl {
233
- address: string;
234
- ttl: number;
235
- }
236
- /** @deprecated Use `AnyARecord` or `AnyAaaaRecord` instead. */
237
- export type AnyRecordWithTtl = AnyARecord | AnyAaaaRecord;
238
- export interface AnyARecord extends RecordWithTtl {
239
- type: "A";
240
- }
241
- export interface AnyAaaaRecord extends RecordWithTtl {
242
- type: "AAAA";
243
- }
244
- export interface CaaRecord {
245
- critical: number;
246
- issue?: string | undefined;
247
- issuewild?: string | undefined;
248
- iodef?: string | undefined;
249
- contactemail?: string | undefined;
250
- contactphone?: string | undefined;
251
- }
252
- export interface AnyCaaRecord extends CaaRecord {
253
- type: "CAA";
254
- }
255
- export interface MxRecord {
256
- priority: number;
257
- exchange: string;
258
- }
259
- export interface AnyMxRecord extends MxRecord {
260
- type: "MX";
261
- }
262
- export interface NaptrRecord {
263
- flags: string;
264
- service: string;
265
- regexp: string;
266
- replacement: string;
267
- order: number;
268
- preference: number;
269
- }
270
- export interface AnyNaptrRecord extends NaptrRecord {
271
- type: "NAPTR";
272
- }
273
- export interface SoaRecord {
274
- nsname: string;
275
- hostmaster: string;
276
- serial: number;
277
- refresh: number;
278
- retry: number;
279
- expire: number;
280
- minttl: number;
281
- }
282
- export interface AnySoaRecord extends SoaRecord {
283
- type: "SOA";
284
- }
285
- export interface SrvRecord {
286
- priority: number;
287
- weight: number;
288
- port: number;
289
- name: string;
290
- }
291
- export interface AnySrvRecord extends SrvRecord {
292
- type: "SRV";
293
- }
294
- export interface AnyTxtRecord {
295
- type: "TXT";
296
- entries: string[];
297
- }
298
- export interface AnyNsRecord {
299
- type: "NS";
300
- value: string;
301
- }
302
- export interface AnyPtrRecord {
303
- type: "PTR";
304
- value: string;
305
- }
306
- export interface AnyCnameRecord {
307
- type: "CNAME";
308
- value: string;
309
- }
310
- export type AnyRecord =
311
- | AnyARecord
312
- | AnyAaaaRecord
313
- | AnyCaaRecord
314
- | AnyCnameRecord
315
- | AnyMxRecord
316
- | AnyNaptrRecord
317
- | AnyNsRecord
318
- | AnyPtrRecord
319
- | AnySoaRecord
320
- | AnySrvRecord
321
- | AnyTxtRecord;
322
- /**
323
- * Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'`) into an array
324
- * of the resource records. The `callback` function has arguments `(err, records)`. When successful, `records` will be an array of resource
325
- * records. The type and structure of individual results varies based on `rrtype`:
326
- *
327
- * <omitted>
328
- *
329
- * On error, `err` is an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object,
330
- * where `err.code` is one of the `DNS error codes`.
331
- * @since v0.1.27
332
- * @param hostname Host name to resolve.
333
- * @param [rrtype='A'] Resource record type.
334
- */
335
- export function resolve(
336
- hostname: string,
337
- callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,
338
- ): void;
339
- export function resolve(
340
- hostname: string,
341
- rrtype: "A" | "AAAA" | "CNAME" | "NS" | "PTR",
342
- callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,
343
- ): void;
344
- export function resolve(
345
- hostname: string,
346
- rrtype: "ANY",
347
- callback: (err: NodeJS.ErrnoException | null, addresses: AnyRecord[]) => void,
348
- ): void;
349
- export function resolve(
350
- hostname: string,
351
- rrtype: "CAA",
352
- callback: (err: NodeJS.ErrnoException | null, address: CaaRecord[]) => void,
353
- ): void;
354
- export function resolve(
355
- hostname: string,
356
- rrtype: "MX",
357
- callback: (err: NodeJS.ErrnoException | null, addresses: MxRecord[]) => void,
358
- ): void;
359
- export function resolve(
360
- hostname: string,
361
- rrtype: "NAPTR",
362
- callback: (err: NodeJS.ErrnoException | null, addresses: NaptrRecord[]) => void,
363
- ): void;
364
- export function resolve(
365
- hostname: string,
366
- rrtype: "SOA",
367
- callback: (err: NodeJS.ErrnoException | null, addresses: SoaRecord) => void,
368
- ): void;
369
- export function resolve(
370
- hostname: string,
371
- rrtype: "SRV",
372
- callback: (err: NodeJS.ErrnoException | null, addresses: SrvRecord[]) => void,
373
- ): void;
374
- export function resolve(
375
- hostname: string,
376
- rrtype: "TXT",
377
- callback: (err: NodeJS.ErrnoException | null, addresses: string[][]) => void,
378
- ): void;
379
- export function resolve(
380
- hostname: string,
381
- rrtype: string,
382
- callback: (
383
- err: NodeJS.ErrnoException | null,
384
- addresses:
385
- | string[]
386
- | CaaRecord[]
387
- | MxRecord[]
388
- | NaptrRecord[]
389
- | SoaRecord
390
- | SrvRecord[]
391
- | string[][]
392
- | AnyRecord[],
393
- ) => void,
394
- ): void;
395
- export namespace resolve {
396
- function __promisify__(hostname: string, rrtype?: "A" | "AAAA" | "CNAME" | "NS" | "PTR"): Promise<string[]>;
397
- function __promisify__(hostname: string, rrtype: "ANY"): Promise<AnyRecord[]>;
398
- function __promisify__(hostname: string, rrtype: "CAA"): Promise<CaaRecord[]>;
399
- function __promisify__(hostname: string, rrtype: "MX"): Promise<MxRecord[]>;
400
- function __promisify__(hostname: string, rrtype: "NAPTR"): Promise<NaptrRecord[]>;
401
- function __promisify__(hostname: string, rrtype: "SOA"): Promise<SoaRecord>;
402
- function __promisify__(hostname: string, rrtype: "SRV"): Promise<SrvRecord[]>;
403
- function __promisify__(hostname: string, rrtype: "TXT"): Promise<string[][]>;
404
- function __promisify__(
405
- hostname: string,
406
- rrtype: string,
407
- ): Promise<
408
- | string[]
409
- | CaaRecord[]
410
- | MxRecord[]
411
- | NaptrRecord[]
412
- | SoaRecord
413
- | SrvRecord[]
414
- | string[][]
415
- | AnyRecord[]
416
- >;
417
- }
418
- /**
419
- * Uses the DNS protocol to resolve a IPv4 addresses (`A` records) for the `hostname`. The `addresses` argument passed to the `callback` function
420
- * will contain an array of IPv4 addresses (e.g.`['74.125.79.104', '74.125.79.105', '74.125.79.106']`).
421
- * @since v0.1.16
422
- * @param hostname Host name to resolve.
423
- */
424
- export function resolve4(
425
- hostname: string,
426
- callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,
427
- ): void;
428
- export function resolve4(
429
- hostname: string,
430
- options: ResolveWithTtlOptions,
431
- callback: (err: NodeJS.ErrnoException | null, addresses: RecordWithTtl[]) => void,
432
- ): void;
433
- export function resolve4(
434
- hostname: string,
435
- options: ResolveOptions,
436
- callback: (err: NodeJS.ErrnoException | null, addresses: string[] | RecordWithTtl[]) => void,
437
- ): void;
438
- export namespace resolve4 {
439
- function __promisify__(hostname: string): Promise<string[]>;
440
- function __promisify__(hostname: string, options: ResolveWithTtlOptions): Promise<RecordWithTtl[]>;
441
- function __promisify__(hostname: string, options?: ResolveOptions): Promise<string[] | RecordWithTtl[]>;
442
- }
443
- /**
444
- * Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the `hostname`. The `addresses` argument passed to the `callback` function
445
- * will contain an array of IPv6 addresses.
446
- * @since v0.1.16
447
- * @param hostname Host name to resolve.
448
- */
449
- export function resolve6(
450
- hostname: string,
451
- callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,
452
- ): void;
453
- export function resolve6(
454
- hostname: string,
455
- options: ResolveWithTtlOptions,
456
- callback: (err: NodeJS.ErrnoException | null, addresses: RecordWithTtl[]) => void,
457
- ): void;
458
- export function resolve6(
459
- hostname: string,
460
- options: ResolveOptions,
461
- callback: (err: NodeJS.ErrnoException | null, addresses: string[] | RecordWithTtl[]) => void,
462
- ): void;
463
- export namespace resolve6 {
464
- function __promisify__(hostname: string): Promise<string[]>;
465
- function __promisify__(hostname: string, options: ResolveWithTtlOptions): Promise<RecordWithTtl[]>;
466
- function __promisify__(hostname: string, options?: ResolveOptions): Promise<string[] | RecordWithTtl[]>;
467
- }
468
- /**
469
- * Uses the DNS protocol to resolve `CNAME` records for the `hostname`. The `addresses` argument passed to the `callback` function
470
- * will contain an array of canonical name records available for the `hostname` (e.g. `['bar.example.com']`).
471
- * @since v0.3.2
472
- */
473
- export function resolveCname(
474
- hostname: string,
475
- callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,
476
- ): void;
477
- export namespace resolveCname {
478
- function __promisify__(hostname: string): Promise<string[]>;
479
- }
480
- /**
481
- * Uses the DNS protocol to resolve `CAA` records for the `hostname`. The `addresses` argument passed to the `callback` function
482
- * will contain an array of certification authority authorization records
483
- * available for the `hostname` (e.g. `[{critical: 0, iodef: 'mailto:pki@example.com'}, {critical: 128, issue: 'pki.example.com'}]`).
484
- * @since v15.0.0, v14.17.0
485
- */
486
- export function resolveCaa(
487
- hostname: string,
488
- callback: (err: NodeJS.ErrnoException | null, records: CaaRecord[]) => void,
489
- ): void;
490
- export namespace resolveCaa {
491
- function __promisify__(hostname: string): Promise<CaaRecord[]>;
492
- }
493
- /**
494
- * Uses the DNS protocol to resolve mail exchange records (`MX` records) for the `hostname`. The `addresses` argument passed to the `callback` function will
495
- * contain an array of objects containing both a `priority` and `exchange` property (e.g. `[{priority: 10, exchange: 'mx.example.com'}, ...]`).
496
- * @since v0.1.27
497
- */
498
- export function resolveMx(
499
- hostname: string,
500
- callback: (err: NodeJS.ErrnoException | null, addresses: MxRecord[]) => void,
501
- ): void;
502
- export namespace resolveMx {
503
- function __promisify__(hostname: string): Promise<MxRecord[]>;
504
- }
505
- /**
506
- * Uses the DNS protocol to resolve regular expression-based records (`NAPTR` records) for the `hostname`. The `addresses` argument passed to the `callback` function will contain an array of
507
- * objects with the following properties:
508
- *
509
- * * `flags`
510
- * * `service`
511
- * * `regexp`
512
- * * `replacement`
513
- * * `order`
514
- * * `preference`
515
- *
516
- * ```js
517
- * {
518
- * flags: 's',
519
- * service: 'SIP+D2U',
520
- * regexp: '',
521
- * replacement: '_sip._udp.example.com',
522
- * order: 30,
523
- * preference: 100
524
- * }
525
- * ```
526
- * @since v0.9.12
527
- */
528
- export function resolveNaptr(
529
- hostname: string,
530
- callback: (err: NodeJS.ErrnoException | null, addresses: NaptrRecord[]) => void,
531
- ): void;
532
- export namespace resolveNaptr {
533
- function __promisify__(hostname: string): Promise<NaptrRecord[]>;
534
- }
535
- /**
536
- * Uses the DNS protocol to resolve name server records (`NS` records) for the `hostname`. The `addresses` argument passed to the `callback` function will
537
- * contain an array of name server records available for `hostname` (e.g. `['ns1.example.com', 'ns2.example.com']`).
538
- * @since v0.1.90
539
- */
540
- export function resolveNs(
541
- hostname: string,
542
- callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,
543
- ): void;
544
- export namespace resolveNs {
545
- function __promisify__(hostname: string): Promise<string[]>;
546
- }
547
- /**
548
- * Uses the DNS protocol to resolve pointer records (`PTR` records) for the `hostname`. The `addresses` argument passed to the `callback` function will
549
- * be an array of strings containing the reply records.
550
- * @since v6.0.0
551
- */
552
- export function resolvePtr(
553
- hostname: string,
554
- callback: (err: NodeJS.ErrnoException | null, addresses: string[]) => void,
555
- ): void;
556
- export namespace resolvePtr {
557
- function __promisify__(hostname: string): Promise<string[]>;
558
- }
559
- /**
560
- * Uses the DNS protocol to resolve a start of authority record (`SOA` record) for
561
- * the `hostname`. The `address` argument passed to the `callback` function will
562
- * be an object with the following properties:
563
- *
564
- * * `nsname`
565
- * * `hostmaster`
566
- * * `serial`
567
- * * `refresh`
568
- * * `retry`
569
- * * `expire`
570
- * * `minttl`
571
- *
572
- * ```js
573
- * {
574
- * nsname: 'ns.example.com',
575
- * hostmaster: 'root.example.com',
576
- * serial: 2013101809,
577
- * refresh: 10000,
578
- * retry: 2400,
579
- * expire: 604800,
580
- * minttl: 3600
581
- * }
582
- * ```
583
- * @since v0.11.10
584
- */
585
- export function resolveSoa(
586
- hostname: string,
587
- callback: (err: NodeJS.ErrnoException | null, address: SoaRecord) => void,
588
- ): void;
589
- export namespace resolveSoa {
590
- function __promisify__(hostname: string): Promise<SoaRecord>;
591
- }
592
- /**
593
- * Uses the DNS protocol to resolve service records (`SRV` records) for the `hostname`. The `addresses` argument passed to the `callback` function will
594
- * be an array of objects with the following properties:
595
- *
596
- * * `priority`
597
- * * `weight`
598
- * * `port`
599
- * * `name`
600
- *
601
- * ```js
602
- * {
603
- * priority: 10,
604
- * weight: 5,
605
- * port: 21223,
606
- * name: 'service.example.com'
607
- * }
608
- * ```
609
- * @since v0.1.27
610
- */
611
- export function resolveSrv(
612
- hostname: string,
613
- callback: (err: NodeJS.ErrnoException | null, addresses: SrvRecord[]) => void,
614
- ): void;
615
- export namespace resolveSrv {
616
- function __promisify__(hostname: string): Promise<SrvRecord[]>;
617
- }
618
- /**
619
- * Uses the DNS protocol to resolve text queries (`TXT` records) for the `hostname`. The `records` argument passed to the `callback` function is a
620
- * two-dimensional array of the text records available for `hostname` (e.g.`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of
621
- * one record. Depending on the use case, these could be either joined together or
622
- * treated separately.
623
- * @since v0.1.27
624
- */
625
- export function resolveTxt(
626
- hostname: string,
627
- callback: (err: NodeJS.ErrnoException | null, addresses: string[][]) => void,
628
- ): void;
629
- export namespace resolveTxt {
630
- function __promisify__(hostname: string): Promise<string[][]>;
631
- }
632
- /**
633
- * Uses the DNS protocol to resolve all records (also known as `ANY` or `*` query).
634
- * The `ret` argument passed to the `callback` function will be an array containing
635
- * various types of records. Each object has a property `type` that indicates the
636
- * type of the current record. And depending on the `type`, additional properties
637
- * will be present on the object:
638
- *
639
- * <omitted>
640
- *
641
- * Here is an example of the `ret` object passed to the callback:
642
- *
643
- * ```js
644
- * [ { type: 'A', address: '127.0.0.1', ttl: 299 },
645
- * { type: 'CNAME', value: 'example.com' },
646
- * { type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 },
647
- * { type: 'NS', value: 'ns1.example.com' },
648
- * { type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] },
649
- * { type: 'SOA',
650
- * nsname: 'ns1.example.com',
651
- * hostmaster: 'admin.example.com',
652
- * serial: 156696742,
653
- * refresh: 900,
654
- * retry: 900,
655
- * expire: 1800,
656
- * minttl: 60 } ]
657
- * ```
658
- *
659
- * DNS server operators may choose not to respond to `ANY` queries. It may be better to call individual methods like {@link resolve4}, {@link resolveMx}, and so on. For more details, see
660
- * [RFC 8482](https://tools.ietf.org/html/rfc8482).
661
- */
662
- export function resolveAny(
663
- hostname: string,
664
- callback: (err: NodeJS.ErrnoException | null, addresses: AnyRecord[]) => void,
665
- ): void;
666
- export namespace resolveAny {
667
- function __promisify__(hostname: string): Promise<AnyRecord[]>;
668
- }
669
- /**
670
- * Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an
671
- * array of host names.
672
- *
673
- * On error, `err` is an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object, where `err.code` is
674
- * one of the [DNS error codes](https://nodejs.org/docs/latest-v20.x/api/dns.html#error-codes).
675
- * @since v0.1.16
676
- */
677
- export function reverse(
678
- ip: string,
679
- callback: (err: NodeJS.ErrnoException | null, hostnames: string[]) => void,
680
- ): void;
681
- /**
682
- * Get the default value for `order` in {@link lookup} and [`dnsPromises.lookup()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromiseslookuphostname-options).
683
- * The value could be:
684
- *
685
- * * `ipv4first`: for `order` defaulting to `ipv4first`.
686
- * * `ipv6first`: for `order` defaulting to `ipv6first`.
687
- * * `verbatim`: for `order` defaulting to `verbatim`.
688
- * @since v18.17.0
689
- */
690
- export function getDefaultResultOrder(): "ipv4first" | "ipv6first" | "verbatim";
691
- /**
692
- * Sets the IP address and port of servers to be used when performing DNS
693
- * resolution. The `servers` argument is an array of [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6) formatted
694
- * addresses. If the port is the IANA default DNS port (53) it can be omitted.
695
- *
696
- * ```js
697
- * dns.setServers([
698
- * '4.4.4.4',
699
- * '[2001:4860:4860::8888]',
700
- * '4.4.4.4:1053',
701
- * '[2001:4860:4860::8888]:1053',
702
- * ]);
703
- * ```
704
- *
705
- * An error will be thrown if an invalid address is provided.
706
- *
707
- * The `dns.setServers()` method must not be called while a DNS query is in
708
- * progress.
709
- *
710
- * The {@link setServers} method affects only {@link resolve}, `dns.resolve*()` and {@link reverse} (and specifically _not_ {@link lookup}).
711
- *
712
- * This method works much like [resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html).
713
- * That is, if attempting to resolve with the first server provided results in a `NOTFOUND` error, the `resolve()` method will _not_ attempt to resolve with
714
- * subsequent servers provided. Fallback DNS servers will only be used if the
715
- * earlier ones time out or result in some other error.
716
- * @since v0.11.3
717
- * @param servers array of [RFC 5952](https://datatracker.ietf.org/doc/html/rfc5952#section-6) formatted addresses
718
- */
719
- export function setServers(servers: readonly string[]): void;
720
- /**
721
- * Returns an array of IP address strings, formatted according to [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6),
722
- * that are currently configured for DNS resolution. A string will include a port
723
- * section if a custom port is used.
724
- *
725
- * ```js
726
- * [
727
- * '4.4.4.4',
728
- * '2001:4860:4860::8888',
729
- * '4.4.4.4:1053',
730
- * '[2001:4860:4860::8888]:1053',
731
- * ]
732
- * ```
733
- * @since v0.11.3
734
- */
735
- export function getServers(): string[];
736
- /**
737
- * Set the default value of `order` in {@link lookup} and [`dnsPromises.lookup()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromiseslookuphostname-options).
738
- * The value could be:
739
- *
740
- * * `ipv4first`: sets default `order` to `ipv4first`.
741
- * * `ipv6first`: sets default `order` to `ipv6first`.
742
- * * `verbatim`: sets default `order` to `verbatim`.
743
- *
744
- * The default is `verbatim` and {@link setDefaultResultOrder} have higher
745
- * priority than [`--dns-result-order`](https://nodejs.org/docs/latest-v20.x/api/cli.html#--dns-result-orderorder). When using
746
- * [worker threads](https://nodejs.org/docs/latest-v20.x/api/worker_threads.html), {@link setDefaultResultOrder} from the main
747
- * thread won't affect the default dns orders in workers.
748
- * @since v16.4.0, v14.18.0
749
- * @param order must be `'ipv4first'`, `'ipv6first'` or `'verbatim'`.
750
- */
751
- export function setDefaultResultOrder(order: "ipv4first" | "ipv6first" | "verbatim"): void;
752
- // Error codes
753
- export const NODATA: "ENODATA";
754
- export const FORMERR: "EFORMERR";
755
- export const SERVFAIL: "ESERVFAIL";
756
- export const NOTFOUND: "ENOTFOUND";
757
- export const NOTIMP: "ENOTIMP";
758
- export const REFUSED: "EREFUSED";
759
- export const BADQUERY: "EBADQUERY";
760
- export const BADNAME: "EBADNAME";
761
- export const BADFAMILY: "EBADFAMILY";
762
- export const BADRESP: "EBADRESP";
763
- export const CONNREFUSED: "ECONNREFUSED";
764
- export const TIMEOUT: "ETIMEOUT";
765
- export const EOF: "EOF";
766
- export const FILE: "EFILE";
767
- export const NOMEM: "ENOMEM";
768
- export const DESTRUCTION: "EDESTRUCTION";
769
- export const BADSTR: "EBADSTR";
770
- export const BADFLAGS: "EBADFLAGS";
771
- export const NONAME: "ENONAME";
772
- export const BADHINTS: "EBADHINTS";
773
- export const NOTINITIALIZED: "ENOTINITIALIZED";
774
- export const LOADIPHLPAPI: "ELOADIPHLPAPI";
775
- export const ADDRGETNETWORKPARAMS: "EADDRGETNETWORKPARAMS";
776
- export const CANCELLED: "ECANCELLED";
777
- export interface ResolverOptions {
778
- /**
779
- * Query timeout in milliseconds, or `-1` to use the default timeout.
780
- */
781
- timeout?: number | undefined;
782
- /**
783
- * The number of tries the resolver will try contacting each name server before giving up.
784
- * @default 4
785
- */
786
- tries?: number;
787
- }
788
- /**
789
- * An independent resolver for DNS requests.
790
- *
791
- * Creating a new resolver uses the default server settings. Setting
792
- * the servers used for a resolver using [`resolver.setServers()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnssetserversservers) does not affect
793
- * other resolvers:
794
- *
795
- * ```js
796
- * import { Resolver } from 'node:dns';
797
- * const resolver = new Resolver();
798
- * resolver.setServers(['4.4.4.4']);
799
- *
800
- * // This request will use the server at 4.4.4.4, independent of global settings.
801
- * resolver.resolve4('example.org', (err, addresses) => {
802
- * // ...
803
- * });
804
- * ```
805
- *
806
- * The following methods from the `node:dns` module are available:
807
- *
808
- * * `resolver.getServers()`
809
- * * `resolver.resolve()`
810
- * * `resolver.resolve4()`
811
- * * `resolver.resolve6()`
812
- * * `resolver.resolveAny()`
813
- * * `resolver.resolveCaa()`
814
- * * `resolver.resolveCname()`
815
- * * `resolver.resolveMx()`
816
- * * `resolver.resolveNaptr()`
817
- * * `resolver.resolveNs()`
818
- * * `resolver.resolvePtr()`
819
- * * `resolver.resolveSoa()`
820
- * * `resolver.resolveSrv()`
821
- * * `resolver.resolveTxt()`
822
- * * `resolver.reverse()`
823
- * * `resolver.setServers()`
824
- * @since v8.3.0
825
- */
826
- export class Resolver {
827
- constructor(options?: ResolverOptions);
828
- /**
829
- * Cancel all outstanding DNS queries made by this resolver. The corresponding
830
- * callbacks will be called with an error with code `ECANCELLED`.
831
- * @since v8.3.0
832
- */
833
- cancel(): void;
834
- getServers: typeof getServers;
835
- resolve: typeof resolve;
836
- resolve4: typeof resolve4;
837
- resolve6: typeof resolve6;
838
- resolveAny: typeof resolveAny;
839
- resolveCaa: typeof resolveCaa;
840
- resolveCname: typeof resolveCname;
841
- resolveMx: typeof resolveMx;
842
- resolveNaptr: typeof resolveNaptr;
843
- resolveNs: typeof resolveNs;
844
- resolvePtr: typeof resolvePtr;
845
- resolveSoa: typeof resolveSoa;
846
- resolveSrv: typeof resolveSrv;
847
- resolveTxt: typeof resolveTxt;
848
- reverse: typeof reverse;
849
- /**
850
- * The resolver instance will send its requests from the specified IP address.
851
- * This allows programs to specify outbound interfaces when used on multi-homed
852
- * systems.
853
- *
854
- * If a v4 or v6 address is not specified, it is set to the default and the
855
- * operating system will choose a local address automatically.
856
- *
857
- * The resolver will use the v4 local address when making requests to IPv4 DNS
858
- * servers, and the v6 local address when making requests to IPv6 DNS servers.
859
- * The `rrtype` of resolution requests has no impact on the local address used.
860
- * @since v15.1.0, v14.17.0
861
- * @param [ipv4='0.0.0.0'] A string representation of an IPv4 address.
862
- * @param [ipv6='::0'] A string representation of an IPv6 address.
863
- */
864
- setLocalAddress(ipv4?: string, ipv6?: string): void;
865
- setServers: typeof setServers;
866
- }
867
- export { dnsPromises as promises };
868
- }
869
- declare module "node:dns" {
870
- export * from "dns";
871
- }