coaia-visualizer 1.6.5 → 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 (1044) hide show
  1. package/app/api/charts/[id]/route.ts +6 -1
  2. package/app/api/charts/route.ts +6 -1
  3. package/components/asterion-session-context-badge.tsx +27 -1
  4. package/components/chart-detail-editable.tsx +19 -3
  5. package/dist/cli.js +0 -0
  6. package/lib/asterion-metadata.ts +36 -5
  7. package/lib/chart-editor.ts +15 -12
  8. package/lib/types.ts +5 -2
  9. package/mcp/dist/api-client.d.ts +138 -0
  10. package/mcp/dist/api-client.d.ts.map +1 -0
  11. package/mcp/dist/api-client.js +115 -0
  12. package/mcp/dist/api-client.js.map +1 -0
  13. package/mcp/dist/index.d.ts +2 -0
  14. package/mcp/dist/index.d.ts.map +1 -0
  15. package/mcp/dist/index.js +286 -0
  16. package/mcp/dist/index.js.map +1 -0
  17. package/mcp/dist/tools/index.d.ts +18 -0
  18. package/mcp/dist/tools/index.d.ts.map +1 -0
  19. package/mcp/dist/tools/index.js +322 -0
  20. package/mcp/dist/tools/index.js.map +1 -0
  21. package/mcp/node_modules/.package-lock.json +194 -0
  22. package/mcp/node_modules/@modelcontextprotocol/sdk/LICENSE +21 -0
  23. package/mcp/node_modules/@modelcontextprotocol/sdk/README.md +105 -0
  24. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/cli.d.ts +2 -0
  25. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/cli.d.ts.map +1 -0
  26. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/cli.js +129 -0
  27. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/cli.js.map +1 -0
  28. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.d.ts +773 -0
  29. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.d.ts.map +1 -0
  30. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.js +206 -0
  31. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.js.map +1 -0
  32. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.test.d.ts +2 -0
  33. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.test.d.ts.map +1 -0
  34. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.test.js +393 -0
  35. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/index.test.js.map +1 -0
  36. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/sse.d.ts +22 -0
  37. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/sse.d.ts.map +1 -0
  38. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/sse.js +91 -0
  39. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/sse.js.map +1 -0
  40. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.d.ts +56 -0
  41. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.d.ts.map +1 -0
  42. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.js +147 -0
  43. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.js.map +1 -0
  44. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.test.d.ts +2 -0
  45. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.test.d.ts.map +1 -0
  46. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.test.js +51 -0
  47. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/stdio.test.js.map +1 -0
  48. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.d.ts +17 -0
  49. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.d.ts.map +1 -0
  50. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.js +61 -0
  51. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/client/websocket.js.map +1 -0
  52. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.d.ts +20 -0
  53. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.d.ts.map +1 -0
  54. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.js +47 -0
  55. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.js.map +1 -0
  56. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.test.d.ts +2 -0
  57. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.test.d.ts.map +1 -0
  58. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.test.js +74 -0
  59. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/inMemory.test.js.map +1 -0
  60. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.d.ts +112 -0
  61. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.d.ts.map +1 -0
  62. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.js +182 -0
  63. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.js.map +1 -0
  64. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.test.d.ts +2 -0
  65. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.test.d.ts.map +1 -0
  66. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.test.js +408 -0
  67. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/index.test.js.map +1 -0
  68. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/sse.d.ts +46 -0
  69. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/sse.d.ts.map +1 -0
  70. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/sse.js +116 -0
  71. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/sse.js.map +1 -0
  72. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.d.ts +28 -0
  73. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.d.ts.map +1 -0
  74. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.js +69 -0
  75. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.js.map +1 -0
  76. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.test.d.ts +2 -0
  77. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.test.d.ts.map +1 -0
  78. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.test.js +87 -0
  79. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/server/stdio.test.js.map +1 -0
  80. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/protocol.d.ts +157 -0
  81. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/protocol.d.ts.map +1 -0
  82. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/protocol.js +297 -0
  83. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/protocol.js.map +1 -0
  84. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.d.ts +13 -0
  85. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.d.ts.map +1 -0
  86. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.js +31 -0
  87. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.js.map +1 -0
  88. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.test.d.ts +2 -0
  89. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.test.d.ts.map +1 -0
  90. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.test.js +27 -0
  91. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/stdio.test.js.map +1 -0
  92. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/transport.d.ts +39 -0
  93. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/transport.d.ts.map +1 -0
  94. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/transport.js +2 -0
  95. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/shared/transport.js.map +1 -0
  96. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/types.d.ts +26425 -0
  97. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/types.d.ts.map +1 -0
  98. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/types.js +997 -0
  99. package/mcp/node_modules/@modelcontextprotocol/sdk/dist/types.js.map +1 -0
  100. package/mcp/node_modules/@modelcontextprotocol/sdk/package.json +61 -0
  101. package/mcp/node_modules/@types/node/LICENSE +21 -0
  102. package/mcp/node_modules/@types/node/README.md +15 -0
  103. package/mcp/node_modules/@types/node/assert/strict.d.ts +111 -0
  104. package/mcp/node_modules/@types/node/assert.d.ts +1078 -0
  105. package/mcp/node_modules/@types/node/async_hooks.d.ts +603 -0
  106. package/mcp/node_modules/@types/node/buffer.buffer.d.ts +472 -0
  107. package/mcp/node_modules/@types/node/buffer.d.ts +1934 -0
  108. package/mcp/node_modules/@types/node/child_process.d.ts +1476 -0
  109. package/mcp/node_modules/@types/node/cluster.d.ts +578 -0
  110. package/mcp/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
  111. package/mcp/node_modules/@types/node/compatibility/index.d.ts +9 -0
  112. package/mcp/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  113. package/mcp/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
  114. package/mcp/node_modules/@types/node/console.d.ts +452 -0
  115. package/mcp/node_modules/@types/node/constants.d.ts +21 -0
  116. package/mcp/node_modules/@types/node/crypto.d.ts +4545 -0
  117. package/mcp/node_modules/@types/node/dgram.d.ts +600 -0
  118. package/mcp/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  119. package/mcp/node_modules/@types/node/dns/promises.d.ts +503 -0
  120. package/mcp/node_modules/@types/node/dns.d.ts +923 -0
  121. package/mcp/node_modules/@types/node/domain.d.ts +170 -0
  122. package/mcp/node_modules/@types/node/events.d.ts +976 -0
  123. package/mcp/node_modules/@types/node/fs/promises.d.ts +1295 -0
  124. package/mcp/node_modules/@types/node/fs.d.ts +4461 -0
  125. package/mcp/node_modules/@types/node/globals.d.ts +172 -0
  126. package/mcp/node_modules/@types/node/globals.typedarray.d.ts +38 -0
  127. package/mcp/node_modules/@types/node/http.d.ts +2089 -0
  128. package/mcp/node_modules/@types/node/http2.d.ts +2644 -0
  129. package/mcp/node_modules/@types/node/https.d.ts +579 -0
  130. package/mcp/node_modules/@types/node/index.d.ts +97 -0
  131. package/mcp/node_modules/@types/node/inspector.d.ts +253 -0
  132. package/mcp/node_modules/@types/node/inspector.generated.d.ts +4052 -0
  133. package/mcp/node_modules/@types/node/module.d.ts +891 -0
  134. package/mcp/node_modules/@types/node/net.d.ts +1057 -0
  135. package/mcp/node_modules/@types/node/os.d.ts +506 -0
  136. package/mcp/node_modules/@types/node/package.json +145 -0
  137. package/mcp/node_modules/@types/node/path.d.ts +200 -0
  138. package/mcp/node_modules/@types/node/perf_hooks.d.ts +968 -0
  139. package/mcp/node_modules/@types/node/process.d.ts +2084 -0
  140. package/mcp/node_modules/@types/node/punycode.d.ts +117 -0
  141. package/mcp/node_modules/@types/node/querystring.d.ts +152 -0
  142. package/mcp/node_modules/@types/node/readline/promises.d.ts +161 -0
  143. package/mcp/node_modules/@types/node/readline.d.ts +594 -0
  144. package/mcp/node_modules/@types/node/repl.d.ts +428 -0
  145. package/mcp/node_modules/@types/node/sea.d.ts +153 -0
  146. package/mcp/node_modules/@types/node/sqlite.d.ts +721 -0
  147. package/mcp/node_modules/@types/node/stream/consumers.d.ts +38 -0
  148. package/mcp/node_modules/@types/node/stream/promises.d.ts +90 -0
  149. package/mcp/node_modules/@types/node/stream/web.d.ts +622 -0
  150. package/mcp/node_modules/@types/node/stream.d.ts +1664 -0
  151. package/mcp/node_modules/@types/node/string_decoder.d.ts +67 -0
  152. package/mcp/node_modules/@types/node/test.d.ts +2163 -0
  153. package/mcp/node_modules/@types/node/timers/promises.d.ts +108 -0
  154. package/mcp/node_modules/@types/node/timers.d.ts +287 -0
  155. package/mcp/node_modules/@types/node/tls.d.ts +1319 -0
  156. package/mcp/node_modules/@types/node/trace_events.d.ts +197 -0
  157. package/mcp/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +468 -0
  158. package/mcp/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +34 -0
  159. package/mcp/node_modules/@types/node/ts5.6/index.d.ts +97 -0
  160. package/mcp/node_modules/@types/node/tty.d.ts +208 -0
  161. package/mcp/node_modules/@types/node/url.d.ts +984 -0
  162. package/mcp/node_modules/@types/node/util.d.ts +2606 -0
  163. package/mcp/node_modules/@types/node/v8.d.ts +920 -0
  164. package/mcp/node_modules/@types/node/vm.d.ts +1000 -0
  165. package/mcp/node_modules/@types/node/wasi.d.ts +181 -0
  166. package/mcp/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  167. package/mcp/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  168. package/mcp/node_modules/@types/node/web-globals/events.d.ts +97 -0
  169. package/mcp/node_modules/@types/node/web-globals/fetch.d.ts +55 -0
  170. package/mcp/node_modules/@types/node/web-globals/navigator.d.ts +22 -0
  171. package/mcp/node_modules/@types/node/web-globals/storage.d.ts +24 -0
  172. package/mcp/node_modules/@types/node/worker_threads.d.ts +784 -0
  173. package/mcp/node_modules/@types/node/zlib.d.ts +747 -0
  174. package/mcp/node_modules/bytes/History.md +97 -0
  175. package/mcp/node_modules/bytes/LICENSE +23 -0
  176. package/mcp/node_modules/bytes/Readme.md +152 -0
  177. package/mcp/node_modules/bytes/index.js +170 -0
  178. package/mcp/node_modules/bytes/package.json +42 -0
  179. package/mcp/node_modules/content-type/HISTORY.md +29 -0
  180. package/mcp/node_modules/content-type/LICENSE +22 -0
  181. package/mcp/node_modules/content-type/README.md +94 -0
  182. package/mcp/node_modules/content-type/index.js +225 -0
  183. package/mcp/node_modules/content-type/package.json +42 -0
  184. package/mcp/node_modules/depd/History.md +103 -0
  185. package/mcp/node_modules/depd/LICENSE +22 -0
  186. package/mcp/node_modules/depd/Readme.md +280 -0
  187. package/mcp/node_modules/depd/index.js +538 -0
  188. package/mcp/node_modules/depd/lib/browser/index.js +77 -0
  189. package/mcp/node_modules/depd/package.json +45 -0
  190. package/mcp/node_modules/dotenv/CHANGELOG.md +621 -0
  191. package/mcp/node_modules/dotenv/LICENSE +23 -0
  192. package/mcp/node_modules/dotenv/README-es.md +774 -0
  193. package/mcp/node_modules/dotenv/README.md +774 -0
  194. package/mcp/node_modules/dotenv/SECURITY.md +1 -0
  195. package/mcp/node_modules/dotenv/config.d.ts +1 -0
  196. package/mcp/node_modules/dotenv/config.js +9 -0
  197. package/mcp/node_modules/dotenv/lib/cli-options.js +17 -0
  198. package/mcp/node_modules/dotenv/lib/env-options.js +28 -0
  199. package/mcp/node_modules/dotenv/lib/main.d.ts +179 -0
  200. package/mcp/node_modules/dotenv/lib/main.js +431 -0
  201. package/mcp/node_modules/dotenv/package.json +62 -0
  202. package/mcp/node_modules/http-errors/HISTORY.md +186 -0
  203. package/mcp/node_modules/http-errors/LICENSE +23 -0
  204. package/mcp/node_modules/http-errors/README.md +169 -0
  205. package/mcp/node_modules/http-errors/index.js +290 -0
  206. package/mcp/node_modules/http-errors/package.json +54 -0
  207. package/mcp/node_modules/iconv-lite/LICENSE +21 -0
  208. package/mcp/node_modules/iconv-lite/README.md +138 -0
  209. package/mcp/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  210. package/mcp/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  211. package/mcp/node_modules/iconv-lite/encodings/index.js +23 -0
  212. package/mcp/node_modules/iconv-lite/encodings/internal.js +218 -0
  213. package/mcp/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  214. package/mcp/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  215. package/mcp/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  216. package/mcp/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  217. package/mcp/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  218. package/mcp/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  219. package/mcp/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  220. package/mcp/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  221. package/mcp/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  222. package/mcp/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  223. package/mcp/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  224. package/mcp/node_modules/iconv-lite/encodings/utf16.js +187 -0
  225. package/mcp/node_modules/iconv-lite/encodings/utf32.js +307 -0
  226. package/mcp/node_modules/iconv-lite/encodings/utf7.js +283 -0
  227. package/mcp/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  228. package/mcp/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  229. package/mcp/node_modules/iconv-lite/lib/index.d.ts +129 -0
  230. package/mcp/node_modules/iconv-lite/lib/index.js +182 -0
  231. package/mcp/node_modules/iconv-lite/lib/streams.js +105 -0
  232. package/mcp/node_modules/iconv-lite/package.json +70 -0
  233. package/mcp/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  234. package/mcp/node_modules/inherits/LICENSE +16 -0
  235. package/mcp/node_modules/inherits/README.md +42 -0
  236. package/mcp/node_modules/inherits/inherits.js +9 -0
  237. package/mcp/node_modules/inherits/inherits_browser.js +27 -0
  238. package/mcp/node_modules/inherits/package.json +29 -0
  239. package/mcp/node_modules/raw-body/LICENSE +22 -0
  240. package/mcp/node_modules/raw-body/README.md +223 -0
  241. package/mcp/node_modules/raw-body/index.d.ts +85 -0
  242. package/mcp/node_modules/raw-body/index.js +336 -0
  243. package/mcp/node_modules/raw-body/package.json +46 -0
  244. package/mcp/node_modules/safer-buffer/LICENSE +21 -0
  245. package/mcp/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  246. package/mcp/node_modules/safer-buffer/Readme.md +156 -0
  247. package/mcp/node_modules/safer-buffer/dangerous.js +58 -0
  248. package/mcp/node_modules/safer-buffer/package.json +34 -0
  249. package/mcp/node_modules/safer-buffer/safer.js +77 -0
  250. package/mcp/node_modules/safer-buffer/tests.js +406 -0
  251. package/mcp/node_modules/setprototypeof/LICENSE +13 -0
  252. package/mcp/node_modules/setprototypeof/README.md +31 -0
  253. package/mcp/node_modules/setprototypeof/index.d.ts +2 -0
  254. package/mcp/node_modules/setprototypeof/index.js +17 -0
  255. package/mcp/node_modules/setprototypeof/package.json +38 -0
  256. package/mcp/node_modules/setprototypeof/test/index.js +24 -0
  257. package/mcp/node_modules/statuses/HISTORY.md +87 -0
  258. package/mcp/node_modules/statuses/LICENSE +23 -0
  259. package/mcp/node_modules/statuses/README.md +139 -0
  260. package/mcp/node_modules/statuses/codes.json +65 -0
  261. package/mcp/node_modules/statuses/index.js +146 -0
  262. package/mcp/node_modules/statuses/package.json +49 -0
  263. package/mcp/node_modules/toidentifier/HISTORY.md +9 -0
  264. package/mcp/node_modules/toidentifier/LICENSE +21 -0
  265. package/mcp/node_modules/toidentifier/README.md +61 -0
  266. package/mcp/node_modules/toidentifier/index.js +32 -0
  267. package/mcp/node_modules/toidentifier/package.json +38 -0
  268. package/mcp/node_modules/typescript/LICENSE.txt +55 -0
  269. package/mcp/node_modules/typescript/README.md +50 -0
  270. package/mcp/node_modules/typescript/SECURITY.md +41 -0
  271. package/mcp/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  272. package/mcp/node_modules/typescript/bin/tsc +2 -0
  273. package/mcp/node_modules/typescript/bin/tsserver +2 -0
  274. package/mcp/node_modules/typescript/lib/_tsc.js +133818 -0
  275. package/mcp/node_modules/typescript/lib/_tsserver.js +659 -0
  276. package/mcp/node_modules/typescript/lib/_typingsInstaller.js +222 -0
  277. package/mcp/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2122 -0
  278. package/mcp/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2122 -0
  279. package/mcp/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2122 -0
  280. package/mcp/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2122 -0
  281. package/mcp/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2122 -0
  282. package/mcp/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2122 -0
  283. package/mcp/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2122 -0
  284. package/mcp/node_modules/typescript/lib/lib.d.ts +22 -0
  285. package/mcp/node_modules/typescript/lib/lib.decorators.d.ts +384 -0
  286. package/mcp/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
  287. package/mcp/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +41 -0
  288. package/mcp/node_modules/typescript/lib/lib.dom.d.ts +39429 -0
  289. package/mcp/node_modules/typescript/lib/lib.dom.iterable.d.ts +571 -0
  290. package/mcp/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
  291. package/mcp/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
  292. package/mcp/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
  293. package/mcp/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
  294. package/mcp/node_modules/typescript/lib/lib.es2015.iterable.d.ts +605 -0
  295. package/mcp/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
  296. package/mcp/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
  297. package/mcp/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
  298. package/mcp/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
  299. package/mcp/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
  300. package/mcp/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
  301. package/mcp/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
  302. package/mcp/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
  303. package/mcp/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
  304. package/mcp/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +21 -0
  305. package/mcp/node_modules/typescript/lib/lib.es2017.d.ts +26 -0
  306. package/mcp/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
  307. package/mcp/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
  308. package/mcp/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
  309. package/mcp/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
  310. package/mcp/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
  311. package/mcp/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
  312. package/mcp/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
  313. package/mcp/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
  314. package/mcp/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +53 -0
  315. package/mcp/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
  316. package/mcp/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
  317. package/mcp/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
  318. package/mcp/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
  319. package/mcp/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
  320. package/mcp/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
  321. package/mcp/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
  322. package/mcp/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
  323. package/mcp/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
  324. package/mcp/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
  325. package/mcp/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
  326. package/mcp/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
  327. package/mcp/node_modules/typescript/lib/lib.es2020.bigint.d.ts +765 -0
  328. package/mcp/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
  329. package/mcp/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
  330. package/mcp/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
  331. package/mcp/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
  332. package/mcp/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
  333. package/mcp/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
  334. package/mcp/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +99 -0
  335. package/mcp/node_modules/typescript/lib/lib.es2020.string.d.ts +44 -0
  336. package/mcp/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +41 -0
  337. package/mcp/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
  338. package/mcp/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
  339. package/mcp/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
  340. package/mcp/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
  341. package/mcp/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
  342. package/mcp/node_modules/typescript/lib/lib.es2021.weakref.d.ts +78 -0
  343. package/mcp/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
  344. package/mcp/node_modules/typescript/lib/lib.es2022.d.ts +25 -0
  345. package/mcp/node_modules/typescript/lib/lib.es2022.error.d.ts +75 -0
  346. package/mcp/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
  347. package/mcp/node_modules/typescript/lib/lib.es2022.intl.d.ts +145 -0
  348. package/mcp/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
  349. package/mcp/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
  350. package/mcp/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
  351. package/mcp/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
  352. package/mcp/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
  353. package/mcp/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
  354. package/mcp/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
  355. package/mcp/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
  356. package/mcp/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +65 -0
  357. package/mcp/node_modules/typescript/lib/lib.es2024.collection.d.ts +29 -0
  358. package/mcp/node_modules/typescript/lib/lib.es2024.d.ts +26 -0
  359. package/mcp/node_modules/typescript/lib/lib.es2024.full.d.ts +24 -0
  360. package/mcp/node_modules/typescript/lib/lib.es2024.object.d.ts +29 -0
  361. package/mcp/node_modules/typescript/lib/lib.es2024.promise.d.ts +35 -0
  362. package/mcp/node_modules/typescript/lib/lib.es2024.regexp.d.ts +25 -0
  363. package/mcp/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +68 -0
  364. package/mcp/node_modules/typescript/lib/lib.es2024.string.d.ts +29 -0
  365. package/mcp/node_modules/typescript/lib/lib.es5.d.ts +4601 -0
  366. package/mcp/node_modules/typescript/lib/lib.es6.d.ts +23 -0
  367. package/mcp/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
  368. package/mcp/node_modules/typescript/lib/lib.esnext.collection.d.ts +96 -0
  369. package/mcp/node_modules/typescript/lib/lib.esnext.d.ts +29 -0
  370. package/mcp/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
  371. package/mcp/node_modules/typescript/lib/lib.esnext.disposable.d.ts +193 -0
  372. package/mcp/node_modules/typescript/lib/lib.esnext.error.d.ts +24 -0
  373. package/mcp/node_modules/typescript/lib/lib.esnext.float16.d.ts +445 -0
  374. package/mcp/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
  375. package/mcp/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
  376. package/mcp/node_modules/typescript/lib/lib.esnext.iterator.d.ts +148 -0
  377. package/mcp/node_modules/typescript/lib/lib.esnext.promise.d.ts +34 -0
  378. package/mcp/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +25 -0
  379. package/mcp/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
  380. package/mcp/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +41 -0
  381. package/mcp/node_modules/typescript/lib/lib.webworker.d.ts +13150 -0
  382. package/mcp/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
  383. package/mcp/node_modules/typescript/lib/lib.webworker.iterable.d.ts +340 -0
  384. package/mcp/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2122 -0
  385. package/mcp/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2122 -0
  386. package/mcp/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2122 -0
  387. package/mcp/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2122 -0
  388. package/mcp/node_modules/typescript/lib/tsc.js +8 -0
  389. package/mcp/node_modules/typescript/lib/tsserver.js +8 -0
  390. package/mcp/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
  391. package/mcp/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  392. package/mcp/node_modules/typescript/lib/typesMap.json +497 -0
  393. package/mcp/node_modules/typescript/lib/typescript.d.ts +11437 -0
  394. package/mcp/node_modules/typescript/lib/typescript.js +200276 -0
  395. package/mcp/node_modules/typescript/lib/typingsInstaller.js +8 -0
  396. package/mcp/node_modules/typescript/lib/watchGuard.js +53 -0
  397. package/mcp/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2122 -0
  398. package/mcp/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2122 -0
  399. package/mcp/node_modules/typescript/package.json +120 -0
  400. package/mcp/node_modules/undici-types/LICENSE +21 -0
  401. package/mcp/node_modules/undici-types/README.md +6 -0
  402. package/mcp/node_modules/undici-types/agent.d.ts +31 -0
  403. package/mcp/node_modules/undici-types/api.d.ts +43 -0
  404. package/mcp/node_modules/undici-types/balanced-pool.d.ts +29 -0
  405. package/mcp/node_modules/undici-types/cache.d.ts +36 -0
  406. package/mcp/node_modules/undici-types/client.d.ts +108 -0
  407. package/mcp/node_modules/undici-types/connector.d.ts +34 -0
  408. package/mcp/node_modules/undici-types/content-type.d.ts +21 -0
  409. package/mcp/node_modules/undici-types/cookies.d.ts +28 -0
  410. package/mcp/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
  411. package/mcp/node_modules/undici-types/dispatcher.d.ts +256 -0
  412. package/mcp/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  413. package/mcp/node_modules/undici-types/errors.d.ts +149 -0
  414. package/mcp/node_modules/undici-types/eventsource.d.ts +61 -0
  415. package/mcp/node_modules/undici-types/fetch.d.ts +209 -0
  416. package/mcp/node_modules/undici-types/file.d.ts +39 -0
  417. package/mcp/node_modules/undici-types/filereader.d.ts +54 -0
  418. package/mcp/node_modules/undici-types/formdata.d.ts +108 -0
  419. package/mcp/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  420. package/mcp/node_modules/undici-types/global-origin.d.ts +7 -0
  421. package/mcp/node_modules/undici-types/handlers.d.ts +15 -0
  422. package/mcp/node_modules/undici-types/header.d.ts +4 -0
  423. package/mcp/node_modules/undici-types/index.d.ts +71 -0
  424. package/mcp/node_modules/undici-types/interceptors.d.ts +17 -0
  425. package/mcp/node_modules/undici-types/mock-agent.d.ts +50 -0
  426. package/mcp/node_modules/undici-types/mock-client.d.ts +25 -0
  427. package/mcp/node_modules/undici-types/mock-errors.d.ts +12 -0
  428. package/mcp/node_modules/undici-types/mock-interceptor.d.ts +93 -0
  429. package/mcp/node_modules/undici-types/mock-pool.d.ts +25 -0
  430. package/mcp/node_modules/undici-types/package.json +55 -0
  431. package/mcp/node_modules/undici-types/patch.d.ts +33 -0
  432. package/mcp/node_modules/undici-types/pool-stats.d.ts +19 -0
  433. package/mcp/node_modules/undici-types/pool.d.ts +39 -0
  434. package/mcp/node_modules/undici-types/proxy-agent.d.ts +28 -0
  435. package/mcp/node_modules/undici-types/readable.d.ts +65 -0
  436. package/mcp/node_modules/undici-types/retry-agent.d.ts +8 -0
  437. package/mcp/node_modules/undici-types/retry-handler.d.ts +116 -0
  438. package/mcp/node_modules/undici-types/util.d.ts +18 -0
  439. package/mcp/node_modules/undici-types/webidl.d.ts +228 -0
  440. package/mcp/node_modules/undici-types/websocket.d.ts +150 -0
  441. package/mcp/node_modules/unpipe/HISTORY.md +4 -0
  442. package/mcp/node_modules/unpipe/LICENSE +22 -0
  443. package/mcp/node_modules/unpipe/README.md +43 -0
  444. package/mcp/node_modules/unpipe/index.js +69 -0
  445. package/mcp/node_modules/unpipe/package.json +27 -0
  446. package/mcp/node_modules/zod/LICENSE +21 -0
  447. package/mcp/node_modules/zod/README.md +208 -0
  448. package/mcp/node_modules/zod/index.cjs +33 -0
  449. package/mcp/node_modules/zod/index.d.cts +4 -0
  450. package/mcp/node_modules/zod/index.d.ts +4 -0
  451. package/mcp/node_modules/zod/index.js +4 -0
  452. package/mcp/node_modules/zod/package.json +118 -0
  453. package/mcp/node_modules/zod/src/index.ts +4 -0
  454. package/mcp/node_modules/zod/src/v3/ZodError.ts +330 -0
  455. package/mcp/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  456. package/mcp/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  457. package/mcp/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  458. package/mcp/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  459. package/mcp/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  460. package/mcp/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  461. package/mcp/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  462. package/mcp/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  463. package/mcp/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  464. package/mcp/node_modules/zod/src/v3/errors.ts +13 -0
  465. package/mcp/node_modules/zod/src/v3/external.ts +6 -0
  466. package/mcp/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  467. package/mcp/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  468. package/mcp/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  469. package/mcp/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  470. package/mcp/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  471. package/mcp/node_modules/zod/src/v3/helpers/util.ts +224 -0
  472. package/mcp/node_modules/zod/src/v3/index.ts +4 -0
  473. package/mcp/node_modules/zod/src/v3/locales/en.ts +124 -0
  474. package/mcp/node_modules/zod/src/v3/standard-schema.ts +113 -0
  475. package/mcp/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  476. package/mcp/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  477. package/mcp/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  478. package/mcp/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  479. package/mcp/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  480. package/mcp/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  481. package/mcp/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  482. package/mcp/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  483. package/mcp/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  484. package/mcp/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  485. package/mcp/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  486. package/mcp/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  487. package/mcp/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  488. package/mcp/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  489. package/mcp/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  490. package/mcp/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  491. package/mcp/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  492. package/mcp/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  493. package/mcp/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  494. package/mcp/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  495. package/mcp/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  496. package/mcp/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  497. package/mcp/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  498. package/mcp/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  499. package/mcp/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  500. package/mcp/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  501. package/mcp/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  502. package/mcp/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  503. package/mcp/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  504. package/mcp/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  505. package/mcp/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  506. package/mcp/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  507. package/mcp/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  508. package/mcp/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  509. package/mcp/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  510. package/mcp/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  511. package/mcp/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  512. package/mcp/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  513. package/mcp/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  514. package/mcp/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  515. package/mcp/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  516. package/mcp/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  517. package/mcp/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  518. package/mcp/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  519. package/mcp/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  520. package/mcp/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  521. package/mcp/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  522. package/mcp/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  523. package/mcp/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  524. package/mcp/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  525. package/mcp/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  526. package/mcp/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  527. package/mcp/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  528. package/mcp/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  529. package/mcp/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  530. package/mcp/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  531. package/mcp/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  532. package/mcp/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  533. package/mcp/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  534. package/mcp/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  535. package/mcp/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  536. package/mcp/node_modules/zod/src/v3/types.ts +5136 -0
  537. package/mcp/node_modules/zod/src/v4/classic/checks.ts +30 -0
  538. package/mcp/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  539. package/mcp/node_modules/zod/src/v4/classic/compat.ts +66 -0
  540. package/mcp/node_modules/zod/src/v4/classic/errors.ts +75 -0
  541. package/mcp/node_modules/zod/src/v4/classic/external.ts +50 -0
  542. package/mcp/node_modules/zod/src/v4/classic/index.ts +5 -0
  543. package/mcp/node_modules/zod/src/v4/classic/iso.ts +90 -0
  544. package/mcp/node_modules/zod/src/v4/classic/parse.ts +33 -0
  545. package/mcp/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
  546. package/mcp/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  547. package/mcp/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  548. package/mcp/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  549. package/mcp/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  550. package/mcp/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  551. package/mcp/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  552. package/mcp/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  553. package/mcp/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  554. package/mcp/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
  555. package/mcp/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  556. package/mcp/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  557. package/mcp/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  558. package/mcp/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  559. package/mcp/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  560. package/mcp/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
  561. package/mcp/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
  562. package/mcp/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  563. package/mcp/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
  564. package/mcp/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  565. package/mcp/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
  566. package/mcp/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  567. package/mcp/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
  568. package/mcp/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
  569. package/mcp/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
  570. package/mcp/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  571. package/mcp/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
  572. package/mcp/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  573. package/mcp/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  574. package/mcp/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  575. package/mcp/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  576. package/mcp/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
  577. package/mcp/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  578. package/mcp/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  579. package/mcp/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  580. package/mcp/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
  581. package/mcp/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  582. package/mcp/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
  583. package/mcp/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
  584. package/mcp/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
  585. package/mcp/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
  586. package/mcp/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  587. package/mcp/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
  588. package/mcp/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
  589. package/mcp/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
  590. package/mcp/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  591. package/mcp/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  592. package/mcp/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  593. package/mcp/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  594. package/mcp/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
  595. package/mcp/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
  596. package/mcp/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
  597. package/mcp/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  598. package/mcp/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
  599. package/mcp/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  600. package/mcp/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
  601. package/mcp/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
  602. package/mcp/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
  603. package/mcp/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
  604. package/mcp/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
  605. package/mcp/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
  606. package/mcp/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  607. package/mcp/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
  608. package/mcp/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  609. package/mcp/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  610. package/mcp/node_modules/zod/src/v4/core/api.ts +1594 -0
  611. package/mcp/node_modules/zod/src/v4/core/checks.ts +1283 -0
  612. package/mcp/node_modules/zod/src/v4/core/config.ts +15 -0
  613. package/mcp/node_modules/zod/src/v4/core/core.ts +134 -0
  614. package/mcp/node_modules/zod/src/v4/core/doc.ts +44 -0
  615. package/mcp/node_modules/zod/src/v4/core/errors.ts +424 -0
  616. package/mcp/node_modules/zod/src/v4/core/function.ts +176 -0
  617. package/mcp/node_modules/zod/src/v4/core/index.ts +15 -0
  618. package/mcp/node_modules/zod/src/v4/core/json-schema.ts +143 -0
  619. package/mcp/node_modules/zod/src/v4/core/parse.ts +94 -0
  620. package/mcp/node_modules/zod/src/v4/core/regexes.ts +135 -0
  621. package/mcp/node_modules/zod/src/v4/core/registries.ts +96 -0
  622. package/mcp/node_modules/zod/src/v4/core/schemas.ts +3842 -0
  623. package/mcp/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  624. package/mcp/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  625. package/mcp/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  626. package/mcp/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  627. package/mcp/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  628. package/mcp/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  629. package/mcp/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
  630. package/mcp/node_modules/zod/src/v4/core/util.ts +775 -0
  631. package/mcp/node_modules/zod/src/v4/core/versions.ts +5 -0
  632. package/mcp/node_modules/zod/src/v4/core/zsf.ts +323 -0
  633. package/mcp/node_modules/zod/src/v4/index.ts +4 -0
  634. package/mcp/node_modules/zod/src/v4/locales/ar.ts +125 -0
  635. package/mcp/node_modules/zod/src/v4/locales/az.ts +121 -0
  636. package/mcp/node_modules/zod/src/v4/locales/be.ts +184 -0
  637. package/mcp/node_modules/zod/src/v4/locales/ca.ts +127 -0
  638. package/mcp/node_modules/zod/src/v4/locales/cs.ts +142 -0
  639. package/mcp/node_modules/zod/src/v4/locales/de.ts +124 -0
  640. package/mcp/node_modules/zod/src/v4/locales/en.ts +127 -0
  641. package/mcp/node_modules/zod/src/v4/locales/eo.ts +125 -0
  642. package/mcp/node_modules/zod/src/v4/locales/es.ts +125 -0
  643. package/mcp/node_modules/zod/src/v4/locales/fa.ts +134 -0
  644. package/mcp/node_modules/zod/src/v4/locales/fi.ts +131 -0
  645. package/mcp/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  646. package/mcp/node_modules/zod/src/v4/locales/fr.ts +124 -0
  647. package/mcp/node_modules/zod/src/v4/locales/he.ts +125 -0
  648. package/mcp/node_modules/zod/src/v4/locales/hu.ts +126 -0
  649. package/mcp/node_modules/zod/src/v4/locales/id.ts +125 -0
  650. package/mcp/node_modules/zod/src/v4/locales/index.ts +39 -0
  651. package/mcp/node_modules/zod/src/v4/locales/it.ts +125 -0
  652. package/mcp/node_modules/zod/src/v4/locales/ja.ts +122 -0
  653. package/mcp/node_modules/zod/src/v4/locales/kh.ts +126 -0
  654. package/mcp/node_modules/zod/src/v4/locales/ko.ts +131 -0
  655. package/mcp/node_modules/zod/src/v4/locales/mk.ts +127 -0
  656. package/mcp/node_modules/zod/src/v4/locales/ms.ts +124 -0
  657. package/mcp/node_modules/zod/src/v4/locales/nl.ts +126 -0
  658. package/mcp/node_modules/zod/src/v4/locales/no.ts +124 -0
  659. package/mcp/node_modules/zod/src/v4/locales/ota.ts +125 -0
  660. package/mcp/node_modules/zod/src/v4/locales/pl.ts +126 -0
  661. package/mcp/node_modules/zod/src/v4/locales/ps.ts +133 -0
  662. package/mcp/node_modules/zod/src/v4/locales/pt.ts +123 -0
  663. package/mcp/node_modules/zod/src/v4/locales/ru.ts +184 -0
  664. package/mcp/node_modules/zod/src/v4/locales/sl.ts +126 -0
  665. package/mcp/node_modules/zod/src/v4/locales/sv.ts +127 -0
  666. package/mcp/node_modules/zod/src/v4/locales/ta.ts +125 -0
  667. package/mcp/node_modules/zod/src/v4/locales/th.ts +126 -0
  668. package/mcp/node_modules/zod/src/v4/locales/tr.ts +121 -0
  669. package/mcp/node_modules/zod/src/v4/locales/ua.ts +126 -0
  670. package/mcp/node_modules/zod/src/v4/locales/ur.ts +126 -0
  671. package/mcp/node_modules/zod/src/v4/locales/vi.ts +125 -0
  672. package/mcp/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  673. package/mcp/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  674. package/mcp/node_modules/zod/src/v4/mini/checks.ts +32 -0
  675. package/mcp/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  676. package/mcp/node_modules/zod/src/v4/mini/external.ts +40 -0
  677. package/mcp/node_modules/zod/src/v4/mini/index.ts +3 -0
  678. package/mcp/node_modules/zod/src/v4/mini/iso.ts +62 -0
  679. package/mcp/node_modules/zod/src/v4/mini/parse.ts +1 -0
  680. package/mcp/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
  681. package/mcp/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  682. package/mcp/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  683. package/mcp/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  684. package/mcp/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  685. package/mcp/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  686. package/mcp/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  687. package/mcp/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
  688. package/mcp/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  689. package/mcp/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
  690. package/mcp/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  691. package/mcp/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  692. package/mcp/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
  693. package/mcp/node_modules/zod/src/v4-mini/index.ts +1 -0
  694. package/mcp/node_modules/zod/v3/ZodError.cjs +138 -0
  695. package/mcp/node_modules/zod/v3/ZodError.d.cts +164 -0
  696. package/mcp/node_modules/zod/v3/ZodError.d.ts +164 -0
  697. package/mcp/node_modules/zod/v3/ZodError.js +133 -0
  698. package/mcp/node_modules/zod/v3/errors.cjs +17 -0
  699. package/mcp/node_modules/zod/v3/errors.d.cts +5 -0
  700. package/mcp/node_modules/zod/v3/errors.d.ts +5 -0
  701. package/mcp/node_modules/zod/v3/errors.js +9 -0
  702. package/mcp/node_modules/zod/v3/external.cjs +22 -0
  703. package/mcp/node_modules/zod/v3/external.d.cts +6 -0
  704. package/mcp/node_modules/zod/v3/external.d.ts +6 -0
  705. package/mcp/node_modules/zod/v3/external.js +6 -0
  706. package/mcp/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  707. package/mcp/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  708. package/mcp/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  709. package/mcp/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  710. package/mcp/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  711. package/mcp/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  712. package/mcp/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  713. package/mcp/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  714. package/mcp/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  715. package/mcp/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  716. package/mcp/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  717. package/mcp/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  718. package/mcp/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  719. package/mcp/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  720. package/mcp/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  721. package/mcp/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  722. package/mcp/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  723. package/mcp/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  724. package/mcp/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  725. package/mcp/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  726. package/mcp/node_modules/zod/v3/helpers/util.cjs +137 -0
  727. package/mcp/node_modules/zod/v3/helpers/util.d.cts +85 -0
  728. package/mcp/node_modules/zod/v3/helpers/util.d.ts +85 -0
  729. package/mcp/node_modules/zod/v3/helpers/util.js +133 -0
  730. package/mcp/node_modules/zod/v3/index.cjs +33 -0
  731. package/mcp/node_modules/zod/v3/index.d.cts +4 -0
  732. package/mcp/node_modules/zod/v3/index.d.ts +4 -0
  733. package/mcp/node_modules/zod/v3/index.js +4 -0
  734. package/mcp/node_modules/zod/v3/locales/en.cjs +111 -0
  735. package/mcp/node_modules/zod/v3/locales/en.d.cts +3 -0
  736. package/mcp/node_modules/zod/v3/locales/en.d.ts +3 -0
  737. package/mcp/node_modules/zod/v3/locales/en.js +109 -0
  738. package/mcp/node_modules/zod/v3/standard-schema.cjs +2 -0
  739. package/mcp/node_modules/zod/v3/standard-schema.d.cts +102 -0
  740. package/mcp/node_modules/zod/v3/standard-schema.d.ts +102 -0
  741. package/mcp/node_modules/zod/v3/standard-schema.js +1 -0
  742. package/mcp/node_modules/zod/v3/types.cjs +3775 -0
  743. package/mcp/node_modules/zod/v3/types.d.cts +1031 -0
  744. package/mcp/node_modules/zod/v3/types.d.ts +1031 -0
  745. package/mcp/node_modules/zod/v3/types.js +3693 -0
  746. package/mcp/node_modules/zod/v4/classic/checks.cjs +32 -0
  747. package/mcp/node_modules/zod/v4/classic/checks.d.cts +1 -0
  748. package/mcp/node_modules/zod/v4/classic/checks.d.ts +1 -0
  749. package/mcp/node_modules/zod/v4/classic/checks.js +1 -0
  750. package/mcp/node_modules/zod/v4/classic/coerce.cjs +47 -0
  751. package/mcp/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  752. package/mcp/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  753. package/mcp/node_modules/zod/v4/classic/coerce.js +17 -0
  754. package/mcp/node_modules/zod/v4/classic/compat.cjs +57 -0
  755. package/mcp/node_modules/zod/v4/classic/compat.d.cts +46 -0
  756. package/mcp/node_modules/zod/v4/classic/compat.d.ts +46 -0
  757. package/mcp/node_modules/zod/v4/classic/compat.js +27 -0
  758. package/mcp/node_modules/zod/v4/classic/errors.cjs +67 -0
  759. package/mcp/node_modules/zod/v4/classic/errors.d.cts +30 -0
  760. package/mcp/node_modules/zod/v4/classic/errors.d.ts +30 -0
  761. package/mcp/node_modules/zod/v4/classic/errors.js +41 -0
  762. package/mcp/node_modules/zod/v4/classic/external.cjs +70 -0
  763. package/mcp/node_modules/zod/v4/classic/external.d.cts +13 -0
  764. package/mcp/node_modules/zod/v4/classic/external.d.ts +13 -0
  765. package/mcp/node_modules/zod/v4/classic/external.js +18 -0
  766. package/mcp/node_modules/zod/v4/classic/index.cjs +33 -0
  767. package/mcp/node_modules/zod/v4/classic/index.d.cts +4 -0
  768. package/mcp/node_modules/zod/v4/classic/index.d.ts +4 -0
  769. package/mcp/node_modules/zod/v4/classic/index.js +4 -0
  770. package/mcp/node_modules/zod/v4/classic/iso.cjs +60 -0
  771. package/mcp/node_modules/zod/v4/classic/iso.d.cts +22 -0
  772. package/mcp/node_modules/zod/v4/classic/iso.d.ts +22 -0
  773. package/mcp/node_modules/zod/v4/classic/iso.js +30 -0
  774. package/mcp/node_modules/zod/v4/classic/parse.cjs +32 -0
  775. package/mcp/node_modules/zod/v4/classic/parse.d.cts +23 -0
  776. package/mcp/node_modules/zod/v4/classic/parse.d.ts +23 -0
  777. package/mcp/node_modules/zod/v4/classic/parse.js +6 -0
  778. package/mcp/node_modules/zod/v4/classic/schemas.cjs +1109 -0
  779. package/mcp/node_modules/zod/v4/classic/schemas.d.cts +630 -0
  780. package/mcp/node_modules/zod/v4/classic/schemas.d.ts +630 -0
  781. package/mcp/node_modules/zod/v4/classic/schemas.js +1006 -0
  782. package/mcp/node_modules/zod/v4/core/api.cjs +1039 -0
  783. package/mcp/node_modules/zod/v4/core/api.d.cts +284 -0
  784. package/mcp/node_modules/zod/v4/core/api.d.ts +284 -0
  785. package/mcp/node_modules/zod/v4/core/api.js +906 -0
  786. package/mcp/node_modules/zod/v4/core/checks.cjs +591 -0
  787. package/mcp/node_modules/zod/v4/core/checks.d.cts +278 -0
  788. package/mcp/node_modules/zod/v4/core/checks.d.ts +278 -0
  789. package/mcp/node_modules/zod/v4/core/checks.js +565 -0
  790. package/mcp/node_modules/zod/v4/core/core.cjs +67 -0
  791. package/mcp/node_modules/zod/v4/core/core.d.cts +49 -0
  792. package/mcp/node_modules/zod/v4/core/core.d.ts +49 -0
  793. package/mcp/node_modules/zod/v4/core/core.js +61 -0
  794. package/mcp/node_modules/zod/v4/core/doc.cjs +39 -0
  795. package/mcp/node_modules/zod/v4/core/doc.d.cts +14 -0
  796. package/mcp/node_modules/zod/v4/core/doc.d.ts +14 -0
  797. package/mcp/node_modules/zod/v4/core/doc.js +35 -0
  798. package/mcp/node_modules/zod/v4/core/errors.cjs +226 -0
  799. package/mcp/node_modules/zod/v4/core/errors.d.cts +208 -0
  800. package/mcp/node_modules/zod/v4/core/errors.d.ts +208 -0
  801. package/mcp/node_modules/zod/v4/core/errors.js +195 -0
  802. package/mcp/node_modules/zod/v4/core/function.cjs +102 -0
  803. package/mcp/node_modules/zod/v4/core/function.d.cts +52 -0
  804. package/mcp/node_modules/zod/v4/core/function.d.ts +52 -0
  805. package/mcp/node_modules/zod/v4/core/function.js +75 -0
  806. package/mcp/node_modules/zod/v4/core/index.cjs +44 -0
  807. package/mcp/node_modules/zod/v4/core/index.d.cts +15 -0
  808. package/mcp/node_modules/zod/v4/core/index.d.ts +15 -0
  809. package/mcp/node_modules/zod/v4/core/index.js +15 -0
  810. package/mcp/node_modules/zod/v4/core/json-schema.cjs +2 -0
  811. package/mcp/node_modules/zod/v4/core/json-schema.d.cts +87 -0
  812. package/mcp/node_modules/zod/v4/core/json-schema.d.ts +87 -0
  813. package/mcp/node_modules/zod/v4/core/json-schema.js +1 -0
  814. package/mcp/node_modules/zod/v4/core/parse.cjs +87 -0
  815. package/mcp/node_modules/zod/v4/core/parse.d.cts +25 -0
  816. package/mcp/node_modules/zod/v4/core/parse.d.ts +25 -0
  817. package/mcp/node_modules/zod/v4/core/parse.js +57 -0
  818. package/mcp/node_modules/zod/v4/core/regexes.cjs +103 -0
  819. package/mcp/node_modules/zod/v4/core/regexes.d.cts +62 -0
  820. package/mcp/node_modules/zod/v4/core/regexes.d.ts +62 -0
  821. package/mcp/node_modules/zod/v4/core/regexes.js +95 -0
  822. package/mcp/node_modules/zod/v4/core/registries.cjs +56 -0
  823. package/mcp/node_modules/zod/v4/core/registries.d.cts +35 -0
  824. package/mcp/node_modules/zod/v4/core/registries.d.ts +35 -0
  825. package/mcp/node_modules/zod/v4/core/registries.js +51 -0
  826. package/mcp/node_modules/zod/v4/core/schemas.cjs +1748 -0
  827. package/mcp/node_modules/zod/v4/core/schemas.d.cts +1041 -0
  828. package/mcp/node_modules/zod/v4/core/schemas.d.ts +1041 -0
  829. package/mcp/node_modules/zod/v4/core/schemas.js +1717 -0
  830. package/mcp/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  831. package/mcp/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  832. package/mcp/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  833. package/mcp/node_modules/zod/v4/core/standard-schema.js +1 -0
  834. package/mcp/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
  835. package/mcp/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
  836. package/mcp/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
  837. package/mcp/node_modules/zod/v4/core/to-json-schema.js +849 -0
  838. package/mcp/node_modules/zod/v4/core/util.cjs +539 -0
  839. package/mcp/node_modules/zod/v4/core/util.d.cts +183 -0
  840. package/mcp/node_modules/zod/v4/core/util.d.ts +183 -0
  841. package/mcp/node_modules/zod/v4/core/util.js +493 -0
  842. package/mcp/node_modules/zod/v4/core/versions.cjs +8 -0
  843. package/mcp/node_modules/zod/v4/core/versions.d.cts +5 -0
  844. package/mcp/node_modules/zod/v4/core/versions.d.ts +5 -0
  845. package/mcp/node_modules/zod/v4/core/versions.js +5 -0
  846. package/mcp/node_modules/zod/v4/index.cjs +22 -0
  847. package/mcp/node_modules/zod/v4/index.d.cts +3 -0
  848. package/mcp/node_modules/zod/v4/index.d.ts +3 -0
  849. package/mcp/node_modules/zod/v4/index.js +3 -0
  850. package/mcp/node_modules/zod/v4/locales/ar.cjs +142 -0
  851. package/mcp/node_modules/zod/v4/locales/ar.d.cts +4 -0
  852. package/mcp/node_modules/zod/v4/locales/ar.d.ts +4 -0
  853. package/mcp/node_modules/zod/v4/locales/ar.js +116 -0
  854. package/mcp/node_modules/zod/v4/locales/az.cjs +141 -0
  855. package/mcp/node_modules/zod/v4/locales/az.d.cts +4 -0
  856. package/mcp/node_modules/zod/v4/locales/az.d.ts +4 -0
  857. package/mcp/node_modules/zod/v4/locales/az.js +115 -0
  858. package/mcp/node_modules/zod/v4/locales/be.cjs +190 -0
  859. package/mcp/node_modules/zod/v4/locales/be.d.cts +4 -0
  860. package/mcp/node_modules/zod/v4/locales/be.d.ts +4 -0
  861. package/mcp/node_modules/zod/v4/locales/be.js +164 -0
  862. package/mcp/node_modules/zod/v4/locales/ca.cjs +144 -0
  863. package/mcp/node_modules/zod/v4/locales/ca.d.cts +4 -0
  864. package/mcp/node_modules/zod/v4/locales/ca.d.ts +4 -0
  865. package/mcp/node_modules/zod/v4/locales/ca.js +118 -0
  866. package/mcp/node_modules/zod/v4/locales/cs.cjs +161 -0
  867. package/mcp/node_modules/zod/v4/locales/cs.d.cts +4 -0
  868. package/mcp/node_modules/zod/v4/locales/cs.d.ts +4 -0
  869. package/mcp/node_modules/zod/v4/locales/cs.js +135 -0
  870. package/mcp/node_modules/zod/v4/locales/de.cjs +142 -0
  871. package/mcp/node_modules/zod/v4/locales/de.d.cts +4 -0
  872. package/mcp/node_modules/zod/v4/locales/de.d.ts +4 -0
  873. package/mcp/node_modules/zod/v4/locales/de.js +116 -0
  874. package/mcp/node_modules/zod/v4/locales/en.cjs +145 -0
  875. package/mcp/node_modules/zod/v4/locales/en.d.cts +5 -0
  876. package/mcp/node_modules/zod/v4/locales/en.d.ts +5 -0
  877. package/mcp/node_modules/zod/v4/locales/en.js +117 -0
  878. package/mcp/node_modules/zod/v4/locales/eo.cjs +144 -0
  879. package/mcp/node_modules/zod/v4/locales/eo.d.cts +5 -0
  880. package/mcp/node_modules/zod/v4/locales/eo.d.ts +5 -0
  881. package/mcp/node_modules/zod/v4/locales/eo.js +116 -0
  882. package/mcp/node_modules/zod/v4/locales/es.cjs +143 -0
  883. package/mcp/node_modules/zod/v4/locales/es.d.cts +4 -0
  884. package/mcp/node_modules/zod/v4/locales/es.d.ts +4 -0
  885. package/mcp/node_modules/zod/v4/locales/es.js +117 -0
  886. package/mcp/node_modules/zod/v4/locales/fa.cjs +148 -0
  887. package/mcp/node_modules/zod/v4/locales/fa.d.cts +4 -0
  888. package/mcp/node_modules/zod/v4/locales/fa.d.ts +4 -0
  889. package/mcp/node_modules/zod/v4/locales/fa.js +122 -0
  890. package/mcp/node_modules/zod/v4/locales/fi.cjs +148 -0
  891. package/mcp/node_modules/zod/v4/locales/fi.d.cts +4 -0
  892. package/mcp/node_modules/zod/v4/locales/fi.d.ts +4 -0
  893. package/mcp/node_modules/zod/v4/locales/fi.js +122 -0
  894. package/mcp/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
  895. package/mcp/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
  896. package/mcp/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  897. package/mcp/node_modules/zod/v4/locales/fr-CA.js +117 -0
  898. package/mcp/node_modules/zod/v4/locales/fr.cjs +142 -0
  899. package/mcp/node_modules/zod/v4/locales/fr.d.cts +4 -0
  900. package/mcp/node_modules/zod/v4/locales/fr.d.ts +4 -0
  901. package/mcp/node_modules/zod/v4/locales/fr.js +116 -0
  902. package/mcp/node_modules/zod/v4/locales/he.cjs +143 -0
  903. package/mcp/node_modules/zod/v4/locales/he.d.cts +4 -0
  904. package/mcp/node_modules/zod/v4/locales/he.d.ts +4 -0
  905. package/mcp/node_modules/zod/v4/locales/he.js +117 -0
  906. package/mcp/node_modules/zod/v4/locales/hu.cjs +143 -0
  907. package/mcp/node_modules/zod/v4/locales/hu.d.cts +4 -0
  908. package/mcp/node_modules/zod/v4/locales/hu.d.ts +4 -0
  909. package/mcp/node_modules/zod/v4/locales/hu.js +117 -0
  910. package/mcp/node_modules/zod/v4/locales/id.cjs +142 -0
  911. package/mcp/node_modules/zod/v4/locales/id.d.cts +4 -0
  912. package/mcp/node_modules/zod/v4/locales/id.d.ts +4 -0
  913. package/mcp/node_modules/zod/v4/locales/id.js +116 -0
  914. package/mcp/node_modules/zod/v4/locales/index.cjs +84 -0
  915. package/mcp/node_modules/zod/v4/locales/index.d.cts +39 -0
  916. package/mcp/node_modules/zod/v4/locales/index.d.ts +39 -0
  917. package/mcp/node_modules/zod/v4/locales/index.js +39 -0
  918. package/mcp/node_modules/zod/v4/locales/it.cjs +143 -0
  919. package/mcp/node_modules/zod/v4/locales/it.d.cts +4 -0
  920. package/mcp/node_modules/zod/v4/locales/it.d.ts +4 -0
  921. package/mcp/node_modules/zod/v4/locales/it.js +117 -0
  922. package/mcp/node_modules/zod/v4/locales/ja.cjs +141 -0
  923. package/mcp/node_modules/zod/v4/locales/ja.d.cts +4 -0
  924. package/mcp/node_modules/zod/v4/locales/ja.d.ts +4 -0
  925. package/mcp/node_modules/zod/v4/locales/ja.js +115 -0
  926. package/mcp/node_modules/zod/v4/locales/kh.cjs +143 -0
  927. package/mcp/node_modules/zod/v4/locales/kh.d.cts +4 -0
  928. package/mcp/node_modules/zod/v4/locales/kh.d.ts +4 -0
  929. package/mcp/node_modules/zod/v4/locales/kh.js +117 -0
  930. package/mcp/node_modules/zod/v4/locales/ko.cjs +147 -0
  931. package/mcp/node_modules/zod/v4/locales/ko.d.cts +4 -0
  932. package/mcp/node_modules/zod/v4/locales/ko.d.ts +4 -0
  933. package/mcp/node_modules/zod/v4/locales/ko.js +121 -0
  934. package/mcp/node_modules/zod/v4/locales/mk.cjs +144 -0
  935. package/mcp/node_modules/zod/v4/locales/mk.d.cts +4 -0
  936. package/mcp/node_modules/zod/v4/locales/mk.d.ts +4 -0
  937. package/mcp/node_modules/zod/v4/locales/mk.js +118 -0
  938. package/mcp/node_modules/zod/v4/locales/ms.cjs +142 -0
  939. package/mcp/node_modules/zod/v4/locales/ms.d.cts +4 -0
  940. package/mcp/node_modules/zod/v4/locales/ms.d.ts +4 -0
  941. package/mcp/node_modules/zod/v4/locales/ms.js +116 -0
  942. package/mcp/node_modules/zod/v4/locales/nl.cjs +143 -0
  943. package/mcp/node_modules/zod/v4/locales/nl.d.cts +4 -0
  944. package/mcp/node_modules/zod/v4/locales/nl.d.ts +4 -0
  945. package/mcp/node_modules/zod/v4/locales/nl.js +117 -0
  946. package/mcp/node_modules/zod/v4/locales/no.cjs +142 -0
  947. package/mcp/node_modules/zod/v4/locales/no.d.cts +4 -0
  948. package/mcp/node_modules/zod/v4/locales/no.d.ts +4 -0
  949. package/mcp/node_modules/zod/v4/locales/no.js +116 -0
  950. package/mcp/node_modules/zod/v4/locales/ota.cjs +143 -0
  951. package/mcp/node_modules/zod/v4/locales/ota.d.cts +4 -0
  952. package/mcp/node_modules/zod/v4/locales/ota.d.ts +4 -0
  953. package/mcp/node_modules/zod/v4/locales/ota.js +117 -0
  954. package/mcp/node_modules/zod/v4/locales/pl.cjs +143 -0
  955. package/mcp/node_modules/zod/v4/locales/pl.d.cts +4 -0
  956. package/mcp/node_modules/zod/v4/locales/pl.d.ts +4 -0
  957. package/mcp/node_modules/zod/v4/locales/pl.js +117 -0
  958. package/mcp/node_modules/zod/v4/locales/ps.cjs +148 -0
  959. package/mcp/node_modules/zod/v4/locales/ps.d.cts +4 -0
  960. package/mcp/node_modules/zod/v4/locales/ps.d.ts +4 -0
  961. package/mcp/node_modules/zod/v4/locales/ps.js +122 -0
  962. package/mcp/node_modules/zod/v4/locales/pt.cjs +142 -0
  963. package/mcp/node_modules/zod/v4/locales/pt.d.cts +4 -0
  964. package/mcp/node_modules/zod/v4/locales/pt.d.ts +4 -0
  965. package/mcp/node_modules/zod/v4/locales/pt.js +116 -0
  966. package/mcp/node_modules/zod/v4/locales/ru.cjs +190 -0
  967. package/mcp/node_modules/zod/v4/locales/ru.d.cts +4 -0
  968. package/mcp/node_modules/zod/v4/locales/ru.d.ts +4 -0
  969. package/mcp/node_modules/zod/v4/locales/ru.js +164 -0
  970. package/mcp/node_modules/zod/v4/locales/sl.cjs +143 -0
  971. package/mcp/node_modules/zod/v4/locales/sl.d.cts +4 -0
  972. package/mcp/node_modules/zod/v4/locales/sl.d.ts +4 -0
  973. package/mcp/node_modules/zod/v4/locales/sl.js +117 -0
  974. package/mcp/node_modules/zod/v4/locales/sv.cjs +144 -0
  975. package/mcp/node_modules/zod/v4/locales/sv.d.cts +4 -0
  976. package/mcp/node_modules/zod/v4/locales/sv.d.ts +4 -0
  977. package/mcp/node_modules/zod/v4/locales/sv.js +118 -0
  978. package/mcp/node_modules/zod/v4/locales/ta.cjs +143 -0
  979. package/mcp/node_modules/zod/v4/locales/ta.d.cts +4 -0
  980. package/mcp/node_modules/zod/v4/locales/ta.d.ts +4 -0
  981. package/mcp/node_modules/zod/v4/locales/ta.js +117 -0
  982. package/mcp/node_modules/zod/v4/locales/th.cjs +143 -0
  983. package/mcp/node_modules/zod/v4/locales/th.d.cts +4 -0
  984. package/mcp/node_modules/zod/v4/locales/th.d.ts +4 -0
  985. package/mcp/node_modules/zod/v4/locales/th.js +117 -0
  986. package/mcp/node_modules/zod/v4/locales/tr.cjs +143 -0
  987. package/mcp/node_modules/zod/v4/locales/tr.d.cts +5 -0
  988. package/mcp/node_modules/zod/v4/locales/tr.d.ts +5 -0
  989. package/mcp/node_modules/zod/v4/locales/tr.js +115 -0
  990. package/mcp/node_modules/zod/v4/locales/ua.cjs +143 -0
  991. package/mcp/node_modules/zod/v4/locales/ua.d.cts +4 -0
  992. package/mcp/node_modules/zod/v4/locales/ua.d.ts +4 -0
  993. package/mcp/node_modules/zod/v4/locales/ua.js +117 -0
  994. package/mcp/node_modules/zod/v4/locales/ur.cjs +143 -0
  995. package/mcp/node_modules/zod/v4/locales/ur.d.cts +4 -0
  996. package/mcp/node_modules/zod/v4/locales/ur.d.ts +4 -0
  997. package/mcp/node_modules/zod/v4/locales/ur.js +117 -0
  998. package/mcp/node_modules/zod/v4/locales/vi.cjs +142 -0
  999. package/mcp/node_modules/zod/v4/locales/vi.d.cts +4 -0
  1000. package/mcp/node_modules/zod/v4/locales/vi.d.ts +4 -0
  1001. package/mcp/node_modules/zod/v4/locales/vi.js +116 -0
  1002. package/mcp/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
  1003. package/mcp/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
  1004. package/mcp/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  1005. package/mcp/node_modules/zod/v4/locales/zh-CN.js +116 -0
  1006. package/mcp/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
  1007. package/mcp/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
  1008. package/mcp/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  1009. package/mcp/node_modules/zod/v4/locales/zh-TW.js +117 -0
  1010. package/mcp/node_modules/zod/v4/mini/checks.cjs +34 -0
  1011. package/mcp/node_modules/zod/v4/mini/checks.d.cts +1 -0
  1012. package/mcp/node_modules/zod/v4/mini/checks.d.ts +1 -0
  1013. package/mcp/node_modules/zod/v4/mini/checks.js +1 -0
  1014. package/mcp/node_modules/zod/v4/mini/coerce.cjs +47 -0
  1015. package/mcp/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  1016. package/mcp/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  1017. package/mcp/node_modules/zod/v4/mini/coerce.js +17 -0
  1018. package/mcp/node_modules/zod/v4/mini/external.cjs +62 -0
  1019. package/mcp/node_modules/zod/v4/mini/external.d.cts +11 -0
  1020. package/mcp/node_modules/zod/v4/mini/external.d.ts +11 -0
  1021. package/mcp/node_modules/zod/v4/mini/external.js +13 -0
  1022. package/mcp/node_modules/zod/v4/mini/index.cjs +32 -0
  1023. package/mcp/node_modules/zod/v4/mini/index.d.cts +3 -0
  1024. package/mcp/node_modules/zod/v4/mini/index.d.ts +3 -0
  1025. package/mcp/node_modules/zod/v4/mini/index.js +3 -0
  1026. package/mcp/node_modules/zod/v4/mini/iso.cjs +60 -0
  1027. package/mcp/node_modules/zod/v4/mini/iso.d.cts +22 -0
  1028. package/mcp/node_modules/zod/v4/mini/iso.d.ts +22 -0
  1029. package/mcp/node_modules/zod/v4/mini/iso.js +30 -0
  1030. package/mcp/node_modules/zod/v4/mini/parse.cjs +8 -0
  1031. package/mcp/node_modules/zod/v4/mini/parse.d.cts +1 -0
  1032. package/mcp/node_modules/zod/v4/mini/parse.d.ts +1 -0
  1033. package/mcp/node_modules/zod/v4/mini/parse.js +1 -0
  1034. package/mcp/node_modules/zod/v4/mini/schemas.cjs +839 -0
  1035. package/mcp/node_modules/zod/v4/mini/schemas.d.cts +356 -0
  1036. package/mcp/node_modules/zod/v4/mini/schemas.d.ts +356 -0
  1037. package/mcp/node_modules/zod/v4/mini/schemas.js +732 -0
  1038. package/mcp/node_modules/zod/v4-mini/index.cjs +17 -0
  1039. package/mcp/node_modules/zod/v4-mini/index.d.cts +1 -0
  1040. package/mcp/node_modules/zod/v4-mini/index.d.ts +1 -0
  1041. package/mcp/node_modules/zod/v4-mini/index.js +1 -0
  1042. package/mcp/package-lock.json +210 -0
  1043. package/next-env.d.ts +1 -1
  1044. package/package.json +1 -1
