coaia-visualizer 1.6.4 → 1.6.6

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 (1051) hide show
  1. package/README.md +2 -1
  2. package/app/api/charts/[id]/route.ts +6 -1
  3. package/app/api/charts/route.ts +6 -1
  4. package/components/asterion-foundation-card.tsx +175 -0
  5. package/components/asterion-session-context-badge.tsx +148 -0
  6. package/components/asterion-session-lineage-card.tsx +119 -0
  7. package/components/chart-detail-editable.tsx +19 -3
  8. package/components/chart-detail.tsx +3 -0
  9. package/components/metadata-projections.tsx +50 -16
  10. package/components/narrative-beats.tsx +16 -3
  11. package/dist/cli.js +0 -0
  12. package/index.tsx +13 -2
  13. package/lib/asterion-metadata.ts +704 -0
  14. package/lib/chart-editor.ts +20 -12
  15. package/lib/jsonl-parser.ts +5 -0
  16. package/lib/types.ts +100 -0
  17. package/mcp/dist/api-client.d.ts +138 -0
  18. package/mcp/dist/api-client.d.ts.map +1 -0
  19. package/mcp/dist/api-client.js +115 -0
  20. package/mcp/dist/api-client.js.map +1 -0
  21. package/mcp/dist/index.d.ts +2 -0
  22. package/mcp/dist/index.d.ts.map +1 -0
  23. package/mcp/dist/index.js +286 -0
  24. package/mcp/dist/index.js.map +1 -0
  25. package/mcp/dist/tools/index.d.ts +18 -0
  26. package/mcp/dist/tools/index.d.ts.map +1 -0
  27. package/mcp/dist/tools/index.js +322 -0
  28. package/mcp/dist/tools/index.js.map +1 -0
  29. package/mcp/node_modules/.package-lock.json +194 -0
  30. package/mcp/node_modules/@modelcontextprotocol/sdk/LICENSE +21 -0
  31. package/mcp/node_modules/@modelcontextprotocol/sdk/README.md +105 -0
  32. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/cli.d.ts +2 -0
  33. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/cli.d.ts.map +1 -0
  34. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/cli.js +129 -0
  35. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/cli.js.map +1 -0
  36. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.d.ts +773 -0
  37. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.d.ts.map +1 -0
  38. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.js +206 -0
  39. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.js.map +1 -0
  40. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.test.d.ts +2 -0
  41. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.test.d.ts.map +1 -0
  42. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.test.js +393 -0
  43. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.test.js.map +1 -0
  44. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/sse.d.ts +22 -0
  45. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/sse.d.ts.map +1 -0
  46. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/sse.js +91 -0
  47. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/sse.js.map +1 -0
  48. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.d.ts +56 -0
  49. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.d.ts.map +1 -0
  50. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.js +147 -0
  51. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.js.map +1 -0
  52. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.test.d.ts +2 -0
  53. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.test.d.ts.map +1 -0
  54. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.test.js +51 -0
  55. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.test.js.map +1 -0
  56. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.d.ts +17 -0
  57. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.d.ts.map +1 -0
  58. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.js +61 -0
  59. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.js.map +1 -0
  60. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.d.ts +20 -0
  61. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.d.ts.map +1 -0
  62. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.js +47 -0
  63. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.js.map +1 -0
  64. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.test.d.ts +2 -0
  65. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.test.d.ts.map +1 -0
  66. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.test.js +74 -0
  67. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.test.js.map +1 -0
  68. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.d.ts +112 -0
  69. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.d.ts.map +1 -0
  70. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.js +182 -0
  71. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.js.map +1 -0
  72. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.test.d.ts +2 -0
  73. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.test.d.ts.map +1 -0
  74. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.test.js +408 -0
  75. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.test.js.map +1 -0
  76. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/sse.d.ts +46 -0
  77. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/sse.d.ts.map +1 -0
  78. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/sse.js +116 -0
  79. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/sse.js.map +1 -0
  80. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.d.ts +28 -0
  81. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.d.ts.map +1 -0
  82. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.js +69 -0
  83. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.js.map +1 -0
  84. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.test.d.ts +2 -0
  85. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.test.d.ts.map +1 -0
  86. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.test.js +87 -0
  87. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.test.js.map +1 -0
  88. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/protocol.d.ts +157 -0
  89. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/protocol.d.ts.map +1 -0
  90. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/protocol.js +297 -0
  91. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/protocol.js.map +1 -0
  92. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.d.ts +13 -0
  93. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.d.ts.map +1 -0
  94. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.js +31 -0
  95. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.js.map +1 -0
  96. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.test.d.ts +2 -0
  97. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.test.d.ts.map +1 -0
  98. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.test.js +27 -0
  99. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.test.js.map +1 -0
  100. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/transport.d.ts +39 -0
  101. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/transport.d.ts.map +1 -0
  102. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/transport.js +2 -0
  103. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/transport.js.map +1 -0
  104. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/types.d.ts +26425 -0
  105. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/types.d.ts.map +1 -0
  106. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/types.js +997 -0
  107. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/types.js.map +1 -0
  108. package/mcp/node_modules/@modelcontextprotocol/sdk/package.json +61 -0
  109. package/mcp/node_modules/@types/node/LICENSE +21 -0
  110. package/mcp/node_modules/@types/node/README.md +15 -0
  111. package/mcp/node_modules/@types/node/assert/strict.d.ts +111 -0
  112. package/mcp/node_modules/@types/node/assert.d.ts +1078 -0
  113. package/mcp/node_modules/@types/node/async_hooks.d.ts +603 -0
  114. package/mcp/node_modules/@types/node/buffer.buffer.d.ts +472 -0
  115. package/mcp/node_modules/@types/node/buffer.d.ts +1934 -0
  116. package/mcp/node_modules/@types/node/child_process.d.ts +1476 -0
  117. package/mcp/node_modules/@types/node/cluster.d.ts +578 -0
  118. package/mcp/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
  119. package/mcp/node_modules/@types/node/compatibility/index.d.ts +9 -0
  120. package/mcp/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  121. package/mcp/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
  122. package/mcp/node_modules/@types/node/console.d.ts +452 -0
  123. package/mcp/node_modules/@types/node/constants.d.ts +21 -0
  124. package/mcp/node_modules/@types/node/crypto.d.ts +4545 -0
  125. package/mcp/node_modules/@types/node/dgram.d.ts +600 -0
  126. package/mcp/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  127. package/mcp/node_modules/@types/node/dns/promises.d.ts +503 -0
  128. package/mcp/node_modules/@types/node/dns.d.ts +923 -0
  129. package/mcp/node_modules/@types/node/domain.d.ts +170 -0
  130. package/mcp/node_modules/@types/node/events.d.ts +976 -0
  131. package/mcp/node_modules/@types/node/fs/promises.d.ts +1295 -0
  132. package/mcp/node_modules/@types/node/fs.d.ts +4461 -0
  133. package/mcp/node_modules/@types/node/globals.d.ts +172 -0
  134. package/mcp/node_modules/@types/node/globals.typedarray.d.ts +38 -0
  135. package/mcp/node_modules/@types/node/http.d.ts +2089 -0
  136. package/mcp/node_modules/@types/node/http2.d.ts +2644 -0
  137. package/mcp/node_modules/@types/node/https.d.ts +579 -0
  138. package/mcp/node_modules/@types/node/index.d.ts +97 -0
  139. package/mcp/node_modules/@types/node/inspector.d.ts +253 -0
  140. package/mcp/node_modules/@types/node/inspector.generated.d.ts +4052 -0
  141. package/mcp/node_modules/@types/node/module.d.ts +891 -0
  142. package/mcp/node_modules/@types/node/net.d.ts +1057 -0
  143. package/mcp/node_modules/@types/node/os.d.ts +506 -0
  144. package/mcp/node_modules/@types/node/package.json +145 -0
  145. package/mcp/node_modules/@types/node/path.d.ts +200 -0
  146. package/mcp/node_modules/@types/node/perf_hooks.d.ts +968 -0
  147. package/mcp/node_modules/@types/node/process.d.ts +2084 -0
  148. package/mcp/node_modules/@types/node/punycode.d.ts +117 -0
  149. package/mcp/node_modules/@types/node/querystring.d.ts +152 -0
  150. package/mcp/node_modules/@types/node/readline/promises.d.ts +161 -0
  151. package/mcp/node_modules/@types/node/readline.d.ts +594 -0
  152. package/mcp/node_modules/@types/node/repl.d.ts +428 -0
  153. package/mcp/node_modules/@types/node/sea.d.ts +153 -0
  154. package/mcp/node_modules/@types/node/sqlite.d.ts +721 -0
  155. package/mcp/node_modules/@types/node/stream/consumers.d.ts +38 -0
  156. package/mcp/node_modules/@types/node/stream/promises.d.ts +90 -0
  157. package/mcp/node_modules/@types/node/stream/web.d.ts +622 -0
  158. package/mcp/node_modules/@types/node/stream.d.ts +1664 -0
  159. package/mcp/node_modules/@types/node/string_decoder.d.ts +67 -0
  160. package/mcp/node_modules/@types/node/test.d.ts +2163 -0
  161. package/mcp/node_modules/@types/node/timers/promises.d.ts +108 -0
  162. package/mcp/node_modules/@types/node/timers.d.ts +287 -0
  163. package/mcp/node_modules/@types/node/tls.d.ts +1319 -0
  164. package/mcp/node_modules/@types/node/trace_events.d.ts +197 -0
  165. package/mcp/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
  166. package/mcp/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
  167. package/mcp/node_modules/@types/node/ts5.6/index.d.ts +97 -0
  168. package/mcp/node_modules/@types/node/tty.d.ts +208 -0
  169. package/mcp/node_modules/@types/node/url.d.ts +984 -0
  170. package/mcp/node_modules/@types/node/util.d.ts +2606 -0
  171. package/mcp/node_modules/@types/node/v8.d.ts +920 -0
  172. package/mcp/node_modules/@types/node/vm.d.ts +1000 -0
  173. package/mcp/node_modules/@types/node/wasi.d.ts +181 -0
  174. package/mcp/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  175. package/mcp/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  176. package/mcp/node_modules/@types/node/web-globals/events.d.ts +97 -0
  177. package/mcp/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
  178. package/mcp/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
  179. package/mcp/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  180. package/mcp/node_modules/@types/node/worker_threads.d.ts +784 -0
  181. package/mcp/node_modules/@types/node/zlib.d.ts +747 -0
  182. package/mcp/node_modules/bytes/History.md +97 -0
  183. package/mcp/node_modules/bytes/LICENSE +23 -0
  184. package/mcp/node_modules/bytes/Readme.md +152 -0
  185. package/mcp/node_modules/bytes/index.js +170 -0
  186. package/mcp/node_modules/bytes/package.json +42 -0
  187. package/mcp/node_modules/content-type/HISTORY.md +29 -0
  188. package/mcp/node_modules/content-type/LICENSE +22 -0
  189. package/mcp/node_modules/content-type/README.md +94 -0
  190. package/mcp/node_modules/content-type/index.js +225 -0
  191. package/mcp/node_modules/content-type/package.json +42 -0
  192. package/mcp/node_modules/depd/History.md +103 -0
  193. package/mcp/node_modules/depd/LICENSE +22 -0
  194. package/mcp/node_modules/depd/Readme.md +280 -0
  195. package/mcp/node_modules/depd/index.js +538 -0
  196. package/mcp/node_modules/depd/lib/browser/index.js +77 -0
  197. package/mcp/node_modules/depd/package.json +45 -0
  198. package/mcp/node_modules/dotenv/CHANGELOG.md +621 -0
  199. package/mcp/node_modules/dotenv/LICENSE +23 -0
  200. package/mcp/node_modules/dotenv/README-es.md +774 -0
  201. package/mcp/node_modules/dotenv/README.md +774 -0
  202. package/mcp/node_modules/dotenv/SECURITY.md +1 -0
  203. package/mcp/node_modules/dotenv/config.d.ts +1 -0
  204. package/mcp/node_modules/dotenv/config.js +9 -0
  205. package/mcp/node_modules/dotenv/lib/cli-options.js +17 -0
  206. package/mcp/node_modules/dotenv/lib/env-options.js +28 -0
  207. package/mcp/node_modules/dotenv/lib/main.d.ts +179 -0
  208. package/mcp/node_modules/dotenv/lib/main.js +431 -0
  209. package/mcp/node_modules/dotenv/package.json +62 -0
  210. package/mcp/node_modules/http-errors/HISTORY.md +186 -0
  211. package/mcp/node_modules/http-errors/LICENSE +23 -0
  212. package/mcp/node_modules/http-errors/README.md +169 -0
  213. package/mcp/node_modules/http-errors/index.js +290 -0
  214. package/mcp/node_modules/http-errors/package.json +54 -0
  215. package/mcp/node_modules/iconv-lite/LICENSE +21 -0
  216. package/mcp/node_modules/iconv-lite/README.md +138 -0
  217. package/mcp/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  218. package/mcp/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  219. package/mcp/node_modules/iconv-lite/encodings/index.js +23 -0
  220. package/mcp/node_modules/iconv-lite/encodings/internal.js +218 -0
  221. package/mcp/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  222. package/mcp/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  223. package/mcp/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  224. package/mcp/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  225. package/mcp/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  226. package/mcp/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  227. package/mcp/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  228. package/mcp/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  229. package/mcp/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  230. package/mcp/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  231. package/mcp/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  232. package/mcp/node_modules/iconv-lite/encodings/utf16.js +187 -0
  233. package/mcp/node_modules/iconv-lite/encodings/utf32.js +307 -0
  234. package/mcp/node_modules/iconv-lite/encodings/utf7.js +283 -0
  235. package/mcp/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  236. package/mcp/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  237. package/mcp/node_modules/iconv-lite/lib/index.d.ts +129 -0
  238. package/mcp/node_modules/iconv-lite/lib/index.js +182 -0
  239. package/mcp/node_modules/iconv-lite/lib/streams.js +105 -0
  240. package/mcp/node_modules/iconv-lite/package.json +70 -0
  241. package/mcp/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  242. package/mcp/node_modules/inherits/LICENSE +16 -0
  243. package/mcp/node_modules/inherits/README.md +42 -0
  244. package/mcp/node_modules/inherits/inherits.js +9 -0
  245. package/mcp/node_modules/inherits/inherits_browser.js +27 -0
  246. package/mcp/node_modules/inherits/package.json +29 -0
  247. package/mcp/node_modules/raw-body/LICENSE +22 -0
  248. package/mcp/node_modules/raw-body/README.md +223 -0
  249. package/mcp/node_modules/raw-body/index.d.ts +85 -0
  250. package/mcp/node_modules/raw-body/index.js +336 -0
  251. package/mcp/node_modules/raw-body/package.json +46 -0
  252. package/mcp/node_modules/safer-buffer/LICENSE +21 -0
  253. package/mcp/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  254. package/mcp/node_modules/safer-buffer/Readme.md +156 -0
  255. package/mcp/node_modules/safer-buffer/dangerous.js +58 -0
  256. package/mcp/node_modules/safer-buffer/package.json +34 -0
  257. package/mcp/node_modules/safer-buffer/safer.js +77 -0
  258. package/mcp/node_modules/safer-buffer/tests.js +406 -0
  259. package/mcp/node_modules/setprototypeof/LICENSE +13 -0
  260. package/mcp/node_modules/setprototypeof/README.md +31 -0
  261. package/mcp/node_modules/setprototypeof/index.d.ts +2 -0
  262. package/mcp/node_modules/setprototypeof/index.js +17 -0
  263. package/mcp/node_modules/setprototypeof/package.json +38 -0
  264. package/mcp/node_modules/setprototypeof/test/index.js +24 -0
  265. package/mcp/node_modules/statuses/HISTORY.md +87 -0
  266. package/mcp/node_modules/statuses/LICENSE +23 -0
  267. package/mcp/node_modules/statuses/README.md +139 -0
  268. package/mcp/node_modules/statuses/codes.json +65 -0
  269. package/mcp/node_modules/statuses/index.js +146 -0
  270. package/mcp/node_modules/statuses/package.json +49 -0
  271. package/mcp/node_modules/toidentifier/HISTORY.md +9 -0
  272. package/mcp/node_modules/toidentifier/LICENSE +21 -0
  273. package/mcp/node_modules/toidentifier/README.md +61 -0
  274. package/mcp/node_modules/toidentifier/index.js +32 -0
  275. package/mcp/node_modules/toidentifier/package.json +38 -0
  276. package/mcp/node_modules/typescript/LICENSE.txt +55 -0
  277. package/mcp/node_modules/typescript/README.md +50 -0
  278. package/mcp/node_modules/typescript/SECURITY.md +41 -0
  279. package/mcp/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  280. package/mcp/node_modules/typescript/bin/tsc +2 -0
  281. package/mcp/node_modules/typescript/bin/tsserver +2 -0
  282. package/mcp/node_modules/typescript/lib/_tsc.js +133818 -0
  283. package/mcp/node_modules/typescript/lib/_tsserver.js +659 -0
  284. package/mcp/node_modules/typescript/lib/_typingsInstaller.js +222 -0
  285. package/mcp/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
  286. package/mcp/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
  287. package/mcp/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
  288. package/mcp/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
  289. package/mcp/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
  290. package/mcp/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
  291. package/mcp/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
  292. package/mcp/node_modules/typescript/lib/lib.d.ts +22 -0
  293. package/mcp/node_modules/typescript/lib/lib.decorators.d.ts +384 -0
  294. package/mcp/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
  295. package/mcp/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
  296. package/mcp/node_modules/typescript/lib/lib.dom.d.ts +39429 -0
  297. package/mcp/node_modules/typescript/lib/lib.dom.iterable.d.ts +571 -0
  298. package/mcp/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
  299. package/mcp/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
  300. package/mcp/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
  301. package/mcp/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
  302. package/mcp/node_modules/typescript/lib/lib.es2015.iterable.d.ts +605 -0
  303. package/mcp/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
  304. package/mcp/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
  305. package/mcp/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
  306. package/mcp/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
  307. package/mcp/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
  308. package/mcp/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
  309. package/mcp/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
  310. package/mcp/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
  311. package/mcp/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
  312. package/mcp/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +21 -0
  313. package/mcp/node_modules/typescript/lib/lib.es2017.d.ts +26 -0
  314. package/mcp/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
  315. package/mcp/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
  316. package/mcp/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
  317. package/mcp/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
  318. package/mcp/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
  319. package/mcp/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
  320. package/mcp/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
  321. package/mcp/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
  322. package/mcp/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
  323. package/mcp/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
  324. package/mcp/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
  325. package/mcp/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
  326. package/mcp/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
  327. package/mcp/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
  328. package/mcp/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
  329. package/mcp/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
  330. package/mcp/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
  331. package/mcp/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
  332. package/mcp/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
  333. package/mcp/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
  334. package/mcp/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
  335. package/mcp/node_modules/typescript/lib/lib.es2020.bigint.d.ts +765 -0
  336. package/mcp/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
  337. package/mcp/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
  338. package/mcp/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
  339. package/mcp/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
  340. package/mcp/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
  341. package/mcp/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
  342. package/mcp/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +99 -0
  343. package/mcp/node_modules/typescript/lib/lib.es2020.string.d.ts +44 -0
  344. package/mcp/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
  345. package/mcp/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
  346. package/mcp/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
  347. package/mcp/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
  348. package/mcp/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
  349. package/mcp/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
  350. package/mcp/node_modules/typescript/lib/lib.es2021.weakref.d.ts +78 -0
  351. package/mcp/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
  352. package/mcp/node_modules/typescript/lib/lib.es2022.d.ts +25 -0
  353. package/mcp/node_modules/typescript/lib/lib.es2022.error.d.ts +75 -0
  354. package/mcp/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
  355. package/mcp/node_modules/typescript/lib/lib.es2022.intl.d.ts +145 -0
  356. package/mcp/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
  357. package/mcp/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
  358. package/mcp/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
  359. package/mcp/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
  360. package/mcp/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
  361. package/mcp/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
  362. package/mcp/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
  363. package/mcp/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
  364. package/mcp/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +65 -0
  365. package/mcp/node_modules/typescript/lib/lib.es2024.collection.d.ts +29 -0
  366. package/mcp/node_modules/typescript/lib/lib.es2024.d.ts +26 -0
  367. package/mcp/node_modules/typescript/lib/lib.es2024.full.d.ts +24 -0
  368. package/mcp/node_modules/typescript/lib/lib.es2024.object.d.ts +29 -0
  369. package/mcp/node_modules/typescript/lib/lib.es2024.promise.d.ts +35 -0
  370. package/mcp/node_modules/typescript/lib/lib.es2024.regexp.d.ts +25 -0
  371. package/mcp/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +68 -0
  372. package/mcp/node_modules/typescript/lib/lib.es2024.string.d.ts +29 -0
  373. package/mcp/node_modules/typescript/lib/lib.es5.d.ts +4601 -0
  374. package/mcp/node_modules/typescript/lib/lib.es6.d.ts +23 -0
  375. package/mcp/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
  376. package/mcp/node_modules/typescript/lib/lib.esnext.collection.d.ts +96 -0
  377. package/mcp/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
  378. package/mcp/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
  379. package/mcp/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
  380. package/mcp/node_modules/typescript/lib/lib.esnext.error.d.ts +24 -0
  381. package/mcp/node_modules/typescript/lib/lib.esnext.float16.d.ts +445 -0
  382. package/mcp/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
  383. package/mcp/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
  384. package/mcp/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
  385. package/mcp/node_modules/typescript/lib/lib.esnext.promise.d.ts +34 -0
  386. package/mcp/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +25 -0
  387. package/mcp/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
  388. package/mcp/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
  389. package/mcp/node_modules/typescript/lib/lib.webworker.d.ts +13150 -0
  390. package/mcp/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
  391. package/mcp/node_modules/typescript/lib/lib.webworker.iterable.d.ts +340 -0
  392. package/mcp/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
  393. package/mcp/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
  394. package/mcp/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
  395. package/mcp/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
  396. package/mcp/node_modules/typescript/lib/tsc.js +8 -0
  397. package/mcp/node_modules/typescript/lib/tsserver.js +8 -0
  398. package/mcp/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
  399. package/mcp/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  400. package/mcp/node_modules/typescript/lib/typesMap.json +497 -0
  401. package/mcp/node_modules/typescript/lib/typescript.d.ts +11437 -0
  402. package/mcp/node_modules/typescript/lib/typescript.js +200276 -0
  403. package/mcp/node_modules/typescript/lib/typingsInstaller.js +8 -0
  404. package/mcp/node_modules/typescript/lib/watchGuard.js +53 -0
  405. package/mcp/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
  406. package/mcp/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
  407. package/mcp/node_modules/typescript/package.json +120 -0
  408. package/mcp/node_modules/undici-types/LICENSE +21 -0
  409. package/mcp/node_modules/undici-types/README.md +6 -0
  410. package/mcp/node_modules/undici-types/agent.d.ts +31 -0
  411. package/mcp/node_modules/undici-types/api.d.ts +43 -0
  412. package/mcp/node_modules/undici-types/balanced-pool.d.ts +29 -0
  413. package/mcp/node_modules/undici-types/cache.d.ts +36 -0
  414. package/mcp/node_modules/undici-types/client.d.ts +108 -0
  415. package/mcp/node_modules/undici-types/connector.d.ts +34 -0
  416. package/mcp/node_modules/undici-types/content-type.d.ts +21 -0
  417. package/mcp/node_modules/undici-types/cookies.d.ts +28 -0
  418. package/mcp/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
  419. package/mcp/node_modules/undici-types/dispatcher.d.ts +256 -0
  420. package/mcp/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  421. package/mcp/node_modules/undici-types/errors.d.ts +149 -0
  422. package/mcp/node_modules/undici-types/eventsource.d.ts +61 -0
  423. package/mcp/node_modules/undici-types/fetch.d.ts +209 -0
  424. package/mcp/node_modules/undici-types/file.d.ts +39 -0
  425. package/mcp/node_modules/undici-types/filereader.d.ts +54 -0
  426. package/mcp/node_modules/undici-types/formdata.d.ts +108 -0
  427. package/mcp/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  428. package/mcp/node_modules/undici-types/global-origin.d.ts +7 -0
  429. package/mcp/node_modules/undici-types/handlers.d.ts +15 -0
  430. package/mcp/node_modules/undici-types/header.d.ts +4 -0
  431. package/mcp/node_modules/undici-types/index.d.ts +71 -0
  432. package/mcp/node_modules/undici-types/interceptors.d.ts +17 -0
  433. package/mcp/node_modules/undici-types/mock-agent.d.ts +50 -0
  434. package/mcp/node_modules/undici-types/mock-client.d.ts +25 -0
  435. package/mcp/node_modules/undici-types/mock-errors.d.ts +12 -0
  436. package/mcp/node_modules/undici-types/mock-interceptor.d.ts +93 -0
  437. package/mcp/node_modules/undici-types/mock-pool.d.ts +25 -0
  438. package/mcp/node_modules/undici-types/package.json +55 -0
  439. package/mcp/node_modules/undici-types/patch.d.ts +33 -0
  440. package/mcp/node_modules/undici-types/pool-stats.d.ts +19 -0
  441. package/mcp/node_modules/undici-types/pool.d.ts +39 -0
  442. package/mcp/node_modules/undici-types/proxy-agent.d.ts +28 -0
  443. package/mcp/node_modules/undici-types/readable.d.ts +65 -0
  444. package/mcp/node_modules/undici-types/retry-agent.d.ts +8 -0
  445. package/mcp/node_modules/undici-types/retry-handler.d.ts +116 -0
  446. package/mcp/node_modules/undici-types/util.d.ts +18 -0
  447. package/mcp/node_modules/undici-types/webidl.d.ts +228 -0
  448. package/mcp/node_modules/undici-types/websocket.d.ts +150 -0
  449. package/mcp/node_modules/unpipe/HISTORY.md +4 -0
  450. package/mcp/node_modules/unpipe/LICENSE +22 -0
  451. package/mcp/node_modules/unpipe/README.md +43 -0
  452. package/mcp/node_modules/unpipe/index.js +69 -0
  453. package/mcp/node_modules/unpipe/package.json +27 -0
  454. package/mcp/node_modules/zod/LICENSE +21 -0
  455. package/mcp/node_modules/zod/README.md +208 -0
  456. package/mcp/node_modules/zod/index.cjs +33 -0
  457. package/mcp/node_modules/zod/index.d.cts +4 -0
  458. package/mcp/node_modules/zod/index.d.ts +4 -0
  459. package/mcp/node_modules/zod/index.js +4 -0
  460. package/mcp/node_modules/zod/package.json +118 -0
  461. package/mcp/node_modules/zod/src/index.ts +4 -0
  462. package/mcp/node_modules/zod/src/v3/ZodError.ts +330 -0
  463. package/mcp/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  464. package/mcp/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  465. package/mcp/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  466. package/mcp/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  467. package/mcp/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  468. package/mcp/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  469. package/mcp/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  470. package/mcp/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  471. package/mcp/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  472. package/mcp/node_modules/zod/src/v3/errors.ts +13 -0
  473. package/mcp/node_modules/zod/src/v3/external.ts +6 -0
  474. package/mcp/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  475. package/mcp/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  476. package/mcp/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  477. package/mcp/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  478. package/mcp/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  479. package/mcp/node_modules/zod/src/v3/helpers/util.ts +224 -0
  480. package/mcp/node_modules/zod/src/v3/index.ts +4 -0
  481. package/mcp/node_modules/zod/src/v3/locales/en.ts +124 -0
  482. package/mcp/node_modules/zod/src/v3/standard-schema.ts +113 -0
  483. package/mcp/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  484. package/mcp/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  485. package/mcp/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  486. package/mcp/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  487. package/mcp/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  488. package/mcp/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  489. package/mcp/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  490. package/mcp/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  491. package/mcp/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  492. package/mcp/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  493. package/mcp/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  494. package/mcp/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  495. package/mcp/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  496. package/mcp/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  497. package/mcp/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  498. package/mcp/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  499. package/mcp/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  500. package/mcp/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  501. package/mcp/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  502. package/mcp/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  503. package/mcp/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  504. package/mcp/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  505. package/mcp/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  506. package/mcp/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  507. package/mcp/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  508. package/mcp/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  509. package/mcp/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  510. package/mcp/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  511. package/mcp/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  512. package/mcp/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  513. package/mcp/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  514. package/mcp/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  515. package/mcp/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  516. package/mcp/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  517. package/mcp/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  518. package/mcp/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  519. package/mcp/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  520. package/mcp/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  521. package/mcp/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  522. package/mcp/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  523. package/mcp/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  524. package/mcp/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  525. package/mcp/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  526. package/mcp/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  527. package/mcp/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  528. package/mcp/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  529. package/mcp/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  530. package/mcp/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  531. package/mcp/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  532. package/mcp/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  533. package/mcp/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  534. package/mcp/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  535. package/mcp/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  536. package/mcp/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  537. package/mcp/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  538. package/mcp/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  539. package/mcp/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  540. package/mcp/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  541. package/mcp/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  542. package/mcp/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  543. package/mcp/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  544. package/mcp/node_modules/zod/src/v3/types.ts +5136 -0
  545. package/mcp/node_modules/zod/src/v4/classic/checks.ts +30 -0
  546. package/mcp/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  547. package/mcp/node_modules/zod/src/v4/classic/compat.ts +66 -0
  548. package/mcp/node_modules/zod/src/v4/classic/errors.ts +75 -0
  549. package/mcp/node_modules/zod/src/v4/classic/external.ts +50 -0
  550. package/mcp/node_modules/zod/src/v4/classic/index.ts +5 -0
  551. package/mcp/node_modules/zod/src/v4/classic/iso.ts +90 -0
  552. package/mcp/node_modules/zod/src/v4/classic/parse.ts +33 -0
  553. package/mcp/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
  554. package/mcp/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  555. package/mcp/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  556. package/mcp/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  557. package/mcp/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  558. package/mcp/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  559. package/mcp/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  560. package/mcp/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  561. package/mcp/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  562. package/mcp/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
  563. package/mcp/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  564. package/mcp/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  565. package/mcp/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  566. package/mcp/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  567. package/mcp/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  568. package/mcp/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
  569. package/mcp/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
  570. package/mcp/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  571. package/mcp/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
  572. package/mcp/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  573. package/mcp/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
  574. package/mcp/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  575. package/mcp/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
  576. package/mcp/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
  577. package/mcp/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
  578. package/mcp/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  579. package/mcp/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
  580. package/mcp/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  581. package/mcp/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  582. package/mcp/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  583. package/mcp/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  584. package/mcp/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
  585. package/mcp/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  586. package/mcp/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  587. package/mcp/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  588. package/mcp/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
  589. package/mcp/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  590. package/mcp/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
  591. package/mcp/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
  592. package/mcp/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
  593. package/mcp/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
  594. package/mcp/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  595. package/mcp/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
  596. package/mcp/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
  597. package/mcp/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
  598. package/mcp/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  599. package/mcp/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  600. package/mcp/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  601. package/mcp/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  602. package/mcp/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
  603. package/mcp/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
  604. package/mcp/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
  605. package/mcp/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  606. package/mcp/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
  607. package/mcp/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  608. package/mcp/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
  609. package/mcp/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
  610. package/mcp/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
  611. package/mcp/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
  612. package/mcp/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
  613. package/mcp/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
  614. package/mcp/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  615. package/mcp/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
  616. package/mcp/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  617. package/mcp/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  618. package/mcp/node_modules/zod/src/v4/core/api.ts +1594 -0
  619. package/mcp/node_modules/zod/src/v4/core/checks.ts +1283 -0
  620. package/mcp/node_modules/zod/src/v4/core/config.ts +15 -0
  621. package/mcp/node_modules/zod/src/v4/core/core.ts +134 -0
  622. package/mcp/node_modules/zod/src/v4/core/doc.ts +44 -0
  623. package/mcp/node_modules/zod/src/v4/core/errors.ts +424 -0
  624. package/mcp/node_modules/zod/src/v4/core/function.ts +176 -0
  625. package/mcp/node_modules/zod/src/v4/core/index.ts +15 -0
  626. package/mcp/node_modules/zod/src/v4/core/json-schema.ts +143 -0
  627. package/mcp/node_modules/zod/src/v4/core/parse.ts +94 -0
  628. package/mcp/node_modules/zod/src/v4/core/regexes.ts +135 -0
  629. package/mcp/node_modules/zod/src/v4/core/registries.ts +96 -0
  630. package/mcp/node_modules/zod/src/v4/core/schemas.ts +3842 -0
  631. package/mcp/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  632. package/mcp/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  633. package/mcp/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  634. package/mcp/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  635. package/mcp/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  636. package/mcp/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  637. package/mcp/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
  638. package/mcp/node_modules/zod/src/v4/core/util.ts +775 -0
  639. package/mcp/node_modules/zod/src/v4/core/versions.ts +5 -0
  640. package/mcp/node_modules/zod/src/v4/core/zsf.ts +323 -0
  641. package/mcp/node_modules/zod/src/v4/index.ts +4 -0
  642. package/mcp/node_modules/zod/src/v4/locales/ar.ts +125 -0
  643. package/mcp/node_modules/zod/src/v4/locales/az.ts +121 -0
  644. package/mcp/node_modules/zod/src/v4/locales/be.ts +184 -0
  645. package/mcp/node_modules/zod/src/v4/locales/ca.ts +127 -0
  646. package/mcp/node_modules/zod/src/v4/locales/cs.ts +142 -0
  647. package/mcp/node_modules/zod/src/v4/locales/de.ts +124 -0
  648. package/mcp/node_modules/zod/src/v4/locales/en.ts +127 -0
  649. package/mcp/node_modules/zod/src/v4/locales/eo.ts +125 -0
  650. package/mcp/node_modules/zod/src/v4/locales/es.ts +125 -0
  651. package/mcp/node_modules/zod/src/v4/locales/fa.ts +134 -0
  652. package/mcp/node_modules/zod/src/v4/locales/fi.ts +131 -0
  653. package/mcp/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  654. package/mcp/node_modules/zod/src/v4/locales/fr.ts +124 -0
  655. package/mcp/node_modules/zod/src/v4/locales/he.ts +125 -0
  656. package/mcp/node_modules/zod/src/v4/locales/hu.ts +126 -0
  657. package/mcp/node_modules/zod/src/v4/locales/id.ts +125 -0
  658. package/mcp/node_modules/zod/src/v4/locales/index.ts +39 -0
  659. package/mcp/node_modules/zod/src/v4/locales/it.ts +125 -0
  660. package/mcp/node_modules/zod/src/v4/locales/ja.ts +122 -0
  661. package/mcp/node_modules/zod/src/v4/locales/kh.ts +126 -0
  662. package/mcp/node_modules/zod/src/v4/locales/ko.ts +131 -0
  663. package/mcp/node_modules/zod/src/v4/locales/mk.ts +127 -0
  664. package/mcp/node_modules/zod/src/v4/locales/ms.ts +124 -0
  665. package/mcp/node_modules/zod/src/v4/locales/nl.ts +126 -0
  666. package/mcp/node_modules/zod/src/v4/locales/no.ts +124 -0
  667. package/mcp/node_modules/zod/src/v4/locales/ota.ts +125 -0
  668. package/mcp/node_modules/zod/src/v4/locales/pl.ts +126 -0
  669. package/mcp/node_modules/zod/src/v4/locales/ps.ts +133 -0
  670. package/mcp/node_modules/zod/src/v4/locales/pt.ts +123 -0
  671. package/mcp/node_modules/zod/src/v4/locales/ru.ts +184 -0
  672. package/mcp/node_modules/zod/src/v4/locales/sl.ts +126 -0
  673. package/mcp/node_modules/zod/src/v4/locales/sv.ts +127 -0
  674. package/mcp/node_modules/zod/src/v4/locales/ta.ts +125 -0
  675. package/mcp/node_modules/zod/src/v4/locales/th.ts +126 -0
  676. package/mcp/node_modules/zod/src/v4/locales/tr.ts +121 -0
  677. package/mcp/node_modules/zod/src/v4/locales/ua.ts +126 -0
  678. package/mcp/node_modules/zod/src/v4/locales/ur.ts +126 -0
  679. package/mcp/node_modules/zod/src/v4/locales/vi.ts +125 -0
  680. package/mcp/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  681. package/mcp/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  682. package/mcp/node_modules/zod/src/v4/mini/checks.ts +32 -0
  683. package/mcp/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  684. package/mcp/node_modules/zod/src/v4/mini/external.ts +40 -0
  685. package/mcp/node_modules/zod/src/v4/mini/index.ts +3 -0
  686. package/mcp/node_modules/zod/src/v4/mini/iso.ts +62 -0
  687. package/mcp/node_modules/zod/src/v4/mini/parse.ts +1 -0
  688. package/mcp/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
  689. package/mcp/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  690. package/mcp/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  691. package/mcp/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  692. package/mcp/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  693. package/mcp/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  694. package/mcp/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  695. package/mcp/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
  696. package/mcp/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  697. package/mcp/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
  698. package/mcp/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  699. package/mcp/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  700. package/mcp/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
  701. package/mcp/node_modules/zod/src/v4-mini/index.ts +1 -0
  702. package/mcp/node_modules/zod/v3/ZodError.cjs +138 -0
  703. package/mcp/node_modules/zod/v3/ZodError.d.cts +164 -0
  704. package/mcp/node_modules/zod/v3/ZodError.d.ts +164 -0
  705. package/mcp/node_modules/zod/v3/ZodError.js +133 -0
  706. package/mcp/node_modules/zod/v3/errors.cjs +17 -0
  707. package/mcp/node_modules/zod/v3/errors.d.cts +5 -0
  708. package/mcp/node_modules/zod/v3/errors.d.ts +5 -0
  709. package/mcp/node_modules/zod/v3/errors.js +9 -0
  710. package/mcp/node_modules/zod/v3/external.cjs +22 -0
  711. package/mcp/node_modules/zod/v3/external.d.cts +6 -0
  712. package/mcp/node_modules/zod/v3/external.d.ts +6 -0
  713. package/mcp/node_modules/zod/v3/external.js +6 -0
  714. package/mcp/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  715. package/mcp/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  716. package/mcp/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  717. package/mcp/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  718. package/mcp/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  719. package/mcp/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  720. package/mcp/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  721. package/mcp/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  722. package/mcp/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  723. package/mcp/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  724. package/mcp/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  725. package/mcp/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  726. package/mcp/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  727. package/mcp/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  728. package/mcp/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  729. package/mcp/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  730. package/mcp/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  731. package/mcp/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  732. package/mcp/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  733. package/mcp/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  734. package/mcp/node_modules/zod/v3/helpers/util.cjs +137 -0
  735. package/mcp/node_modules/zod/v3/helpers/util.d.cts +85 -0
  736. package/mcp/node_modules/zod/v3/helpers/util.d.ts +85 -0
  737. package/mcp/node_modules/zod/v3/helpers/util.js +133 -0
  738. package/mcp/node_modules/zod/v3/index.cjs +33 -0
  739. package/mcp/node_modules/zod/v3/index.d.cts +4 -0
  740. package/mcp/node_modules/zod/v3/index.d.ts +4 -0
  741. package/mcp/node_modules/zod/v3/index.js +4 -0
  742. package/mcp/node_modules/zod/v3/locales/en.cjs +111 -0
  743. package/mcp/node_modules/zod/v3/locales/en.d.cts +3 -0
  744. package/mcp/node_modules/zod/v3/locales/en.d.ts +3 -0
  745. package/mcp/node_modules/zod/v3/locales/en.js +109 -0
  746. package/mcp/node_modules/zod/v3/standard-schema.cjs +2 -0
  747. package/mcp/node_modules/zod/v3/standard-schema.d.cts +102 -0
  748. package/mcp/node_modules/zod/v3/standard-schema.d.ts +102 -0
  749. package/mcp/node_modules/zod/v3/standard-schema.js +1 -0
  750. package/mcp/node_modules/zod/v3/types.cjs +3775 -0
  751. package/mcp/node_modules/zod/v3/types.d.cts +1031 -0
  752. package/mcp/node_modules/zod/v3/types.d.ts +1031 -0
  753. package/mcp/node_modules/zod/v3/types.js +3693 -0
  754. package/mcp/node_modules/zod/v4/classic/checks.cjs +32 -0
  755. package/mcp/node_modules/zod/v4/classic/checks.d.cts +1 -0
  756. package/mcp/node_modules/zod/v4/classic/checks.d.ts +1 -0
  757. package/mcp/node_modules/zod/v4/classic/checks.js +1 -0
  758. package/mcp/node_modules/zod/v4/classic/coerce.cjs +47 -0
  759. package/mcp/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  760. package/mcp/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  761. package/mcp/node_modules/zod/v4/classic/coerce.js +17 -0
  762. package/mcp/node_modules/zod/v4/classic/compat.cjs +57 -0
  763. package/mcp/node_modules/zod/v4/classic/compat.d.cts +46 -0
  764. package/mcp/node_modules/zod/v4/classic/compat.d.ts +46 -0
  765. package/mcp/node_modules/zod/v4/classic/compat.js +27 -0
  766. package/mcp/node_modules/zod/v4/classic/errors.cjs +67 -0
  767. package/mcp/node_modules/zod/v4/classic/errors.d.cts +30 -0
  768. package/mcp/node_modules/zod/v4/classic/errors.d.ts +30 -0
  769. package/mcp/node_modules/zod/v4/classic/errors.js +41 -0
  770. package/mcp/node_modules/zod/v4/classic/external.cjs +70 -0
  771. package/mcp/node_modules/zod/v4/classic/external.d.cts +13 -0
  772. package/mcp/node_modules/zod/v4/classic/external.d.ts +13 -0
  773. package/mcp/node_modules/zod/v4/classic/external.js +18 -0
  774. package/mcp/node_modules/zod/v4/classic/index.cjs +33 -0
  775. package/mcp/node_modules/zod/v4/classic/index.d.cts +4 -0
  776. package/mcp/node_modules/zod/v4/classic/index.d.ts +4 -0
  777. package/mcp/node_modules/zod/v4/classic/index.js +4 -0
  778. package/mcp/node_modules/zod/v4/classic/iso.cjs +60 -0
  779. package/mcp/node_modules/zod/v4/classic/iso.d.cts +22 -0
  780. package/mcp/node_modules/zod/v4/classic/iso.d.ts +22 -0
  781. package/mcp/node_modules/zod/v4/classic/iso.js +30 -0
  782. package/mcp/node_modules/zod/v4/classic/parse.cjs +32 -0
  783. package/mcp/node_modules/zod/v4/classic/parse.d.cts +23 -0
  784. package/mcp/node_modules/zod/v4/classic/parse.d.ts +23 -0
  785. package/mcp/node_modules/zod/v4/classic/parse.js +6 -0
  786. package/mcp/node_modules/zod/v4/classic/schemas.cjs +1109 -0
  787. package/mcp/node_modules/zod/v4/classic/schemas.d.cts +630 -0
  788. package/mcp/node_modules/zod/v4/classic/schemas.d.ts +630 -0
  789. package/mcp/node_modules/zod/v4/classic/schemas.js +1006 -0
  790. package/mcp/node_modules/zod/v4/core/api.cjs +1039 -0
  791. package/mcp/node_modules/zod/v4/core/api.d.cts +284 -0
  792. package/mcp/node_modules/zod/v4/core/api.d.ts +284 -0
  793. package/mcp/node_modules/zod/v4/core/api.js +906 -0
  794. package/mcp/node_modules/zod/v4/core/checks.cjs +591 -0
  795. package/mcp/node_modules/zod/v4/core/checks.d.cts +278 -0
  796. package/mcp/node_modules/zod/v4/core/checks.d.ts +278 -0
  797. package/mcp/node_modules/zod/v4/core/checks.js +565 -0
  798. package/mcp/node_modules/zod/v4/core/core.cjs +67 -0
  799. package/mcp/node_modules/zod/v4/core/core.d.cts +49 -0
  800. package/mcp/node_modules/zod/v4/core/core.d.ts +49 -0
  801. package/mcp/node_modules/zod/v4/core/core.js +61 -0
  802. package/mcp/node_modules/zod/v4/core/doc.cjs +39 -0
  803. package/mcp/node_modules/zod/v4/core/doc.d.cts +14 -0
  804. package/mcp/node_modules/zod/v4/core/doc.d.ts +14 -0
  805. package/mcp/node_modules/zod/v4/core/doc.js +35 -0
  806. package/mcp/node_modules/zod/v4/core/errors.cjs +226 -0
  807. package/mcp/node_modules/zod/v4/core/errors.d.cts +208 -0
  808. package/mcp/node_modules/zod/v4/core/errors.d.ts +208 -0
  809. package/mcp/node_modules/zod/v4/core/errors.js +195 -0
  810. package/mcp/node_modules/zod/v4/core/function.cjs +102 -0
  811. package/mcp/node_modules/zod/v4/core/function.d.cts +52 -0
  812. package/mcp/node_modules/zod/v4/core/function.d.ts +52 -0
  813. package/mcp/node_modules/zod/v4/core/function.js +75 -0
  814. package/mcp/node_modules/zod/v4/core/index.cjs +44 -0
  815. package/mcp/node_modules/zod/v4/core/index.d.cts +15 -0
  816. package/mcp/node_modules/zod/v4/core/index.d.ts +15 -0
  817. package/mcp/node_modules/zod/v4/core/index.js +15 -0
  818. package/mcp/node_modules/zod/v4/core/json-schema.cjs +2 -0
  819. package/mcp/node_modules/zod/v4/core/json-schema.d.cts +87 -0
  820. package/mcp/node_modules/zod/v4/core/json-schema.d.ts +87 -0
  821. package/mcp/node_modules/zod/v4/core/json-schema.js +1 -0
  822. package/mcp/node_modules/zod/v4/core/parse.cjs +87 -0
  823. package/mcp/node_modules/zod/v4/core/parse.d.cts +25 -0
  824. package/mcp/node_modules/zod/v4/core/parse.d.ts +25 -0
  825. package/mcp/node_modules/zod/v4/core/parse.js +57 -0
  826. package/mcp/node_modules/zod/v4/core/regexes.cjs +103 -0
  827. package/mcp/node_modules/zod/v4/core/regexes.d.cts +62 -0
  828. package/mcp/node_modules/zod/v4/core/regexes.d.ts +62 -0
  829. package/mcp/node_modules/zod/v4/core/regexes.js +95 -0
  830. package/mcp/node_modules/zod/v4/core/registries.cjs +56 -0
  831. package/mcp/node_modules/zod/v4/core/registries.d.cts +35 -0
  832. package/mcp/node_modules/zod/v4/core/registries.d.ts +35 -0
  833. package/mcp/node_modules/zod/v4/core/registries.js +51 -0
  834. package/mcp/node_modules/zod/v4/core/schemas.cjs +1748 -0
  835. package/mcp/node_modules/zod/v4/core/schemas.d.cts +1041 -0
  836. package/mcp/node_modules/zod/v4/core/schemas.d.ts +1041 -0
  837. package/mcp/node_modules/zod/v4/core/schemas.js +1717 -0
  838. package/mcp/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  839. package/mcp/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  840. package/mcp/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  841. package/mcp/node_modules/zod/v4/core/standard-schema.js +1 -0
  842. package/mcp/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
  843. package/mcp/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
  844. package/mcp/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
  845. package/mcp/node_modules/zod/v4/core/to-json-schema.js +849 -0
  846. package/mcp/node_modules/zod/v4/core/util.cjs +539 -0
  847. package/mcp/node_modules/zod/v4/core/util.d.cts +183 -0
  848. package/mcp/node_modules/zod/v4/core/util.d.ts +183 -0
  849. package/mcp/node_modules/zod/v4/core/util.js +493 -0
  850. package/mcp/node_modules/zod/v4/core/versions.cjs +8 -0
  851. package/mcp/node_modules/zod/v4/core/versions.d.cts +5 -0
  852. package/mcp/node_modules/zod/v4/core/versions.d.ts +5 -0
  853. package/mcp/node_modules/zod/v4/core/versions.js +5 -0
  854. package/mcp/node_modules/zod/v4/index.cjs +22 -0
  855. package/mcp/node_modules/zod/v4/index.d.cts +3 -0
  856. package/mcp/node_modules/zod/v4/index.d.ts +3 -0
  857. package/mcp/node_modules/zod/v4/index.js +3 -0
  858. package/mcp/node_modules/zod/v4/locales/ar.cjs +142 -0
  859. package/mcp/node_modules/zod/v4/locales/ar.d.cts +4 -0
  860. package/mcp/node_modules/zod/v4/locales/ar.d.ts +4 -0
  861. package/mcp/node_modules/zod/v4/locales/ar.js +116 -0
  862. package/mcp/node_modules/zod/v4/locales/az.cjs +141 -0
  863. package/mcp/node_modules/zod/v4/locales/az.d.cts +4 -0
  864. package/mcp/node_modules/zod/v4/locales/az.d.ts +4 -0
  865. package/mcp/node_modules/zod/v4/locales/az.js +115 -0
  866. package/mcp/node_modules/zod/v4/locales/be.cjs +190 -0
  867. package/mcp/node_modules/zod/v4/locales/be.d.cts +4 -0
  868. package/mcp/node_modules/zod/v4/locales/be.d.ts +4 -0
  869. package/mcp/node_modules/zod/v4/locales/be.js +164 -0
  870. package/mcp/node_modules/zod/v4/locales/ca.cjs +144 -0
  871. package/mcp/node_modules/zod/v4/locales/ca.d.cts +4 -0
  872. package/mcp/node_modules/zod/v4/locales/ca.d.ts +4 -0
  873. package/mcp/node_modules/zod/v4/locales/ca.js +118 -0
  874. package/mcp/node_modules/zod/v4/locales/cs.cjs +161 -0
  875. package/mcp/node_modules/zod/v4/locales/cs.d.cts +4 -0
  876. package/mcp/node_modules/zod/v4/locales/cs.d.ts +4 -0
  877. package/mcp/node_modules/zod/v4/locales/cs.js +135 -0
  878. package/mcp/node_modules/zod/v4/locales/de.cjs +142 -0
  879. package/mcp/node_modules/zod/v4/locales/de.d.cts +4 -0
  880. package/mcp/node_modules/zod/v4/locales/de.d.ts +4 -0
  881. package/mcp/node_modules/zod/v4/locales/de.js +116 -0
  882. package/mcp/node_modules/zod/v4/locales/en.cjs +145 -0
  883. package/mcp/node_modules/zod/v4/locales/en.d.cts +5 -0
  884. package/mcp/node_modules/zod/v4/locales/en.d.ts +5 -0
  885. package/mcp/node_modules/zod/v4/locales/en.js +117 -0
  886. package/mcp/node_modules/zod/v4/locales/eo.cjs +144 -0
  887. package/mcp/node_modules/zod/v4/locales/eo.d.cts +5 -0
  888. package/mcp/node_modules/zod/v4/locales/eo.d.ts +5 -0
  889. package/mcp/node_modules/zod/v4/locales/eo.js +116 -0
  890. package/mcp/node_modules/zod/v4/locales/es.cjs +143 -0
  891. package/mcp/node_modules/zod/v4/locales/es.d.cts +4 -0
  892. package/mcp/node_modules/zod/v4/locales/es.d.ts +4 -0
  893. package/mcp/node_modules/zod/v4/locales/es.js +117 -0
  894. package/mcp/node_modules/zod/v4/locales/fa.cjs +148 -0
  895. package/mcp/node_modules/zod/v4/locales/fa.d.cts +4 -0
  896. package/mcp/node_modules/zod/v4/locales/fa.d.ts +4 -0
  897. package/mcp/node_modules/zod/v4/locales/fa.js +122 -0
  898. package/mcp/node_modules/zod/v4/locales/fi.cjs +148 -0
  899. package/mcp/node_modules/zod/v4/locales/fi.d.cts +4 -0
  900. package/mcp/node_modules/zod/v4/locales/fi.d.ts +4 -0
  901. package/mcp/node_modules/zod/v4/locales/fi.js +122 -0
  902. package/mcp/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
  903. package/mcp/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
  904. package/mcp/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  905. package/mcp/node_modules/zod/v4/locales/fr-CA.js +117 -0
  906. package/mcp/node_modules/zod/v4/locales/fr.cjs +142 -0
  907. package/mcp/node_modules/zod/v4/locales/fr.d.cts +4 -0
  908. package/mcp/node_modules/zod/v4/locales/fr.d.ts +4 -0
  909. package/mcp/node_modules/zod/v4/locales/fr.js +116 -0
  910. package/mcp/node_modules/zod/v4/locales/he.cjs +143 -0
  911. package/mcp/node_modules/zod/v4/locales/he.d.cts +4 -0
  912. package/mcp/node_modules/zod/v4/locales/he.d.ts +4 -0
  913. package/mcp/node_modules/zod/v4/locales/he.js +117 -0
  914. package/mcp/node_modules/zod/v4/locales/hu.cjs +143 -0
  915. package/mcp/node_modules/zod/v4/locales/hu.d.cts +4 -0
  916. package/mcp/node_modules/zod/v4/locales/hu.d.ts +4 -0
  917. package/mcp/node_modules/zod/v4/locales/hu.js +117 -0
  918. package/mcp/node_modules/zod/v4/locales/id.cjs +142 -0
  919. package/mcp/node_modules/zod/v4/locales/id.d.cts +4 -0
  920. package/mcp/node_modules/zod/v4/locales/id.d.ts +4 -0
  921. package/mcp/node_modules/zod/v4/locales/id.js +116 -0
  922. package/mcp/node_modules/zod/v4/locales/index.cjs +84 -0
  923. package/mcp/node_modules/zod/v4/locales/index.d.cts +39 -0
  924. package/mcp/node_modules/zod/v4/locales/index.d.ts +39 -0
  925. package/mcp/node_modules/zod/v4/locales/index.js +39 -0
  926. package/mcp/node_modules/zod/v4/locales/it.cjs +143 -0
  927. package/mcp/node_modules/zod/v4/locales/it.d.cts +4 -0
  928. package/mcp/node_modules/zod/v4/locales/it.d.ts +4 -0
  929. package/mcp/node_modules/zod/v4/locales/it.js +117 -0
  930. package/mcp/node_modules/zod/v4/locales/ja.cjs +141 -0
  931. package/mcp/node_modules/zod/v4/locales/ja.d.cts +4 -0
  932. package/mcp/node_modules/zod/v4/locales/ja.d.ts +4 -0
  933. package/mcp/node_modules/zod/v4/locales/ja.js +115 -0
  934. package/mcp/node_modules/zod/v4/locales/kh.cjs +143 -0
  935. package/mcp/node_modules/zod/v4/locales/kh.d.cts +4 -0
  936. package/mcp/node_modules/zod/v4/locales/kh.d.ts +4 -0
  937. package/mcp/node_modules/zod/v4/locales/kh.js +117 -0
  938. package/mcp/node_modules/zod/v4/locales/ko.cjs +147 -0
  939. package/mcp/node_modules/zod/v4/locales/ko.d.cts +4 -0
  940. package/mcp/node_modules/zod/v4/locales/ko.d.ts +4 -0
  941. package/mcp/node_modules/zod/v4/locales/ko.js +121 -0
  942. package/mcp/node_modules/zod/v4/locales/mk.cjs +144 -0
  943. package/mcp/node_modules/zod/v4/locales/mk.d.cts +4 -0
  944. package/mcp/node_modules/zod/v4/locales/mk.d.ts +4 -0
  945. package/mcp/node_modules/zod/v4/locales/mk.js +118 -0
  946. package/mcp/node_modules/zod/v4/locales/ms.cjs +142 -0
  947. package/mcp/node_modules/zod/v4/locales/ms.d.cts +4 -0
  948. package/mcp/node_modules/zod/v4/locales/ms.d.ts +4 -0
  949. package/mcp/node_modules/zod/v4/locales/ms.js +116 -0
  950. package/mcp/node_modules/zod/v4/locales/nl.cjs +143 -0
  951. package/mcp/node_modules/zod/v4/locales/nl.d.cts +4 -0
  952. package/mcp/node_modules/zod/v4/locales/nl.d.ts +4 -0
  953. package/mcp/node_modules/zod/v4/locales/nl.js +117 -0
  954. package/mcp/node_modules/zod/v4/locales/no.cjs +142 -0
  955. package/mcp/node_modules/zod/v4/locales/no.d.cts +4 -0
  956. package/mcp/node_modules/zod/v4/locales/no.d.ts +4 -0
  957. package/mcp/node_modules/zod/v4/locales/no.js +116 -0
  958. package/mcp/node_modules/zod/v4/locales/ota.cjs +143 -0
  959. package/mcp/node_modules/zod/v4/locales/ota.d.cts +4 -0
  960. package/mcp/node_modules/zod/v4/locales/ota.d.ts +4 -0
  961. package/mcp/node_modules/zod/v4/locales/ota.js +117 -0
  962. package/mcp/node_modules/zod/v4/locales/pl.cjs +143 -0
  963. package/mcp/node_modules/zod/v4/locales/pl.d.cts +4 -0
  964. package/mcp/node_modules/zod/v4/locales/pl.d.ts +4 -0
  965. package/mcp/node_modules/zod/v4/locales/pl.js +117 -0
  966. package/mcp/node_modules/zod/v4/locales/ps.cjs +148 -0
  967. package/mcp/node_modules/zod/v4/locales/ps.d.cts +4 -0
  968. package/mcp/node_modules/zod/v4/locales/ps.d.ts +4 -0
  969. package/mcp/node_modules/zod/v4/locales/ps.js +122 -0
  970. package/mcp/node_modules/zod/v4/locales/pt.cjs +142 -0
  971. package/mcp/node_modules/zod/v4/locales/pt.d.cts +4 -0
  972. package/mcp/node_modules/zod/v4/locales/pt.d.ts +4 -0
  973. package/mcp/node_modules/zod/v4/locales/pt.js +116 -0
  974. package/mcp/node_modules/zod/v4/locales/ru.cjs +190 -0
  975. package/mcp/node_modules/zod/v4/locales/ru.d.cts +4 -0
  976. package/mcp/node_modules/zod/v4/locales/ru.d.ts +4 -0
  977. package/mcp/node_modules/zod/v4/locales/ru.js +164 -0
  978. package/mcp/node_modules/zod/v4/locales/sl.cjs +143 -0
  979. package/mcp/node_modules/zod/v4/locales/sl.d.cts +4 -0
  980. package/mcp/node_modules/zod/v4/locales/sl.d.ts +4 -0
  981. package/mcp/node_modules/zod/v4/locales/sl.js +117 -0
  982. package/mcp/node_modules/zod/v4/locales/sv.cjs +144 -0
  983. package/mcp/node_modules/zod/v4/locales/sv.d.cts +4 -0
  984. package/mcp/node_modules/zod/v4/locales/sv.d.ts +4 -0
  985. package/mcp/node_modules/zod/v4/locales/sv.js +118 -0
  986. package/mcp/node_modules/zod/v4/locales/ta.cjs +143 -0
  987. package/mcp/node_modules/zod/v4/locales/ta.d.cts +4 -0
  988. package/mcp/node_modules/zod/v4/locales/ta.d.ts +4 -0
  989. package/mcp/node_modules/zod/v4/locales/ta.js +117 -0
  990. package/mcp/node_modules/zod/v4/locales/th.cjs +143 -0
  991. package/mcp/node_modules/zod/v4/locales/th.d.cts +4 -0
  992. package/mcp/node_modules/zod/v4/locales/th.d.ts +4 -0
  993. package/mcp/node_modules/zod/v4/locales/th.js +117 -0
  994. package/mcp/node_modules/zod/v4/locales/tr.cjs +143 -0
  995. package/mcp/node_modules/zod/v4/locales/tr.d.cts +5 -0
  996. package/mcp/node_modules/zod/v4/locales/tr.d.ts +5 -0
  997. package/mcp/node_modules/zod/v4/locales/tr.js +115 -0
  998. package/mcp/node_modules/zod/v4/locales/ua.cjs +143 -0
  999. package/mcp/node_modules/zod/v4/locales/ua.d.cts +4 -0
  1000. package/mcp/node_modules/zod/v4/locales/ua.d.ts +4 -0
  1001. package/mcp/node_modules/zod/v4/locales/ua.js +117 -0
  1002. package/mcp/node_modules/zod/v4/locales/ur.cjs +143 -0
  1003. package/mcp/node_modules/zod/v4/locales/ur.d.cts +4 -0
  1004. package/mcp/node_modules/zod/v4/locales/ur.d.ts +4 -0
  1005. package/mcp/node_modules/zod/v4/locales/ur.js +117 -0
  1006. package/mcp/node_modules/zod/v4/locales/vi.cjs +142 -0
  1007. package/mcp/node_modules/zod/v4/locales/vi.d.cts +4 -0
  1008. package/mcp/node_modules/zod/v4/locales/vi.d.ts +4 -0
  1009. package/mcp/node_modules/zod/v4/locales/vi.js +116 -0
  1010. package/mcp/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
  1011. package/mcp/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
  1012. package/mcp/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  1013. package/mcp/node_modules/zod/v4/locales/zh-CN.js +116 -0
  1014. package/mcp/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
  1015. package/mcp/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
  1016. package/mcp/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  1017. package/mcp/node_modules/zod/v4/locales/zh-TW.js +117 -0
  1018. package/mcp/node_modules/zod/v4/mini/checks.cjs +34 -0
  1019. package/mcp/node_modules/zod/v4/mini/checks.d.cts +1 -0
  1020. package/mcp/node_modules/zod/v4/mini/checks.d.ts +1 -0
  1021. package/mcp/node_modules/zod/v4/mini/checks.js +1 -0
  1022. package/mcp/node_modules/zod/v4/mini/coerce.cjs +47 -0
  1023. package/mcp/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  1024. package/mcp/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  1025. package/mcp/node_modules/zod/v4/mini/coerce.js +17 -0
  1026. package/mcp/node_modules/zod/v4/mini/external.cjs +62 -0
  1027. package/mcp/node_modules/zod/v4/mini/external.d.cts +11 -0
  1028. package/mcp/node_modules/zod/v4/mini/external.d.ts +11 -0
  1029. package/mcp/node_modules/zod/v4/mini/external.js +13 -0
  1030. package/mcp/node_modules/zod/v4/mini/index.cjs +32 -0
  1031. package/mcp/node_modules/zod/v4/mini/index.d.cts +3 -0
  1032. package/mcp/node_modules/zod/v4/mini/index.d.ts +3 -0
  1033. package/mcp/node_modules/zod/v4/mini/index.js +3 -0
  1034. package/mcp/node_modules/zod/v4/mini/iso.cjs +60 -0
  1035. package/mcp/node_modules/zod/v4/mini/iso.d.cts +22 -0
  1036. package/mcp/node_modules/zod/v4/mini/iso.d.ts +22 -0
  1037. package/mcp/node_modules/zod/v4/mini/iso.js +30 -0
  1038. package/mcp/node_modules/zod/v4/mini/parse.cjs +8 -0
  1039. package/mcp/node_modules/zod/v4/mini/parse.d.cts +1 -0
  1040. package/mcp/node_modules/zod/v4/mini/parse.d.ts +1 -0
  1041. package/mcp/node_modules/zod/v4/mini/parse.js +1 -0
  1042. package/mcp/node_modules/zod/v4/mini/schemas.cjs +839 -0
  1043. package/mcp/node_modules/zod/v4/mini/schemas.d.cts +356 -0
  1044. package/mcp/node_modules/zod/v4/mini/schemas.d.ts +356 -0
  1045. package/mcp/node_modules/zod/v4/mini/schemas.js +732 -0
  1046. package/mcp/node_modules/zod/v4-mini/index.cjs +17 -0
  1047. package/mcp/node_modules/zod/v4-mini/index.d.cts +1 -0
  1048. package/mcp/node_modules/zod/v4-mini/index.d.ts +1 -0
  1049. package/mcp/node_modules/zod/v4-mini/index.js +1 -0
  1050. package/mcp/package-lock.json +210 -0
  1051. package/package.json +1 -1
