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,472 @@
1
+ declare module "buffer" {
2
+ type ImplicitArrayBuffer<T extends WithImplicitCoercion<ArrayBufferLike>> = T extends
3
+ { valueOf(): infer V extends ArrayBufferLike } ? V : T;
4
+ global {
5
+ interface BufferConstructor {
6
+ // see buffer.d.ts for implementation shared with all TypeScript versions
7
+
8
+ /**
9
+ * Allocates a new buffer containing the given {str}.
10
+ *
11
+ * @param str String to store in buffer.
12
+ * @param encoding encoding to use, optional. Default is 'utf8'
13
+ * @deprecated since v10.0.0 - Use `Buffer.from(string[, encoding])` instead.
14
+ */
15
+ new(str: string, encoding?: BufferEncoding): Buffer<ArrayBuffer>;
16
+ /**
17
+ * Allocates a new buffer of {size} octets.
18
+ *
19
+ * @param size count of octets to allocate.
20
+ * @deprecated since v10.0.0 - Use `Buffer.alloc()` instead (also see `Buffer.allocUnsafe()`).
21
+ */
22
+ new(size: number): Buffer<ArrayBuffer>;
23
+ /**
24
+ * Allocates a new buffer containing the given {array} of octets.
25
+ *
26
+ * @param array The octets to store.
27
+ * @deprecated since v10.0.0 - Use `Buffer.from(array)` instead.
28
+ */
29
+ new(array: ArrayLike<number>): Buffer<ArrayBuffer>;
30
+ /**
31
+ * Produces a Buffer backed by the same allocated memory as
32
+ * the given {ArrayBuffer}/{SharedArrayBuffer}.
33
+ *
34
+ * @param arrayBuffer The ArrayBuffer with which to share memory.
35
+ * @deprecated since v10.0.0 - Use `Buffer.from(arrayBuffer[, byteOffset[, length]])` instead.
36
+ */
37
+ new<TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(arrayBuffer: TArrayBuffer): Buffer<TArrayBuffer>;
38
+ /**
39
+ * Allocates a new `Buffer` using an `array` of bytes in the range `0` – `255`.
40
+ * Array entries outside that range will be truncated to fit into it.
41
+ *
42
+ * ```js
43
+ * import { Buffer } from 'node:buffer';
44
+ *
45
+ * // Creates a new Buffer containing the UTF-8 bytes of the string 'buffer'.
46
+ * const buf = Buffer.from([0x62, 0x75, 0x66, 0x66, 0x65, 0x72]);
47
+ * ```
48
+ *
49
+ * If `array` is an `Array`-like object (that is, one with a `length` property of
50
+ * type `number`), it is treated as if it is an array, unless it is a `Buffer` or
51
+ * a `Uint8Array`. This means all other `TypedArray` variants get treated as an
52
+ * `Array`. To create a `Buffer` from the bytes backing a `TypedArray`, use
53
+ * `Buffer.copyBytesFrom()`.
54
+ *
55
+ * A `TypeError` will be thrown if `array` is not an `Array` or another type
56
+ * appropriate for `Buffer.from()` variants.
57
+ *
58
+ * `Buffer.from(array)` and `Buffer.from(string)` may also use the internal
59
+ * `Buffer` pool like `Buffer.allocUnsafe()` does.
60
+ * @since v5.10.0
61
+ */
62
+ from(array: WithImplicitCoercion<ArrayLike<number>>): Buffer<ArrayBuffer>;
63
+ /**
64
+ * This creates a view of the `ArrayBuffer` without copying the underlying
65
+ * memory. For example, when passed a reference to the `.buffer` property of a
66
+ * `TypedArray` instance, the newly created `Buffer` will share the same
67
+ * allocated memory as the `TypedArray`'s underlying `ArrayBuffer`.
68
+ *
69
+ * ```js
70
+ * import { Buffer } from 'node:buffer';
71
+ *
72
+ * const arr = new Uint16Array(2);
73
+ *
74
+ * arr[0] = 5000;
75
+ * arr[1] = 4000;
76
+ *
77
+ * // Shares memory with `arr`.
78
+ * const buf = Buffer.from(arr.buffer);
79
+ *
80
+ * console.log(buf);
81
+ * // Prints: <Buffer 88 13 a0 0f>
82
+ *
83
+ * // Changing the original Uint16Array changes the Buffer also.
84
+ * arr[1] = 6000;
85
+ *
86
+ * console.log(buf);
87
+ * // Prints: <Buffer 88 13 70 17>
88
+ * ```
89
+ *
90
+ * The optional `byteOffset` and `length` arguments specify a memory range within
91
+ * the `arrayBuffer` that will be shared by the `Buffer`.
92
+ *
93
+ * ```js
94
+ * import { Buffer } from 'node:buffer';
95
+ *
96
+ * const ab = new ArrayBuffer(10);
97
+ * const buf = Buffer.from(ab, 0, 2);
98
+ *
99
+ * console.log(buf.length);
100
+ * // Prints: 2
101
+ * ```
102
+ *
103
+ * A `TypeError` will be thrown if `arrayBuffer` is not an `ArrayBuffer` or a
104
+ * `SharedArrayBuffer` or another type appropriate for `Buffer.from()`
105
+ * variants.
106
+ *
107
+ * It is important to remember that a backing `ArrayBuffer` can cover a range
108
+ * of memory that extends beyond the bounds of a `TypedArray` view. A new
109
+ * `Buffer` created using the `buffer` property of a `TypedArray` may extend
110
+ * beyond the range of the `TypedArray`:
111
+ *
112
+ * ```js
113
+ * import { Buffer } from 'node:buffer';
114
+ *
115
+ * const arrA = Uint8Array.from([0x63, 0x64, 0x65, 0x66]); // 4 elements
116
+ * const arrB = new Uint8Array(arrA.buffer, 1, 2); // 2 elements
117
+ * console.log(arrA.buffer === arrB.buffer); // true
118
+ *
119
+ * const buf = Buffer.from(arrB.buffer);
120
+ * console.log(buf);
121
+ * // Prints: <Buffer 63 64 65 66>
122
+ * ```
123
+ * @since v5.10.0
124
+ * @param arrayBuffer An `ArrayBuffer`, `SharedArrayBuffer`, for example the
125
+ * `.buffer` property of a `TypedArray`.
126
+ * @param byteOffset Index of first byte to expose. **Default:** `0`.
127
+ * @param length Number of bytes to expose. **Default:**
128
+ * `arrayBuffer.byteLength - byteOffset`.
129
+ */
130
+ from<TArrayBuffer extends WithImplicitCoercion<ArrayBufferLike>>(
131
+ arrayBuffer: TArrayBuffer,
132
+ byteOffset?: number,
133
+ length?: number,
134
+ ): Buffer<ImplicitArrayBuffer<TArrayBuffer>>;
135
+ /**
136
+ * Creates a new `Buffer` containing `string`. The `encoding` parameter identifies
137
+ * the character encoding to be used when converting `string` into bytes.
138
+ *
139
+ * ```js
140
+ * import { Buffer } from 'node:buffer';
141
+ *
142
+ * const buf1 = Buffer.from('this is a tést');
143
+ * const buf2 = Buffer.from('7468697320697320612074c3a97374', 'hex');
144
+ *
145
+ * console.log(buf1.toString());
146
+ * // Prints: this is a tést
147
+ * console.log(buf2.toString());
148
+ * // Prints: this is a tést
149
+ * console.log(buf1.toString('latin1'));
150
+ * // Prints: this is a tést
151
+ * ```
152
+ *
153
+ * A `TypeError` will be thrown if `string` is not a string or another type
154
+ * appropriate for `Buffer.from()` variants.
155
+ *
156
+ * `Buffer.from(string)` may also use the internal `Buffer` pool like
157
+ * `Buffer.allocUnsafe()` does.
158
+ * @since v5.10.0
159
+ * @param string A string to encode.
160
+ * @param encoding The encoding of `string`. **Default:** `'utf8'`.
161
+ */
162
+ from(string: WithImplicitCoercion<string>, encoding?: BufferEncoding): Buffer<ArrayBuffer>;
163
+ from(arrayOrString: WithImplicitCoercion<ArrayLike<number> | string>): Buffer<ArrayBuffer>;
164
+ /**
165
+ * Creates a new Buffer using the passed {data}
166
+ * @param values to create a new Buffer
167
+ */
168
+ of(...items: number[]): Buffer<ArrayBuffer>;
169
+ /**
170
+ * Returns a new `Buffer` which is the result of concatenating all the `Buffer` instances in the `list` together.
171
+ *
172
+ * If the list has no items, or if the `totalLength` is 0, then a new zero-length `Buffer` is returned.
173
+ *
174
+ * If `totalLength` is not provided, it is calculated from the `Buffer` instances
175
+ * in `list` by adding their lengths.
176
+ *
177
+ * If `totalLength` is provided, it is coerced to an unsigned integer. If the
178
+ * combined length of the `Buffer`s in `list` exceeds `totalLength`, the result is
179
+ * truncated to `totalLength`. If the combined length of the `Buffer`s in `list` is
180
+ * less than `totalLength`, the remaining space is filled with zeros.
181
+ *
182
+ * ```js
183
+ * import { Buffer } from 'node:buffer';
184
+ *
185
+ * // Create a single `Buffer` from a list of three `Buffer` instances.
186
+ *
187
+ * const buf1 = Buffer.alloc(10);
188
+ * const buf2 = Buffer.alloc(14);
189
+ * const buf3 = Buffer.alloc(18);
190
+ * const totalLength = buf1.length + buf2.length + buf3.length;
191
+ *
192
+ * console.log(totalLength);
193
+ * // Prints: 42
194
+ *
195
+ * const bufA = Buffer.concat([buf1, buf2, buf3], totalLength);
196
+ *
197
+ * console.log(bufA);
198
+ * // Prints: <Buffer 00 00 00 00 ...>
199
+ * console.log(bufA.length);
200
+ * // Prints: 42
201
+ * ```
202
+ *
203
+ * `Buffer.concat()` may also use the internal `Buffer` pool like `Buffer.allocUnsafe()` does.
204
+ * @since v0.7.11
205
+ * @param list List of `Buffer` or {@link Uint8Array} instances to concatenate.
206
+ * @param totalLength Total length of the `Buffer` instances in `list` when concatenated.
207
+ */
208
+ concat(list: readonly Uint8Array[], totalLength?: number): Buffer<ArrayBuffer>;
209
+ /**
210
+ * Copies the underlying memory of `view` into a new `Buffer`.
211
+ *
212
+ * ```js
213
+ * const u16 = new Uint16Array([0, 0xffff]);
214
+ * const buf = Buffer.copyBytesFrom(u16, 1, 1);
215
+ * u16[1] = 0;
216
+ * console.log(buf.length); // 2
217
+ * console.log(buf[0]); // 255
218
+ * console.log(buf[1]); // 255
219
+ * ```
220
+ * @since v19.8.0
221
+ * @param view The {TypedArray} to copy.
222
+ * @param [offset=0] The starting offset within `view`.
223
+ * @param [length=view.length - offset] The number of elements from `view` to copy.
224
+ */
225
+ copyBytesFrom(view: NodeJS.TypedArray, offset?: number, length?: number): Buffer<ArrayBuffer>;
226
+ /**
227
+ * Allocates a new `Buffer` of `size` bytes. If `fill` is `undefined`, the`Buffer` will be zero-filled.
228
+ *
229
+ * ```js
230
+ * import { Buffer } from 'node:buffer';
231
+ *
232
+ * const buf = Buffer.alloc(5);
233
+ *
234
+ * console.log(buf);
235
+ * // Prints: <Buffer 00 00 00 00 00>
236
+ * ```
237
+ *
238
+ * If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown.
239
+ *
240
+ * If `fill` is specified, the allocated `Buffer` will be initialized by calling `buf.fill(fill)`.
241
+ *
242
+ * ```js
243
+ * import { Buffer } from 'node:buffer';
244
+ *
245
+ * const buf = Buffer.alloc(5, 'a');
246
+ *
247
+ * console.log(buf);
248
+ * // Prints: <Buffer 61 61 61 61 61>
249
+ * ```
250
+ *
251
+ * If both `fill` and `encoding` are specified, the allocated `Buffer` will be
252
+ * initialized by calling `buf.fill(fill, encoding)`.
253
+ *
254
+ * ```js
255
+ * import { Buffer } from 'node:buffer';
256
+ *
257
+ * const buf = Buffer.alloc(11, 'aGVsbG8gd29ybGQ=', 'base64');
258
+ *
259
+ * console.log(buf);
260
+ * // Prints: <Buffer 68 65 6c 6c 6f 20 77 6f 72 6c 64>
261
+ * ```
262
+ *
263
+ * Calling `Buffer.alloc()` can be measurably slower than the alternative `Buffer.allocUnsafe()` but ensures that the newly created `Buffer` instance
264
+ * contents will never contain sensitive data from previous allocations, including
265
+ * data that might not have been allocated for `Buffer`s.
266
+ *
267
+ * A `TypeError` will be thrown if `size` is not a number.
268
+ * @since v5.10.0
269
+ * @param size The desired length of the new `Buffer`.
270
+ * @param [fill=0] A value to pre-fill the new `Buffer` with.
271
+ * @param [encoding='utf8'] If `fill` is a string, this is its encoding.
272
+ */
273
+ alloc(size: number, fill?: string | Uint8Array | number, encoding?: BufferEncoding): Buffer<ArrayBuffer>;
274
+ /**
275
+ * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown.
276
+ *
277
+ * The underlying memory for `Buffer` instances created in this way is _not_
278
+ * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `Buffer.alloc()` instead to initialize`Buffer` instances with zeroes.
279
+ *
280
+ * ```js
281
+ * import { Buffer } from 'node:buffer';
282
+ *
283
+ * const buf = Buffer.allocUnsafe(10);
284
+ *
285
+ * console.log(buf);
286
+ * // Prints (contents may vary): <Buffer a0 8b 28 3f 01 00 00 00 50 32>
287
+ *
288
+ * buf.fill(0);
289
+ *
290
+ * console.log(buf);
291
+ * // Prints: <Buffer 00 00 00 00 00 00 00 00 00 00>
292
+ * ```
293
+ *
294
+ * A `TypeError` will be thrown if `size` is not a number.
295
+ *
296
+ * The `Buffer` module pre-allocates an internal `Buffer` instance of
297
+ * size `Buffer.poolSize` that is used as a pool for the fast allocation of new `Buffer` instances created using `Buffer.allocUnsafe()`, `Buffer.from(array)`,
298
+ * and `Buffer.concat()` only when `size` is less than `Buffer.poolSize >>> 1` (floor of `Buffer.poolSize` divided by two).
299
+ *
300
+ * Use of this pre-allocated internal memory pool is a key difference between
301
+ * calling `Buffer.alloc(size, fill)` vs. `Buffer.allocUnsafe(size).fill(fill)`.
302
+ * Specifically, `Buffer.alloc(size, fill)` will _never_ use the internal `Buffer`pool, while `Buffer.allocUnsafe(size).fill(fill)`_will_ use the internal`Buffer` pool if `size` is less
303
+ * than or equal to half `Buffer.poolSize`. The
304
+ * difference is subtle but can be important when an application requires the
305
+ * additional performance that `Buffer.allocUnsafe()` provides.
306
+ * @since v5.10.0
307
+ * @param size The desired length of the new `Buffer`.
308
+ */
309
+ allocUnsafe(size: number): Buffer<ArrayBuffer>;
310
+ /**
311
+ * Allocates a new `Buffer` of `size` bytes. If `size` is larger than {@link constants.MAX_LENGTH} or smaller than 0, `ERR_OUT_OF_RANGE` is thrown. A zero-length `Buffer` is created if
312
+ * `size` is 0.
313
+ *
314
+ * The underlying memory for `Buffer` instances created in this way is _not_
315
+ * _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `buf.fill(0)` to initialize
316
+ * such `Buffer` instances with zeroes.
317
+ *
318
+ * When using `Buffer.allocUnsafe()` to allocate new `Buffer` instances,
319
+ * allocations under 4 KiB are sliced from a single pre-allocated `Buffer`. This
320
+ * allows applications to avoid the garbage collection overhead of creating many
321
+ * individually allocated `Buffer` instances. This approach improves both
322
+ * performance and memory usage by eliminating the need to track and clean up as
323
+ * many individual `ArrayBuffer` objects.
324
+ *
325
+ * However, in the case where a developer may need to retain a small chunk of
326
+ * memory from a pool for an indeterminate amount of time, it may be appropriate
327
+ * to create an un-pooled `Buffer` instance using `Buffer.allocUnsafeSlow()` and
328
+ * then copying out the relevant bits.
329
+ *
330
+ * ```js
331
+ * import { Buffer } from 'node:buffer';
332
+ *
333
+ * // Need to keep around a few small chunks of memory.
334
+ * const store = [];
335
+ *
336
+ * socket.on('readable', () => {
337
+ * let data;
338
+ * while (null !== (data = readable.read())) {
339
+ * // Allocate for retained data.
340
+ * const sb = Buffer.allocUnsafeSlow(10);
341
+ *
342
+ * // Copy the data into the new allocation.
343
+ * data.copy(sb, 0, 0, 10);
344
+ *
345
+ * store.push(sb);
346
+ * }
347
+ * });
348
+ * ```
349
+ *
350
+ * A `TypeError` will be thrown if `size` is not a number.
351
+ * @since v5.12.0
352
+ * @param size The desired length of the new `Buffer`.
353
+ */
354
+ allocUnsafeSlow(size: number): Buffer<ArrayBuffer>;
355
+ }
356
+ interface Buffer<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> extends Uint8Array<TArrayBuffer> {
357
+ // see buffer.d.ts for implementation shared with all TypeScript versions
358
+
359
+ /**
360
+ * Returns a new `Buffer` that references the same memory as the original, but
361
+ * offset and cropped by the `start` and `end` indices.
362
+ *
363
+ * This method is not compatible with the `Uint8Array.prototype.slice()`,
364
+ * which is a superclass of `Buffer`. To copy the slice, use`Uint8Array.prototype.slice()`.
365
+ *
366
+ * ```js
367
+ * import { Buffer } from 'node:buffer';
368
+ *
369
+ * const buf = Buffer.from('buffer');
370
+ *
371
+ * const copiedBuf = Uint8Array.prototype.slice.call(buf);
372
+ * copiedBuf[0]++;
373
+ * console.log(copiedBuf.toString());
374
+ * // Prints: cuffer
375
+ *
376
+ * console.log(buf.toString());
377
+ * // Prints: buffer
378
+ *
379
+ * // With buf.slice(), the original buffer is modified.
380
+ * const notReallyCopiedBuf = buf.slice();
381
+ * notReallyCopiedBuf[0]++;
382
+ * console.log(notReallyCopiedBuf.toString());
383
+ * // Prints: cuffer
384
+ * console.log(buf.toString());
385
+ * // Also prints: cuffer (!)
386
+ * ```
387
+ * @since v0.3.0
388
+ * @deprecated Use `subarray` instead.
389
+ * @param [start=0] Where the new `Buffer` will start.
390
+ * @param [end=buf.length] Where the new `Buffer` will end (not inclusive).
391
+ */
392
+ slice(start?: number, end?: number): Buffer<ArrayBuffer>;
393
+ /**
394
+ * Returns a new `Buffer` that references the same memory as the original, but
395
+ * offset and cropped by the `start` and `end` indices.
396
+ *
397
+ * Specifying `end` greater than `buf.length` will return the same result as
398
+ * that of `end` equal to `buf.length`.
399
+ *
400
+ * This method is inherited from [`TypedArray.prototype.subarray()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray).
401
+ *
402
+ * Modifying the new `Buffer` slice will modify the memory in the original `Buffer`because the allocated memory of the two objects overlap.
403
+ *
404
+ * ```js
405
+ * import { Buffer } from 'node:buffer';
406
+ *
407
+ * // Create a `Buffer` with the ASCII alphabet, take a slice, and modify one byte
408
+ * // from the original `Buffer`.
409
+ *
410
+ * const buf1 = Buffer.allocUnsafe(26);
411
+ *
412
+ * for (let i = 0; i < 26; i++) {
413
+ * // 97 is the decimal ASCII value for 'a'.
414
+ * buf1[i] = i + 97;
415
+ * }
416
+ *
417
+ * const buf2 = buf1.subarray(0, 3);
418
+ *
419
+ * console.log(buf2.toString('ascii', 0, buf2.length));
420
+ * // Prints: abc
421
+ *
422
+ * buf1[0] = 33;
423
+ *
424
+ * console.log(buf2.toString('ascii', 0, buf2.length));
425
+ * // Prints: !bc
426
+ * ```
427
+ *
428
+ * Specifying negative indexes causes the slice to be generated relative to the
429
+ * end of `buf` rather than the beginning.
430
+ *
431
+ * ```js
432
+ * import { Buffer } from 'node:buffer';
433
+ *
434
+ * const buf = Buffer.from('buffer');
435
+ *
436
+ * console.log(buf.subarray(-6, -1).toString());
437
+ * // Prints: buffe
438
+ * // (Equivalent to buf.subarray(0, 5).)
439
+ *
440
+ * console.log(buf.subarray(-6, -2).toString());
441
+ * // Prints: buff
442
+ * // (Equivalent to buf.subarray(0, 4).)
443
+ *
444
+ * console.log(buf.subarray(-5, -2).toString());
445
+ * // Prints: uff
446
+ * // (Equivalent to buf.subarray(1, 4).)
447
+ * ```
448
+ * @since v3.0.0
449
+ * @param [start=0] Where the new `Buffer` will start.
450
+ * @param [end=buf.length] Where the new `Buffer` will end (not inclusive).
451
+ */
452
+ subarray(start?: number, end?: number): Buffer<TArrayBuffer>;
453
+ }
454
+ // TODO: remove globals in future version
455
+ /**
456
+ * @deprecated This is intended for internal use, and will be removed once `@types/node` no longer supports
457
+ * TypeScript versions earlier than 5.7.
458
+ */
459
+ type NonSharedBuffer = Buffer<ArrayBuffer>;
460
+ /**
461
+ * @deprecated This is intended for internal use, and will be removed once `@types/node` no longer supports
462
+ * TypeScript versions earlier than 5.7.
463
+ */
464
+ type AllowSharedBuffer = Buffer<ArrayBufferLike>;
465
+ }
466
+ /** @deprecated Use `Buffer.allocUnsafeSlow()` instead. */
467
+ var SlowBuffer: {
468
+ /** @deprecated Use `Buffer.allocUnsafeSlow()` instead. */
469
+ new(size: number): Buffer<ArrayBuffer>;
470
+ prototype: Buffer;
471
+ };
472
+ }