@@ -0,0 +1,139 @@
1
+ # statuses
2
+
3
+ [![NPM Version][npm-version-image]][npm-url]
4
+ [![NPM Downloads][npm-downloads-image]][npm-url]
5
+ [![Node.js Version][node-version-image]][node-version-url]
6
+ [![Build Status][ci-image]][ci-url]
7
+ [![Test Coverage][coveralls-image]][coveralls-url]
8
+ [![OpenSSF Scorecard Badge][ossf-scorecard-badge]][ossf-scorecard-visualizer]
9
+
10
+ HTTP status utility for node.
11
+
12
+ This module provides a list of status codes and messages sourced from
13
+ a few different projects:
14
+
15
+ * The [IANA Status Code Registry](https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml)
16
+ * The [Node.js project](https://nodejs.org/)
17
+ * The [NGINX project](https://www.nginx.com/)
18
+ * The [Apache HTTP Server project](https://httpd.apache.org/)
19
+
20
+ ## Installation
21
+
22
+ This is a [Node.js](https://nodejs.org/en/) module available through the
23
+ [npm registry](https://www.npmjs.com/). Installation is done using the
24
+ [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):
25
+
26
+ ```sh
27
+ $ npm install statuses
28
+ ```
29
+
30
+ ## API
31
+
32
+ <!-- eslint-disable no-unused-vars -->
33
+
34
+ ```js
35
+ var status = require('statuses')
36
+ ```
37
+
38
+ ### status(code)
39
+
40
+ Returns the status message string for a known HTTP status code. The code
41
+ may be a number or a string. An error is thrown for an unknown status code.
42
+
43
+ <!-- eslint-disable no-undef -->
44
+
45
+ ```js
46
+ status(403) // => 'Forbidden'
47
+ status('403') // => 'Forbidden'
48
+ status(306) // throws
49
+ ```
50
+
51
+ ### status(msg)
52
+
53
+ Returns the numeric status code for a known HTTP status message. The message
54
+ is case-insensitive. An error is thrown for an unknown status message.
55
+
56
+ <!-- eslint-disable no-undef -->
57
+
58
+ ```js
59
+ status('forbidden') // => 403
60
+ status('Forbidden') // => 403
61
+ status('foo') // throws
62
+ ```
63
+
64
+ ### status.codes
65
+
66
+ Returns an array of all the status codes as `Integer`s.
67
+
68
+ ### status.code[msg]
69
+
70
+ Returns the numeric status code for a known status message (in lower-case),
71
+ otherwise `undefined`.
72
+
73
+ <!-- eslint-disable no-undef, no-unused-expressions -->
74
+
75
+ ```js
76
+ status['not found'] // => 404
77
+ ```
78
+
79
+ ### status.empty[code]
80
+
81
+ Returns `true` if a status code expects an empty body.
82
+
83
+ <!-- eslint-disable no-undef, no-unused-expressions -->
84
+
85
+ ```js
86
+ status.empty[200] // => undefined
87
+ status.empty[204] // => true
88
+ status.empty[304] // => true
89
+ ```
90
+
91
+ ### status.message[code]
92
+
93
+ Returns the string message for a known numeric status code, otherwise
94
+ `undefined`. This object is the same format as the
95
+ [Node.js http module `http.STATUS_CODES`](https://nodejs.org/dist/latest/docs/api/http.html#http_http_status_codes).
96
+
97
+ <!-- eslint-disable no-undef, no-unused-expressions -->
98
+
99
+ ```js
100
+ status.message[404] // => 'Not Found'
101
+ ```
102
+
103
+ ### status.redirect[code]
104
+
105
+ Returns `true` if a status code is a valid redirect status.
106
+
107
+ <!-- eslint-disable no-undef, no-unused-expressions -->
108
+
109
+ ```js
110
+ status.redirect[200] // => undefined
111
+ status.redirect[301] // => true
112
+ ```
113
+
114
+ ### status.retry[code]
115
+
116
+ Returns `true` if you should retry the rest.
117
+
118
+ <!-- eslint-disable no-undef, no-unused-expressions -->
119
+
120
+ ```js
121
+ status.retry[501] // => undefined
122
+ status.retry[503] // => true
123
+ ```
124
+
125
+ ## License
126
+
127
+ [MIT](LICENSE)
128
+
129
+ [ci-image]: https://badgen.net/github/checks/jshttp/statuses/master?label=ci
130
+ [ci-url]: https://github.com/jshttp/statuses/actions?query=workflow%3Aci
131
+ [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/statuses/master
132
+ [coveralls-url]: https://coveralls.io/r/jshttp/statuses?branch=master
133
+ [node-version-image]: https://badgen.net/npm/node/statuses
134
+ [node-version-url]: https://nodejs.org/en/download
135
+ [npm-downloads-image]: https://badgen.net/npm/dm/statuses
136
+ [npm-url]: https://npmjs.org/package/statuses
137
+ [npm-version-image]: https://badgen.net/npm/v/statuses
138
+ [ossf-scorecard-badge]: https://api.securityscorecards.dev/projects/github.com/jshttp/statuses/badge
139
+ [ossf-scorecard-visualizer]: https://kooltheba.github.io/openssf-scorecard-api-visualizer/#/projects/github.com/jshttp/statuses
@@ -0,0 +1,65 @@
1
+ {
2
+ "100": "Continue",
3
+ "101": "Switching Protocols",
4
+ "102": "Processing",
5
+ "103": "Early Hints",
6
+ "200": "OK",
7
+ "201": "Created",
8
+ "202": "Accepted",
9
+ "203": "Non-Authoritative Information",
10
+ "204": "No Content",
11
+ "205": "Reset Content",
12
+ "206": "Partial Content",
13
+ "207": "Multi-Status",
14
+ "208": "Already Reported",
15
+ "226": "IM Used",
16
+ "300": "Multiple Choices",
17
+ "301": "Moved Permanently",
18
+ "302": "Found",
19
+ "303": "See Other",
20
+ "304": "Not Modified",
21
+ "305": "Use Proxy",
22
+ "307": "Temporary Redirect",
23
+ "308": "Permanent Redirect",
24
+ "400": "Bad Request",
25
+ "401": "Unauthorized",
26
+ "402": "Payment Required",
27
+ "403": "Forbidden",
28
+ "404": "Not Found",
29
+ "405": "Method Not Allowed",
30
+ "406": "Not Acceptable",
31
+ "407": "Proxy Authentication Required",
32
+ "408": "Request Timeout",
33
+ "409": "Conflict",
34
+ "410": "Gone",
35
+ "411": "Length Required",
36
+ "412": "Precondition Failed",
37
+ "413": "Payload Too Large",
38
+ "414": "URI Too Long",
39
+ "415": "Unsupported Media Type",
40
+ "416": "Range Not Satisfiable",
41
+ "417": "Expectation Failed",
42
+ "418": "I'm a Teapot",
43
+ "421": "Misdirected Request",
44
+ "422": "Unprocessable Entity",
45
+ "423": "Locked",
46
+ "424": "Failed Dependency",
47
+ "425": "Too Early",
48
+ "426": "Upgrade Required",
49
+ "428": "Precondition Required",
50
+ "429": "Too Many Requests",
51
+ "431": "Request Header Fields Too Large",
52
+ "451": "Unavailable For Legal Reasons",
53
+ "500": "Internal Server Error",
54
+ "501": "Not Implemented",
55
+ "502": "Bad Gateway",
56
+ "503": "Service Unavailable",
57
+ "504": "Gateway Timeout",
58
+ "505": "HTTP Version Not Supported",
59
+ "506": "Variant Also Negotiates",
60
+ "507": "Insufficient Storage",
61
+ "508": "Loop Detected",
62
+ "509": "Bandwidth Limit Exceeded",
63
+ "510": "Not Extended",
64
+ "511": "Network Authentication Required"
65
+ }
@@ -0,0 +1,146 @@
1
+ /*!
2
+ * statuses
3
+ * Copyright(c) 2014 Jonathan Ong
4
+ * Copyright(c) 2016 Douglas Christopher Wilson
5
+ * MIT Licensed
6
+ */
7
+
8
+ 'use strict'
9
+
10
+ /**
11
+ * Module dependencies.
12
+ * @private
13
+ */
14
+
15
+ var codes = require('./codes.json')
16
+
17
+ /**
18
+ * Module exports.
19
+ * @public
20
+ */
21
+
22
+ module.exports = status
23
+
24
+ // status code to message map
25
+ status.message = codes
26
+
27
+ // status message (lower-case) to code map
28
+ status.code = createMessageToStatusCodeMap(codes)
29
+
30
+ // array of status codes
31
+ status.codes = createStatusCodeList(codes)
32
+
33
+ // status codes for redirects
34
+ status.redirect = {
35
+ 300: true,
36
+ 301: true,
37
+ 302: true,
38
+ 303: true,
39
+ 305: true,
40
+ 307: true,
41
+ 308: true
42
+ }
43
+
44
+ // status codes for empty bodies
45
+ status.empty = {
46
+ 204: true,
47
+ 205: true,
48
+ 304: true
49
+ }
50
+
51
+ // status codes for when you should retry the request
52
+ status.retry = {
53
+ 502: true,
54
+ 503: true,
55
+ 504: true
56
+ }
57
+
58
+ /**
59
+ * Create a map of message to status code.
60
+ * @private
61
+ */
62
+
63
+ function createMessageToStatusCodeMap (codes) {
64
+ var map = {}
65
+
66
+ Object.keys(codes).forEach(function forEachCode (code) {
67
+ var message = codes[code]
68
+ var status = Number(code)
69
+
70
+ // populate map
71
+ map[message.toLowerCase()] = status
72
+ })
73
+
74
+ return map
75
+ }
76
+
77
+ /**
78
+ * Create a list of all status codes.
79
+ * @private
80
+ */
81
+
82
+ function createStatusCodeList (codes) {
83
+ return Object.keys(codes).map(function mapCode (code) {
84
+ return Number(code)
85
+ })
86
+ }
87
+
88
+ /**
89
+ * Get the status code for given message.
90
+ * @private
91
+ */
92
+
93
+ function getStatusCode (message) {
94
+ var msg = message.toLowerCase()
95
+
96
+ if (!Object.prototype.hasOwnProperty.call(status.code, msg)) {
97
+ throw new Error('invalid status message: "' + message + '"')
98
+ }
99
+
100
+ return status.code[msg]
101
+ }
102
+
103
+ /**
104
+ * Get the status message for given code.
105
+ * @private
106
+ */
107
+
108
+ function getStatusMessage (code) {
109
+ if (!Object.prototype.hasOwnProperty.call(status.message, code)) {
110
+ throw new Error('invalid status code: ' + code)
111
+ }
112
+
113
+ return status.message[code]
114
+ }
115
+
116
+ /**
117
+ * Get the status code.
118
+ *
119
+ * Given a number, this will throw if it is not a known status
120
+ * code, otherwise the code will be returned. Given a string,
121
+ * the string will be parsed for a number and return the code
122
+ * if valid, otherwise will lookup the code assuming this is
123
+ * the status message.
124
+ *
125
+ * @param {string|number} code
126
+ * @returns {number}
127
+ * @public
128
+ */
129
+
130
+ function status (code) {
131
+ if (typeof code === 'number') {
132
+ return getStatusMessage(code)
133
+ }
134
+
135
+ if (typeof code !== 'string') {
136
+ throw new TypeError('code must be a number or string')
137
+ }
138
+
139
+ // '403'
140
+ var n = parseInt(code, 10)
141
+ if (!isNaN(n)) {
142
+ return getStatusMessage(n)
143
+ }
144
+
145
+ return getStatusCode(code)
146
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "statuses",
3
+ "description": "HTTP status utility",
4
+ "version": "2.0.2",
5
+ "contributors": [
6
+ "Douglas Christopher Wilson <doug@somethingdoug.com>",
7
+ "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
8
+ ],
9
+ "repository": "jshttp/statuses",
10
+ "license": "MIT",
11
+ "keywords": [
12
+ "http",
13
+ "status",
14
+ "code"
15
+ ],
16
+ "files": [
17
+ "HISTORY.md",
18
+ "index.js",
19
+ "codes.json",
20
+ "LICENSE"
21
+ ],
22
+ "devDependencies": {
23
+ "csv-parse": "4.16.3",
24
+ "eslint": "7.19.0",
25
+ "eslint-config-standard": "14.1.1",
26
+ "eslint-plugin-import": "2.31.0",
27
+ "eslint-plugin-markdown": "1.0.2",
28
+ "eslint-plugin-node": "11.1.0",
29
+ "eslint-plugin-promise": "4.3.1",
30
+ "eslint-plugin-standard": "4.1.0",
31
+ "mocha": "8.4.0",
32
+ "nyc": "15.1.0",
33
+ "raw-body": "2.5.2",
34
+ "stream-to-array": "2.3.0"
35
+ },
36
+ "engines": {
37
+ "node": ">= 0.8"
38
+ },
39
+ "scripts": {
40
+ "build": "node scripts/build.js",
41
+ "fetch": "node scripts/fetch-apache.js && node scripts/fetch-iana.js && node scripts/fetch-nginx.js && node scripts/fetch-node.js",
42
+ "lint": "eslint --plugin markdown --ext js,md .",
43
+ "test": "mocha --reporter spec --check-leaks --bail test/",
44
+ "test-ci": "nyc --reporter=lcov --reporter=text npm test",
45
+ "test-cov": "nyc --reporter=html --reporter=text npm test",
46
+ "update": "npm run fetch && npm run build",
47
+ "version": "node scripts/version-history.js && git add HISTORY.md"
48
+ }
49
+ }
@@ -0,0 +1,9 @@
1
+ 1.0.1 / 2021-11-14
2
+ ==================
3
+
4
+ * pref: enable strict mode
5
+
6
+ 1.0.0 / 2018-07-09
7
+ ==================
8
+
9
+ * Initial release
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2016 Douglas Christopher Wilson <doug@somethingdoug.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,61 @@
1
+ # toidentifier
2
+
3
+ [![NPM Version][npm-image]][npm-url]
4
+ [![NPM Downloads][downloads-image]][downloads-url]
5
+ [![Build Status][github-actions-ci-image]][github-actions-ci-url]
6
+ [![Test Coverage][codecov-image]][codecov-url]
7
+
8
+ > Convert a string of words to a JavaScript identifier
9
+
10
+ ## Install
11
+
12
+ This is a [Node.js](https://nodejs.org/en/) module available through the
13
+ [npm registry](https://www.npmjs.com/). Installation is done using the
14
+ [`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):
15
+
16
+ ```bash
17
+ $ npm install toidentifier
18
+ ```
19
+
20
+ ## Example
21
+
22
+ ```js
23
+ var toIdentifier = require('toidentifier')
24
+
25
+ console.log(toIdentifier('Bad Request'))
26
+ // => "BadRequest"
27
+ ```
28
+
29
+ ## API
30
+
31
+ This CommonJS module exports a single default function: `toIdentifier`.
32
+
33
+ ### toIdentifier(string)
34
+
35
+ Given a string as the argument, it will be transformed according to
36
+ the following rules and the new string will be returned:
37
+
38
+ 1. Split into words separated by space characters (`0x20`).
39
+ 2. Upper case the first character of each word.
40
+ 3. Join the words together with no separator.
41
+ 4. Remove all non-word (`[0-9a-z_]`) characters.
42
+
43
+ ## License
44
+
45
+ [MIT](LICENSE)
46
+
47
+ [codecov-image]: https://img.shields.io/codecov/c/github/component/toidentifier.svg
48
+ [codecov-url]: https://codecov.io/gh/component/toidentifier
49
+ [downloads-image]: https://img.shields.io/npm/dm/toidentifier.svg
50
+ [downloads-url]: https://npmjs.org/package/toidentifier
51
+ [github-actions-ci-image]: https://img.shields.io/github/workflow/status/component/toidentifier/ci/master?label=ci
52
+ [github-actions-ci-url]: https://github.com/component/toidentifier?query=workflow%3Aci
53
+ [npm-image]: https://img.shields.io/npm/v/toidentifier.svg
54
+ [npm-url]: https://npmjs.org/package/toidentifier
55
+
56
+
57
+ ##
58
+
59
+ [npm]: https://www.npmjs.com/
60
+
61
+ [yarn]: https://yarnpkg.com/
@@ -0,0 +1,32 @@
1
+ /*!
2
+ * toidentifier
3
+ * Copyright(c) 2016 Douglas Christopher Wilson
4
+ * MIT Licensed
5
+ */
6
+
7
+ 'use strict'
8
+
9
+ /**
10
+ * Module exports.
11
+ * @public
12
+ */
13
+
14
+ module.exports = toIdentifier
15
+
16
+ /**
17
+ * Trasform the given string into a JavaScript identifier
18
+ *
19
+ * @param {string} str
20
+ * @returns {string}
21
+ * @public
22
+ */
23
+
24
+ function toIdentifier (str) {
25
+ return str
26
+ .split(' ')
27
+ .map(function (token) {
28
+ return token.slice(0, 1).toUpperCase() + token.slice(1)
29
+ })
30
+ .join('')
31
+ .replace(/[^ _0-9a-z]/gi, '')
32
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "toidentifier",
3
+ "description": "Convert a string of words to a JavaScript identifier",
4
+ "version": "1.0.1",
5
+ "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
6
+ "contributors": [
7
+ "Douglas Christopher Wilson <doug@somethingdoug.com>",
8
+ "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)"
9
+ ],
10
+ "repository": "component/toidentifier",
11
+ "devDependencies": {
12
+ "eslint": "7.32.0",
13
+ "eslint-config-standard": "14.1.1",
14
+ "eslint-plugin-import": "2.25.3",
15
+ "eslint-plugin-markdown": "2.2.1",
16
+ "eslint-plugin-node": "11.1.0",
17
+ "eslint-plugin-promise": "4.3.1",
18
+ "eslint-plugin-standard": "4.1.0",
19
+ "mocha": "9.1.3",
20
+ "nyc": "15.1.0"
21
+ },
22
+ "engines": {
23
+ "node": ">=0.6"
24
+ },
25
+ "license": "MIT",
26
+ "files": [
27
+ "HISTORY.md",
28
+ "LICENSE",
29
+ "index.js"
30
+ ],
31
+ "scripts": {
32
+ "lint": "eslint .",
33
+ "test": "mocha --reporter spec --bail --check-leaks test/",
34
+ "test-ci": "nyc --reporter=lcov --reporter=text npm test",
35
+ "test-cov": "nyc --reporter=html --reporter=text npm test",
36
+ "version": "node scripts/version-history.js && git add HISTORY.md"
37
+ }
38
+ }
@@ -0,0 +1,55 @@
1
+ Apache License
2
+
3
+ Version 2.0, January 2004
4
+
5
+ http://www.apache.org/licenses/
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
16
+
17
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
18
+
19
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
20
+
21
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
22
+
23
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
24
+
25
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
26
+
27
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
28
+
29
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
30
+
31
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
32
+
33
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
34
+
35
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
36
+
37
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
38
+
39
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
40
+
41
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
42
+
43
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
44
+
45
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
46
+
47
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
48
+
49
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
50
+
51
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
52
+
53
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
54
+
55
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,50 @@
1
+
2
+ # TypeScript
3
+
4
+ [![CI](https://github.com/microsoft/TypeScript/actions/workflows/ci.yml/badge.svg)](https://github.com/microsoft/TypeScript/actions/workflows/ci.yml)
5
+ [![npm version](https://badge.fury.io/js/typescript.svg)](https://www.npmjs.com/package/typescript)
6
+ [![Downloads](https://img.shields.io/npm/dm/typescript.svg)](https://www.npmjs.com/package/typescript)
7
+ [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/microsoft/TypeScript/badge)](https://securityscorecards.dev/viewer/?uri=github.com/microsoft/TypeScript)
8
+
9
+
10
+ [TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescript).
11
+
12
+ Find others who are using TypeScript at [our community page](https://www.typescriptlang.org/community/).
13
+
14
+ ## Installing
15
+
16
+ For the latest stable version:
17
+
18
+ ```bash
19
+ npm install -D typescript
20
+ ```
21
+
22
+ For our nightly builds:
23
+
24
+ ```bash
25
+ npm install -D typescript@next
26
+ ```
27
+
28
+ ## Contribute
29
+
30
+ There are many ways to [contribute](https://github.com/microsoft/TypeScript/blob/main/CONTRIBUTING.md) to TypeScript.
31
+ * [Submit bugs](https://github.com/microsoft/TypeScript/issues) and help us verify fixes as they are checked in.
32
+ * Review the [source code changes](https://github.com/microsoft/TypeScript/pulls).
33
+ * Engage with other TypeScript users and developers on [StackOverflow](https://stackoverflow.com/questions/tagged/typescript).
34
+ * Help each other in the [TypeScript Community Discord](https://discord.gg/typescript).
35
+ * Join the [#typescript](https://twitter.com/search?q=%23TypeScript) discussion on Twitter.
36
+ * [Contribute bug fixes](https://github.com/microsoft/TypeScript/blob/main/CONTRIBUTING.md).
37
+
38
+ This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see
39
+ the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com)
40
+ with any additional questions or comments.
41
+
42
+ ## Documentation
43
+
44
+ * [TypeScript in 5 minutes](https://www.typescriptlang.org/docs/handbook/typescript-in-5-minutes.html)
45
+ * [Programming handbook](https://www.typescriptlang.org/docs/handbook/intro.html)
46
+ * [Homepage](https://www.typescriptlang.org/)
47
+
48
+ ## Roadmap
49
+
50
+ For details on our planned features and future direction, please refer to our [roadmap](https://github.com/microsoft/TypeScript/wiki/Roadmap).