@@ -0,0 +1,452 @@
1
+ /**
2
+ * The `node:console` module provides a simple debugging console that is similar to
3
+ * the JavaScript console mechanism provided by web browsers.
4
+ *
5
+ * The module exports two specific components:
6
+ *
7
+ * * A `Console` class with methods such as `console.log()`, `console.error()`, and `console.warn()` that can be used to write to any Node.js stream.
8
+ * * A global `console` instance configured to write to [`process.stdout`](https://nodejs.org/docs/latest-v22.x/api/process.html#processstdout) and
9
+ * [`process.stderr`](https://nodejs.org/docs/latest-v22.x/api/process.html#processstderr). The global `console` can be used without importing the `node:console` module.
10
+ *
11
+ * _**Warning**_: The global console object's methods are neither consistently
12
+ * synchronous like the browser APIs they resemble, nor are they consistently
13
+ * asynchronous like all other Node.js streams. See the [`note on process I/O`](https://nodejs.org/docs/latest-v22.x/api/process.html#a-note-on-process-io) for
14
+ * more information.
15
+ *
16
+ * Example using the global `console`:
17
+ *
18
+ * ```js
19
+ * console.log('hello world');
20
+ * // Prints: hello world, to stdout
21
+ * console.log('hello %s', 'world');
22
+ * // Prints: hello world, to stdout
23
+ * console.error(new Error('Whoops, something bad happened'));
24
+ * // Prints error message and stack trace to stderr:
25
+ * // Error: Whoops, something bad happened
26
+ * // at [eval]:5:15
27
+ * // at Script.runInThisContext (node:vm:132:18)
28
+ * // at Object.runInThisContext (node:vm:309:38)
29
+ * // at node:internal/process/execution:77:19
30
+ * // at [eval]-wrapper:6:22
31
+ * // at evalScript (node:internal/process/execution:76:60)
32
+ * // at node:internal/main/eval_string:23:3
33
+ *
34
+ * const name = 'Will Robinson';
35
+ * console.warn(`Danger ${name}! Danger!`);
36
+ * // Prints: Danger Will Robinson! Danger!, to stderr
37
+ * ```
38
+ *
39
+ * Example using the `Console` class:
40
+ *
41
+ * ```js
42
+ * const out = getStreamSomehow();
43
+ * const err = getStreamSomehow();
44
+ * const myConsole = new console.Console(out, err);
45
+ *
46
+ * myConsole.log('hello world');
47
+ * // Prints: hello world, to out
48
+ * myConsole.log('hello %s', 'world');
49
+ * // Prints: hello world, to out
50
+ * myConsole.error(new Error('Whoops, something bad happened'));
51
+ * // Prints: [Error: Whoops, something bad happened], to err
52
+ *
53
+ * const name = 'Will Robinson';
54
+ * myConsole.warn(`Danger ${name}! Danger!`);
55
+ * // Prints: Danger Will Robinson! Danger!, to err
56
+ * ```
57
+ * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/console.js)
58
+ */
59
+ declare module "console" {
60
+ import console = require("node:console");
61
+ export = console;
62
+ }
63
+ declare module "node:console" {
64
+ import { InspectOptions } from "node:util";
65
+ global {
66
+ // This needs to be global to avoid TS2403 in case lib.dom.d.ts is present in the same build
67
+ interface Console {
68
+ Console: console.ConsoleConstructor;
69
+ /**
70
+ * `console.assert()` writes a message if `value` is [falsy](https://developer.mozilla.org/en-US/docs/Glossary/Falsy) or omitted. It only
71
+ * writes a message and does not otherwise affect execution. The output always
72
+ * starts with `"Assertion failed"`. If provided, `message` is formatted using
73
+ * [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args).
74
+ *
75
+ * If `value` is [truthy](https://developer.mozilla.org/en-US/docs/Glossary/Truthy), nothing happens.
76
+ *
77
+ * ```js
78
+ * console.assert(true, 'does nothing');
79
+ *
80
+ * console.assert(false, 'Whoops %s work', 'didn\'t');
81
+ * // Assertion failed: Whoops didn't work
82
+ *
83
+ * console.assert();
84
+ * // Assertion failed
85
+ * ```
86
+ * @since v0.1.101
87
+ * @param value The value tested for being truthy.
88
+ * @param message All arguments besides `value` are used as error message.
89
+ */
90
+ assert(value: any, message?: string, ...optionalParams: any[]): void;
91
+ /**
92
+ * When `stdout` is a TTY, calling `console.clear()` will attempt to clear the
93
+ * TTY. When `stdout` is not a TTY, this method does nothing.
94
+ *
95
+ * The specific operation of `console.clear()` can vary across operating systems
96
+ * and terminal types. For most Linux operating systems, `console.clear()` operates similarly to the `clear` shell command. On Windows, `console.clear()` will clear only the output in the
97
+ * current terminal viewport for the Node.js
98
+ * binary.
99
+ * @since v8.3.0
100
+ */
101
+ clear(): void;
102
+ /**
103
+ * Maintains an internal counter specific to `label` and outputs to `stdout` the
104
+ * number of times `console.count()` has been called with the given `label`.
105
+ *
106
+ * ```js
107
+ * > console.count()
108
+ * default: 1
109
+ * undefined
110
+ * > console.count('default')
111
+ * default: 2
112
+ * undefined
113
+ * > console.count('abc')
114
+ * abc: 1
115
+ * undefined
116
+ * > console.count('xyz')
117
+ * xyz: 1
118
+ * undefined
119
+ * > console.count('abc')
120
+ * abc: 2
121
+ * undefined
122
+ * > console.count()
123
+ * default: 3
124
+ * undefined
125
+ * >
126
+ * ```
127
+ * @since v8.3.0
128
+ * @param [label='default'] The display label for the counter.
129
+ */
130
+ count(label?: string): void;
131
+ /**
132
+ * Resets the internal counter specific to `label`.
133
+ *
134
+ * ```js
135
+ * > console.count('abc');
136
+ * abc: 1
137
+ * undefined
138
+ * > console.countReset('abc');
139
+ * undefined
140
+ * > console.count('abc');
141
+ * abc: 1
142
+ * undefined
143
+ * >
144
+ * ```
145
+ * @since v8.3.0
146
+ * @param [label='default'] The display label for the counter.
147
+ */
148
+ countReset(label?: string): void;
149
+ /**
150
+ * The `console.debug()` function is an alias for {@link log}.
151
+ * @since v8.0.0
152
+ */
153
+ debug(message?: any, ...optionalParams: any[]): void;
154
+ /**
155
+ * Uses [`util.inspect()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilinspectobject-options) on `obj` and prints the resulting string to `stdout`.
156
+ * This function bypasses any custom `inspect()` function defined on `obj`.
157
+ * @since v0.1.101
158
+ */
159
+ dir(obj: any, options?: InspectOptions): void;
160
+ /**
161
+ * This method calls `console.log()` passing it the arguments received.
162
+ * This method does not produce any XML formatting.
163
+ * @since v8.0.0
164
+ */
165
+ dirxml(...data: any[]): void;
166
+ /**
167
+ * Prints to `stderr` with newline. Multiple arguments can be passed, with the
168
+ * first used as the primary message and all additional used as substitution
169
+ * values similar to [`printf(3)`](http://man7.org/linux/man-pages/man3/printf.3.html)
170
+ * (the arguments are all passed to [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args)).
171
+ *
172
+ * ```js
173
+ * const code = 5;
174
+ * console.error('error #%d', code);
175
+ * // Prints: error #5, to stderr
176
+ * console.error('error', code);
177
+ * // Prints: error 5, to stderr
178
+ * ```
179
+ *
180
+ * If formatting elements (e.g. `%d`) are not found in the first string then
181
+ * [`util.inspect()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilinspectobject-options) is called on each argument and the
182
+ * resulting string values are concatenated. See [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args)
183
+ * for more information.
184
+ * @since v0.1.100
185
+ */
186
+ error(message?: any, ...optionalParams: any[]): void;
187
+ /**
188
+ * Increases indentation of subsequent lines by spaces for `groupIndentation` length.
189
+ *
190
+ * If one or more `label`s are provided, those are printed first without the
191
+ * additional indentation.
192
+ * @since v8.5.0
193
+ */
194
+ group(...label: any[]): void;
195
+ /**
196
+ * An alias for {@link group}.
197
+ * @since v8.5.0
198
+ */
199
+ groupCollapsed(...label: any[]): void;
200
+ /**
201
+ * Decreases indentation of subsequent lines by spaces for `groupIndentation` length.
202
+ * @since v8.5.0
203
+ */
204
+ groupEnd(): void;
205
+ /**
206
+ * The `console.info()` function is an alias for {@link log}.
207
+ * @since v0.1.100
208
+ */
209
+ info(message?: any, ...optionalParams: any[]): void;
210
+ /**
211
+ * Prints to `stdout` with newline. Multiple arguments can be passed, with the
212
+ * first used as the primary message and all additional used as substitution
213
+ * values similar to [`printf(3)`](http://man7.org/linux/man-pages/man3/printf.3.html)
214
+ * (the arguments are all passed to [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args)).
215
+ *
216
+ * ```js
217
+ * const count = 5;
218
+ * console.log('count: %d', count);
219
+ * // Prints: count: 5, to stdout
220
+ * console.log('count:', count);
221
+ * // Prints: count: 5, to stdout
222
+ * ```
223
+ *
224
+ * See [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args) for more information.
225
+ * @since v0.1.100
226
+ */
227
+ log(message?: any, ...optionalParams: any[]): void;
228
+ /**
229
+ * Try to construct a table with the columns of the properties of `tabularData` (or use `properties`) and rows of `tabularData` and log it. Falls back to just
230
+ * logging the argument if it can't be parsed as tabular.
231
+ *
232
+ * ```js
233
+ * // These can't be parsed as tabular data
234
+ * console.table(Symbol());
235
+ * // Symbol()
236
+ *
237
+ * console.table(undefined);
238
+ * // undefined
239
+ *
240
+ * console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }]);
241
+ * // ┌─────────┬─────┬─────┐
242
+ * // │ (index) │ a │ b │
243
+ * // ├─────────┼─────┼─────┤
244
+ * // │ 0 │ 1 │ 'Y' │
245
+ * // │ 1 │ 'Z' │ 2 │
246
+ * // └─────────┴─────┴─────┘
247
+ *
248
+ * console.table([{ a: 1, b: 'Y' }, { a: 'Z', b: 2 }], ['a']);
249
+ * // ┌─────────┬─────┐
250
+ * // │ (index) │ a │
251
+ * // ├─────────┼─────┤
252
+ * // │ 0 │ 1 │
253
+ * // │ 1 │ 'Z' │
254
+ * // └─────────┴─────┘
255
+ * ```
256
+ * @since v10.0.0
257
+ * @param properties Alternate properties for constructing the table.
258
+ */
259
+ table(tabularData: any, properties?: readonly string[]): void;
260
+ /**
261
+ * Starts a timer that can be used to compute the duration of an operation. Timers
262
+ * are identified by a unique `label`. Use the same `label` when calling {@link timeEnd} to stop the timer and output the elapsed time in
263
+ * suitable time units to `stdout`. For example, if the elapsed
264
+ * time is 3869ms, `console.timeEnd()` displays "3.869s".
265
+ * @since v0.1.104
266
+ * @param [label='default']
267
+ */
268
+ time(label?: string): void;
269
+ /**
270
+ * Stops a timer that was previously started by calling {@link time} and
271
+ * prints the result to `stdout`:
272
+ *
273
+ * ```js
274
+ * console.time('bunch-of-stuff');
275
+ * // Do a bunch of stuff.
276
+ * console.timeEnd('bunch-of-stuff');
277
+ * // Prints: bunch-of-stuff: 225.438ms
278
+ * ```
279
+ * @since v0.1.104
280
+ * @param [label='default']
281
+ */
282
+ timeEnd(label?: string): void;
283
+ /**
284
+ * For a timer that was previously started by calling {@link time}, prints
285
+ * the elapsed time and other `data` arguments to `stdout`:
286
+ *
287
+ * ```js
288
+ * console.time('process');
289
+ * const value = expensiveProcess1(); // Returns 42
290
+ * console.timeLog('process', value);
291
+ * // Prints "process: 365.227ms 42".
292
+ * doExpensiveProcess2(value);
293
+ * console.timeEnd('process');
294
+ * ```
295
+ * @since v10.7.0
296
+ * @param [label='default']
297
+ */
298
+ timeLog(label?: string, ...data: any[]): void;
299
+ /**
300
+ * Prints to `stderr` the string `'Trace: '`, followed by the [`util.format()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilformatformat-args)
301
+ * formatted message and stack trace to the current position in the code.
302
+ *
303
+ * ```js
304
+ * console.trace('Show me');
305
+ * // Prints: (stack trace will vary based on where trace is called)
306
+ * // Trace: Show me
307
+ * // at repl:2:9
308
+ * // at REPLServer.defaultEval (repl.js:248:27)
309
+ * // at bound (domain.js:287:14)
310
+ * // at REPLServer.runBound [as eval] (domain.js:300:12)
311
+ * // at REPLServer.<anonymous> (repl.js:412:12)
312
+ * // at emitOne (events.js:82:20)
313
+ * // at REPLServer.emit (events.js:169:7)
314
+ * // at REPLServer.Interface._onLine (readline.js:210:10)
315
+ * // at REPLServer.Interface._line (readline.js:549:8)
316
+ * // at REPLServer.Interface._ttyWrite (readline.js:826:14)
317
+ * ```
318
+ * @since v0.1.104
319
+ */
320
+ trace(message?: any, ...optionalParams: any[]): void;
321
+ /**
322
+ * The `console.warn()` function is an alias for {@link error}.
323
+ * @since v0.1.100
324
+ */
325
+ warn(message?: any, ...optionalParams: any[]): void;
326
+ // --- Inspector mode only ---
327
+ /**
328
+ * This method does not display anything unless used in the inspector. The `console.profile()`
329
+ * method starts a JavaScript CPU profile with an optional label until {@link profileEnd}
330
+ * is called. The profile is then added to the Profile panel of the inspector.
331
+ *
332
+ * ```js
333
+ * console.profile('MyLabel');
334
+ * // Some code
335
+ * console.profileEnd('MyLabel');
336
+ * // Adds the profile 'MyLabel' to the Profiles panel of the inspector.
337
+ * ```
338
+ * @since v8.0.0
339
+ */
340
+ profile(label?: string): void;
341
+ /**
342
+ * This method does not display anything unless used in the inspector. Stops the current
343
+ * JavaScript CPU profiling session if one has been started and prints the report to the
344
+ * Profiles panel of the inspector. See {@link profile} for an example.
345
+ *
346
+ * If this method is called without a label, the most recently started profile is stopped.
347
+ * @since v8.0.0
348
+ */
349
+ profileEnd(label?: string): void;
350
+ /**
351
+ * This method does not display anything unless used in the inspector. The `console.timeStamp()`
352
+ * method adds an event with the label `'label'` to the Timeline panel of the inspector.
353
+ * @since v8.0.0
354
+ */
355
+ timeStamp(label?: string): void;
356
+ }
357
+ /**
358
+ * The `console` module provides a simple debugging console that is similar to the
359
+ * JavaScript console mechanism provided by web browsers.
360
+ *
361
+ * The module exports two specific components:
362
+ *
363
+ * * A `Console` class with methods such as `console.log()`, `console.error()` and `console.warn()` that can be used to write to any Node.js stream.
364
+ * * A global `console` instance configured to write to [`process.stdout`](https://nodejs.org/docs/latest-v22.x/api/process.html#processstdout) and
365
+ * [`process.stderr`](https://nodejs.org/docs/latest-v22.x/api/process.html#processstderr). The global `console` can be used without importing the `node:console` module.
366
+ *
367
+ * _**Warning**_: The global console object's methods are neither consistently
368
+ * synchronous like the browser APIs they resemble, nor are they consistently
369
+ * asynchronous like all other Node.js streams. See the [`note on process I/O`](https://nodejs.org/docs/latest-v22.x/api/process.html#a-note-on-process-io) for
370
+ * more information.
371
+ *
372
+ * Example using the global `console`:
373
+ *
374
+ * ```js
375
+ * console.log('hello world');
376
+ * // Prints: hello world, to stdout
377
+ * console.log('hello %s', 'world');
378
+ * // Prints: hello world, to stdout
379
+ * console.error(new Error('Whoops, something bad happened'));
380
+ * // Prints error message and stack trace to stderr:
381
+ * // Error: Whoops, something bad happened
382
+ * // at [eval]:5:15
383
+ * // at Script.runInThisContext (node:vm:132:18)
384
+ * // at Object.runInThisContext (node:vm:309:38)
385
+ * // at node:internal/process/execution:77:19
386
+ * // at [eval]-wrapper:6:22
387
+ * // at evalScript (node:internal/process/execution:76:60)
388
+ * // at node:internal/main/eval_string:23:3
389
+ *
390
+ * const name = 'Will Robinson';
391
+ * console.warn(`Danger ${name}! Danger!`);
392
+ * // Prints: Danger Will Robinson! Danger!, to stderr
393
+ * ```
394
+ *
395
+ * Example using the `Console` class:
396
+ *
397
+ * ```js
398
+ * const out = getStreamSomehow();
399
+ * const err = getStreamSomehow();
400
+ * const myConsole = new console.Console(out, err);
401
+ *
402
+ * myConsole.log('hello world');
403
+ * // Prints: hello world, to out
404
+ * myConsole.log('hello %s', 'world');
405
+ * // Prints: hello world, to out
406
+ * myConsole.error(new Error('Whoops, something bad happened'));
407
+ * // Prints: [Error: Whoops, something bad happened], to err
408
+ *
409
+ * const name = 'Will Robinson';
410
+ * myConsole.warn(`Danger ${name}! Danger!`);
411
+ * // Prints: Danger Will Robinson! Danger!, to err
412
+ * ```
413
+ * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/console.js)
414
+ */
415
+ namespace console {
416
+ interface ConsoleConstructorOptions {
417
+ stdout: NodeJS.WritableStream;
418
+ stderr?: NodeJS.WritableStream | undefined;
419
+ /**
420
+ * Ignore errors when writing to the underlying streams.
421
+ * @default true
422
+ */
423
+ ignoreErrors?: boolean | undefined;
424
+ /**
425
+ * Set color support for this `Console` instance. Setting to true enables coloring while inspecting
426
+ * values. Setting to `false` disables coloring while inspecting values. Setting to `'auto'` makes color
427
+ * support depend on the value of the `isTTY` property and the value returned by `getColorDepth()` on the
428
+ * respective stream. This option can not be used, if `inspectOptions.colors` is set as well.
429
+ * @default auto
430
+ */
431
+ colorMode?: boolean | "auto" | undefined;
432
+ /**
433
+ * Specifies options that are passed along to
434
+ * [`util.inspect()`](https://nodejs.org/docs/latest-v22.x/api/util.html#utilinspectobject-options).
435
+ */
436
+ inspectOptions?: InspectOptions | undefined;
437
+ /**
438
+ * Set group indentation.
439
+ * @default 2
440
+ */
441
+ groupIndentation?: number | undefined;
442
+ }
443
+ interface ConsoleConstructor {
444
+ prototype: Console;
445
+ new(stdout: NodeJS.WritableStream, stderr?: NodeJS.WritableStream, ignoreErrors?: boolean): Console;
446
+ new(options: ConsoleConstructorOptions): Console;
447
+ }
448
+ }
449
+ var console: Console;
450
+ }
451
+ export = globalThis.console;
452
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * @deprecated The `node:constants` module is deprecated. When requiring access to constants
3
+ * relevant to specific Node.js builtin modules, developers should instead refer
4
+ * to the `constants` property exposed by the relevant module. For instance,
5
+ * `require('node:fs').constants` and `require('node:os').constants`.
6
+ */
7
+ declare module "constants" {
8
+ const constants:
9
+ & typeof import("node:os").constants.dlopen
10
+ & typeof import("node:os").constants.errno
11
+ & typeof import("node:os").constants.priority
12
+ & typeof import("node:os").constants.signals
13
+ & typeof import("node:fs").constants
14
+ & typeof import("node:crypto").constants;
15
+ export = constants;
16
+ }
17
+
18
+ declare module "node:constants" {
19
+ import constants = require("constants");
20
+ export = constants;
21
+ }