playwright-codegen-pro-core 1.0.3 → 1.0.4

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 (3983) hide show
  1. package/bundles/mcp/node_modules/.package-lock.json +1126 -0
  2. package/bundles/mcp/node_modules/@hono/node-server/LICENSE +21 -0
  3. package/bundles/mcp/node_modules/@hono/node-server/README.md +358 -0
  4. package/bundles/mcp/node_modules/@hono/node-server/dist/conninfo.d.mts +10 -0
  5. package/bundles/mcp/node_modules/@hono/node-server/dist/conninfo.d.ts +10 -0
  6. package/bundles/mcp/node_modules/@hono/node-server/dist/conninfo.js +42 -0
  7. package/bundles/mcp/node_modules/@hono/node-server/dist/conninfo.mjs +17 -0
  8. package/bundles/mcp/node_modules/@hono/node-server/dist/globals.d.mts +2 -0
  9. package/bundles/mcp/node_modules/@hono/node-server/dist/globals.d.ts +2 -0
  10. package/bundles/mcp/node_modules/@hono/node-server/dist/globals.js +29 -0
  11. package/bundles/mcp/node_modules/@hono/node-server/dist/globals.mjs +5 -0
  12. package/bundles/mcp/node_modules/@hono/node-server/dist/index.d.mts +8 -0
  13. package/bundles/mcp/node_modules/@hono/node-server/dist/index.d.ts +8 -0
  14. package/bundles/mcp/node_modules/@hono/node-server/dist/index.js +632 -0
  15. package/bundles/mcp/node_modules/@hono/node-server/dist/index.mjs +592 -0
  16. package/bundles/mcp/node_modules/@hono/node-server/dist/listener.d.mts +13 -0
  17. package/bundles/mcp/node_modules/@hono/node-server/dist/listener.d.ts +13 -0
  18. package/bundles/mcp/node_modules/@hono/node-server/dist/listener.js +600 -0
  19. package/bundles/mcp/node_modules/@hono/node-server/dist/listener.mjs +565 -0
  20. package/bundles/mcp/node_modules/@hono/node-server/dist/request.d.mts +25 -0
  21. package/bundles/mcp/node_modules/@hono/node-server/dist/request.d.ts +25 -0
  22. package/bundles/mcp/node_modules/@hono/node-server/dist/request.js +227 -0
  23. package/bundles/mcp/node_modules/@hono/node-server/dist/request.mjs +195 -0
  24. package/bundles/mcp/node_modules/@hono/node-server/dist/response.d.mts +26 -0
  25. package/bundles/mcp/node_modules/@hono/node-server/dist/response.d.ts +26 -0
  26. package/bundles/mcp/node_modules/@hono/node-server/dist/response.js +101 -0
  27. package/bundles/mcp/node_modules/@hono/node-server/dist/response.mjs +74 -0
  28. package/bundles/mcp/node_modules/@hono/node-server/dist/serve-static.d.mts +17 -0
  29. package/bundles/mcp/node_modules/@hono/node-server/dist/serve-static.d.ts +17 -0
  30. package/bundles/mcp/node_modules/@hono/node-server/dist/serve-static.js +177 -0
  31. package/bundles/mcp/node_modules/@hono/node-server/dist/serve-static.mjs +152 -0
  32. package/bundles/mcp/node_modules/@hono/node-server/dist/server.d.mts +10 -0
  33. package/bundles/mcp/node_modules/@hono/node-server/dist/server.d.ts +10 -0
  34. package/bundles/mcp/node_modules/@hono/node-server/dist/server.js +626 -0
  35. package/bundles/mcp/node_modules/@hono/node-server/dist/server.mjs +590 -0
  36. package/bundles/mcp/node_modules/@hono/node-server/dist/types.d.mts +44 -0
  37. package/bundles/mcp/node_modules/@hono/node-server/dist/types.d.ts +44 -0
  38. package/bundles/mcp/node_modules/@hono/node-server/dist/types.js +18 -0
  39. package/bundles/mcp/node_modules/@hono/node-server/dist/types.mjs +0 -0
  40. package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response/constants.d.mts +3 -0
  41. package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response/constants.d.ts +3 -0
  42. package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response/constants.js +30 -0
  43. package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response/constants.mjs +5 -0
  44. package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response.d.mts +3 -0
  45. package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response.d.ts +3 -0
  46. package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response.js +37 -0
  47. package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response.mjs +10 -0
  48. package/bundles/mcp/node_modules/@hono/node-server/dist/utils.d.mts +9 -0
  49. package/bundles/mcp/node_modules/@hono/node-server/dist/utils.d.ts +9 -0
  50. package/bundles/mcp/node_modules/@hono/node-server/dist/utils.js +99 -0
  51. package/bundles/mcp/node_modules/@hono/node-server/dist/utils.mjs +71 -0
  52. package/bundles/mcp/node_modules/@hono/node-server/dist/vercel.d.mts +7 -0
  53. package/bundles/mcp/node_modules/@hono/node-server/dist/vercel.d.ts +7 -0
  54. package/bundles/mcp/node_modules/@hono/node-server/dist/vercel.js +607 -0
  55. package/bundles/mcp/node_modules/@hono/node-server/dist/vercel.mjs +570 -0
  56. package/bundles/mcp/node_modules/@hono/node-server/package.json +103 -0
  57. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/LICENSE +21 -0
  58. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/README.md +169 -0
  59. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts +190 -0
  60. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts.map +1 -0
  61. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js +299 -0
  62. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js.map +1 -0
  63. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts +368 -0
  64. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts.map +1 -0
  65. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js +848 -0
  66. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js.map +1 -0
  67. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.d.ts +588 -0
  68. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.d.ts.map +1 -0
  69. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js +629 -0
  70. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js.map +1 -0
  71. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.d.ts +169 -0
  72. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.d.ts.map +1 -0
  73. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.js +252 -0
  74. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.js.map +1 -0
  75. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.d.ts +81 -0
  76. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.d.ts.map +1 -0
  77. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js +211 -0
  78. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js.map +1 -0
  79. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.d.ts +77 -0
  80. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.d.ts.map +1 -0
  81. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.js +199 -0
  82. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.js.map +1 -0
  83. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.d.ts +171 -0
  84. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.d.ts.map +1 -0
  85. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.js +482 -0
  86. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.js.map +1 -0
  87. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.d.ts +17 -0
  88. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.d.ts.map +1 -0
  89. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.js +58 -0
  90. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.js.map +1 -0
  91. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.d.ts +2 -0
  92. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.d.ts.map +1 -0
  93. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js +692 -0
  94. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js.map +1 -0
  95. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.d.ts +2 -0
  96. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.d.ts.map +1 -0
  97. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.js +134 -0
  98. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.js.map +1 -0
  99. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.d.ts +2 -0
  100. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.d.ts.map +1 -0
  101. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.js +176 -0
  102. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.js.map +1 -0
  103. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.d.ts +20 -0
  104. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.d.ts.map +1 -0
  105. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.js +70 -0
  106. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.js.map +1 -0
  107. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.d.ts +3 -0
  108. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.d.ts.map +1 -0
  109. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js +413 -0
  110. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js.map +1 -0
  111. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.d.ts +26 -0
  112. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.d.ts.map +1 -0
  113. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.js +51 -0
  114. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.js.map +1 -0
  115. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.d.ts +2 -0
  116. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.d.ts.map +1 -0
  117. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js +818 -0
  118. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js.map +1 -0
  119. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.d.ts +10 -0
  120. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.d.ts.map +1 -0
  121. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.js +157 -0
  122. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.js.map +1 -0
  123. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.d.ts +2 -0
  124. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.d.ts.map +1 -0
  125. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.js +95 -0
  126. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.js.map +1 -0
  127. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.d.ts +2 -0
  128. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.d.ts.map +1 -0
  129. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.js +168 -0
  130. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.js.map +1 -0
  131. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.d.ts +78 -0
  132. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.d.ts.map +1 -0
  133. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.js +205 -0
  134. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.js.map +1 -0
  135. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.d.ts +2 -0
  136. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.d.ts.map +1 -0
  137. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js +437 -0
  138. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js.map +1 -0
  139. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.d.ts +2 -0
  140. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.d.ts.map +1 -0
  141. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.js +656 -0
  142. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.js.map +1 -0
  143. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.d.ts +10 -0
  144. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.d.ts.map +1 -0
  145. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js +85 -0
  146. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js.map +1 -0
  147. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.d.ts +2 -0
  148. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.d.ts.map +1 -0
  149. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.js +171 -0
  150. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.js.map +1 -0
  151. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.d.ts +7 -0
  152. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.d.ts.map +1 -0
  153. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.js +95 -0
  154. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.js.map +1 -0
  155. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.d.ts +2 -0
  156. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.d.ts.map +1 -0
  157. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.js +168 -0
  158. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.js.map +1 -0
  159. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.d.ts +2 -0
  160. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.d.ts.map +1 -0
  161. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.js +166 -0
  162. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.js.map +1 -0
  163. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.d.ts +2 -0
  164. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.d.ts.map +1 -0
  165. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js +661 -0
  166. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js.map +1 -0
  167. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.d.ts +12 -0
  168. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.d.ts.map +1 -0
  169. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.js +600 -0
  170. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.js.map +1 -0
  171. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.d.ts +2 -0
  172. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.d.ts.map +1 -0
  173. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.js +256 -0
  174. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.js.map +1 -0
  175. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.d.ts +2 -0
  176. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.d.ts.map +1 -0
  177. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js +107 -0
  178. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js.map +1 -0
  179. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.d.ts +2 -0
  180. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.d.ts.map +1 -0
  181. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js +124 -0
  182. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js.map +1 -0
  183. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.d.ts +2 -0
  184. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.d.ts.map +1 -0
  185. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.js +73 -0
  186. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.js.map +1 -0
  187. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.d.ts +31 -0
  188. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.d.ts.map +1 -0
  189. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.js +69 -0
  190. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.js.map +1 -0
  191. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.d.ts +13 -0
  192. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.d.ts.map +1 -0
  193. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.js +29 -0
  194. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.js.map +1 -0
  195. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.d.ts +121 -0
  196. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.d.ts.map +1 -0
  197. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.js +188 -0
  198. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.js.map +1 -0
  199. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.d.ts +47 -0
  200. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.d.ts.map +1 -0
  201. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.js +68 -0
  202. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.js.map +1 -0
  203. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.d.ts +16 -0
  204. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.d.ts.map +1 -0
  205. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.js +39 -0
  206. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.js.map +1 -0
  207. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.d.ts +232 -0
  208. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.d.ts.map +1 -0
  209. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.js +19 -0
  210. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.js.map +1 -0
  211. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.d.ts +77 -0
  212. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.d.ts.map +1 -0
  213. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.js +36 -0
  214. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.js.map +1 -0
  215. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts +83 -0
  216. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts.map +1 -0
  217. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js +93 -0
  218. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js.map +1 -0
  219. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.d.ts +94 -0
  220. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.d.ts.map +1 -0
  221. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.js +251 -0
  222. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.js.map +1 -0
  223. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.d.ts +10 -0
  224. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.d.ts.map +1 -0
  225. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.js +28 -0
  226. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.js.map +1 -0
  227. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.d.ts +31 -0
  228. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.d.ts.map +1 -0
  229. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js +51 -0
  230. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js.map +1 -0
  231. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/package.json +1 -0
  232. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.d.ts +19 -0
  233. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.d.ts.map +1 -0
  234. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.js +3 -0
  235. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.js.map +1 -0
  236. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.d.ts +148 -0
  237. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.d.ts.map +1 -0
  238. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.js +202 -0
  239. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.js.map +1 -0
  240. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.d.ts +13 -0
  241. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.d.ts.map +1 -0
  242. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.js +167 -0
  243. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.js.map +1 -0
  244. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.d.ts +4 -0
  245. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.d.ts.map +1 -0
  246. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.js +21 -0
  247. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.js.map +1 -0
  248. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.d.ts +29 -0
  249. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.d.ts.map +1 -0
  250. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.js +77 -0
  251. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.js.map +1 -0
  252. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.d.ts +13 -0
  253. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.d.ts.map +1 -0
  254. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.js +65 -0
  255. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.js.map +1 -0
  256. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.d.ts +13 -0
  257. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.d.ts.map +1 -0
  258. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.js +136 -0
  259. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.js.map +1 -0
  260. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.d.ts +9 -0
  261. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.d.ts.map +1 -0
  262. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.js +21 -0
  263. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.js.map +1 -0
  264. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.d.ts +35 -0
  265. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.d.ts.map +1 -0
  266. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.js +75 -0
  267. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.js.map +1 -0
  268. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.d.ts +19 -0
  269. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.d.ts.map +1 -0
  270. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.js +71 -0
  271. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.js.map +1 -0
  272. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.d.ts +68 -0
  273. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.d.ts.map +1 -0
  274. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.js +3 -0
  275. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.js.map +1 -0
  276. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.d.ts +49 -0
  277. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.d.ts.map +1 -0
  278. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.js +159 -0
  279. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.js.map +1 -0
  280. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.d.ts +101 -0
  281. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.d.ts.map +1 -0
  282. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js +128 -0
  283. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js.map +1 -0
  284. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.d.ts +32 -0
  285. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.d.ts.map +1 -0
  286. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.js +3 -0
  287. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.js.map +1 -0
  288. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.d.ts +38 -0
  289. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.d.ts.map +1 -0
  290. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.js +48 -0
  291. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.js.map +1 -0
  292. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.d.ts +45 -0
  293. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.d.ts.map +1 -0
  294. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.js +56 -0
  295. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.js.map +1 -0
  296. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.d.ts +196 -0
  297. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.d.ts.map +1 -0
  298. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.js +444 -0
  299. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.js.map +1 -0
  300. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.d.ts +364 -0
  301. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.d.ts.map +1 -0
  302. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js +918 -0
  303. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js.map +1 -0
  304. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.d.ts +32 -0
  305. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.d.ts.map +1 -0
  306. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.js +80 -0
  307. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.js.map +1 -0
  308. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts +82 -0
  309. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts.map +1 -0
  310. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js +165 -0
  311. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js.map +1 -0
  312. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.d.ts +28 -0
  313. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.d.ts.map +1 -0
  314. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.js +82 -0
  315. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.js.map +1 -0
  316. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.d.ts +122 -0
  317. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.d.ts.map +1 -0
  318. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js +165 -0
  319. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js.map +1 -0
  320. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts +268 -0
  321. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts.map +1 -0
  322. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js +736 -0
  323. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js.map +1 -0
  324. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.d.ts +84 -0
  325. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.d.ts.map +1 -0
  326. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.js +244 -0
  327. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.js.map +1 -0
  328. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.d.ts +12 -0
  329. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.d.ts.map +1 -0
  330. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.js +79 -0
  331. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.js.map +1 -0
  332. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.d.ts +23 -0
  333. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.d.ts.map +1 -0
  334. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.js +48 -0
  335. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.js.map +1 -0
  336. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.d.ts +240 -0
  337. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.d.ts.map +1 -0
  338. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.js +224 -0
  339. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.js.map +1 -0
  340. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.d.ts +16 -0
  341. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.d.ts.map +1 -0
  342. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.js +25 -0
  343. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.js.map +1 -0
  344. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts +443 -0
  345. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts.map +1 -0
  346. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js +1104 -0
  347. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js.map +1 -0
  348. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.d.ts +45 -0
  349. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.d.ts.map +1 -0
  350. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.js +23 -0
  351. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.js.map +1 -0
  352. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.d.ts +13 -0
  353. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.d.ts.map +1 -0
  354. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.js +37 -0
  355. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.js.map +1 -0
  356. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.d.ts +31 -0
  357. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.d.ts.map +1 -0
  358. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.js +97 -0
  359. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.js.map +1 -0
  360. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.d.ts +89 -0
  361. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.d.ts.map +1 -0
  362. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.js +43 -0
  363. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.js.map +1 -0
  364. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.d.ts +25 -0
  365. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.d.ts.map +1 -0
  366. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.js +243 -0
  367. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.js.map +1 -0
  368. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.d.ts +2299 -0
  369. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.d.ts.map +1 -0
  370. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.js +27 -0
  371. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.js.map +1 -0
  372. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts +8133 -0
  373. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts.map +1 -0
  374. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.js +2092 -0
  375. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.js.map +1 -0
  376. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.d.ts +53 -0
  377. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.d.ts.map +1 -0
  378. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.js +94 -0
  379. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.js.map +1 -0
  380. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.d.ts +51 -0
  381. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.d.ts.map +1 -0
  382. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.js +69 -0
  383. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.js.map +1 -0
  384. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.d.ts +29 -0
  385. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.d.ts.map +1 -0
  386. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.js +30 -0
  387. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.js.map +1 -0
  388. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.d.ts +65 -0
  389. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.d.ts.map +1 -0
  390. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.js +3 -0
  391. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.js.map +1 -0
  392. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts +190 -0
  393. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts.map +1 -0
  394. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js +269 -0
  395. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js.map +1 -0
  396. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts +368 -0
  397. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts.map +1 -0
  398. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js +824 -0
  399. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js.map +1 -0
  400. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts +588 -0
  401. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts.map +1 -0
  402. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js +624 -0
  403. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js.map +1 -0
  404. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.d.ts +169 -0
  405. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.d.ts.map +1 -0
  406. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.js +245 -0
  407. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.js.map +1 -0
  408. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.d.ts +81 -0
  409. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.d.ts.map +1 -0
  410. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.js +206 -0
  411. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.js.map +1 -0
  412. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts +77 -0
  413. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts.map +1 -0
  414. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js +191 -0
  415. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js.map +1 -0
  416. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.d.ts +171 -0
  417. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.d.ts.map +1 -0
  418. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.js +477 -0
  419. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.js.map +1 -0
  420. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.d.ts +17 -0
  421. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.d.ts.map +1 -0
  422. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.js +54 -0
  423. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.js.map +1 -0
  424. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.d.ts +2 -0
  425. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.d.ts.map +1 -0
  426. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js +690 -0
  427. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js.map +1 -0
  428. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.d.ts +2 -0
  429. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.d.ts.map +1 -0
  430. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.js +132 -0
  431. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.js.map +1 -0
  432. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.d.ts +2 -0
  433. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.d.ts.map +1 -0
  434. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.js +174 -0
  435. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.js.map +1 -0
  436. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.d.ts +20 -0
  437. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.d.ts.map +1 -0
  438. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.js +68 -0
  439. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.js.map +1 -0
  440. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.d.ts +3 -0
  441. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.d.ts.map +1 -0
  442. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js +411 -0
  443. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js.map +1 -0
  444. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.d.ts +26 -0
  445. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.d.ts.map +1 -0
  446. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.js +47 -0
  447. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.js.map +1 -0
  448. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.d.ts +2 -0
  449. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.d.ts.map +1 -0
  450. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js +816 -0
  451. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js.map +1 -0
  452. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.d.ts +10 -0
  453. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.d.ts.map +1 -0
  454. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.js +155 -0
  455. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.js.map +1 -0
  456. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.d.ts +2 -0
  457. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.d.ts.map +1 -0
  458. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.js +93 -0
  459. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.js.map +1 -0
  460. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.d.ts +2 -0
  461. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.d.ts.map +1 -0
  462. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.js +166 -0
  463. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.js.map +1 -0
  464. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.d.ts +78 -0
  465. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.d.ts.map +1 -0
  466. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.js +196 -0
  467. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.js.map +1 -0
  468. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.d.ts +2 -0
  469. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.d.ts.map +1 -0
  470. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js +435 -0
  471. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js.map +1 -0
  472. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.d.ts +2 -0
  473. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.d.ts.map +1 -0
  474. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.js +651 -0
  475. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.js.map +1 -0
  476. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.d.ts +10 -0
  477. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.d.ts.map +1 -0
  478. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js +60 -0
  479. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js.map +1 -0
  480. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.d.ts +2 -0
  481. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.d.ts.map +1 -0
  482. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.js +146 -0
  483. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.js.map +1 -0
  484. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.d.ts +7 -0
  485. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.d.ts.map +1 -0
  486. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.js +70 -0
  487. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.js.map +1 -0
  488. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.d.ts +2 -0
  489. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.d.ts.map +1 -0
  490. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.js +143 -0
  491. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.js.map +1 -0
  492. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.d.ts +2 -0
  493. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.d.ts.map +1 -0
  494. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.js +141 -0
  495. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.js.map +1 -0
  496. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.d.ts +2 -0
  497. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.d.ts.map +1 -0
  498. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js +636 -0
  499. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js.map +1 -0
  500. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.d.ts +12 -0
  501. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.d.ts.map +1 -0
  502. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.js +598 -0
  503. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.js.map +1 -0
  504. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.d.ts +2 -0
  505. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.d.ts.map +1 -0
  506. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.js +231 -0
  507. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.js.map +1 -0
  508. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.d.ts +2 -0
  509. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.d.ts.map +1 -0
  510. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js +102 -0
  511. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js.map +1 -0
  512. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.d.ts +2 -0
  513. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.d.ts.map +1 -0
  514. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js +122 -0
  515. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js.map +1 -0
  516. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.d.ts +2 -0
  517. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.d.ts.map +1 -0
  518. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.js +48 -0
  519. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.js.map +1 -0
  520. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.d.ts +31 -0
  521. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.d.ts.map +1 -0
  522. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.js +65 -0
  523. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.js.map +1 -0
  524. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.d.ts +13 -0
  525. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.d.ts.map +1 -0
  526. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.js +13 -0
  527. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.js.map +1 -0
  528. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.d.ts +121 -0
  529. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.d.ts.map +1 -0
  530. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.js +184 -0
  531. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.js.map +1 -0
  532. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.d.ts +47 -0
  533. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.d.ts.map +1 -0
  534. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js +64 -0
  535. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js.map +1 -0
  536. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.d.ts +16 -0
  537. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.d.ts.map +1 -0
  538. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.js +20 -0
  539. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.js.map +1 -0
  540. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.d.ts +232 -0
  541. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.d.ts.map +1 -0
  542. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js +16 -0
  543. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js.map +1 -0
  544. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.d.ts +77 -0
  545. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.d.ts.map +1 -0
  546. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js +32 -0
  547. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js.map +1 -0
  548. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts +83 -0
  549. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts.map +1 -0
  550. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js +89 -0
  551. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js.map +1 -0
  552. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.d.ts +94 -0
  553. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.d.ts.map +1 -0
  554. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.js +246 -0
  555. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.js.map +1 -0
  556. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.d.ts +10 -0
  557. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.d.ts.map +1 -0
  558. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.js +10 -0
  559. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.js.map +1 -0
  560. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.d.ts +31 -0
  561. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.d.ts.map +1 -0
  562. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.js +47 -0
  563. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.js.map +1 -0
  564. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/package.json +1 -0
  565. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.d.ts +19 -0
  566. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.d.ts.map +1 -0
  567. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.js +2 -0
  568. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.js.map +1 -0
  569. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.d.ts +148 -0
  570. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.d.ts.map +1 -0
  571. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.js +180 -0
  572. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.js.map +1 -0
  573. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.d.ts +13 -0
  574. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.d.ts.map +1 -0
  575. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.js +138 -0
  576. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.js.map +1 -0
  577. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.d.ts +4 -0
  578. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.d.ts.map +1 -0
  579. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.js +15 -0
  580. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.js.map +1 -0
  581. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.d.ts +29 -0
  582. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.d.ts.map +1 -0
  583. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.js +71 -0
  584. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.js.map +1 -0
  585. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.d.ts +13 -0
  586. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.d.ts.map +1 -0
  587. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.js +59 -0
  588. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.js.map +1 -0
  589. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.d.ts +13 -0
  590. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.d.ts.map +1 -0
  591. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.js +107 -0
  592. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.js.map +1 -0
  593. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.d.ts +9 -0
  594. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.d.ts.map +1 -0
  595. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.js +18 -0
  596. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.js.map +1 -0
  597. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.d.ts +35 -0
  598. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.d.ts.map +1 -0
  599. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.js +72 -0
  600. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.js.map +1 -0
  601. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.d.ts +19 -0
  602. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.d.ts.map +1 -0
  603. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.js +45 -0
  604. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.js.map +1 -0
  605. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.d.ts +68 -0
  606. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.d.ts.map +1 -0
  607. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.js +2 -0
  608. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.js.map +1 -0
  609. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.d.ts +49 -0
  610. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.d.ts.map +1 -0
  611. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.js +155 -0
  612. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.js.map +1 -0
  613. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.d.ts +101 -0
  614. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.d.ts.map +1 -0
  615. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.js +118 -0
  616. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.js.map +1 -0
  617. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts +32 -0
  618. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts.map +1 -0
  619. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.js +2 -0
  620. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.js.map +1 -0
  621. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.d.ts +38 -0
  622. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.d.ts.map +1 -0
  623. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js +41 -0
  624. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js.map +1 -0
  625. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.d.ts +45 -0
  626. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.d.ts.map +1 -0
  627. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.js +50 -0
  628. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.js.map +1 -0
  629. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts +196 -0
  630. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts.map +1 -0
  631. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js +440 -0
  632. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js.map +1 -0
  633. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts +364 -0
  634. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts.map +1 -0
  635. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js +913 -0
  636. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js.map +1 -0
  637. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.d.ts +32 -0
  638. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.d.ts.map +1 -0
  639. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.js +76 -0
  640. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.js.map +1 -0
  641. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts +82 -0
  642. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts.map +1 -0
  643. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js +158 -0
  644. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js.map +1 -0
  645. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts +28 -0
  646. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts.map +1 -0
  647. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js +75 -0
  648. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js.map +1 -0
  649. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.d.ts +122 -0
  650. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.d.ts.map +1 -0
  651. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.js +161 -0
  652. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.js.map +1 -0
  653. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts +268 -0
  654. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts.map +1 -0
  655. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js +732 -0
  656. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js.map +1 -0
  657. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.d.ts +84 -0
  658. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.d.ts.map +1 -0
  659. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js +209 -0
  660. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js.map +1 -0
  661. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.d.ts +12 -0
  662. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.d.ts.map +1 -0
  663. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js +51 -0
  664. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js.map +1 -0
  665. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.d.ts +23 -0
  666. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.d.ts.map +1 -0
  667. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.js +44 -0
  668. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.js.map +1 -0
  669. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.d.ts +240 -0
  670. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.d.ts.map +1 -0
  671. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js +198 -0
  672. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js.map +1 -0
  673. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.d.ts +16 -0
  674. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.d.ts.map +1 -0
  675. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.js +22 -0
  676. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.js.map +1 -0
  677. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts +443 -0
  678. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts.map +1 -0
  679. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js +1099 -0
  680. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js.map +1 -0
  681. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.d.ts +45 -0
  682. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.d.ts.map +1 -0
  683. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.js +19 -0
  684. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.js.map +1 -0
  685. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.d.ts +13 -0
  686. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.d.ts.map +1 -0
  687. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js +31 -0
  688. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js.map +1 -0
  689. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.d.ts +31 -0
  690. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.d.ts.map +1 -0
  691. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js +92 -0
  692. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js.map +1 -0
  693. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts +89 -0
  694. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts.map +1 -0
  695. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.js +39 -0
  696. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.js.map +1 -0
  697. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts +25 -0
  698. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts.map +1 -0
  699. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js +239 -0
  700. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js.map +1 -0
  701. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts +2299 -0
  702. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts.map +1 -0
  703. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js +24 -0
  704. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js.map +1 -0
  705. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts +8133 -0
  706. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts.map +1 -0
  707. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js +2052 -0
  708. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js.map +1 -0
  709. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts +53 -0
  710. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts.map +1 -0
  711. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js +87 -0
  712. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js.map +1 -0
  713. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts +51 -0
  714. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts.map +1 -0
  715. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js +65 -0
  716. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js.map +1 -0
  717. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts +29 -0
  718. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts.map +1 -0
  719. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js +29 -0
  720. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js.map +1 -0
  721. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts +65 -0
  722. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts.map +1 -0
  723. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js +2 -0
  724. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js.map +1 -0
  725. package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/package.json +149 -0
  726. package/bundles/mcp/node_modules/accepts/HISTORY.md +250 -0
  727. package/bundles/mcp/node_modules/accepts/LICENSE +23 -0
  728. package/bundles/mcp/node_modules/accepts/README.md +140 -0
  729. package/bundles/mcp/node_modules/accepts/index.js +238 -0
  730. package/bundles/mcp/node_modules/accepts/package.json +47 -0
  731. package/bundles/mcp/node_modules/ajv/.runkit_example.js +23 -0
  732. package/bundles/mcp/node_modules/ajv/LICENSE +22 -0
  733. package/bundles/mcp/node_modules/ajv/README.md +207 -0
  734. package/bundles/mcp/node_modules/ajv/dist/2019.d.ts +19 -0
  735. package/bundles/mcp/node_modules/ajv/dist/2019.js +61 -0
  736. package/bundles/mcp/node_modules/ajv/dist/2019.js.map +1 -0
  737. package/bundles/mcp/node_modules/ajv/dist/2020.d.ts +19 -0
  738. package/bundles/mcp/node_modules/ajv/dist/2020.js +55 -0
  739. package/bundles/mcp/node_modules/ajv/dist/2020.js.map +1 -0
  740. package/bundles/mcp/node_modules/ajv/dist/ajv.d.ts +18 -0
  741. package/bundles/mcp/node_modules/ajv/dist/ajv.js +50 -0
  742. package/bundles/mcp/node_modules/ajv/dist/ajv.js.map +1 -0
  743. package/bundles/mcp/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
  744. package/bundles/mcp/node_modules/ajv/dist/compile/codegen/code.js +156 -0
  745. package/bundles/mcp/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
  746. package/bundles/mcp/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
  747. package/bundles/mcp/node_modules/ajv/dist/compile/codegen/index.js +697 -0
  748. package/bundles/mcp/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
  749. package/bundles/mcp/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
  750. package/bundles/mcp/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
  751. package/bundles/mcp/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
  752. package/bundles/mcp/node_modules/ajv/dist/compile/errors.d.ts +13 -0
  753. package/bundles/mcp/node_modules/ajv/dist/compile/errors.js +123 -0
  754. package/bundles/mcp/node_modules/ajv/dist/compile/errors.js.map +1 -0
  755. package/bundles/mcp/node_modules/ajv/dist/compile/index.d.ts +80 -0
  756. package/bundles/mcp/node_modules/ajv/dist/compile/index.js +242 -0
  757. package/bundles/mcp/node_modules/ajv/dist/compile/index.js.map +1 -0
  758. package/bundles/mcp/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
  759. package/bundles/mcp/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
  760. package/bundles/mcp/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
  761. package/bundles/mcp/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
  762. package/bundles/mcp/node_modules/ajv/dist/compile/jtd/serialize.js +229 -0
  763. package/bundles/mcp/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
  764. package/bundles/mcp/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
  765. package/bundles/mcp/node_modules/ajv/dist/compile/jtd/types.js +14 -0
  766. package/bundles/mcp/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
  767. package/bundles/mcp/node_modules/ajv/dist/compile/names.d.ts +20 -0
  768. package/bundles/mcp/node_modules/ajv/dist/compile/names.js +28 -0
  769. package/bundles/mcp/node_modules/ajv/dist/compile/names.js.map +1 -0
  770. package/bundles/mcp/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
  771. package/bundles/mcp/node_modules/ajv/dist/compile/ref_error.js +12 -0
  772. package/bundles/mcp/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
  773. package/bundles/mcp/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
  774. package/bundles/mcp/node_modules/ajv/dist/compile/resolve.js +155 -0
  775. package/bundles/mcp/node_modules/ajv/dist/compile/resolve.js.map +1 -0
  776. package/bundles/mcp/node_modules/ajv/dist/compile/rules.d.ts +28 -0
  777. package/bundles/mcp/node_modules/ajv/dist/compile/rules.js +26 -0
  778. package/bundles/mcp/node_modules/ajv/dist/compile/rules.js.map +1 -0
  779. package/bundles/mcp/node_modules/ajv/dist/compile/util.d.ts +40 -0
  780. package/bundles/mcp/node_modules/ajv/dist/compile/util.js +178 -0
  781. package/bundles/mcp/node_modules/ajv/dist/compile/util.js.map +1 -0
  782. package/bundles/mcp/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
  783. package/bundles/mcp/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
  784. package/bundles/mcp/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
  785. package/bundles/mcp/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
  786. package/bundles/mcp/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
  787. package/bundles/mcp/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
  788. package/bundles/mcp/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
  789. package/bundles/mcp/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
  790. package/bundles/mcp/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
  791. package/bundles/mcp/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
  792. package/bundles/mcp/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
  793. package/bundles/mcp/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
  794. package/bundles/mcp/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
  795. package/bundles/mcp/node_modules/ajv/dist/compile/validate/index.js +520 -0
  796. package/bundles/mcp/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
  797. package/bundles/mcp/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
  798. package/bundles/mcp/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
  799. package/bundles/mcp/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
  800. package/bundles/mcp/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
  801. package/bundles/mcp/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
  802. package/bundles/mcp/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
  803. package/bundles/mcp/node_modules/ajv/dist/core.d.ts +173 -0
  804. package/bundles/mcp/node_modules/ajv/dist/core.js +618 -0
  805. package/bundles/mcp/node_modules/ajv/dist/core.js.map +1 -0
  806. package/bundles/mcp/node_modules/ajv/dist/jtd.d.ts +47 -0
  807. package/bundles/mcp/node_modules/ajv/dist/jtd.js +72 -0
  808. package/bundles/mcp/node_modules/ajv/dist/jtd.js.map +1 -0
  809. package/bundles/mcp/node_modules/ajv/dist/refs/data.json +13 -0
  810. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
  811. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
  812. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
  813. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
  814. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
  815. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
  816. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
  817. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  818. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
  819. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
  820. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
  821. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
  822. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
  823. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
  824. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
  825. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
  826. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  827. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  828. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  829. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
  830. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
  831. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
  832. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
  833. package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
  834. package/bundles/mcp/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
  835. package/bundles/mcp/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
  836. package/bundles/mcp/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
  837. package/bundles/mcp/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
  838. package/bundles/mcp/node_modules/ajv/dist/runtime/equal.js +7 -0
  839. package/bundles/mcp/node_modules/ajv/dist/runtime/equal.js.map +1 -0
  840. package/bundles/mcp/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
  841. package/bundles/mcp/node_modules/ajv/dist/runtime/parseJson.js +185 -0
  842. package/bundles/mcp/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
  843. package/bundles/mcp/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
  844. package/bundles/mcp/node_modules/ajv/dist/runtime/quote.js +30 -0
  845. package/bundles/mcp/node_modules/ajv/dist/runtime/quote.js.map +1 -0
  846. package/bundles/mcp/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
  847. package/bundles/mcp/node_modules/ajv/dist/runtime/re2.js +6 -0
  848. package/bundles/mcp/node_modules/ajv/dist/runtime/re2.js.map +1 -0
  849. package/bundles/mcp/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
  850. package/bundles/mcp/node_modules/ajv/dist/runtime/timestamp.js +42 -0
  851. package/bundles/mcp/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
  852. package/bundles/mcp/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
  853. package/bundles/mcp/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
  854. package/bundles/mcp/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
  855. package/bundles/mcp/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
  856. package/bundles/mcp/node_modules/ajv/dist/runtime/uri.js +6 -0
  857. package/bundles/mcp/node_modules/ajv/dist/runtime/uri.js.map +1 -0
  858. package/bundles/mcp/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
  859. package/bundles/mcp/node_modules/ajv/dist/runtime/validation_error.js +11 -0
  860. package/bundles/mcp/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
  861. package/bundles/mcp/node_modules/ajv/dist/standalone/index.d.ts +6 -0
  862. package/bundles/mcp/node_modules/ajv/dist/standalone/index.js +90 -0
  863. package/bundles/mcp/node_modules/ajv/dist/standalone/index.js.map +1 -0
  864. package/bundles/mcp/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
  865. package/bundles/mcp/node_modules/ajv/dist/standalone/instance.js +35 -0
  866. package/bundles/mcp/node_modules/ajv/dist/standalone/instance.js.map +1 -0
  867. package/bundles/mcp/node_modules/ajv/dist/types/index.d.ts +183 -0
  868. package/bundles/mcp/node_modules/ajv/dist/types/index.js +3 -0
  869. package/bundles/mcp/node_modules/ajv/dist/types/index.js.map +1 -0
  870. package/bundles/mcp/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
  871. package/bundles/mcp/node_modules/ajv/dist/types/json-schema.js +3 -0
  872. package/bundles/mcp/node_modules/ajv/dist/types/json-schema.js.map +1 -0
  873. package/bundles/mcp/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
  874. package/bundles/mcp/node_modules/ajv/dist/types/jtd-schema.js +3 -0
  875. package/bundles/mcp/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
  876. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
  877. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
  878. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
  879. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
  880. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
  881. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
  882. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
  883. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
  884. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
  885. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
  886. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
  887. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
  888. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
  889. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
  890. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
  891. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
  892. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
  893. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
  894. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
  895. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
  896. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
  897. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
  898. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
  899. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
  900. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
  901. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
  902. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
  903. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
  904. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
  905. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
  906. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
  907. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
  908. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
  909. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
  910. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
  911. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
  912. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
  913. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
  914. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
  915. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
  916. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
  917. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
  918. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
  919. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
  920. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
  921. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
  922. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
  923. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
  924. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
  925. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
  926. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
  927. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
  928. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
  929. package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
  930. package/bundles/mcp/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
  931. package/bundles/mcp/node_modules/ajv/dist/vocabularies/code.js +131 -0
  932. package/bundles/mcp/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
  933. package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
  934. package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
  935. package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
  936. package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
  937. package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
  938. package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
  939. package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
  940. package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
  941. package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
  942. package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
  943. package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
  944. package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
  945. package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
  946. package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
  947. package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
  948. package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
  949. package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
  950. package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
  951. package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
  952. package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
  953. package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
  954. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
  955. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
  956. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
  957. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
  958. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
  959. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
  960. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
  961. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
  962. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
  963. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
  964. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
  965. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
  966. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
  967. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
  968. package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
  969. package/bundles/mcp/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
  970. package/bundles/mcp/node_modules/ajv/dist/vocabularies/errors.js +3 -0
  971. package/bundles/mcp/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
  972. package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
  973. package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
  974. package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
  975. package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
  976. package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
  977. package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
  978. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
  979. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
  980. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
  981. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
  982. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
  983. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
  984. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
  985. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
  986. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
  987. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
  988. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
  989. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
  990. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
  991. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
  992. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
  993. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
  994. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
  995. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
  996. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
  997. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
  998. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
  999. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
  1000. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
  1001. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
  1002. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
  1003. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
  1004. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
  1005. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
  1006. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
  1007. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
  1008. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
  1009. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
  1010. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
  1011. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
  1012. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
  1013. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
  1014. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
  1015. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
  1016. package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
  1017. package/bundles/mcp/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
  1018. package/bundles/mcp/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
  1019. package/bundles/mcp/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
  1020. package/bundles/mcp/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
  1021. package/bundles/mcp/node_modules/ajv/dist/vocabularies/next.js +8 -0
  1022. package/bundles/mcp/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
  1023. package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
  1024. package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
  1025. package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
  1026. package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
  1027. package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
  1028. package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
  1029. package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
  1030. package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
  1031. package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
  1032. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
  1033. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
  1034. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
  1035. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
  1036. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
  1037. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
  1038. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
  1039. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
  1040. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
  1041. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
  1042. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
  1043. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
  1044. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
  1045. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
  1046. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
  1047. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
  1048. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
  1049. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
  1050. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
  1051. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
  1052. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
  1053. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
  1054. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
  1055. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
  1056. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
  1057. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
  1058. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
  1059. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
  1060. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
  1061. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
  1062. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
  1063. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
  1064. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
  1065. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
  1066. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
  1067. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
  1068. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
  1069. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
  1070. package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
  1071. package/bundles/mcp/node_modules/ajv/lib/2019.ts +81 -0
  1072. package/bundles/mcp/node_modules/ajv/lib/2020.ts +75 -0
  1073. package/bundles/mcp/node_modules/ajv/lib/ajv.ts +70 -0
  1074. package/bundles/mcp/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
  1075. package/bundles/mcp/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
  1076. package/bundles/mcp/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
  1077. package/bundles/mcp/node_modules/ajv/lib/compile/errors.ts +184 -0
  1078. package/bundles/mcp/node_modules/ajv/lib/compile/index.ts +324 -0
  1079. package/bundles/mcp/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
  1080. package/bundles/mcp/node_modules/ajv/lib/compile/jtd/serialize.ts +266 -0
  1081. package/bundles/mcp/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
  1082. package/bundles/mcp/node_modules/ajv/lib/compile/names.ts +27 -0
  1083. package/bundles/mcp/node_modules/ajv/lib/compile/ref_error.ts +13 -0
  1084. package/bundles/mcp/node_modules/ajv/lib/compile/resolve.ts +149 -0
  1085. package/bundles/mcp/node_modules/ajv/lib/compile/rules.ts +50 -0
  1086. package/bundles/mcp/node_modules/ajv/lib/compile/util.ts +213 -0
  1087. package/bundles/mcp/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
  1088. package/bundles/mcp/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
  1089. package/bundles/mcp/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
  1090. package/bundles/mcp/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
  1091. package/bundles/mcp/node_modules/ajv/lib/compile/validate/index.ts +582 -0
  1092. package/bundles/mcp/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
  1093. package/bundles/mcp/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
  1094. package/bundles/mcp/node_modules/ajv/lib/core.ts +891 -0
  1095. package/bundles/mcp/node_modules/ajv/lib/jtd.ts +132 -0
  1096. package/bundles/mcp/node_modules/ajv/lib/refs/data.json +13 -0
  1097. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
  1098. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
  1099. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
  1100. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
  1101. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
  1102. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  1103. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
  1104. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
  1105. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
  1106. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
  1107. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
  1108. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
  1109. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  1110. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  1111. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  1112. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
  1113. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
  1114. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
  1115. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
  1116. package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
  1117. package/bundles/mcp/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
  1118. package/bundles/mcp/node_modules/ajv/lib/runtime/equal.ts +7 -0
  1119. package/bundles/mcp/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
  1120. package/bundles/mcp/node_modules/ajv/lib/runtime/quote.ts +31 -0
  1121. package/bundles/mcp/node_modules/ajv/lib/runtime/re2.ts +6 -0
  1122. package/bundles/mcp/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
  1123. package/bundles/mcp/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
  1124. package/bundles/mcp/node_modules/ajv/lib/runtime/uri.ts +6 -0
  1125. package/bundles/mcp/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
  1126. package/bundles/mcp/node_modules/ajv/lib/standalone/index.ts +100 -0
  1127. package/bundles/mcp/node_modules/ajv/lib/standalone/instance.ts +36 -0
  1128. package/bundles/mcp/node_modules/ajv/lib/types/index.ts +244 -0
  1129. package/bundles/mcp/node_modules/ajv/lib/types/json-schema.ts +187 -0
  1130. package/bundles/mcp/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
  1131. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
  1132. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
  1133. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
  1134. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
  1135. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
  1136. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
  1137. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
  1138. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
  1139. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
  1140. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
  1141. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
  1142. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
  1143. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
  1144. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
  1145. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
  1146. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
  1147. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
  1148. package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
  1149. package/bundles/mcp/node_modules/ajv/lib/vocabularies/code.ts +168 -0
  1150. package/bundles/mcp/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
  1151. package/bundles/mcp/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
  1152. package/bundles/mcp/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
  1153. package/bundles/mcp/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
  1154. package/bundles/mcp/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
  1155. package/bundles/mcp/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
  1156. package/bundles/mcp/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
  1157. package/bundles/mcp/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
  1158. package/bundles/mcp/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
  1159. package/bundles/mcp/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
  1160. package/bundles/mcp/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
  1161. package/bundles/mcp/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
  1162. package/bundles/mcp/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
  1163. package/bundles/mcp/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
  1164. package/bundles/mcp/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
  1165. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
  1166. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
  1167. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
  1168. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
  1169. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
  1170. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
  1171. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
  1172. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
  1173. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
  1174. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
  1175. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
  1176. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
  1177. package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
  1178. package/bundles/mcp/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
  1179. package/bundles/mcp/node_modules/ajv/lib/vocabularies/next.ts +8 -0
  1180. package/bundles/mcp/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
  1181. package/bundles/mcp/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
  1182. package/bundles/mcp/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
  1183. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
  1184. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
  1185. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
  1186. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
  1187. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
  1188. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
  1189. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
  1190. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
  1191. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
  1192. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
  1193. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
  1194. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
  1195. package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
  1196. package/bundles/mcp/node_modules/ajv/package.json +126 -0
  1197. package/bundles/mcp/node_modules/ajv-formats/LICENSE +21 -0
  1198. package/bundles/mcp/node_modules/ajv-formats/README.md +125 -0
  1199. package/bundles/mcp/node_modules/ajv-formats/dist/formats.d.ts +9 -0
  1200. package/bundles/mcp/node_modules/ajv-formats/dist/formats.js +208 -0
  1201. package/bundles/mcp/node_modules/ajv-formats/dist/formats.js.map +1 -0
  1202. package/bundles/mcp/node_modules/ajv-formats/dist/index.d.ts +15 -0
  1203. package/bundles/mcp/node_modules/ajv-formats/dist/index.js +37 -0
  1204. package/bundles/mcp/node_modules/ajv-formats/dist/index.js.map +1 -0
  1205. package/bundles/mcp/node_modules/ajv-formats/dist/limit.d.ts +10 -0
  1206. package/bundles/mcp/node_modules/ajv-formats/dist/limit.js +69 -0
  1207. package/bundles/mcp/node_modules/ajv-formats/dist/limit.js.map +1 -0
  1208. package/bundles/mcp/node_modules/ajv-formats/package.json +74 -0
  1209. package/bundles/mcp/node_modules/body-parser/LICENSE +23 -0
  1210. package/bundles/mcp/node_modules/body-parser/README.md +494 -0
  1211. package/bundles/mcp/node_modules/body-parser/index.js +71 -0
  1212. package/bundles/mcp/node_modules/body-parser/lib/read.js +247 -0
  1213. package/bundles/mcp/node_modules/body-parser/lib/types/json.js +158 -0
  1214. package/bundles/mcp/node_modules/body-parser/lib/types/raw.js +42 -0
  1215. package/bundles/mcp/node_modules/body-parser/lib/types/text.js +36 -0
  1216. package/bundles/mcp/node_modules/body-parser/lib/types/urlencoded.js +142 -0
  1217. package/bundles/mcp/node_modules/body-parser/lib/utils.js +98 -0
  1218. package/bundles/mcp/node_modules/body-parser/package.json +52 -0
  1219. package/bundles/mcp/node_modules/bytes/History.md +97 -0
  1220. package/bundles/mcp/node_modules/bytes/LICENSE +23 -0
  1221. package/bundles/mcp/node_modules/bytes/Readme.md +152 -0
  1222. package/bundles/mcp/node_modules/bytes/index.js +170 -0
  1223. package/bundles/mcp/node_modules/bytes/package.json +42 -0
  1224. package/bundles/mcp/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  1225. package/bundles/mcp/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  1226. package/bundles/mcp/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  1227. package/bundles/mcp/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  1228. package/bundles/mcp/node_modules/call-bind-apply-helpers/README.md +62 -0
  1229. package/bundles/mcp/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  1230. package/bundles/mcp/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  1231. package/bundles/mcp/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  1232. package/bundles/mcp/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  1233. package/bundles/mcp/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  1234. package/bundles/mcp/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  1235. package/bundles/mcp/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  1236. package/bundles/mcp/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  1237. package/bundles/mcp/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  1238. package/bundles/mcp/node_modules/call-bind-apply-helpers/index.js +15 -0
  1239. package/bundles/mcp/node_modules/call-bind-apply-helpers/package.json +85 -0
  1240. package/bundles/mcp/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  1241. package/bundles/mcp/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  1242. package/bundles/mcp/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  1243. package/bundles/mcp/node_modules/call-bound/.github/FUNDING.yml +12 -0
  1244. package/bundles/mcp/node_modules/call-bound/.nycrc +9 -0
  1245. package/bundles/mcp/node_modules/call-bound/CHANGELOG.md +42 -0
  1246. package/bundles/mcp/node_modules/call-bound/LICENSE +21 -0
  1247. package/bundles/mcp/node_modules/call-bound/README.md +53 -0
  1248. package/bundles/mcp/node_modules/call-bound/index.d.ts +94 -0
  1249. package/bundles/mcp/node_modules/call-bound/index.js +19 -0
  1250. package/bundles/mcp/node_modules/call-bound/package.json +99 -0
  1251. package/bundles/mcp/node_modules/call-bound/test/index.js +61 -0
  1252. package/bundles/mcp/node_modules/content-disposition/HISTORY.md +72 -0
  1253. package/bundles/mcp/node_modules/content-disposition/LICENSE +22 -0
  1254. package/bundles/mcp/node_modules/content-disposition/README.md +142 -0
  1255. package/bundles/mcp/node_modules/content-disposition/index.js +458 -0
  1256. package/bundles/mcp/node_modules/content-disposition/package.json +43 -0
  1257. package/bundles/mcp/node_modules/content-type/HISTORY.md +29 -0
  1258. package/bundles/mcp/node_modules/content-type/LICENSE +22 -0
  1259. package/bundles/mcp/node_modules/content-type/README.md +94 -0
  1260. package/bundles/mcp/node_modules/content-type/index.js +225 -0
  1261. package/bundles/mcp/node_modules/content-type/package.json +42 -0
  1262. package/bundles/mcp/node_modules/cookie/LICENSE +24 -0
  1263. package/bundles/mcp/node_modules/cookie/README.md +317 -0
  1264. package/bundles/mcp/node_modules/cookie/SECURITY.md +25 -0
  1265. package/bundles/mcp/node_modules/cookie/index.js +335 -0
  1266. package/bundles/mcp/node_modules/cookie/package.json +44 -0
  1267. package/bundles/mcp/node_modules/cookie-signature/History.md +70 -0
  1268. package/bundles/mcp/node_modules/cookie-signature/LICENSE +22 -0
  1269. package/bundles/mcp/node_modules/cookie-signature/Readme.md +23 -0
  1270. package/bundles/mcp/node_modules/cookie-signature/index.js +47 -0
  1271. package/bundles/mcp/node_modules/cookie-signature/package.json +24 -0
  1272. package/bundles/mcp/node_modules/cors/CONTRIBUTING.md +33 -0
  1273. package/bundles/mcp/node_modules/cors/HISTORY.md +58 -0
  1274. package/bundles/mcp/node_modules/cors/LICENSE +22 -0
  1275. package/bundles/mcp/node_modules/cors/README.md +243 -0
  1276. package/bundles/mcp/node_modules/cors/lib/index.js +238 -0
  1277. package/bundles/mcp/node_modules/cors/package.json +41 -0
  1278. package/bundles/mcp/node_modules/cross-spawn/LICENSE +21 -0
  1279. package/bundles/mcp/node_modules/cross-spawn/README.md +89 -0
  1280. package/bundles/mcp/node_modules/cross-spawn/index.js +39 -0
  1281. package/bundles/mcp/node_modules/cross-spawn/lib/enoent.js +59 -0
  1282. package/bundles/mcp/node_modules/cross-spawn/lib/parse.js +91 -0
  1283. package/bundles/mcp/node_modules/cross-spawn/lib/util/escape.js +47 -0
  1284. package/bundles/mcp/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  1285. package/bundles/mcp/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  1286. package/bundles/mcp/node_modules/cross-spawn/package.json +73 -0
  1287. package/bundles/mcp/node_modules/debug/LICENSE +20 -0
  1288. package/bundles/mcp/node_modules/debug/README.md +481 -0
  1289. package/bundles/mcp/node_modules/debug/package.json +64 -0
  1290. package/bundles/mcp/node_modules/depd/History.md +103 -0
  1291. package/bundles/mcp/node_modules/depd/LICENSE +22 -0
  1292. package/bundles/mcp/node_modules/depd/Readme.md +280 -0
  1293. package/bundles/mcp/node_modules/depd/index.js +538 -0
  1294. package/bundles/mcp/node_modules/depd/lib/browser/index.js +77 -0
  1295. package/bundles/mcp/node_modules/depd/package.json +45 -0
  1296. package/bundles/mcp/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  1297. package/bundles/mcp/node_modules/dunder-proto/.nycrc +13 -0
  1298. package/bundles/mcp/node_modules/dunder-proto/CHANGELOG.md +24 -0
  1299. package/bundles/mcp/node_modules/dunder-proto/LICENSE +21 -0
  1300. package/bundles/mcp/node_modules/dunder-proto/README.md +54 -0
  1301. package/bundles/mcp/node_modules/dunder-proto/get.d.ts +5 -0
  1302. package/bundles/mcp/node_modules/dunder-proto/get.js +30 -0
  1303. package/bundles/mcp/node_modules/dunder-proto/package.json +76 -0
  1304. package/bundles/mcp/node_modules/dunder-proto/set.d.ts +5 -0
  1305. package/bundles/mcp/node_modules/dunder-proto/set.js +35 -0
  1306. package/bundles/mcp/node_modules/dunder-proto/test/get.js +34 -0
  1307. package/bundles/mcp/node_modules/dunder-proto/test/index.js +4 -0
  1308. package/bundles/mcp/node_modules/dunder-proto/test/set.js +50 -0
  1309. package/bundles/mcp/node_modules/ee-first/LICENSE +22 -0
  1310. package/bundles/mcp/node_modules/ee-first/README.md +80 -0
  1311. package/bundles/mcp/node_modules/ee-first/index.js +95 -0
  1312. package/bundles/mcp/node_modules/ee-first/package.json +29 -0
  1313. package/bundles/mcp/node_modules/encodeurl/LICENSE +22 -0
  1314. package/bundles/mcp/node_modules/encodeurl/README.md +109 -0
  1315. package/bundles/mcp/node_modules/encodeurl/index.js +60 -0
  1316. package/bundles/mcp/node_modules/encodeurl/package.json +40 -0
  1317. package/bundles/mcp/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  1318. package/bundles/mcp/node_modules/es-define-property/.nycrc +9 -0
  1319. package/bundles/mcp/node_modules/es-define-property/CHANGELOG.md +29 -0
  1320. package/bundles/mcp/node_modules/es-define-property/LICENSE +21 -0
  1321. package/bundles/mcp/node_modules/es-define-property/README.md +49 -0
  1322. package/bundles/mcp/node_modules/es-define-property/index.d.ts +3 -0
  1323. package/bundles/mcp/node_modules/es-define-property/index.js +14 -0
  1324. package/bundles/mcp/node_modules/es-define-property/package.json +81 -0
  1325. package/bundles/mcp/node_modules/es-define-property/test/index.js +56 -0
  1326. package/bundles/mcp/node_modules/es-errors/.github/FUNDING.yml +12 -0
  1327. package/bundles/mcp/node_modules/es-errors/CHANGELOG.md +40 -0
  1328. package/bundles/mcp/node_modules/es-errors/LICENSE +21 -0
  1329. package/bundles/mcp/node_modules/es-errors/README.md +55 -0
  1330. package/bundles/mcp/node_modules/es-errors/eval.d.ts +3 -0
  1331. package/bundles/mcp/node_modules/es-errors/eval.js +4 -0
  1332. package/bundles/mcp/node_modules/es-errors/index.d.ts +3 -0
  1333. package/bundles/mcp/node_modules/es-errors/index.js +4 -0
  1334. package/bundles/mcp/node_modules/es-errors/package.json +80 -0
  1335. package/bundles/mcp/node_modules/es-errors/range.d.ts +3 -0
  1336. package/bundles/mcp/node_modules/es-errors/range.js +4 -0
  1337. package/bundles/mcp/node_modules/es-errors/ref.d.ts +3 -0
  1338. package/bundles/mcp/node_modules/es-errors/ref.js +4 -0
  1339. package/bundles/mcp/node_modules/es-errors/syntax.d.ts +3 -0
  1340. package/bundles/mcp/node_modules/es-errors/syntax.js +4 -0
  1341. package/bundles/mcp/node_modules/es-errors/test/index.js +19 -0
  1342. package/bundles/mcp/node_modules/es-errors/type.d.ts +3 -0
  1343. package/bundles/mcp/node_modules/es-errors/type.js +4 -0
  1344. package/bundles/mcp/node_modules/es-errors/uri.d.ts +3 -0
  1345. package/bundles/mcp/node_modules/es-errors/uri.js +4 -0
  1346. package/bundles/mcp/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  1347. package/bundles/mcp/node_modules/es-object-atoms/CHANGELOG.md +37 -0
  1348. package/bundles/mcp/node_modules/es-object-atoms/LICENSE +21 -0
  1349. package/bundles/mcp/node_modules/es-object-atoms/README.md +63 -0
  1350. package/bundles/mcp/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  1351. package/bundles/mcp/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  1352. package/bundles/mcp/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  1353. package/bundles/mcp/node_modules/es-object-atoms/ToObject.js +10 -0
  1354. package/bundles/mcp/node_modules/es-object-atoms/index.d.ts +3 -0
  1355. package/bundles/mcp/node_modules/es-object-atoms/index.js +4 -0
  1356. package/bundles/mcp/node_modules/es-object-atoms/isObject.d.ts +3 -0
  1357. package/bundles/mcp/node_modules/es-object-atoms/isObject.js +6 -0
  1358. package/bundles/mcp/node_modules/es-object-atoms/package.json +80 -0
  1359. package/bundles/mcp/node_modules/es-object-atoms/test/index.js +38 -0
  1360. package/bundles/mcp/node_modules/escape-html/LICENSE +24 -0
  1361. package/bundles/mcp/node_modules/escape-html/Readme.md +43 -0
  1362. package/bundles/mcp/node_modules/escape-html/index.js +78 -0
  1363. package/bundles/mcp/node_modules/escape-html/package.json +24 -0
  1364. package/bundles/mcp/node_modules/etag/HISTORY.md +83 -0
  1365. package/bundles/mcp/node_modules/etag/LICENSE +22 -0
  1366. package/bundles/mcp/node_modules/etag/README.md +159 -0
  1367. package/bundles/mcp/node_modules/etag/index.js +131 -0
  1368. package/bundles/mcp/node_modules/etag/package.json +47 -0
  1369. package/bundles/mcp/node_modules/eventsource/LICENSE +22 -0
  1370. package/bundles/mcp/node_modules/eventsource/README.md +167 -0
  1371. package/bundles/mcp/node_modules/eventsource/dist/index.cjs +273 -0
  1372. package/bundles/mcp/node_modules/eventsource/dist/index.cjs.map +1 -0
  1373. package/bundles/mcp/node_modules/eventsource/dist/index.d.cts +332 -0
  1374. package/bundles/mcp/node_modules/eventsource/dist/index.d.ts +332 -0
  1375. package/bundles/mcp/node_modules/eventsource/dist/index.js +273 -0
  1376. package/bundles/mcp/node_modules/eventsource/dist/index.js.map +1 -0
  1377. package/bundles/mcp/node_modules/eventsource/package.json +130 -0
  1378. package/bundles/mcp/node_modules/eventsource-parser/LICENSE +21 -0
  1379. package/bundles/mcp/node_modules/eventsource-parser/README.md +126 -0
  1380. package/bundles/mcp/node_modules/eventsource-parser/dist/index.cjs +106 -0
  1381. package/bundles/mcp/node_modules/eventsource-parser/dist/index.cjs.map +1 -0
  1382. package/bundles/mcp/node_modules/eventsource-parser/dist/index.d.cts +144 -0
  1383. package/bundles/mcp/node_modules/eventsource-parser/dist/index.d.ts +144 -0
  1384. package/bundles/mcp/node_modules/eventsource-parser/dist/index.js +106 -0
  1385. package/bundles/mcp/node_modules/eventsource-parser/dist/index.js.map +1 -0
  1386. package/bundles/mcp/node_modules/eventsource-parser/dist/stream.cjs +28 -0
  1387. package/bundles/mcp/node_modules/eventsource-parser/dist/stream.cjs.map +1 -0
  1388. package/bundles/mcp/node_modules/eventsource-parser/dist/stream.d.cts +118 -0
  1389. package/bundles/mcp/node_modules/eventsource-parser/dist/stream.d.ts +118 -0
  1390. package/bundles/mcp/node_modules/eventsource-parser/dist/stream.js +29 -0
  1391. package/bundles/mcp/node_modules/eventsource-parser/dist/stream.js.map +1 -0
  1392. package/bundles/mcp/node_modules/eventsource-parser/package.json +115 -0
  1393. package/bundles/mcp/node_modules/eventsource-parser/stream.js +2 -0
  1394. package/bundles/mcp/node_modules/express/LICENSE +24 -0
  1395. package/bundles/mcp/node_modules/express/Readme.md +276 -0
  1396. package/bundles/mcp/node_modules/express/index.js +11 -0
  1397. package/bundles/mcp/node_modules/express/lib/application.js +631 -0
  1398. package/bundles/mcp/node_modules/express/lib/express.js +81 -0
  1399. package/bundles/mcp/node_modules/express/lib/request.js +514 -0
  1400. package/bundles/mcp/node_modules/express/lib/response.js +1053 -0
  1401. package/bundles/mcp/node_modules/express/lib/utils.js +271 -0
  1402. package/bundles/mcp/node_modules/express/lib/view.js +205 -0
  1403. package/bundles/mcp/node_modules/express/package.json +99 -0
  1404. package/bundles/mcp/node_modules/express-rate-limit/dist/index.cjs +959 -0
  1405. package/bundles/mcp/node_modules/express-rate-limit/dist/index.d.cts +642 -0
  1406. package/bundles/mcp/node_modules/express-rate-limit/dist/index.d.mts +642 -0
  1407. package/bundles/mcp/node_modules/express-rate-limit/dist/index.d.ts +642 -0
  1408. package/bundles/mcp/node_modules/express-rate-limit/dist/index.mjs +929 -0
  1409. package/bundles/mcp/node_modules/express-rate-limit/license.md +20 -0
  1410. package/bundles/mcp/node_modules/express-rate-limit/package.json +112 -0
  1411. package/bundles/mcp/node_modules/express-rate-limit/readme.md +151 -0
  1412. package/bundles/mcp/node_modules/fast-deep-equal/LICENSE +21 -0
  1413. package/bundles/mcp/node_modules/fast-deep-equal/README.md +96 -0
  1414. package/bundles/mcp/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
  1415. package/bundles/mcp/node_modules/fast-deep-equal/es6/index.js +72 -0
  1416. package/bundles/mcp/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
  1417. package/bundles/mcp/node_modules/fast-deep-equal/es6/react.js +79 -0
  1418. package/bundles/mcp/node_modules/fast-deep-equal/index.d.ts +4 -0
  1419. package/bundles/mcp/node_modules/fast-deep-equal/index.js +46 -0
  1420. package/bundles/mcp/node_modules/fast-deep-equal/package.json +61 -0
  1421. package/bundles/mcp/node_modules/fast-deep-equal/react.d.ts +2 -0
  1422. package/bundles/mcp/node_modules/fast-deep-equal/react.js +53 -0
  1423. package/bundles/mcp/node_modules/fast-uri/.gitattributes +2 -0
  1424. package/bundles/mcp/node_modules/fast-uri/.github/.stale.yml +21 -0
  1425. package/bundles/mcp/node_modules/fast-uri/.github/dependabot.yml +13 -0
  1426. package/bundles/mcp/node_modules/fast-uri/.github/tests_checker.yml +8 -0
  1427. package/bundles/mcp/node_modules/fast-uri/.github/workflows/ci.yml +101 -0
  1428. package/bundles/mcp/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
  1429. package/bundles/mcp/node_modules/fast-uri/LICENSE +32 -0
  1430. package/bundles/mcp/node_modules/fast-uri/README.md +143 -0
  1431. package/bundles/mcp/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
  1432. package/bundles/mcp/node_modules/fast-uri/benchmark/equal.mjs +51 -0
  1433. package/bundles/mcp/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
  1434. package/bundles/mcp/node_modules/fast-uri/benchmark/package.json +17 -0
  1435. package/bundles/mcp/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
  1436. package/bundles/mcp/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
  1437. package/bundles/mcp/node_modules/fast-uri/eslint.config.js +6 -0
  1438. package/bundles/mcp/node_modules/fast-uri/index.js +340 -0
  1439. package/bundles/mcp/node_modules/fast-uri/lib/schemes.js +267 -0
  1440. package/bundles/mcp/node_modules/fast-uri/lib/utils.js +336 -0
  1441. package/bundles/mcp/node_modules/fast-uri/package.json +69 -0
  1442. package/bundles/mcp/node_modules/fast-uri/test/ajv.test.js +43 -0
  1443. package/bundles/mcp/node_modules/fast-uri/test/equal.test.js +108 -0
  1444. package/bundles/mcp/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
  1445. package/bundles/mcp/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
  1446. package/bundles/mcp/node_modules/fast-uri/test/parse.test.js +318 -0
  1447. package/bundles/mcp/node_modules/fast-uri/test/resolve.test.js +78 -0
  1448. package/bundles/mcp/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
  1449. package/bundles/mcp/node_modules/fast-uri/test/serialize.test.js +151 -0
  1450. package/bundles/mcp/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
  1451. package/bundles/mcp/node_modules/fast-uri/test/uri-js.test.js +912 -0
  1452. package/bundles/mcp/node_modules/fast-uri/test/util.test.js +38 -0
  1453. package/bundles/mcp/node_modules/fast-uri/types/index.d.ts +60 -0
  1454. package/bundles/mcp/node_modules/fast-uri/types/index.test-d.ts +17 -0
  1455. package/bundles/mcp/node_modules/finalhandler/HISTORY.md +239 -0
  1456. package/bundles/mcp/node_modules/finalhandler/LICENSE +22 -0
  1457. package/bundles/mcp/node_modules/finalhandler/README.md +150 -0
  1458. package/bundles/mcp/node_modules/finalhandler/index.js +293 -0
  1459. package/bundles/mcp/node_modules/finalhandler/package.json +47 -0
  1460. package/bundles/mcp/node_modules/forwarded/HISTORY.md +21 -0
  1461. package/bundles/mcp/node_modules/forwarded/LICENSE +22 -0
  1462. package/bundles/mcp/node_modules/forwarded/README.md +57 -0
  1463. package/bundles/mcp/node_modules/forwarded/index.js +90 -0
  1464. package/bundles/mcp/node_modules/forwarded/package.json +45 -0
  1465. package/bundles/mcp/node_modules/fresh/HISTORY.md +80 -0
  1466. package/bundles/mcp/node_modules/fresh/LICENSE +23 -0
  1467. package/bundles/mcp/node_modules/fresh/README.md +117 -0
  1468. package/bundles/mcp/node_modules/fresh/index.js +136 -0
  1469. package/bundles/mcp/node_modules/fresh/package.json +46 -0
  1470. package/bundles/mcp/node_modules/function-bind/.github/FUNDING.yml +12 -0
  1471. package/bundles/mcp/node_modules/function-bind/.github/SECURITY.md +3 -0
  1472. package/bundles/mcp/node_modules/function-bind/.nycrc +13 -0
  1473. package/bundles/mcp/node_modules/function-bind/CHANGELOG.md +136 -0
  1474. package/bundles/mcp/node_modules/function-bind/LICENSE +20 -0
  1475. package/bundles/mcp/node_modules/function-bind/README.md +46 -0
  1476. package/bundles/mcp/node_modules/function-bind/implementation.js +84 -0
  1477. package/bundles/mcp/node_modules/function-bind/index.js +5 -0
  1478. package/bundles/mcp/node_modules/function-bind/package.json +87 -0
  1479. package/bundles/mcp/node_modules/function-bind/test/index.js +252 -0
  1480. package/bundles/mcp/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  1481. package/bundles/mcp/node_modules/get-intrinsic/.nycrc +9 -0
  1482. package/bundles/mcp/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  1483. package/bundles/mcp/node_modules/get-intrinsic/LICENSE +21 -0
  1484. package/bundles/mcp/node_modules/get-intrinsic/README.md +71 -0
  1485. package/bundles/mcp/node_modules/get-intrinsic/index.js +378 -0
  1486. package/bundles/mcp/node_modules/get-intrinsic/package.json +97 -0
  1487. package/bundles/mcp/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  1488. package/bundles/mcp/node_modules/get-proto/.github/FUNDING.yml +12 -0
  1489. package/bundles/mcp/node_modules/get-proto/.nycrc +9 -0
  1490. package/bundles/mcp/node_modules/get-proto/CHANGELOG.md +21 -0
  1491. package/bundles/mcp/node_modules/get-proto/LICENSE +21 -0
  1492. package/bundles/mcp/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  1493. package/bundles/mcp/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  1494. package/bundles/mcp/node_modules/get-proto/README.md +50 -0
  1495. package/bundles/mcp/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  1496. package/bundles/mcp/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  1497. package/bundles/mcp/node_modules/get-proto/index.d.ts +5 -0
  1498. package/bundles/mcp/node_modules/get-proto/index.js +27 -0
  1499. package/bundles/mcp/node_modules/get-proto/package.json +81 -0
  1500. package/bundles/mcp/node_modules/get-proto/test/index.js +68 -0
  1501. package/bundles/mcp/node_modules/gopd/.github/FUNDING.yml +12 -0
  1502. package/bundles/mcp/node_modules/gopd/CHANGELOG.md +45 -0
  1503. package/bundles/mcp/node_modules/gopd/LICENSE +21 -0
  1504. package/bundles/mcp/node_modules/gopd/README.md +40 -0
  1505. package/bundles/mcp/node_modules/gopd/gOPD.d.ts +1 -0
  1506. package/bundles/mcp/node_modules/gopd/gOPD.js +4 -0
  1507. package/bundles/mcp/node_modules/gopd/index.d.ts +5 -0
  1508. package/bundles/mcp/node_modules/gopd/index.js +15 -0
  1509. package/bundles/mcp/node_modules/gopd/package.json +77 -0
  1510. package/bundles/mcp/node_modules/gopd/test/index.js +36 -0
  1511. package/bundles/mcp/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  1512. package/bundles/mcp/node_modules/has-symbols/.nycrc +9 -0
  1513. package/bundles/mcp/node_modules/has-symbols/CHANGELOG.md +91 -0
  1514. package/bundles/mcp/node_modules/has-symbols/LICENSE +21 -0
  1515. package/bundles/mcp/node_modules/has-symbols/README.md +46 -0
  1516. package/bundles/mcp/node_modules/has-symbols/index.d.ts +3 -0
  1517. package/bundles/mcp/node_modules/has-symbols/index.js +14 -0
  1518. package/bundles/mcp/node_modules/has-symbols/package.json +111 -0
  1519. package/bundles/mcp/node_modules/has-symbols/shams.d.ts +3 -0
  1520. package/bundles/mcp/node_modules/has-symbols/shams.js +45 -0
  1521. package/bundles/mcp/node_modules/has-symbols/test/index.js +22 -0
  1522. package/bundles/mcp/node_modules/has-symbols/test/shams/core-js.js +29 -0
  1523. package/bundles/mcp/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  1524. package/bundles/mcp/node_modules/has-symbols/test/tests.js +58 -0
  1525. package/bundles/mcp/node_modules/hasown/.github/FUNDING.yml +12 -0
  1526. package/bundles/mcp/node_modules/hasown/.nycrc +13 -0
  1527. package/bundles/mcp/node_modules/hasown/CHANGELOG.md +40 -0
  1528. package/bundles/mcp/node_modules/hasown/LICENSE +21 -0
  1529. package/bundles/mcp/node_modules/hasown/README.md +40 -0
  1530. package/bundles/mcp/node_modules/hasown/index.d.ts +3 -0
  1531. package/bundles/mcp/node_modules/hasown/index.js +8 -0
  1532. package/bundles/mcp/node_modules/hasown/package.json +92 -0
  1533. package/bundles/mcp/node_modules/hono/LICENSE +21 -0
  1534. package/bundles/mcp/node_modules/hono/README.md +85 -0
  1535. package/bundles/mcp/node_modules/hono/dist/adapter/aws-lambda/conninfo.js +24 -0
  1536. package/bundles/mcp/node_modules/hono/dist/adapter/aws-lambda/handler.js +366 -0
  1537. package/bundles/mcp/node_modules/hono/dist/adapter/aws-lambda/index.js +9 -0
  1538. package/bundles/mcp/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
  1539. package/bundles/mcp/node_modules/hono/dist/adapter/bun/conninfo.js +27 -0
  1540. package/bundles/mcp/node_modules/hono/dist/adapter/bun/index.js +16 -0
  1541. package/bundles/mcp/node_modules/hono/dist/adapter/bun/serve-static.js +30 -0
  1542. package/bundles/mcp/node_modules/hono/dist/adapter/bun/server.js +5 -0
  1543. package/bundles/mcp/node_modules/hono/dist/adapter/bun/ssg.js +17 -0
  1544. package/bundles/mcp/node_modules/hono/dist/adapter/bun/websocket.js +71 -0
  1545. package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-pages/conninfo.js +9 -0
  1546. package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +67 -0
  1547. package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-pages/index.js +9 -0
  1548. package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +9 -0
  1549. package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/index.js +9 -0
  1550. package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +8 -0
  1551. package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +22 -0
  1552. package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +35 -0
  1553. package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +41 -0
  1554. package/bundles/mcp/node_modules/hono/dist/adapter/deno/conninfo.js +14 -0
  1555. package/bundles/mcp/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
  1556. package/bundles/mcp/node_modules/hono/dist/adapter/deno/index.js +12 -0
  1557. package/bundles/mcp/node_modules/hono/dist/adapter/deno/serve-static.js +40 -0
  1558. package/bundles/mcp/node_modules/hono/dist/adapter/deno/ssg.js +18 -0
  1559. package/bundles/mcp/node_modules/hono/dist/adapter/deno/websocket.js +28 -0
  1560. package/bundles/mcp/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +9 -0
  1561. package/bundles/mcp/node_modules/hono/dist/adapter/lambda-edge/handler.js +80 -0
  1562. package/bundles/mcp/node_modules/hono/dist/adapter/lambda-edge/index.js +7 -0
  1563. package/bundles/mcp/node_modules/hono/dist/adapter/netlify/conninfo.js +9 -0
  1564. package/bundles/mcp/node_modules/hono/dist/adapter/netlify/handler.js +9 -0
  1565. package/bundles/mcp/node_modules/hono/dist/adapter/netlify/index.js +2 -0
  1566. package/bundles/mcp/node_modules/hono/dist/adapter/netlify/mod.js +7 -0
  1567. package/bundles/mcp/node_modules/hono/dist/adapter/service-worker/handler.js +20 -0
  1568. package/bundles/mcp/node_modules/hono/dist/adapter/service-worker/index.js +11 -0
  1569. package/bundles/mcp/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
  1570. package/bundles/mcp/node_modules/hono/dist/adapter/vercel/conninfo.js +10 -0
  1571. package/bundles/mcp/node_modules/hono/dist/adapter/vercel/handler.js +7 -0
  1572. package/bundles/mcp/node_modules/hono/dist/adapter/vercel/index.js +7 -0
  1573. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/aws-lambda/conninfo.js +46 -0
  1574. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +397 -0
  1575. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +34 -0
  1576. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +15 -0
  1577. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +49 -0
  1578. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/index.js +45 -0
  1579. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +52 -0
  1580. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/server.js +27 -0
  1581. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/ssg.js +40 -0
  1582. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/websocket.js +96 -0
  1583. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-pages/conninfo.js +31 -0
  1584. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +91 -0
  1585. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +34 -0
  1586. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +31 -0
  1587. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +33 -0
  1588. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +30 -0
  1589. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +44 -0
  1590. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +57 -0
  1591. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +63 -0
  1592. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +36 -0
  1593. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +0 -0
  1594. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/index.js +38 -0
  1595. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +62 -0
  1596. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/ssg.js +41 -0
  1597. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/websocket.js +50 -0
  1598. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +31 -0
  1599. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +114 -0
  1600. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +30 -0
  1601. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/netlify/conninfo.js +31 -0
  1602. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/netlify/handler.js +31 -0
  1603. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/netlify/index.js +21 -0
  1604. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/netlify/mod.js +30 -0
  1605. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +42 -0
  1606. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/service-worker/index.js +34 -0
  1607. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/service-worker/types.js +15 -0
  1608. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +32 -0
  1609. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/vercel/handler.js +29 -0
  1610. package/bundles/mcp/node_modules/hono/dist/cjs/adapter/vercel/index.js +30 -0
  1611. package/bundles/mcp/node_modules/hono/dist/cjs/client/client.js +195 -0
  1612. package/bundles/mcp/node_modules/hono/dist/cjs/client/fetch-result-please.js +85 -0
  1613. package/bundles/mcp/node_modules/hono/dist/cjs/client/index.js +32 -0
  1614. package/bundles/mcp/node_modules/hono/dist/cjs/client/types.js +15 -0
  1615. package/bundles/mcp/node_modules/hono/dist/cjs/client/utils.js +105 -0
  1616. package/bundles/mcp/node_modules/hono/dist/cjs/compose.js +68 -0
  1617. package/bundles/mcp/node_modules/hono/dist/cjs/context.js +435 -0
  1618. package/bundles/mcp/node_modules/hono/dist/cjs/helper/accepts/accepts.js +43 -0
  1619. package/bundles/mcp/node_modules/hono/dist/cjs/helper/accepts/index.js +27 -0
  1620. package/bundles/mcp/node_modules/hono/dist/cjs/helper/adapter/index.js +81 -0
  1621. package/bundles/mcp/node_modules/hono/dist/cjs/helper/conninfo/index.js +15 -0
  1622. package/bundles/mcp/node_modules/hono/dist/cjs/helper/conninfo/types.js +15 -0
  1623. package/bundles/mcp/node_modules/hono/dist/cjs/helper/cookie/index.js +130 -0
  1624. package/bundles/mcp/node_modules/hono/dist/cjs/helper/css/common.js +222 -0
  1625. package/bundles/mcp/node_modules/hono/dist/cjs/helper/css/index.js +142 -0
  1626. package/bundles/mcp/node_modules/hono/dist/cjs/helper/dev/index.js +79 -0
  1627. package/bundles/mcp/node_modules/hono/dist/cjs/helper/factory/index.js +54 -0
  1628. package/bundles/mcp/node_modules/hono/dist/cjs/helper/html/index.js +64 -0
  1629. package/bundles/mcp/node_modules/hono/dist/cjs/helper/proxy/index.js +111 -0
  1630. package/bundles/mcp/node_modules/hono/dist/cjs/helper/route/index.js +71 -0
  1631. package/bundles/mcp/node_modules/hono/dist/cjs/helper/ssg/index.js +43 -0
  1632. package/bundles/mcp/node_modules/hono/dist/cjs/helper/ssg/middleware.js +73 -0
  1633. package/bundles/mcp/node_modules/hono/dist/cjs/helper/ssg/plugins.js +70 -0
  1634. package/bundles/mcp/node_modules/hono/dist/cjs/helper/ssg/ssg.js +316 -0
  1635. package/bundles/mcp/node_modules/hono/dist/cjs/helper/ssg/utils.js +84 -0
  1636. package/bundles/mcp/node_modules/hono/dist/cjs/helper/streaming/index.js +35 -0
  1637. package/bundles/mcp/node_modules/hono/dist/cjs/helper/streaming/sse.js +90 -0
  1638. package/bundles/mcp/node_modules/hono/dist/cjs/helper/streaming/stream.js +56 -0
  1639. package/bundles/mcp/node_modules/hono/dist/cjs/helper/streaming/text.js +34 -0
  1640. package/bundles/mcp/node_modules/hono/dist/cjs/helper/streaming/utils.js +35 -0
  1641. package/bundles/mcp/node_modules/hono/dist/cjs/helper/testing/index.js +33 -0
  1642. package/bundles/mcp/node_modules/hono/dist/cjs/helper/websocket/index.js +81 -0
  1643. package/bundles/mcp/node_modules/hono/dist/cjs/hono-base.js +400 -0
  1644. package/bundles/mcp/node_modules/hono/dist/cjs/hono.js +43 -0
  1645. package/bundles/mcp/node_modules/hono/dist/cjs/http-exception.js +57 -0
  1646. package/bundles/mcp/node_modules/hono/dist/cjs/index.js +27 -0
  1647. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/base.js +374 -0
  1648. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/children.js +44 -0
  1649. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/components.js +201 -0
  1650. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/constants.js +42 -0
  1651. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/context.js +62 -0
  1652. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/client.js +76 -0
  1653. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/components.js +55 -0
  1654. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/context.js +71 -0
  1655. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/css.js +161 -0
  1656. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +74 -0
  1657. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/index.js +181 -0
  1658. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +399 -0
  1659. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +52 -0
  1660. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +32 -0
  1661. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/render.js +619 -0
  1662. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/server.js +67 -0
  1663. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/utils.js +32 -0
  1664. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/hooks/index.js +370 -0
  1665. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/index.js +138 -0
  1666. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +50 -0
  1667. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +189 -0
  1668. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +15 -0
  1669. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +41 -0
  1670. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +68 -0
  1671. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/streaming.js +177 -0
  1672. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/types.js +15 -0
  1673. package/bundles/mcp/node_modules/hono/dist/cjs/jsx/utils.js +50 -0
  1674. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +88 -0
  1675. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +105 -0
  1676. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/body-limit/index.js +84 -0
  1677. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/cache/index.js +111 -0
  1678. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/combine/index.js +101 -0
  1679. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/compress/index.js +61 -0
  1680. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/context-storage/index.js +47 -0
  1681. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/cors/index.js +109 -0
  1682. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/csrf/index.js +77 -0
  1683. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/etag/digest.js +55 -0
  1684. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/etag/index.js +95 -0
  1685. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +124 -0
  1686. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +82 -0
  1687. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/jwk/index.js +27 -0
  1688. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +134 -0
  1689. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/jwt/index.js +38 -0
  1690. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +140 -0
  1691. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/language/index.js +35 -0
  1692. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/language/language.js +221 -0
  1693. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/logger/index.js +72 -0
  1694. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/method-override/index.js +104 -0
  1695. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/powered-by/index.js +32 -0
  1696. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +37 -0
  1697. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/request-id/index.js +27 -0
  1698. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +43 -0
  1699. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +29 -0
  1700. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +15 -0
  1701. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +189 -0
  1702. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/serve-static/index.js +99 -0
  1703. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/serve-static/path.js +40 -0
  1704. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/timeout/index.js +47 -0
  1705. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/timing/index.js +35 -0
  1706. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/timing/timing.js +128 -0
  1707. package/bundles/mcp/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +62 -0
  1708. package/bundles/mcp/node_modules/hono/dist/cjs/package.json +3 -0
  1709. package/bundles/mcp/node_modules/hono/dist/cjs/preset/quick.js +38 -0
  1710. package/bundles/mcp/node_modules/hono/dist/cjs/preset/tiny.js +34 -0
  1711. package/bundles/mcp/node_modules/hono/dist/cjs/request/constants.js +27 -0
  1712. package/bundles/mcp/node_modules/hono/dist/cjs/request.js +324 -0
  1713. package/bundles/mcp/node_modules/hono/dist/cjs/router/linear-router/index.js +27 -0
  1714. package/bundles/mcp/node_modules/hono/dist/cjs/router/linear-router/router.js +140 -0
  1715. package/bundles/mcp/node_modules/hono/dist/cjs/router/pattern-router/index.js +27 -0
  1716. package/bundles/mcp/node_modules/hono/dist/cjs/router/pattern-router/router.js +70 -0
  1717. package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +34 -0
  1718. package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +48 -0
  1719. package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +134 -0
  1720. package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +166 -0
  1721. package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +208 -0
  1722. package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +81 -0
  1723. package/bundles/mcp/node_modules/hono/dist/cjs/router/smart-router/index.js +27 -0
  1724. package/bundles/mcp/node_modules/hono/dist/cjs/router/smart-router/router.js +80 -0
  1725. package/bundles/mcp/node_modules/hono/dist/cjs/router/trie-router/index.js +27 -0
  1726. package/bundles/mcp/node_modules/hono/dist/cjs/router/trie-router/node.js +201 -0
  1727. package/bundles/mcp/node_modules/hono/dist/cjs/router/trie-router/router.js +48 -0
  1728. package/bundles/mcp/node_modules/hono/dist/cjs/router.js +40 -0
  1729. package/bundles/mcp/node_modules/hono/dist/cjs/types.js +28 -0
  1730. package/bundles/mcp/node_modules/hono/dist/cjs/utils/accept.js +245 -0
  1731. package/bundles/mcp/node_modules/hono/dist/cjs/utils/basic-auth.js +45 -0
  1732. package/bundles/mcp/node_modules/hono/dist/cjs/utils/body.js +97 -0
  1733. package/bundles/mcp/node_modules/hono/dist/cjs/utils/buffer.js +102 -0
  1734. package/bundles/mcp/node_modules/hono/dist/cjs/utils/color.js +48 -0
  1735. package/bundles/mcp/node_modules/hono/dist/cjs/utils/compress.js +27 -0
  1736. package/bundles/mcp/node_modules/hono/dist/cjs/utils/concurrent.js +61 -0
  1737. package/bundles/mcp/node_modules/hono/dist/cjs/utils/constants.js +27 -0
  1738. package/bundles/mcp/node_modules/hono/dist/cjs/utils/cookie.js +177 -0
  1739. package/bundles/mcp/node_modules/hono/dist/cjs/utils/crypto.js +69 -0
  1740. package/bundles/mcp/node_modules/hono/dist/cjs/utils/encode.js +54 -0
  1741. package/bundles/mcp/node_modules/hono/dist/cjs/utils/filepath.js +58 -0
  1742. package/bundles/mcp/node_modules/hono/dist/cjs/utils/handler.js +36 -0
  1743. package/bundles/mcp/node_modules/hono/dist/cjs/utils/headers.js +15 -0
  1744. package/bundles/mcp/node_modules/hono/dist/cjs/utils/html.js +150 -0
  1745. package/bundles/mcp/node_modules/hono/dist/cjs/utils/http-status.js +15 -0
  1746. package/bundles/mcp/node_modules/hono/dist/cjs/utils/ipaddr.js +129 -0
  1747. package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/index.js +28 -0
  1748. package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/jwa.js +42 -0
  1749. package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/jws.js +215 -0
  1750. package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/jwt.js +213 -0
  1751. package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/types.js +161 -0
  1752. package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/utf8.js +30 -0
  1753. package/bundles/mcp/node_modules/hono/dist/cjs/utils/mime.js +108 -0
  1754. package/bundles/mcp/node_modules/hono/dist/cjs/utils/stream.js +101 -0
  1755. package/bundles/mcp/node_modules/hono/dist/cjs/utils/types.js +15 -0
  1756. package/bundles/mcp/node_modules/hono/dist/cjs/utils/url.js +256 -0
  1757. package/bundles/mcp/node_modules/hono/dist/cjs/validator/index.js +27 -0
  1758. package/bundles/mcp/node_modules/hono/dist/cjs/validator/utils.js +15 -0
  1759. package/bundles/mcp/node_modules/hono/dist/cjs/validator/validator.js +108 -0
  1760. package/bundles/mcp/node_modules/hono/dist/client/client.js +180 -0
  1761. package/bundles/mcp/node_modules/hono/dist/client/fetch-result-please.js +62 -0
  1762. package/bundles/mcp/node_modules/hono/dist/client/index.js +8 -0
  1763. package/bundles/mcp/node_modules/hono/dist/client/types.js +0 -0
  1764. package/bundles/mcp/node_modules/hono/dist/client/utils.js +76 -0
  1765. package/bundles/mcp/node_modules/hono/dist/compose.js +46 -0
  1766. package/bundles/mcp/node_modules/hono/dist/context.js +412 -0
  1767. package/bundles/mcp/node_modules/hono/dist/helper/accepts/accepts.js +20 -0
  1768. package/bundles/mcp/node_modules/hono/dist/helper/accepts/index.js +5 -0
  1769. package/bundles/mcp/node_modules/hono/dist/helper/adapter/index.js +56 -0
  1770. package/bundles/mcp/node_modules/hono/dist/helper/conninfo/index.js +0 -0
  1771. package/bundles/mcp/node_modules/hono/dist/helper/conninfo/types.js +0 -0
  1772. package/bundles/mcp/node_modules/hono/dist/helper/cookie/index.js +102 -0
  1773. package/bundles/mcp/node_modules/hono/dist/helper/css/common.js +185 -0
  1774. package/bundles/mcp/node_modules/hono/dist/helper/css/index.js +125 -0
  1775. package/bundles/mcp/node_modules/hono/dist/helper/dev/index.js +55 -0
  1776. package/bundles/mcp/node_modules/hono/dist/helper/factory/index.js +30 -0
  1777. package/bundles/mcp/node_modules/hono/dist/helper/html/index.js +41 -0
  1778. package/bundles/mcp/node_modules/hono/dist/helper/proxy/index.js +89 -0
  1779. package/bundles/mcp/node_modules/hono/dist/helper/route/index.js +46 -0
  1780. package/bundles/mcp/node_modules/hono/dist/helper/ssg/index.js +19 -0
  1781. package/bundles/mcp/node_modules/hono/dist/helper/ssg/middleware.js +45 -0
  1782. package/bundles/mcp/node_modules/hono/dist/helper/ssg/plugins.js +47 -0
  1783. package/bundles/mcp/node_modules/hono/dist/helper/ssg/ssg.js +287 -0
  1784. package/bundles/mcp/node_modules/hono/dist/helper/ssg/utils.js +59 -0
  1785. package/bundles/mcp/node_modules/hono/dist/helper/streaming/index.js +10 -0
  1786. package/bundles/mcp/node_modules/hono/dist/helper/streaming/sse.js +67 -0
  1787. package/bundles/mcp/node_modules/hono/dist/helper/streaming/stream.js +34 -0
  1788. package/bundles/mcp/node_modules/hono/dist/helper/streaming/text.js +12 -0
  1789. package/bundles/mcp/node_modules/hono/dist/helper/streaming/utils.js +13 -0
  1790. package/bundles/mcp/node_modules/hono/dist/helper/testing/index.js +11 -0
  1791. package/bundles/mcp/node_modules/hono/dist/helper/websocket/index.js +57 -0
  1792. package/bundles/mcp/node_modules/hono/dist/hono-base.js +378 -0
  1793. package/bundles/mcp/node_modules/hono/dist/hono.js +21 -0
  1794. package/bundles/mcp/node_modules/hono/dist/http-exception.js +35 -0
  1795. package/bundles/mcp/node_modules/hono/dist/index.js +5 -0
  1796. package/bundles/mcp/node_modules/hono/dist/jsx/base.js +331 -0
  1797. package/bundles/mcp/node_modules/hono/dist/jsx/children.js +21 -0
  1798. package/bundles/mcp/node_modules/hono/dist/jsx/components.js +178 -0
  1799. package/bundles/mcp/node_modules/hono/dist/jsx/constants.js +15 -0
  1800. package/bundles/mcp/node_modules/hono/dist/jsx/context.js +38 -0
  1801. package/bundles/mcp/node_modules/hono/dist/jsx/dom/client.js +53 -0
  1802. package/bundles/mcp/node_modules/hono/dist/jsx/dom/components.js +32 -0
  1803. package/bundles/mcp/node_modules/hono/dist/jsx/dom/context.js +48 -0
  1804. package/bundles/mcp/node_modules/hono/dist/jsx/dom/css.js +143 -0
  1805. package/bundles/mcp/node_modules/hono/dist/jsx/dom/hooks/index.js +48 -0
  1806. package/bundles/mcp/node_modules/hono/dist/jsx/dom/index.js +142 -0
  1807. package/bundles/mcp/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +374 -0
  1808. package/bundles/mcp/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +19 -0
  1809. package/bundles/mcp/node_modules/hono/dist/jsx/dom/jsx-runtime.js +8 -0
  1810. package/bundles/mcp/node_modules/hono/dist/jsx/dom/render.js +595 -0
  1811. package/bundles/mcp/node_modules/hono/dist/jsx/dom/server.js +33 -0
  1812. package/bundles/mcp/node_modules/hono/dist/jsx/dom/utils.js +10 -0
  1813. package/bundles/mcp/node_modules/hono/dist/jsx/hooks/index.js +328 -0
  1814. package/bundles/mcp/node_modules/hono/dist/jsx/index.js +103 -0
  1815. package/bundles/mcp/node_modules/hono/dist/jsx/intrinsic-element/common.js +24 -0
  1816. package/bundles/mcp/node_modules/hono/dist/jsx/intrinsic-element/components.js +165 -0
  1817. package/bundles/mcp/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
  1818. package/bundles/mcp/node_modules/hono/dist/jsx/jsx-dev-runtime.js +18 -0
  1819. package/bundles/mcp/node_modules/hono/dist/jsx/jsx-runtime.js +41 -0
  1820. package/bundles/mcp/node_modules/hono/dist/jsx/streaming.js +153 -0
  1821. package/bundles/mcp/node_modules/hono/dist/jsx/types.js +0 -0
  1822. package/bundles/mcp/node_modules/hono/dist/jsx/utils.js +27 -0
  1823. package/bundles/mcp/node_modules/hono/dist/middleware/basic-auth/index.js +66 -0
  1824. package/bundles/mcp/node_modules/hono/dist/middleware/bearer-auth/index.js +83 -0
  1825. package/bundles/mcp/node_modules/hono/dist/middleware/body-limit/index.js +62 -0
  1826. package/bundles/mcp/node_modules/hono/dist/middleware/cache/index.js +89 -0
  1827. package/bundles/mcp/node_modules/hono/dist/middleware/combine/index.js +77 -0
  1828. package/bundles/mcp/node_modules/hono/dist/middleware/compress/index.js +39 -0
  1829. package/bundles/mcp/node_modules/hono/dist/middleware/context-storage/index.js +23 -0
  1830. package/bundles/mcp/node_modules/hono/dist/middleware/cors/index.js +87 -0
  1831. package/bundles/mcp/node_modules/hono/dist/middleware/csrf/index.js +55 -0
  1832. package/bundles/mcp/node_modules/hono/dist/middleware/etag/digest.js +33 -0
  1833. package/bundles/mcp/node_modules/hono/dist/middleware/etag/index.js +72 -0
  1834. package/bundles/mcp/node_modules/hono/dist/middleware/ip-restriction/index.js +107 -0
  1835. package/bundles/mcp/node_modules/hono/dist/middleware/jsx-renderer/index.js +58 -0
  1836. package/bundles/mcp/node_modules/hono/dist/middleware/jwk/index.js +5 -0
  1837. package/bundles/mcp/node_modules/hono/dist/middleware/jwk/jwk.js +112 -0
  1838. package/bundles/mcp/node_modules/hono/dist/middleware/jwt/index.js +11 -0
  1839. package/bundles/mcp/node_modules/hono/dist/middleware/jwt/jwt.js +114 -0
  1840. package/bundles/mcp/node_modules/hono/dist/middleware/language/index.js +15 -0
  1841. package/bundles/mcp/node_modules/hono/dist/middleware/language/language.js +190 -0
  1842. package/bundles/mcp/node_modules/hono/dist/middleware/logger/index.js +44 -0
  1843. package/bundles/mcp/node_modules/hono/dist/middleware/method-override/index.js +82 -0
  1844. package/bundles/mcp/node_modules/hono/dist/middleware/powered-by/index.js +10 -0
  1845. package/bundles/mcp/node_modules/hono/dist/middleware/pretty-json/index.js +15 -0
  1846. package/bundles/mcp/node_modules/hono/dist/middleware/request-id/index.js +5 -0
  1847. package/bundles/mcp/node_modules/hono/dist/middleware/request-id/request-id.js +21 -0
  1848. package/bundles/mcp/node_modules/hono/dist/middleware/secure-headers/index.js +6 -0
  1849. package/bundles/mcp/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
  1850. package/bundles/mcp/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +166 -0
  1851. package/bundles/mcp/node_modules/hono/dist/middleware/serve-static/index.js +77 -0
  1852. package/bundles/mcp/node_modules/hono/dist/middleware/serve-static/path.js +18 -0
  1853. package/bundles/mcp/node_modules/hono/dist/middleware/timeout/index.js +25 -0
  1854. package/bundles/mcp/node_modules/hono/dist/middleware/timing/index.js +9 -0
  1855. package/bundles/mcp/node_modules/hono/dist/middleware/timing/timing.js +102 -0
  1856. package/bundles/mcp/node_modules/hono/dist/middleware/trailing-slash/index.js +39 -0
  1857. package/bundles/mcp/node_modules/hono/dist/preset/quick.js +16 -0
  1858. package/bundles/mcp/node_modules/hono/dist/preset/tiny.js +12 -0
  1859. package/bundles/mcp/node_modules/hono/dist/request/constants.js +5 -0
  1860. package/bundles/mcp/node_modules/hono/dist/request.js +301 -0
  1861. package/bundles/mcp/node_modules/hono/dist/router/linear-router/index.js +5 -0
  1862. package/bundles/mcp/node_modules/hono/dist/router/linear-router/router.js +118 -0
  1863. package/bundles/mcp/node_modules/hono/dist/router/pattern-router/index.js +5 -0
  1864. package/bundles/mcp/node_modules/hono/dist/router/pattern-router/router.js +48 -0
  1865. package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/index.js +9 -0
  1866. package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/matcher.js +25 -0
  1867. package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/node.js +111 -0
  1868. package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +142 -0
  1869. package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/router.js +190 -0
  1870. package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/trie.js +59 -0
  1871. package/bundles/mcp/node_modules/hono/dist/router/smart-router/index.js +5 -0
  1872. package/bundles/mcp/node_modules/hono/dist/router/smart-router/router.js +58 -0
  1873. package/bundles/mcp/node_modules/hono/dist/router/trie-router/index.js +5 -0
  1874. package/bundles/mcp/node_modules/hono/dist/router/trie-router/node.js +179 -0
  1875. package/bundles/mcp/node_modules/hono/dist/router/trie-router/router.js +26 -0
  1876. package/bundles/mcp/node_modules/hono/dist/router.js +14 -0
  1877. package/bundles/mcp/node_modules/hono/dist/tsconfig.build.tsbuildinfo +1 -0
  1878. package/bundles/mcp/node_modules/hono/dist/types/adapter/aws-lambda/conninfo.d.ts +27 -0
  1879. package/bundles/mcp/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +184 -0
  1880. package/bundles/mcp/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +8 -0
  1881. package/bundles/mcp/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +144 -0
  1882. package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +7 -0
  1883. package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/index.d.ts +10 -0
  1884. package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +3 -0
  1885. package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/server.d.ts +12 -0
  1886. package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +13 -0
  1887. package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +39 -0
  1888. package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-pages/conninfo.d.ts +21 -0
  1889. package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +33 -0
  1890. package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +7 -0
  1891. package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +2 -0
  1892. package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +7 -0
  1893. package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +4 -0
  1894. package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +16 -0
  1895. package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +5 -0
  1896. package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +2 -0
  1897. package/bundles/mcp/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +7 -0
  1898. package/bundles/mcp/node_modules/hono/dist/types/adapter/deno/index.d.ts +8 -0
  1899. package/bundles/mcp/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +3 -0
  1900. package/bundles/mcp/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +13 -0
  1901. package/bundles/mcp/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +2 -0
  1902. package/bundles/mcp/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +2 -0
  1903. package/bundles/mcp/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +87 -0
  1904. package/bundles/mcp/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +7 -0
  1905. package/bundles/mcp/node_modules/hono/dist/types/adapter/netlify/conninfo.d.ts +21 -0
  1906. package/bundles/mcp/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +2 -0
  1907. package/bundles/mcp/node_modules/hono/dist/types/adapter/netlify/index.d.ts +5 -0
  1908. package/bundles/mcp/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +2 -0
  1909. package/bundles/mcp/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +16 -0
  1910. package/bundles/mcp/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +28 -0
  1911. package/bundles/mcp/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +12 -0
  1912. package/bundles/mcp/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +2 -0
  1913. package/bundles/mcp/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +2 -0
  1914. package/bundles/mcp/node_modules/hono/dist/types/adapter/vercel/index.d.ts +6 -0
  1915. package/bundles/mcp/node_modules/hono/dist/types/client/client.d.ts +4 -0
  1916. package/bundles/mcp/node_modules/hono/dist/types/client/fetch-result-please.d.ts +35 -0
  1917. package/bundles/mcp/node_modules/hono/dist/types/client/index.d.ts +7 -0
  1918. package/bundles/mcp/node_modules/hono/dist/types/client/types.d.ts +209 -0
  1919. package/bundles/mcp/node_modules/hono/dist/types/client/utils.d.ts +18 -0
  1920. package/bundles/mcp/node_modules/hono/dist/types/compose.d.ts +14 -0
  1921. package/bundles/mcp/node_modules/hono/dist/types/context.d.ts +455 -0
  1922. package/bundles/mcp/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +30 -0
  1923. package/bundles/mcp/node_modules/hono/dist/types/helper/accepts/index.d.ts +5 -0
  1924. package/bundles/mcp/node_modules/hono/dist/types/helper/adapter/index.d.ts +12 -0
  1925. package/bundles/mcp/node_modules/hono/dist/types/helper/conninfo/index.d.ts +5 -0
  1926. package/bundles/mcp/node_modules/hono/dist/types/helper/conninfo/types.d.ts +36 -0
  1927. package/bundles/mcp/node_modules/hono/dist/types/helper/cookie/index.d.ts +24 -0
  1928. package/bundles/mcp/node_modules/hono/dist/types/helper/css/common.d.ts +42 -0
  1929. package/bundles/mcp/node_modules/hono/dist/types/helper/css/index.d.ts +73 -0
  1930. package/bundles/mcp/node_modules/hono/dist/types/helper/dev/index.d.ts +20 -0
  1931. package/bundles/mcp/node_modules/hono/dist/types/helper/factory/index.d.ts +82 -0
  1932. package/bundles/mcp/node_modules/hono/dist/types/helper/html/index.d.ts +8 -0
  1933. package/bundles/mcp/node_modules/hono/dist/types/helper/proxy/index.d.ts +72 -0
  1934. package/bundles/mcp/node_modules/hono/dist/types/helper/route/index.d.ts +75 -0
  1935. package/bundles/mcp/node_modules/hono/dist/types/helper/ssg/index.d.ts +7 -0
  1936. package/bundles/mcp/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +44 -0
  1937. package/bundles/mcp/node_modules/hono/dist/types/helper/ssg/plugins.d.ts +27 -0
  1938. package/bundles/mcp/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +91 -0
  1939. package/bundles/mcp/node_modules/hono/dist/types/helper/ssg/utils.d.ts +15 -0
  1940. package/bundles/mcp/node_modules/hono/dist/types/helper/streaming/index.d.ts +8 -0
  1941. package/bundles/mcp/node_modules/hono/dist/types/helper/streaming/sse.d.ts +13 -0
  1942. package/bundles/mcp/node_modules/hono/dist/types/helper/streaming/stream.d.ts +3 -0
  1943. package/bundles/mcp/node_modules/hono/dist/types/helper/streaming/text.d.ts +3 -0
  1944. package/bundles/mcp/node_modules/hono/dist/types/helper/streaming/utils.d.ts +1 -0
  1945. package/bundles/mcp/node_modules/hono/dist/types/helper/testing/index.d.ts +12 -0
  1946. package/bundles/mcp/node_modules/hono/dist/types/helper/websocket/index.d.ts +69 -0
  1947. package/bundles/mcp/node_modules/hono/dist/types/hono-base.d.ts +220 -0
  1948. package/bundles/mcp/node_modules/hono/dist/types/hono.d.ts +19 -0
  1949. package/bundles/mcp/node_modules/hono/dist/types/http-exception.d.ts +59 -0
  1950. package/bundles/mcp/node_modules/hono/dist/types/index.d.ts +36 -0
  1951. package/bundles/mcp/node_modules/hono/dist/types/jsx/base.d.ts +58 -0
  1952. package/bundles/mcp/node_modules/hono/dist/types/jsx/children.d.ts +9 -0
  1953. package/bundles/mcp/node_modules/hono/dist/types/jsx/components.d.ts +15 -0
  1954. package/bundles/mcp/node_modules/hono/dist/types/jsx/constants.d.ts +6 -0
  1955. package/bundles/mcp/node_modules/hono/dist/types/jsx/context.d.ts +12 -0
  1956. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/client.d.ts +31 -0
  1957. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/components.d.ts +10 -0
  1958. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/context.d.ts +3 -0
  1959. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/css.d.ts +77 -0
  1960. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +39 -0
  1961. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/index.d.ts +88 -0
  1962. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +16 -0
  1963. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +8 -0
  1964. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +7 -0
  1965. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/render.d.ts +73 -0
  1966. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/server.d.ts +106 -0
  1967. package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/utils.d.ts +1 -0
  1968. package/bundles/mcp/node_modules/hono/dist/types/jsx/hooks/index.d.ts +45 -0
  1969. package/bundles/mcp/node_modules/hono/dist/types/jsx/index.d.ts +75 -0
  1970. package/bundles/mcp/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +6 -0
  1971. package/bundles/mcp/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +13 -0
  1972. package/bundles/mcp/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +722 -0
  1973. package/bundles/mcp/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +8 -0
  1974. package/bundles/mcp/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +12 -0
  1975. package/bundles/mcp/node_modules/hono/dist/types/jsx/streaming.d.ts +36 -0
  1976. package/bundles/mcp/node_modules/hono/dist/types/jsx/types.d.ts +35 -0
  1977. package/bundles/mcp/node_modules/hono/dist/types/jsx/utils.d.ts +2 -0
  1978. package/bundles/mcp/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +75 -0
  1979. package/bundles/mcp/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +91 -0
  1980. package/bundles/mcp/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +45 -0
  1981. package/bundles/mcp/node_modules/hono/dist/types/middleware/cache/index.d.ts +41 -0
  1982. package/bundles/mcp/node_modules/hono/dist/types/middleware/combine/index.d.ts +85 -0
  1983. package/bundles/mcp/node_modules/hono/dist/types/middleware/compress/index.d.ts +29 -0
  1984. package/bundles/mcp/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +40 -0
  1985. package/bundles/mcp/node_modules/hono/dist/types/middleware/cors/index.d.ts +55 -0
  1986. package/bundles/mcp/node_modules/hono/dist/types/middleware/csrf/index.d.ts +78 -0
  1987. package/bundles/mcp/node_modules/hono/dist/types/middleware/etag/digest.d.ts +1 -0
  1988. package/bundles/mcp/node_modules/hono/dist/types/middleware/etag/index.d.ts +42 -0
  1989. package/bundles/mcp/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +31 -0
  1990. package/bundles/mcp/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +77 -0
  1991. package/bundles/mcp/node_modules/hono/dist/types/middleware/jwk/index.d.ts +1 -0
  1992. package/bundles/mcp/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +54 -0
  1993. package/bundles/mcp/node_modules/hono/dist/types/middleware/jwt/index.d.ts +8 -0
  1994. package/bundles/mcp/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +67 -0
  1995. package/bundles/mcp/node_modules/hono/dist/types/middleware/language/index.d.ts +7 -0
  1996. package/bundles/mcp/node_modules/hono/dist/types/middleware/language/language.d.ts +102 -0
  1997. package/bundles/mcp/node_modules/hono/dist/types/middleware/logger/index.d.ts +24 -0
  1998. package/bundles/mcp/node_modules/hono/dist/types/middleware/method-override/index.d.ts +48 -0
  1999. package/bundles/mcp/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +29 -0
  2000. package/bundles/mcp/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +42 -0
  2001. package/bundles/mcp/node_modules/hono/dist/types/middleware/request-id/index.d.ts +7 -0
  2002. package/bundles/mcp/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +37 -0
  2003. package/bundles/mcp/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +8 -0
  2004. package/bundles/mcp/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +14 -0
  2005. package/bundles/mcp/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +109 -0
  2006. package/bundles/mcp/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +31 -0
  2007. package/bundles/mcp/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +5 -0
  2008. package/bundles/mcp/node_modules/hono/dist/types/middleware/timeout/index.d.ts +31 -0
  2009. package/bundles/mcp/node_modules/hono/dist/types/middleware/timing/index.d.ts +7 -0
  2010. package/bundles/mcp/node_modules/hono/dist/types/middleware/timing/timing.d.ts +129 -0
  2011. package/bundles/mcp/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +78 -0
  2012. package/bundles/mcp/node_modules/hono/dist/types/package.json +3 -0
  2013. package/bundles/mcp/node_modules/hono/dist/types/preset/quick.d.ts +10 -0
  2014. package/bundles/mcp/node_modules/hono/dist/types/preset/tiny.d.ts +10 -0
  2015. package/bundles/mcp/node_modules/hono/dist/types/request/constants.d.ts +1 -0
  2016. package/bundles/mcp/node_modules/hono/dist/types/request.d.ts +313 -0
  2017. package/bundles/mcp/node_modules/hono/dist/types/router/linear-router/index.d.ts +5 -0
  2018. package/bundles/mcp/node_modules/hono/dist/types/router/linear-router/router.d.ts +7 -0
  2019. package/bundles/mcp/node_modules/hono/dist/types/router/pattern-router/index.d.ts +5 -0
  2020. package/bundles/mcp/node_modules/hono/dist/types/router/pattern-router/router.d.ts +7 -0
  2021. package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +6 -0
  2022. package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +7 -0
  2023. package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +10 -0
  2024. package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +17 -0
  2025. package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +11 -0
  2026. package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +7 -0
  2027. package/bundles/mcp/node_modules/hono/dist/types/router/smart-router/index.d.ts +5 -0
  2028. package/bundles/mcp/node_modules/hono/dist/types/router/smart-router/router.d.ts +11 -0
  2029. package/bundles/mcp/node_modules/hono/dist/types/router/trie-router/index.d.ts +5 -0
  2030. package/bundles/mcp/node_modules/hono/dist/types/router/trie-router/node.d.ts +7 -0
  2031. package/bundles/mcp/node_modules/hono/dist/types/router/trie-router/router.d.ts +8 -0
  2032. package/bundles/mcp/node_modules/hono/dist/types/router.d.ts +97 -0
  2033. package/bundles/mcp/node_modules/hono/dist/types/types.d.ts +573 -0
  2034. package/bundles/mcp/node_modules/hono/dist/types/utils/accept.d.ts +6 -0
  2035. package/bundles/mcp/node_modules/hono/dist/types/utils/basic-auth.d.ts +5 -0
  2036. package/bundles/mcp/node_modules/hono/dist/types/utils/body.d.ts +79 -0
  2037. package/bundles/mcp/node_modules/hono/dist/types/utils/buffer.d.ts +17 -0
  2038. package/bundles/mcp/node_modules/hono/dist/types/utils/color.d.ts +21 -0
  2039. package/bundles/mcp/node_modules/hono/dist/types/utils/compress.d.ts +8 -0
  2040. package/bundles/mcp/node_modules/hono/dist/types/utils/concurrent.d.ts +11 -0
  2041. package/bundles/mcp/node_modules/hono/dist/types/utils/constants.d.ts +4 -0
  2042. package/bundles/mcp/node_modules/hono/dist/types/utils/cookie.d.ts +40 -0
  2043. package/bundles/mcp/node_modules/hono/dist/types/utils/crypto.d.ts +15 -0
  2044. package/bundles/mcp/node_modules/hono/dist/types/utils/encode.d.ts +8 -0
  2045. package/bundles/mcp/node_modules/hono/dist/types/utils/filepath.d.ts +12 -0
  2046. package/bundles/mcp/node_modules/hono/dist/types/utils/handler.d.ts +6 -0
  2047. package/bundles/mcp/node_modules/hono/dist/types/utils/headers.d.ts +8 -0
  2048. package/bundles/mcp/node_modules/hono/dist/types/utils/html.d.ts +44 -0
  2049. package/bundles/mcp/node_modules/hono/dist/types/utils/http-status.d.ts +32 -0
  2050. package/bundles/mcp/node_modules/hono/dist/types/utils/ipaddr.d.ts +40 -0
  2051. package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/index.d.ts +18 -0
  2052. package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +23 -0
  2053. package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/jws.d.ts +12 -0
  2054. package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +43 -0
  2055. package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/types.d.ts +86 -0
  2056. package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +6 -0
  2057. package/bundles/mcp/node_modules/hono/dist/types/utils/mime.d.ts +70 -0
  2058. package/bundles/mcp/node_modules/hono/dist/types/utils/stream.d.ts +31 -0
  2059. package/bundles/mcp/node_modules/hono/dist/types/utils/types.d.ts +74 -0
  2060. package/bundles/mcp/node_modules/hono/dist/types/utils/url.d.ts +39 -0
  2061. package/bundles/mcp/node_modules/hono/dist/types/validator/index.d.ts +7 -0
  2062. package/bundles/mcp/node_modules/hono/dist/types/validator/utils.d.ts +29 -0
  2063. package/bundles/mcp/node_modules/hono/dist/types/validator/validator.d.ts +16 -0
  2064. package/bundles/mcp/node_modules/hono/dist/types.js +6 -0
  2065. package/bundles/mcp/node_modules/hono/dist/utils/accept.js +223 -0
  2066. package/bundles/mcp/node_modules/hono/dist/utils/basic-auth.js +23 -0
  2067. package/bundles/mcp/node_modules/hono/dist/utils/body.js +75 -0
  2068. package/bundles/mcp/node_modules/hono/dist/utils/buffer.js +77 -0
  2069. package/bundles/mcp/node_modules/hono/dist/utils/color.js +25 -0
  2070. package/bundles/mcp/node_modules/hono/dist/utils/compress.js +5 -0
  2071. package/bundles/mcp/node_modules/hono/dist/utils/concurrent.js +39 -0
  2072. package/bundles/mcp/node_modules/hono/dist/utils/constants.js +5 -0
  2073. package/bundles/mcp/node_modules/hono/dist/utils/cookie.js +152 -0
  2074. package/bundles/mcp/node_modules/hono/dist/utils/crypto.js +44 -0
  2075. package/bundles/mcp/node_modules/hono/dist/utils/encode.js +29 -0
  2076. package/bundles/mcp/node_modules/hono/dist/utils/filepath.js +35 -0
  2077. package/bundles/mcp/node_modules/hono/dist/utils/handler.js +13 -0
  2078. package/bundles/mcp/node_modules/hono/dist/utils/headers.js +0 -0
  2079. package/bundles/mcp/node_modules/hono/dist/utils/html.js +123 -0
  2080. package/bundles/mcp/node_modules/hono/dist/utils/http-status.js +0 -0
  2081. package/bundles/mcp/node_modules/hono/dist/utils/ipaddr.js +102 -0
  2082. package/bundles/mcp/node_modules/hono/dist/utils/jwt/index.js +6 -0
  2083. package/bundles/mcp/node_modules/hono/dist/utils/jwt/jwa.js +20 -0
  2084. package/bundles/mcp/node_modules/hono/dist/utils/jwt/jws.js +192 -0
  2085. package/bundles/mcp/node_modules/hono/dist/utils/jwt/jwt.js +201 -0
  2086. package/bundles/mcp/node_modules/hono/dist/utils/jwt/types.js +124 -0
  2087. package/bundles/mcp/node_modules/hono/dist/utils/jwt/utf8.js +7 -0
  2088. package/bundles/mcp/node_modules/hono/dist/utils/mime.js +84 -0
  2089. package/bundles/mcp/node_modules/hono/dist/utils/stream.js +79 -0
  2090. package/bundles/mcp/node_modules/hono/dist/utils/types.js +0 -0
  2091. package/bundles/mcp/node_modules/hono/dist/utils/url.js +222 -0
  2092. package/bundles/mcp/node_modules/hono/dist/validator/index.js +5 -0
  2093. package/bundles/mcp/node_modules/hono/dist/validator/utils.js +0 -0
  2094. package/bundles/mcp/node_modules/hono/dist/validator/validator.js +86 -0
  2095. package/bundles/mcp/node_modules/hono/package.json +692 -0
  2096. package/bundles/mcp/node_modules/http-errors/HISTORY.md +186 -0
  2097. package/bundles/mcp/node_modules/http-errors/LICENSE +23 -0
  2098. package/bundles/mcp/node_modules/http-errors/README.md +169 -0
  2099. package/bundles/mcp/node_modules/http-errors/index.js +290 -0
  2100. package/bundles/mcp/node_modules/http-errors/package.json +54 -0
  2101. package/bundles/mcp/node_modules/iconv-lite/LICENSE +21 -0
  2102. package/bundles/mcp/node_modules/iconv-lite/README.md +138 -0
  2103. package/bundles/mcp/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
  2104. package/bundles/mcp/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
  2105. package/bundles/mcp/node_modules/iconv-lite/encodings/index.js +23 -0
  2106. package/bundles/mcp/node_modules/iconv-lite/encodings/internal.js +218 -0
  2107. package/bundles/mcp/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
  2108. package/bundles/mcp/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  2109. package/bundles/mcp/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
  2110. package/bundles/mcp/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  2111. package/bundles/mcp/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  2112. package/bundles/mcp/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  2113. package/bundles/mcp/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  2114. package/bundles/mcp/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  2115. package/bundles/mcp/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  2116. package/bundles/mcp/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
  2117. package/bundles/mcp/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  2118. package/bundles/mcp/node_modules/iconv-lite/encodings/utf16.js +187 -0
  2119. package/bundles/mcp/node_modules/iconv-lite/encodings/utf32.js +307 -0
  2120. package/bundles/mcp/node_modules/iconv-lite/encodings/utf7.js +283 -0
  2121. package/bundles/mcp/node_modules/iconv-lite/lib/bom-handling.js +48 -0
  2122. package/bundles/mcp/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
  2123. package/bundles/mcp/node_modules/iconv-lite/lib/index.d.ts +129 -0
  2124. package/bundles/mcp/node_modules/iconv-lite/lib/index.js +182 -0
  2125. package/bundles/mcp/node_modules/iconv-lite/lib/streams.js +105 -0
  2126. package/bundles/mcp/node_modules/iconv-lite/package.json +70 -0
  2127. package/bundles/mcp/node_modules/iconv-lite/types/encodings.d.ts +423 -0
  2128. package/bundles/mcp/node_modules/inherits/LICENSE +16 -0
  2129. package/bundles/mcp/node_modules/inherits/README.md +42 -0
  2130. package/bundles/mcp/node_modules/inherits/inherits.js +9 -0
  2131. package/bundles/mcp/node_modules/inherits/inherits_browser.js +27 -0
  2132. package/bundles/mcp/node_modules/inherits/package.json +29 -0
  2133. package/bundles/mcp/node_modules/ip-address/LICENSE +19 -0
  2134. package/bundles/mcp/node_modules/ip-address/README.md +105 -0
  2135. package/bundles/mcp/node_modules/ip-address/dist/address-error.d.ts +5 -0
  2136. package/bundles/mcp/node_modules/ip-address/dist/address-error.d.ts.map +1 -0
  2137. package/bundles/mcp/node_modules/ip-address/dist/address-error.js +12 -0
  2138. package/bundles/mcp/node_modules/ip-address/dist/address-error.js.map +1 -0
  2139. package/bundles/mcp/node_modules/ip-address/dist/common.d.ts +15 -0
  2140. package/bundles/mcp/node_modules/ip-address/dist/common.d.ts.map +1 -0
  2141. package/bundles/mcp/node_modules/ip-address/dist/common.js +46 -0
  2142. package/bundles/mcp/node_modules/ip-address/dist/common.js.map +1 -0
  2143. package/bundles/mcp/node_modules/ip-address/dist/ip-address.d.ts +8 -0
  2144. package/bundles/mcp/node_modules/ip-address/dist/ip-address.d.ts.map +1 -0
  2145. package/bundles/mcp/node_modules/ip-address/dist/ip-address.js +35 -0
  2146. package/bundles/mcp/node_modules/ip-address/dist/ip-address.js.map +1 -0
  2147. package/bundles/mcp/node_modules/ip-address/dist/ipv4.d.ts +193 -0
  2148. package/bundles/mcp/node_modules/ip-address/dist/ipv4.d.ts.map +1 -0
  2149. package/bundles/mcp/node_modules/ip-address/dist/ipv4.js +327 -0
  2150. package/bundles/mcp/node_modules/ip-address/dist/ipv4.js.map +1 -0
  2151. package/bundles/mcp/node_modules/ip-address/dist/ipv6.d.ts +428 -0
  2152. package/bundles/mcp/node_modules/ip-address/dist/ipv6.d.ts.map +1 -0
  2153. package/bundles/mcp/node_modules/ip-address/dist/ipv6.js +1003 -0
  2154. package/bundles/mcp/node_modules/ip-address/dist/ipv6.js.map +1 -0
  2155. package/bundles/mcp/node_modules/ip-address/dist/v4/constants.d.ts +5 -0
  2156. package/bundles/mcp/node_modules/ip-address/dist/v4/constants.d.ts.map +1 -0
  2157. package/bundles/mcp/node_modules/ip-address/dist/v4/constants.js +8 -0
  2158. package/bundles/mcp/node_modules/ip-address/dist/v4/constants.js.map +1 -0
  2159. package/bundles/mcp/node_modules/ip-address/dist/v6/constants.d.ts +45 -0
  2160. package/bundles/mcp/node_modules/ip-address/dist/v6/constants.d.ts.map +1 -0
  2161. package/bundles/mcp/node_modules/ip-address/dist/v6/constants.js +76 -0
  2162. package/bundles/mcp/node_modules/ip-address/dist/v6/constants.js.map +1 -0
  2163. package/bundles/mcp/node_modules/ip-address/dist/v6/helpers.d.ts +18 -0
  2164. package/bundles/mcp/node_modules/ip-address/dist/v6/helpers.d.ts.map +1 -0
  2165. package/bundles/mcp/node_modules/ip-address/dist/v6/helpers.js +45 -0
  2166. package/bundles/mcp/node_modules/ip-address/dist/v6/helpers.js.map +1 -0
  2167. package/bundles/mcp/node_modules/ip-address/dist/v6/regular-expressions.d.ts +6 -0
  2168. package/bundles/mcp/node_modules/ip-address/dist/v6/regular-expressions.d.ts.map +1 -0
  2169. package/bundles/mcp/node_modules/ip-address/dist/v6/regular-expressions.js +95 -0
  2170. package/bundles/mcp/node_modules/ip-address/dist/v6/regular-expressions.js.map +1 -0
  2171. package/bundles/mcp/node_modules/ip-address/package.json +78 -0
  2172. package/bundles/mcp/node_modules/ipaddr.js/LICENSE +19 -0
  2173. package/bundles/mcp/node_modules/ipaddr.js/README.md +233 -0
  2174. package/bundles/mcp/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  2175. package/bundles/mcp/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  2176. package/bundles/mcp/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  2177. package/bundles/mcp/node_modules/ipaddr.js/package.json +35 -0
  2178. package/bundles/mcp/node_modules/is-promise/LICENSE +19 -0
  2179. package/bundles/mcp/node_modules/is-promise/index.d.ts +2 -0
  2180. package/bundles/mcp/node_modules/is-promise/index.js +6 -0
  2181. package/bundles/mcp/node_modules/is-promise/index.mjs +3 -0
  2182. package/bundles/mcp/node_modules/is-promise/package.json +30 -0
  2183. package/bundles/mcp/node_modules/is-promise/readme.md +33 -0
  2184. package/bundles/mcp/node_modules/isexe/LICENSE +15 -0
  2185. package/bundles/mcp/node_modules/isexe/README.md +51 -0
  2186. package/bundles/mcp/node_modules/isexe/index.js +57 -0
  2187. package/bundles/mcp/node_modules/isexe/mode.js +41 -0
  2188. package/bundles/mcp/node_modules/isexe/package.json +31 -0
  2189. package/bundles/mcp/node_modules/isexe/test/basic.js +221 -0
  2190. package/bundles/mcp/node_modules/isexe/windows.js +42 -0
  2191. package/bundles/mcp/node_modules/jose/LICENSE.md +21 -0
  2192. package/bundles/mcp/node_modules/jose/README.md +153 -0
  2193. package/bundles/mcp/node_modules/jose/dist/types/index.d.ts +55 -0
  2194. package/bundles/mcp/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +31 -0
  2195. package/bundles/mcp/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +65 -0
  2196. package/bundles/mcp/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +31 -0
  2197. package/bundles/mcp/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +83 -0
  2198. package/bundles/mcp/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +31 -0
  2199. package/bundles/mcp/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +74 -0
  2200. package/bundles/mcp/node_modules/jose/dist/types/jwk/embedded.d.ts +17 -0
  2201. package/bundles/mcp/node_modules/jose/dist/types/jwk/thumbprint.d.ts +32 -0
  2202. package/bundles/mcp/node_modules/jose/dist/types/jwks/local.d.ts +29 -0
  2203. package/bundles/mcp/node_modules/jose/dist/types/jwks/remote.d.ts +237 -0
  2204. package/bundles/mcp/node_modules/jose/dist/types/jws/compact/sign.d.ts +36 -0
  2205. package/bundles/mcp/node_modules/jose/dist/types/jws/compact/verify.d.ts +33 -0
  2206. package/bundles/mcp/node_modules/jose/dist/types/jws/flattened/sign.d.ts +42 -0
  2207. package/bundles/mcp/node_modules/jose/dist/types/jws/flattened/verify.d.ts +33 -0
  2208. package/bundles/mcp/node_modules/jose/dist/types/jws/general/sign.d.ts +53 -0
  2209. package/bundles/mcp/node_modules/jose/dist/types/jws/general/verify.d.ts +33 -0
  2210. package/bundles/mcp/node_modules/jose/dist/types/jwt/decrypt.d.ts +35 -0
  2211. package/bundles/mcp/node_modules/jose/dist/types/jwt/encrypt.d.ts +91 -0
  2212. package/bundles/mcp/node_modules/jose/dist/types/jwt/sign.d.ts +43 -0
  2213. package/bundles/mcp/node_modules/jose/dist/types/jwt/unsecured.d.ts +43 -0
  2214. package/bundles/mcp/node_modules/jose/dist/types/jwt/verify.d.ts +37 -0
  2215. package/bundles/mcp/node_modules/jose/dist/types/key/export.d.ts +33 -0
  2216. package/bundles/mcp/node_modules/jose/dist/types/key/generate_key_pair.d.ts +47 -0
  2217. package/bundles/mcp/node_modules/jose/dist/types/key/generate_secret.d.ts +35 -0
  2218. package/bundles/mcp/node_modules/jose/dist/types/key/import.d.ts +83 -0
  2219. package/bundles/mcp/node_modules/jose/dist/types/types.d.ts +841 -0
  2220. package/bundles/mcp/node_modules/jose/dist/types/util/base64url.d.ts +9 -0
  2221. package/bundles/mcp/node_modules/jose/dist/types/util/decode_jwt.d.ts +18 -0
  2222. package/bundles/mcp/node_modules/jose/dist/types/util/decode_protected_header.d.ts +17 -0
  2223. package/bundles/mcp/node_modules/jose/dist/types/util/errors.d.ts +213 -0
  2224. package/bundles/mcp/node_modules/jose/dist/webapi/index.js +32 -0
  2225. package/bundles/mcp/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +27 -0
  2226. package/bundles/mcp/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +27 -0
  2227. package/bundles/mcp/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +165 -0
  2228. package/bundles/mcp/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +169 -0
  2229. package/bundles/mcp/node_modules/jose/dist/webapi/jwe/general/decrypt.js +31 -0
  2230. package/bundles/mcp/node_modules/jose/dist/webapi/jwe/general/encrypt.js +187 -0
  2231. package/bundles/mcp/node_modules/jose/dist/webapi/jwk/embedded.js +17 -0
  2232. package/bundles/mcp/node_modules/jose/dist/webapi/jwk/thumbprint.js +68 -0
  2233. package/bundles/mcp/node_modules/jose/dist/webapi/jwks/local.js +119 -0
  2234. package/bundles/mcp/node_modules/jose/dist/webapi/jwks/remote.js +179 -0
  2235. package/bundles/mcp/node_modules/jose/dist/webapi/jws/compact/sign.js +18 -0
  2236. package/bundles/mcp/node_modules/jose/dist/webapi/jws/compact/verify.js +21 -0
  2237. package/bundles/mcp/node_modules/jose/dist/webapi/jws/flattened/sign.js +92 -0
  2238. package/bundles/mcp/node_modules/jose/dist/webapi/jws/flattened/verify.js +120 -0
  2239. package/bundles/mcp/node_modules/jose/dist/webapi/jws/general/sign.js +73 -0
  2240. package/bundles/mcp/node_modules/jose/dist/webapi/jws/general/verify.js +24 -0
  2241. package/bundles/mcp/node_modules/jose/dist/webapi/jwt/decrypt.js +23 -0
  2242. package/bundles/mcp/node_modules/jose/dist/webapi/jwt/encrypt.js +108 -0
  2243. package/bundles/mcp/node_modules/jose/dist/webapi/jwt/sign.js +52 -0
  2244. package/bundles/mcp/node_modules/jose/dist/webapi/jwt/unsecured.js +63 -0
  2245. package/bundles/mcp/node_modules/jose/dist/webapi/jwt/verify.js +15 -0
  2246. package/bundles/mcp/node_modules/jose/dist/webapi/key/export.js +11 -0
  2247. package/bundles/mcp/node_modules/jose/dist/webapi/key/generate_key_pair.js +97 -0
  2248. package/bundles/mcp/node_modules/jose/dist/webapi/key/generate_secret.js +40 -0
  2249. package/bundles/mcp/node_modules/jose/dist/webapi/key/import.js +57 -0
  2250. package/bundles/mcp/node_modules/jose/dist/webapi/lib/aesgcmkw.js +16 -0
  2251. package/bundles/mcp/node_modules/jose/dist/webapi/lib/aeskw.js +25 -0
  2252. package/bundles/mcp/node_modules/jose/dist/webapi/lib/asn1.js +243 -0
  2253. package/bundles/mcp/node_modules/jose/dist/webapi/lib/base64.js +22 -0
  2254. package/bundles/mcp/node_modules/jose/dist/webapi/lib/buffer_utils.js +43 -0
  2255. package/bundles/mcp/node_modules/jose/dist/webapi/lib/cek.js +19 -0
  2256. package/bundles/mcp/node_modules/jose/dist/webapi/lib/check_cek_length.js +7 -0
  2257. package/bundles/mcp/node_modules/jose/dist/webapi/lib/check_iv_length.js +7 -0
  2258. package/bundles/mcp/node_modules/jose/dist/webapi/lib/check_key_length.js +8 -0
  2259. package/bundles/mcp/node_modules/jose/dist/webapi/lib/check_key_type.js +122 -0
  2260. package/bundles/mcp/node_modules/jose/dist/webapi/lib/crypto_key.js +143 -0
  2261. package/bundles/mcp/node_modules/jose/dist/webapi/lib/decrypt.js +106 -0
  2262. package/bundles/mcp/node_modules/jose/dist/webapi/lib/decrypt_key_management.js +127 -0
  2263. package/bundles/mcp/node_modules/jose/dist/webapi/lib/digest.js +4 -0
  2264. package/bundles/mcp/node_modules/jose/dist/webapi/lib/ecdhes.js +52 -0
  2265. package/bundles/mcp/node_modules/jose/dist/webapi/lib/encrypt.js +74 -0
  2266. package/bundles/mcp/node_modules/jose/dist/webapi/lib/encrypt_key_management.js +92 -0
  2267. package/bundles/mcp/node_modules/jose/dist/webapi/lib/get_sign_verify_key.js +12 -0
  2268. package/bundles/mcp/node_modules/jose/dist/webapi/lib/invalid_key_input.js +27 -0
  2269. package/bundles/mcp/node_modules/jose/dist/webapi/lib/is_disjoint.js +21 -0
  2270. package/bundles/mcp/node_modules/jose/dist/webapi/lib/is_jwk.js +6 -0
  2271. package/bundles/mcp/node_modules/jose/dist/webapi/lib/is_key_like.js +17 -0
  2272. package/bundles/mcp/node_modules/jose/dist/webapi/lib/is_object.js +14 -0
  2273. package/bundles/mcp/node_modules/jose/dist/webapi/lib/iv.js +19 -0
  2274. package/bundles/mcp/node_modules/jose/dist/webapi/lib/jwk_to_key.js +109 -0
  2275. package/bundles/mcp/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +238 -0
  2276. package/bundles/mcp/node_modules/jose/dist/webapi/lib/key_to_jwk.js +31 -0
  2277. package/bundles/mcp/node_modules/jose/dist/webapi/lib/normalize_key.js +176 -0
  2278. package/bundles/mcp/node_modules/jose/dist/webapi/lib/pbes2kw.js +39 -0
  2279. package/bundles/mcp/node_modules/jose/dist/webapi/lib/private_symbols.js +1 -0
  2280. package/bundles/mcp/node_modules/jose/dist/webapi/lib/rsaes.js +24 -0
  2281. package/bundles/mcp/node_modules/jose/dist/webapi/lib/sign.js +9 -0
  2282. package/bundles/mcp/node_modules/jose/dist/webapi/lib/subtle_dsa.js +31 -0
  2283. package/bundles/mcp/node_modules/jose/dist/webapi/lib/validate_algorithms.js +10 -0
  2284. package/bundles/mcp/node_modules/jose/dist/webapi/lib/validate_crit.js +33 -0
  2285. package/bundles/mcp/node_modules/jose/dist/webapi/lib/verify.js +14 -0
  2286. package/bundles/mcp/node_modules/jose/dist/webapi/util/base64url.js +30 -0
  2287. package/bundles/mcp/node_modules/jose/dist/webapi/util/decode_jwt.js +32 -0
  2288. package/bundles/mcp/node_modules/jose/dist/webapi/util/decode_protected_header.js +34 -0
  2289. package/bundles/mcp/node_modules/jose/dist/webapi/util/errors.js +99 -0
  2290. package/bundles/mcp/node_modules/jose/package.json +200 -0
  2291. package/bundles/mcp/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
  2292. package/bundles/mcp/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
  2293. package/bundles/mcp/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
  2294. package/bundles/mcp/node_modules/json-schema-traverse/LICENSE +21 -0
  2295. package/bundles/mcp/node_modules/json-schema-traverse/README.md +95 -0
  2296. package/bundles/mcp/node_modules/json-schema-traverse/index.d.ts +40 -0
  2297. package/bundles/mcp/node_modules/json-schema-traverse/index.js +93 -0
  2298. package/bundles/mcp/node_modules/json-schema-traverse/package.json +43 -0
  2299. package/bundles/mcp/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
  2300. package/bundles/mcp/node_modules/json-schema-typed/LICENSE.md +57 -0
  2301. package/bundles/mcp/node_modules/json-schema-typed/README.md +108 -0
  2302. package/bundles/mcp/node_modules/json-schema-typed/draft_07.d.ts +882 -0
  2303. package/bundles/mcp/node_modules/json-schema-typed/draft_07.js +328 -0
  2304. package/bundles/mcp/node_modules/json-schema-typed/draft_2019_09.d.ts +1247 -0
  2305. package/bundles/mcp/node_modules/json-schema-typed/draft_2019_09.js +349 -0
  2306. package/bundles/mcp/node_modules/json-schema-typed/draft_2020_12.d.ts +1239 -0
  2307. package/bundles/mcp/node_modules/json-schema-typed/draft_2020_12.js +352 -0
  2308. package/bundles/mcp/node_modules/json-schema-typed/package.json +44 -0
  2309. package/bundles/mcp/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  2310. package/bundles/mcp/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  2311. package/bundles/mcp/node_modules/math-intrinsics/LICENSE +21 -0
  2312. package/bundles/mcp/node_modules/math-intrinsics/README.md +50 -0
  2313. package/bundles/mcp/node_modules/math-intrinsics/abs.d.ts +1 -0
  2314. package/bundles/mcp/node_modules/math-intrinsics/abs.js +4 -0
  2315. package/bundles/mcp/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  2316. package/bundles/mcp/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  2317. package/bundles/mcp/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  2318. package/bundles/mcp/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  2319. package/bundles/mcp/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  2320. package/bundles/mcp/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  2321. package/bundles/mcp/node_modules/math-intrinsics/floor.d.ts +1 -0
  2322. package/bundles/mcp/node_modules/math-intrinsics/floor.js +4 -0
  2323. package/bundles/mcp/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  2324. package/bundles/mcp/node_modules/math-intrinsics/isFinite.js +12 -0
  2325. package/bundles/mcp/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  2326. package/bundles/mcp/node_modules/math-intrinsics/isInteger.js +16 -0
  2327. package/bundles/mcp/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  2328. package/bundles/mcp/node_modules/math-intrinsics/isNaN.js +6 -0
  2329. package/bundles/mcp/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  2330. package/bundles/mcp/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  2331. package/bundles/mcp/node_modules/math-intrinsics/max.d.ts +1 -0
  2332. package/bundles/mcp/node_modules/math-intrinsics/max.js +4 -0
  2333. package/bundles/mcp/node_modules/math-intrinsics/min.d.ts +1 -0
  2334. package/bundles/mcp/node_modules/math-intrinsics/min.js +4 -0
  2335. package/bundles/mcp/node_modules/math-intrinsics/mod.d.ts +3 -0
  2336. package/bundles/mcp/node_modules/math-intrinsics/mod.js +9 -0
  2337. package/bundles/mcp/node_modules/math-intrinsics/package.json +86 -0
  2338. package/bundles/mcp/node_modules/math-intrinsics/pow.d.ts +1 -0
  2339. package/bundles/mcp/node_modules/math-intrinsics/pow.js +4 -0
  2340. package/bundles/mcp/node_modules/math-intrinsics/round.d.ts +1 -0
  2341. package/bundles/mcp/node_modules/math-intrinsics/round.js +4 -0
  2342. package/bundles/mcp/node_modules/math-intrinsics/sign.d.ts +3 -0
  2343. package/bundles/mcp/node_modules/math-intrinsics/sign.js +11 -0
  2344. package/bundles/mcp/node_modules/math-intrinsics/test/index.js +192 -0
  2345. package/bundles/mcp/node_modules/media-typer/HISTORY.md +50 -0
  2346. package/bundles/mcp/node_modules/media-typer/LICENSE +22 -0
  2347. package/bundles/mcp/node_modules/media-typer/README.md +93 -0
  2348. package/bundles/mcp/node_modules/media-typer/index.js +143 -0
  2349. package/bundles/mcp/node_modules/media-typer/package.json +33 -0
  2350. package/bundles/mcp/node_modules/merge-descriptors/index.d.ts +11 -0
  2351. package/bundles/mcp/node_modules/merge-descriptors/index.js +26 -0
  2352. package/bundles/mcp/node_modules/merge-descriptors/license +11 -0
  2353. package/bundles/mcp/node_modules/merge-descriptors/package.json +50 -0
  2354. package/bundles/mcp/node_modules/merge-descriptors/readme.md +55 -0
  2355. package/bundles/mcp/node_modules/mime-db/HISTORY.md +541 -0
  2356. package/bundles/mcp/node_modules/mime-db/LICENSE +23 -0
  2357. package/bundles/mcp/node_modules/mime-db/README.md +109 -0
  2358. package/bundles/mcp/node_modules/mime-db/db.json +9342 -0
  2359. package/bundles/mcp/node_modules/mime-db/index.js +12 -0
  2360. package/bundles/mcp/node_modules/mime-db/package.json +56 -0
  2361. package/bundles/mcp/node_modules/mime-types/HISTORY.md +428 -0
  2362. package/bundles/mcp/node_modules/mime-types/LICENSE +23 -0
  2363. package/bundles/mcp/node_modules/mime-types/README.md +126 -0
  2364. package/bundles/mcp/node_modules/mime-types/index.js +211 -0
  2365. package/bundles/mcp/node_modules/mime-types/mimeScore.js +57 -0
  2366. package/bundles/mcp/node_modules/mime-types/package.json +49 -0
  2367. package/bundles/mcp/node_modules/ms/index.js +162 -0
  2368. package/bundles/mcp/node_modules/ms/license.md +21 -0
  2369. package/bundles/mcp/node_modules/ms/package.json +38 -0
  2370. package/bundles/mcp/node_modules/ms/readme.md +59 -0
  2371. package/bundles/mcp/node_modules/negotiator/HISTORY.md +114 -0
  2372. package/bundles/mcp/node_modules/negotiator/LICENSE +24 -0
  2373. package/bundles/mcp/node_modules/negotiator/README.md +212 -0
  2374. package/bundles/mcp/node_modules/negotiator/index.js +83 -0
  2375. package/bundles/mcp/node_modules/negotiator/lib/charset.js +169 -0
  2376. package/bundles/mcp/node_modules/negotiator/lib/encoding.js +205 -0
  2377. package/bundles/mcp/node_modules/negotiator/lib/language.js +179 -0
  2378. package/bundles/mcp/node_modules/negotiator/lib/mediaType.js +294 -0
  2379. package/bundles/mcp/node_modules/negotiator/package.json +43 -0
  2380. package/bundles/mcp/node_modules/object-assign/index.js +90 -0
  2381. package/bundles/mcp/node_modules/object-assign/license +21 -0
  2382. package/bundles/mcp/node_modules/object-assign/package.json +42 -0
  2383. package/bundles/mcp/node_modules/object-assign/readme.md +61 -0
  2384. package/bundles/mcp/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  2385. package/bundles/mcp/node_modules/object-inspect/.nycrc +13 -0
  2386. package/bundles/mcp/node_modules/object-inspect/CHANGELOG.md +424 -0
  2387. package/bundles/mcp/node_modules/object-inspect/LICENSE +21 -0
  2388. package/bundles/mcp/node_modules/object-inspect/example/all.js +23 -0
  2389. package/bundles/mcp/node_modules/object-inspect/example/circular.js +6 -0
  2390. package/bundles/mcp/node_modules/object-inspect/example/fn.js +5 -0
  2391. package/bundles/mcp/node_modules/object-inspect/example/inspect.js +10 -0
  2392. package/bundles/mcp/node_modules/object-inspect/index.js +544 -0
  2393. package/bundles/mcp/node_modules/object-inspect/package-support.json +20 -0
  2394. package/bundles/mcp/node_modules/object-inspect/package.json +105 -0
  2395. package/bundles/mcp/node_modules/object-inspect/readme.markdown +84 -0
  2396. package/bundles/mcp/node_modules/object-inspect/test/bigint.js +58 -0
  2397. package/bundles/mcp/node_modules/object-inspect/test/browser/dom.js +15 -0
  2398. package/bundles/mcp/node_modules/object-inspect/test/circular.js +16 -0
  2399. package/bundles/mcp/node_modules/object-inspect/test/deep.js +12 -0
  2400. package/bundles/mcp/node_modules/object-inspect/test/element.js +53 -0
  2401. package/bundles/mcp/node_modules/object-inspect/test/err.js +48 -0
  2402. package/bundles/mcp/node_modules/object-inspect/test/fakes.js +29 -0
  2403. package/bundles/mcp/node_modules/object-inspect/test/fn.js +76 -0
  2404. package/bundles/mcp/node_modules/object-inspect/test/global.js +17 -0
  2405. package/bundles/mcp/node_modules/object-inspect/test/has.js +15 -0
  2406. package/bundles/mcp/node_modules/object-inspect/test/holes.js +15 -0
  2407. package/bundles/mcp/node_modules/object-inspect/test/indent-option.js +271 -0
  2408. package/bundles/mcp/node_modules/object-inspect/test/inspect.js +139 -0
  2409. package/bundles/mcp/node_modules/object-inspect/test/lowbyte.js +12 -0
  2410. package/bundles/mcp/node_modules/object-inspect/test/number.js +58 -0
  2411. package/bundles/mcp/node_modules/object-inspect/test/quoteStyle.js +26 -0
  2412. package/bundles/mcp/node_modules/object-inspect/test/toStringTag.js +40 -0
  2413. package/bundles/mcp/node_modules/object-inspect/test/undef.js +12 -0
  2414. package/bundles/mcp/node_modules/object-inspect/test/values.js +261 -0
  2415. package/bundles/mcp/node_modules/object-inspect/test-core-js.js +26 -0
  2416. package/bundles/mcp/node_modules/object-inspect/util.inspect.js +1 -0
  2417. package/bundles/mcp/node_modules/on-finished/HISTORY.md +98 -0
  2418. package/bundles/mcp/node_modules/on-finished/LICENSE +23 -0
  2419. package/bundles/mcp/node_modules/on-finished/README.md +162 -0
  2420. package/bundles/mcp/node_modules/on-finished/index.js +234 -0
  2421. package/bundles/mcp/node_modules/on-finished/package.json +39 -0
  2422. package/bundles/mcp/node_modules/once/LICENSE +15 -0
  2423. package/bundles/mcp/node_modules/once/README.md +79 -0
  2424. package/bundles/mcp/node_modules/once/once.js +42 -0
  2425. package/bundles/mcp/node_modules/once/package.json +33 -0
  2426. package/bundles/mcp/node_modules/parseurl/HISTORY.md +58 -0
  2427. package/bundles/mcp/node_modules/parseurl/LICENSE +24 -0
  2428. package/bundles/mcp/node_modules/parseurl/README.md +133 -0
  2429. package/bundles/mcp/node_modules/parseurl/index.js +158 -0
  2430. package/bundles/mcp/node_modules/parseurl/package.json +40 -0
  2431. package/bundles/mcp/node_modules/path-key/index.d.ts +40 -0
  2432. package/bundles/mcp/node_modules/path-key/index.js +16 -0
  2433. package/bundles/mcp/node_modules/path-key/license +9 -0
  2434. package/bundles/mcp/node_modules/path-key/package.json +39 -0
  2435. package/bundles/mcp/node_modules/path-key/readme.md +61 -0
  2436. package/bundles/mcp/node_modules/path-to-regexp/LICENSE +21 -0
  2437. package/bundles/mcp/node_modules/path-to-regexp/Readme.md +224 -0
  2438. package/bundles/mcp/node_modules/path-to-regexp/dist/index.d.ts +144 -0
  2439. package/bundles/mcp/node_modules/path-to-regexp/dist/index.js +409 -0
  2440. package/bundles/mcp/node_modules/path-to-regexp/dist/index.js.map +1 -0
  2441. package/bundles/mcp/node_modules/path-to-regexp/package.json +64 -0
  2442. package/bundles/mcp/node_modules/pkce-challenge/LICENSE +21 -0
  2443. package/bundles/mcp/node_modules/pkce-challenge/README.md +55 -0
  2444. package/bundles/mcp/node_modules/pkce-challenge/dist/index.browser.d.ts +19 -0
  2445. package/bundles/mcp/node_modules/pkce-challenge/dist/index.browser.js +72 -0
  2446. package/bundles/mcp/node_modules/pkce-challenge/dist/index.node.cjs +80 -0
  2447. package/bundles/mcp/node_modules/pkce-challenge/dist/index.node.d.cts +19 -0
  2448. package/bundles/mcp/node_modules/pkce-challenge/dist/index.node.d.ts +19 -0
  2449. package/bundles/mcp/node_modules/pkce-challenge/dist/index.node.js +75 -0
  2450. package/bundles/mcp/node_modules/pkce-challenge/package.json +58 -0
  2451. package/bundles/mcp/node_modules/proxy-addr/HISTORY.md +161 -0
  2452. package/bundles/mcp/node_modules/proxy-addr/LICENSE +22 -0
  2453. package/bundles/mcp/node_modules/proxy-addr/README.md +139 -0
  2454. package/bundles/mcp/node_modules/proxy-addr/index.js +327 -0
  2455. package/bundles/mcp/node_modules/proxy-addr/package.json +47 -0
  2456. package/bundles/mcp/node_modules/qs/.editorconfig +46 -0
  2457. package/bundles/mcp/node_modules/qs/.github/FUNDING.yml +12 -0
  2458. package/bundles/mcp/node_modules/qs/.github/SECURITY.md +11 -0
  2459. package/bundles/mcp/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  2460. package/bundles/mcp/node_modules/qs/.nycrc +13 -0
  2461. package/bundles/mcp/node_modules/qs/CHANGELOG.md +631 -0
  2462. package/bundles/mcp/node_modules/qs/LICENSE.md +29 -0
  2463. package/bundles/mcp/node_modules/qs/README.md +733 -0
  2464. package/bundles/mcp/node_modules/qs/dist/qs.js +141 -0
  2465. package/bundles/mcp/node_modules/qs/eslint.config.mjs +56 -0
  2466. package/bundles/mcp/node_modules/qs/lib/formats.js +23 -0
  2467. package/bundles/mcp/node_modules/qs/lib/index.js +11 -0
  2468. package/bundles/mcp/node_modules/qs/lib/parse.js +360 -0
  2469. package/bundles/mcp/node_modules/qs/lib/stringify.js +356 -0
  2470. package/bundles/mcp/node_modules/qs/lib/utils.js +320 -0
  2471. package/bundles/mcp/node_modules/qs/package.json +94 -0
  2472. package/bundles/mcp/node_modules/qs/test/empty-keys-cases.js +267 -0
  2473. package/bundles/mcp/node_modules/qs/test/parse.js +1396 -0
  2474. package/bundles/mcp/node_modules/qs/test/stringify.js +1310 -0
  2475. package/bundles/mcp/node_modules/qs/test/utils.js +381 -0
  2476. package/bundles/mcp/node_modules/range-parser/HISTORY.md +56 -0
  2477. package/bundles/mcp/node_modules/range-parser/LICENSE +23 -0
  2478. package/bundles/mcp/node_modules/range-parser/README.md +84 -0
  2479. package/bundles/mcp/node_modules/range-parser/index.js +162 -0
  2480. package/bundles/mcp/node_modules/range-parser/package.json +44 -0
  2481. package/bundles/mcp/node_modules/raw-body/LICENSE +22 -0
  2482. package/bundles/mcp/node_modules/raw-body/README.md +223 -0
  2483. package/bundles/mcp/node_modules/raw-body/index.d.ts +85 -0
  2484. package/bundles/mcp/node_modules/raw-body/index.js +336 -0
  2485. package/bundles/mcp/node_modules/raw-body/package.json +46 -0
  2486. package/bundles/mcp/node_modules/require-from-string/index.js +34 -0
  2487. package/bundles/mcp/node_modules/require-from-string/license +21 -0
  2488. package/bundles/mcp/node_modules/require-from-string/package.json +28 -0
  2489. package/bundles/mcp/node_modules/require-from-string/readme.md +56 -0
  2490. package/bundles/mcp/node_modules/router/HISTORY.md +228 -0
  2491. package/bundles/mcp/node_modules/router/LICENSE +23 -0
  2492. package/bundles/mcp/node_modules/router/README.md +416 -0
  2493. package/bundles/mcp/node_modules/router/index.js +748 -0
  2494. package/bundles/mcp/node_modules/router/lib/layer.js +247 -0
  2495. package/bundles/mcp/node_modules/router/lib/route.js +242 -0
  2496. package/bundles/mcp/node_modules/router/package.json +44 -0
  2497. package/bundles/mcp/node_modules/safer-buffer/LICENSE +21 -0
  2498. package/bundles/mcp/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  2499. package/bundles/mcp/node_modules/safer-buffer/Readme.md +156 -0
  2500. package/bundles/mcp/node_modules/safer-buffer/dangerous.js +58 -0
  2501. package/bundles/mcp/node_modules/safer-buffer/package.json +34 -0
  2502. package/bundles/mcp/node_modules/safer-buffer/safer.js +77 -0
  2503. package/bundles/mcp/node_modules/safer-buffer/tests.js +406 -0
  2504. package/bundles/mcp/node_modules/send/LICENSE +23 -0
  2505. package/bundles/mcp/node_modules/send/README.md +317 -0
  2506. package/bundles/mcp/node_modules/send/index.js +997 -0
  2507. package/bundles/mcp/node_modules/send/package.json +63 -0
  2508. package/bundles/mcp/node_modules/serve-static/LICENSE +25 -0
  2509. package/bundles/mcp/node_modules/serve-static/README.md +253 -0
  2510. package/bundles/mcp/node_modules/serve-static/index.js +208 -0
  2511. package/bundles/mcp/node_modules/serve-static/package.json +44 -0
  2512. package/bundles/mcp/node_modules/setprototypeof/LICENSE +13 -0
  2513. package/bundles/mcp/node_modules/setprototypeof/README.md +31 -0
  2514. package/bundles/mcp/node_modules/setprototypeof/index.d.ts +2 -0
  2515. package/bundles/mcp/node_modules/setprototypeof/index.js +17 -0
  2516. package/bundles/mcp/node_modules/setprototypeof/package.json +38 -0
  2517. package/bundles/mcp/node_modules/setprototypeof/test/index.js +24 -0
  2518. package/bundles/mcp/node_modules/shebang-command/index.js +19 -0
  2519. package/bundles/mcp/node_modules/shebang-command/license +9 -0
  2520. package/bundles/mcp/node_modules/shebang-command/package.json +34 -0
  2521. package/bundles/mcp/node_modules/shebang-command/readme.md +34 -0
  2522. package/bundles/mcp/node_modules/shebang-regex/index.d.ts +22 -0
  2523. package/bundles/mcp/node_modules/shebang-regex/index.js +2 -0
  2524. package/bundles/mcp/node_modules/shebang-regex/license +9 -0
  2525. package/bundles/mcp/node_modules/shebang-regex/package.json +35 -0
  2526. package/bundles/mcp/node_modules/shebang-regex/readme.md +33 -0
  2527. package/bundles/mcp/node_modules/side-channel/.editorconfig +9 -0
  2528. package/bundles/mcp/node_modules/side-channel/.github/FUNDING.yml +12 -0
  2529. package/bundles/mcp/node_modules/side-channel/.nycrc +13 -0
  2530. package/bundles/mcp/node_modules/side-channel/CHANGELOG.md +110 -0
  2531. package/bundles/mcp/node_modules/side-channel/LICENSE +21 -0
  2532. package/bundles/mcp/node_modules/side-channel/README.md +61 -0
  2533. package/bundles/mcp/node_modules/side-channel/index.d.ts +14 -0
  2534. package/bundles/mcp/node_modules/side-channel/index.js +43 -0
  2535. package/bundles/mcp/node_modules/side-channel/package.json +85 -0
  2536. package/bundles/mcp/node_modules/side-channel/test/index.js +104 -0
  2537. package/bundles/mcp/node_modules/side-channel-list/.editorconfig +9 -0
  2538. package/bundles/mcp/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  2539. package/bundles/mcp/node_modules/side-channel-list/.nycrc +13 -0
  2540. package/bundles/mcp/node_modules/side-channel-list/CHANGELOG.md +15 -0
  2541. package/bundles/mcp/node_modules/side-channel-list/LICENSE +21 -0
  2542. package/bundles/mcp/node_modules/side-channel-list/README.md +62 -0
  2543. package/bundles/mcp/node_modules/side-channel-list/index.d.ts +13 -0
  2544. package/bundles/mcp/node_modules/side-channel-list/index.js +113 -0
  2545. package/bundles/mcp/node_modules/side-channel-list/list.d.ts +14 -0
  2546. package/bundles/mcp/node_modules/side-channel-list/package.json +77 -0
  2547. package/bundles/mcp/node_modules/side-channel-list/test/index.js +104 -0
  2548. package/bundles/mcp/node_modules/side-channel-map/.editorconfig +9 -0
  2549. package/bundles/mcp/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  2550. package/bundles/mcp/node_modules/side-channel-map/.nycrc +13 -0
  2551. package/bundles/mcp/node_modules/side-channel-map/CHANGELOG.md +22 -0
  2552. package/bundles/mcp/node_modules/side-channel-map/LICENSE +21 -0
  2553. package/bundles/mcp/node_modules/side-channel-map/README.md +62 -0
  2554. package/bundles/mcp/node_modules/side-channel-map/index.d.ts +15 -0
  2555. package/bundles/mcp/node_modules/side-channel-map/index.js +68 -0
  2556. package/bundles/mcp/node_modules/side-channel-map/package.json +80 -0
  2557. package/bundles/mcp/node_modules/side-channel-map/test/index.js +114 -0
  2558. package/bundles/mcp/node_modules/side-channel-weakmap/.editorconfig +9 -0
  2559. package/bundles/mcp/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  2560. package/bundles/mcp/node_modules/side-channel-weakmap/.nycrc +13 -0
  2561. package/bundles/mcp/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  2562. package/bundles/mcp/node_modules/side-channel-weakmap/LICENSE +21 -0
  2563. package/bundles/mcp/node_modules/side-channel-weakmap/README.md +62 -0
  2564. package/bundles/mcp/node_modules/side-channel-weakmap/index.d.ts +15 -0
  2565. package/bundles/mcp/node_modules/side-channel-weakmap/index.js +84 -0
  2566. package/bundles/mcp/node_modules/side-channel-weakmap/package.json +87 -0
  2567. package/bundles/mcp/node_modules/side-channel-weakmap/test/index.js +114 -0
  2568. package/bundles/mcp/node_modules/statuses/HISTORY.md +87 -0
  2569. package/bundles/mcp/node_modules/statuses/LICENSE +23 -0
  2570. package/bundles/mcp/node_modules/statuses/README.md +139 -0
  2571. package/bundles/mcp/node_modules/statuses/codes.json +65 -0
  2572. package/bundles/mcp/node_modules/statuses/index.js +146 -0
  2573. package/bundles/mcp/node_modules/statuses/package.json +49 -0
  2574. package/bundles/mcp/node_modules/toidentifier/HISTORY.md +9 -0
  2575. package/bundles/mcp/node_modules/toidentifier/LICENSE +21 -0
  2576. package/bundles/mcp/node_modules/toidentifier/README.md +61 -0
  2577. package/bundles/mcp/node_modules/toidentifier/index.js +32 -0
  2578. package/bundles/mcp/node_modules/toidentifier/package.json +38 -0
  2579. package/bundles/mcp/node_modules/type-is/HISTORY.md +292 -0
  2580. package/bundles/mcp/node_modules/type-is/LICENSE +23 -0
  2581. package/bundles/mcp/node_modules/type-is/README.md +198 -0
  2582. package/bundles/mcp/node_modules/type-is/index.js +250 -0
  2583. package/bundles/mcp/node_modules/type-is/package.json +47 -0
  2584. package/bundles/mcp/node_modules/unpipe/HISTORY.md +4 -0
  2585. package/bundles/mcp/node_modules/unpipe/LICENSE +22 -0
  2586. package/bundles/mcp/node_modules/unpipe/README.md +43 -0
  2587. package/bundles/mcp/node_modules/unpipe/index.js +69 -0
  2588. package/bundles/mcp/node_modules/unpipe/package.json +27 -0
  2589. package/bundles/mcp/node_modules/vary/HISTORY.md +39 -0
  2590. package/bundles/mcp/node_modules/vary/LICENSE +22 -0
  2591. package/bundles/mcp/node_modules/vary/README.md +101 -0
  2592. package/bundles/mcp/node_modules/vary/index.js +149 -0
  2593. package/bundles/mcp/node_modules/vary/package.json +43 -0
  2594. package/bundles/mcp/node_modules/which/CHANGELOG.md +166 -0
  2595. package/bundles/mcp/node_modules/which/LICENSE +15 -0
  2596. package/bundles/mcp/node_modules/which/README.md +54 -0
  2597. package/bundles/mcp/node_modules/which/bin/node-which +52 -0
  2598. package/bundles/mcp/node_modules/which/package.json +43 -0
  2599. package/bundles/mcp/node_modules/which/which.js +125 -0
  2600. package/bundles/mcp/node_modules/wrappy/LICENSE +15 -0
  2601. package/bundles/mcp/node_modules/wrappy/README.md +36 -0
  2602. package/bundles/mcp/node_modules/wrappy/package.json +29 -0
  2603. package/bundles/mcp/node_modules/wrappy/wrappy.js +33 -0
  2604. package/bundles/mcp/node_modules/zod/LICENSE +21 -0
  2605. package/bundles/mcp/node_modules/zod/README.md +208 -0
  2606. package/bundles/mcp/node_modules/zod/index.cjs +33 -0
  2607. package/bundles/mcp/node_modules/zod/index.d.cts +4 -0
  2608. package/bundles/mcp/node_modules/zod/index.d.ts +4 -0
  2609. package/bundles/mcp/node_modules/zod/index.js +4 -0
  2610. package/bundles/mcp/node_modules/zod/locales/index.cjs +17 -0
  2611. package/bundles/mcp/node_modules/zod/locales/index.d.cts +1 -0
  2612. package/bundles/mcp/node_modules/zod/locales/index.d.ts +1 -0
  2613. package/bundles/mcp/node_modules/zod/locales/index.js +1 -0
  2614. package/bundles/mcp/node_modules/zod/locales/package.json +6 -0
  2615. package/bundles/mcp/node_modules/zod/mini/index.cjs +17 -0
  2616. package/bundles/mcp/node_modules/zod/mini/index.d.cts +1 -0
  2617. package/bundles/mcp/node_modules/zod/mini/index.d.ts +1 -0
  2618. package/bundles/mcp/node_modules/zod/mini/index.js +1 -0
  2619. package/bundles/mcp/node_modules/zod/mini/package.json +6 -0
  2620. package/bundles/mcp/node_modules/zod/package.json +135 -0
  2621. package/bundles/mcp/node_modules/zod/v3/ZodError.cjs +138 -0
  2622. package/bundles/mcp/node_modules/zod/v3/ZodError.d.cts +164 -0
  2623. package/bundles/mcp/node_modules/zod/v3/ZodError.d.ts +164 -0
  2624. package/bundles/mcp/node_modules/zod/v3/ZodError.js +133 -0
  2625. package/bundles/mcp/node_modules/zod/v3/errors.cjs +17 -0
  2626. package/bundles/mcp/node_modules/zod/v3/errors.d.cts +5 -0
  2627. package/bundles/mcp/node_modules/zod/v3/errors.d.ts +5 -0
  2628. package/bundles/mcp/node_modules/zod/v3/errors.js +9 -0
  2629. package/bundles/mcp/node_modules/zod/v3/external.cjs +22 -0
  2630. package/bundles/mcp/node_modules/zod/v3/external.d.cts +6 -0
  2631. package/bundles/mcp/node_modules/zod/v3/external.d.ts +6 -0
  2632. package/bundles/mcp/node_modules/zod/v3/external.js +6 -0
  2633. package/bundles/mcp/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  2634. package/bundles/mcp/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  2635. package/bundles/mcp/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  2636. package/bundles/mcp/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  2637. package/bundles/mcp/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  2638. package/bundles/mcp/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  2639. package/bundles/mcp/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  2640. package/bundles/mcp/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  2641. package/bundles/mcp/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  2642. package/bundles/mcp/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  2643. package/bundles/mcp/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  2644. package/bundles/mcp/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  2645. package/bundles/mcp/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  2646. package/bundles/mcp/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  2647. package/bundles/mcp/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  2648. package/bundles/mcp/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  2649. package/bundles/mcp/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  2650. package/bundles/mcp/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  2651. package/bundles/mcp/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  2652. package/bundles/mcp/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  2653. package/bundles/mcp/node_modules/zod/v3/helpers/util.cjs +137 -0
  2654. package/bundles/mcp/node_modules/zod/v3/helpers/util.d.cts +85 -0
  2655. package/bundles/mcp/node_modules/zod/v3/helpers/util.d.ts +85 -0
  2656. package/bundles/mcp/node_modules/zod/v3/helpers/util.js +133 -0
  2657. package/bundles/mcp/node_modules/zod/v3/index.cjs +33 -0
  2658. package/bundles/mcp/node_modules/zod/v3/index.d.cts +4 -0
  2659. package/bundles/mcp/node_modules/zod/v3/index.d.ts +4 -0
  2660. package/bundles/mcp/node_modules/zod/v3/index.js +4 -0
  2661. package/bundles/mcp/node_modules/zod/v3/locales/en.cjs +112 -0
  2662. package/bundles/mcp/node_modules/zod/v3/locales/en.d.cts +3 -0
  2663. package/bundles/mcp/node_modules/zod/v3/locales/en.d.ts +3 -0
  2664. package/bundles/mcp/node_modules/zod/v3/locales/en.js +109 -0
  2665. package/bundles/mcp/node_modules/zod/v3/package.json +6 -0
  2666. package/bundles/mcp/node_modules/zod/v3/standard-schema.cjs +2 -0
  2667. package/bundles/mcp/node_modules/zod/v3/standard-schema.d.cts +102 -0
  2668. package/bundles/mcp/node_modules/zod/v3/standard-schema.d.ts +102 -0
  2669. package/bundles/mcp/node_modules/zod/v3/standard-schema.js +1 -0
  2670. package/bundles/mcp/node_modules/zod/v3/types.cjs +3777 -0
  2671. package/bundles/mcp/node_modules/zod/v3/types.d.cts +1034 -0
  2672. package/bundles/mcp/node_modules/zod/v3/types.d.ts +1034 -0
  2673. package/bundles/mcp/node_modules/zod/v3/types.js +3695 -0
  2674. package/bundles/mcp/node_modules/zod/v4/classic/checks.cjs +33 -0
  2675. package/bundles/mcp/node_modules/zod/v4/classic/checks.d.cts +1 -0
  2676. package/bundles/mcp/node_modules/zod/v4/classic/checks.d.ts +1 -0
  2677. package/bundles/mcp/node_modules/zod/v4/classic/checks.js +1 -0
  2678. package/bundles/mcp/node_modules/zod/v4/classic/coerce.cjs +47 -0
  2679. package/bundles/mcp/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  2680. package/bundles/mcp/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  2681. package/bundles/mcp/node_modules/zod/v4/classic/coerce.js +17 -0
  2682. package/bundles/mcp/node_modules/zod/v4/classic/compat.cjs +61 -0
  2683. package/bundles/mcp/node_modules/zod/v4/classic/compat.d.cts +50 -0
  2684. package/bundles/mcp/node_modules/zod/v4/classic/compat.d.ts +50 -0
  2685. package/bundles/mcp/node_modules/zod/v4/classic/compat.js +31 -0
  2686. package/bundles/mcp/node_modules/zod/v4/classic/errors.cjs +74 -0
  2687. package/bundles/mcp/node_modules/zod/v4/classic/errors.d.cts +30 -0
  2688. package/bundles/mcp/node_modules/zod/v4/classic/errors.d.ts +30 -0
  2689. package/bundles/mcp/node_modules/zod/v4/classic/errors.js +48 -0
  2690. package/bundles/mcp/node_modules/zod/v4/classic/external.cjs +73 -0
  2691. package/bundles/mcp/node_modules/zod/v4/classic/external.d.cts +15 -0
  2692. package/bundles/mcp/node_modules/zod/v4/classic/external.d.ts +15 -0
  2693. package/bundles/mcp/node_modules/zod/v4/classic/external.js +20 -0
  2694. package/bundles/mcp/node_modules/zod/v4/classic/from-json-schema.cjs +610 -0
  2695. package/bundles/mcp/node_modules/zod/v4/classic/from-json-schema.d.cts +12 -0
  2696. package/bundles/mcp/node_modules/zod/v4/classic/from-json-schema.d.ts +12 -0
  2697. package/bundles/mcp/node_modules/zod/v4/classic/from-json-schema.js +584 -0
  2698. package/bundles/mcp/node_modules/zod/v4/classic/index.cjs +33 -0
  2699. package/bundles/mcp/node_modules/zod/v4/classic/index.d.cts +4 -0
  2700. package/bundles/mcp/node_modules/zod/v4/classic/index.d.ts +4 -0
  2701. package/bundles/mcp/node_modules/zod/v4/classic/index.js +4 -0
  2702. package/bundles/mcp/node_modules/zod/v4/classic/iso.cjs +60 -0
  2703. package/bundles/mcp/node_modules/zod/v4/classic/iso.d.cts +22 -0
  2704. package/bundles/mcp/node_modules/zod/v4/classic/iso.d.ts +22 -0
  2705. package/bundles/mcp/node_modules/zod/v4/classic/iso.js +30 -0
  2706. package/bundles/mcp/node_modules/zod/v4/classic/package.json +6 -0
  2707. package/bundles/mcp/node_modules/zod/v4/classic/parse.cjs +41 -0
  2708. package/bundles/mcp/node_modules/zod/v4/classic/parse.d.cts +31 -0
  2709. package/bundles/mcp/node_modules/zod/v4/classic/parse.d.ts +31 -0
  2710. package/bundles/mcp/node_modules/zod/v4/classic/parse.js +15 -0
  2711. package/bundles/mcp/node_modules/zod/v4/classic/schemas.cjs +1272 -0
  2712. package/bundles/mcp/node_modules/zod/v4/classic/schemas.d.cts +739 -0
  2713. package/bundles/mcp/node_modules/zod/v4/classic/schemas.d.ts +739 -0
  2714. package/bundles/mcp/node_modules/zod/v4/classic/schemas.js +1157 -0
  2715. package/bundles/mcp/node_modules/zod/v4/core/api.cjs +1222 -0
  2716. package/bundles/mcp/node_modules/zod/v4/core/api.d.cts +304 -0
  2717. package/bundles/mcp/node_modules/zod/v4/core/api.d.ts +304 -0
  2718. package/bundles/mcp/node_modules/zod/v4/core/api.js +1082 -0
  2719. package/bundles/mcp/node_modules/zod/v4/core/checks.cjs +601 -0
  2720. package/bundles/mcp/node_modules/zod/v4/core/checks.d.cts +278 -0
  2721. package/bundles/mcp/node_modules/zod/v4/core/checks.d.ts +278 -0
  2722. package/bundles/mcp/node_modules/zod/v4/core/checks.js +575 -0
  2723. package/bundles/mcp/node_modules/zod/v4/core/core.cjs +83 -0
  2724. package/bundles/mcp/node_modules/zod/v4/core/core.d.cts +70 -0
  2725. package/bundles/mcp/node_modules/zod/v4/core/core.d.ts +70 -0
  2726. package/bundles/mcp/node_modules/zod/v4/core/core.js +76 -0
  2727. package/bundles/mcp/node_modules/zod/v4/core/doc.cjs +39 -0
  2728. package/bundles/mcp/node_modules/zod/v4/core/doc.d.cts +14 -0
  2729. package/bundles/mcp/node_modules/zod/v4/core/doc.d.ts +14 -0
  2730. package/bundles/mcp/node_modules/zod/v4/core/doc.js +35 -0
  2731. package/bundles/mcp/node_modules/zod/v4/core/errors.cjs +213 -0
  2732. package/bundles/mcp/node_modules/zod/v4/core/errors.d.cts +220 -0
  2733. package/bundles/mcp/node_modules/zod/v4/core/errors.d.ts +220 -0
  2734. package/bundles/mcp/node_modules/zod/v4/core/errors.js +182 -0
  2735. package/bundles/mcp/node_modules/zod/v4/core/index.cjs +47 -0
  2736. package/bundles/mcp/node_modules/zod/v4/core/index.d.cts +16 -0
  2737. package/bundles/mcp/node_modules/zod/v4/core/index.d.ts +16 -0
  2738. package/bundles/mcp/node_modules/zod/v4/core/index.js +16 -0
  2739. package/bundles/mcp/node_modules/zod/v4/core/json-schema-generator.cjs +99 -0
  2740. package/bundles/mcp/node_modules/zod/v4/core/json-schema-generator.d.cts +65 -0
  2741. package/bundles/mcp/node_modules/zod/v4/core/json-schema-generator.d.ts +65 -0
  2742. package/bundles/mcp/node_modules/zod/v4/core/json-schema-generator.js +95 -0
  2743. package/bundles/mcp/node_modules/zod/v4/core/json-schema-processors.cjs +648 -0
  2744. package/bundles/mcp/node_modules/zod/v4/core/json-schema-processors.d.cts +49 -0
  2745. package/bundles/mcp/node_modules/zod/v4/core/json-schema-processors.d.ts +49 -0
  2746. package/bundles/mcp/node_modules/zod/v4/core/json-schema-processors.js +605 -0
  2747. package/bundles/mcp/node_modules/zod/v4/core/json-schema.cjs +2 -0
  2748. package/bundles/mcp/node_modules/zod/v4/core/json-schema.d.cts +88 -0
  2749. package/bundles/mcp/node_modules/zod/v4/core/json-schema.d.ts +88 -0
  2750. package/bundles/mcp/node_modules/zod/v4/core/json-schema.js +1 -0
  2751. package/bundles/mcp/node_modules/zod/v4/core/package.json +6 -0
  2752. package/bundles/mcp/node_modules/zod/v4/core/parse.cjs +131 -0
  2753. package/bundles/mcp/node_modules/zod/v4/core/parse.d.cts +49 -0
  2754. package/bundles/mcp/node_modules/zod/v4/core/parse.d.ts +49 -0
  2755. package/bundles/mcp/node_modules/zod/v4/core/parse.js +93 -0
  2756. package/bundles/mcp/node_modules/zod/v4/core/regexes.cjs +166 -0
  2757. package/bundles/mcp/node_modules/zod/v4/core/regexes.d.cts +79 -0
  2758. package/bundles/mcp/node_modules/zod/v4/core/regexes.d.ts +79 -0
  2759. package/bundles/mcp/node_modules/zod/v4/core/regexes.js +133 -0
  2760. package/bundles/mcp/node_modules/zod/v4/core/registries.cjs +56 -0
  2761. package/bundles/mcp/node_modules/zod/v4/core/registries.d.cts +35 -0
  2762. package/bundles/mcp/node_modules/zod/v4/core/registries.d.ts +35 -0
  2763. package/bundles/mcp/node_modules/zod/v4/core/registries.js +51 -0
  2764. package/bundles/mcp/node_modules/zod/v4/core/schemas.cjs +2126 -0
  2765. package/bundles/mcp/node_modules/zod/v4/core/schemas.d.cts +1146 -0
  2766. package/bundles/mcp/node_modules/zod/v4/core/schemas.d.ts +1146 -0
  2767. package/bundles/mcp/node_modules/zod/v4/core/schemas.js +2095 -0
  2768. package/bundles/mcp/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  2769. package/bundles/mcp/node_modules/zod/v4/core/standard-schema.d.cts +126 -0
  2770. package/bundles/mcp/node_modules/zod/v4/core/standard-schema.d.ts +126 -0
  2771. package/bundles/mcp/node_modules/zod/v4/core/standard-schema.js +1 -0
  2772. package/bundles/mcp/node_modules/zod/v4/core/to-json-schema.cjs +446 -0
  2773. package/bundles/mcp/node_modules/zod/v4/core/to-json-schema.d.cts +114 -0
  2774. package/bundles/mcp/node_modules/zod/v4/core/to-json-schema.d.ts +114 -0
  2775. package/bundles/mcp/node_modules/zod/v4/core/to-json-schema.js +437 -0
  2776. package/bundles/mcp/node_modules/zod/v4/core/util.cjs +710 -0
  2777. package/bundles/mcp/node_modules/zod/v4/core/util.d.cts +199 -0
  2778. package/bundles/mcp/node_modules/zod/v4/core/util.d.ts +199 -0
  2779. package/bundles/mcp/node_modules/zod/v4/core/util.js +651 -0
  2780. package/bundles/mcp/node_modules/zod/v4/core/versions.cjs +8 -0
  2781. package/bundles/mcp/node_modules/zod/v4/core/versions.d.cts +5 -0
  2782. package/bundles/mcp/node_modules/zod/v4/core/versions.d.ts +5 -0
  2783. package/bundles/mcp/node_modules/zod/v4/core/versions.js +5 -0
  2784. package/bundles/mcp/node_modules/zod/v4/index.cjs +22 -0
  2785. package/bundles/mcp/node_modules/zod/v4/index.d.cts +3 -0
  2786. package/bundles/mcp/node_modules/zod/v4/index.d.ts +3 -0
  2787. package/bundles/mcp/node_modules/zod/v4/index.js +3 -0
  2788. package/bundles/mcp/node_modules/zod/v4/locales/ar.cjs +133 -0
  2789. package/bundles/mcp/node_modules/zod/v4/locales/ar.d.cts +5 -0
  2790. package/bundles/mcp/node_modules/zod/v4/locales/ar.d.ts +4 -0
  2791. package/bundles/mcp/node_modules/zod/v4/locales/ar.js +106 -0
  2792. package/bundles/mcp/node_modules/zod/v4/locales/az.cjs +132 -0
  2793. package/bundles/mcp/node_modules/zod/v4/locales/az.d.cts +5 -0
  2794. package/bundles/mcp/node_modules/zod/v4/locales/az.d.ts +4 -0
  2795. package/bundles/mcp/node_modules/zod/v4/locales/az.js +105 -0
  2796. package/bundles/mcp/node_modules/zod/v4/locales/be.cjs +183 -0
  2797. package/bundles/mcp/node_modules/zod/v4/locales/be.d.cts +5 -0
  2798. package/bundles/mcp/node_modules/zod/v4/locales/be.d.ts +4 -0
  2799. package/bundles/mcp/node_modules/zod/v4/locales/be.js +156 -0
  2800. package/bundles/mcp/node_modules/zod/v4/locales/bg.cjs +147 -0
  2801. package/bundles/mcp/node_modules/zod/v4/locales/bg.d.cts +5 -0
  2802. package/bundles/mcp/node_modules/zod/v4/locales/bg.d.ts +4 -0
  2803. package/bundles/mcp/node_modules/zod/v4/locales/bg.js +120 -0
  2804. package/bundles/mcp/node_modules/zod/v4/locales/ca.cjs +134 -0
  2805. package/bundles/mcp/node_modules/zod/v4/locales/ca.d.cts +5 -0
  2806. package/bundles/mcp/node_modules/zod/v4/locales/ca.d.ts +4 -0
  2807. package/bundles/mcp/node_modules/zod/v4/locales/ca.js +107 -0
  2808. package/bundles/mcp/node_modules/zod/v4/locales/cs.cjs +138 -0
  2809. package/bundles/mcp/node_modules/zod/v4/locales/cs.d.cts +5 -0
  2810. package/bundles/mcp/node_modules/zod/v4/locales/cs.d.ts +4 -0
  2811. package/bundles/mcp/node_modules/zod/v4/locales/cs.js +111 -0
  2812. package/bundles/mcp/node_modules/zod/v4/locales/da.cjs +142 -0
  2813. package/bundles/mcp/node_modules/zod/v4/locales/da.d.cts +5 -0
  2814. package/bundles/mcp/node_modules/zod/v4/locales/da.d.ts +4 -0
  2815. package/bundles/mcp/node_modules/zod/v4/locales/da.js +115 -0
  2816. package/bundles/mcp/node_modules/zod/v4/locales/de.cjs +135 -0
  2817. package/bundles/mcp/node_modules/zod/v4/locales/de.d.cts +5 -0
  2818. package/bundles/mcp/node_modules/zod/v4/locales/de.d.ts +4 -0
  2819. package/bundles/mcp/node_modules/zod/v4/locales/de.js +108 -0
  2820. package/bundles/mcp/node_modules/zod/v4/locales/en.cjs +136 -0
  2821. package/bundles/mcp/node_modules/zod/v4/locales/en.d.cts +5 -0
  2822. package/bundles/mcp/node_modules/zod/v4/locales/en.d.ts +4 -0
  2823. package/bundles/mcp/node_modules/zod/v4/locales/en.js +109 -0
  2824. package/bundles/mcp/node_modules/zod/v4/locales/eo.cjs +136 -0
  2825. package/bundles/mcp/node_modules/zod/v4/locales/eo.d.cts +5 -0
  2826. package/bundles/mcp/node_modules/zod/v4/locales/eo.d.ts +4 -0
  2827. package/bundles/mcp/node_modules/zod/v4/locales/eo.js +109 -0
  2828. package/bundles/mcp/node_modules/zod/v4/locales/es.cjs +159 -0
  2829. package/bundles/mcp/node_modules/zod/v4/locales/es.d.cts +5 -0
  2830. package/bundles/mcp/node_modules/zod/v4/locales/es.d.ts +4 -0
  2831. package/bundles/mcp/node_modules/zod/v4/locales/es.js +132 -0
  2832. package/bundles/mcp/node_modules/zod/v4/locales/fa.cjs +141 -0
  2833. package/bundles/mcp/node_modules/zod/v4/locales/fa.d.cts +5 -0
  2834. package/bundles/mcp/node_modules/zod/v4/locales/fa.d.ts +4 -0
  2835. package/bundles/mcp/node_modules/zod/v4/locales/fa.js +114 -0
  2836. package/bundles/mcp/node_modules/zod/v4/locales/fi.cjs +139 -0
  2837. package/bundles/mcp/node_modules/zod/v4/locales/fi.d.cts +5 -0
  2838. package/bundles/mcp/node_modules/zod/v4/locales/fi.d.ts +4 -0
  2839. package/bundles/mcp/node_modules/zod/v4/locales/fi.js +112 -0
  2840. package/bundles/mcp/node_modules/zod/v4/locales/fr-CA.cjs +134 -0
  2841. package/bundles/mcp/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
  2842. package/bundles/mcp/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  2843. package/bundles/mcp/node_modules/zod/v4/locales/fr-CA.js +107 -0
  2844. package/bundles/mcp/node_modules/zod/v4/locales/fr.cjs +135 -0
  2845. package/bundles/mcp/node_modules/zod/v4/locales/fr.d.cts +5 -0
  2846. package/bundles/mcp/node_modules/zod/v4/locales/fr.d.ts +4 -0
  2847. package/bundles/mcp/node_modules/zod/v4/locales/fr.js +108 -0
  2848. package/bundles/mcp/node_modules/zod/v4/locales/he.cjs +241 -0
  2849. package/bundles/mcp/node_modules/zod/v4/locales/he.d.cts +5 -0
  2850. package/bundles/mcp/node_modules/zod/v4/locales/he.d.ts +4 -0
  2851. package/bundles/mcp/node_modules/zod/v4/locales/he.js +214 -0
  2852. package/bundles/mcp/node_modules/zod/v4/locales/hu.cjs +135 -0
  2853. package/bundles/mcp/node_modules/zod/v4/locales/hu.d.cts +5 -0
  2854. package/bundles/mcp/node_modules/zod/v4/locales/hu.d.ts +4 -0
  2855. package/bundles/mcp/node_modules/zod/v4/locales/hu.js +108 -0
  2856. package/bundles/mcp/node_modules/zod/v4/locales/hy.cjs +174 -0
  2857. package/bundles/mcp/node_modules/zod/v4/locales/hy.d.cts +5 -0
  2858. package/bundles/mcp/node_modules/zod/v4/locales/hy.d.ts +4 -0
  2859. package/bundles/mcp/node_modules/zod/v4/locales/hy.js +147 -0
  2860. package/bundles/mcp/node_modules/zod/v4/locales/id.cjs +133 -0
  2861. package/bundles/mcp/node_modules/zod/v4/locales/id.d.cts +5 -0
  2862. package/bundles/mcp/node_modules/zod/v4/locales/id.d.ts +4 -0
  2863. package/bundles/mcp/node_modules/zod/v4/locales/id.js +106 -0
  2864. package/bundles/mcp/node_modules/zod/v4/locales/index.cjs +104 -0
  2865. package/bundles/mcp/node_modules/zod/v4/locales/index.d.cts +49 -0
  2866. package/bundles/mcp/node_modules/zod/v4/locales/index.d.ts +49 -0
  2867. package/bundles/mcp/node_modules/zod/v4/locales/index.js +49 -0
  2868. package/bundles/mcp/node_modules/zod/v4/locales/is.cjs +136 -0
  2869. package/bundles/mcp/node_modules/zod/v4/locales/is.d.cts +5 -0
  2870. package/bundles/mcp/node_modules/zod/v4/locales/is.d.ts +4 -0
  2871. package/bundles/mcp/node_modules/zod/v4/locales/is.js +109 -0
  2872. package/bundles/mcp/node_modules/zod/v4/locales/it.cjs +135 -0
  2873. package/bundles/mcp/node_modules/zod/v4/locales/it.d.cts +5 -0
  2874. package/bundles/mcp/node_modules/zod/v4/locales/it.d.ts +4 -0
  2875. package/bundles/mcp/node_modules/zod/v4/locales/it.js +108 -0
  2876. package/bundles/mcp/node_modules/zod/v4/locales/ja.cjs +134 -0
  2877. package/bundles/mcp/node_modules/zod/v4/locales/ja.d.cts +5 -0
  2878. package/bundles/mcp/node_modules/zod/v4/locales/ja.d.ts +4 -0
  2879. package/bundles/mcp/node_modules/zod/v4/locales/ja.js +107 -0
  2880. package/bundles/mcp/node_modules/zod/v4/locales/ka.cjs +139 -0
  2881. package/bundles/mcp/node_modules/zod/v4/locales/ka.d.cts +5 -0
  2882. package/bundles/mcp/node_modules/zod/v4/locales/ka.d.ts +4 -0
  2883. package/bundles/mcp/node_modules/zod/v4/locales/ka.js +112 -0
  2884. package/bundles/mcp/node_modules/zod/v4/locales/kh.cjs +12 -0
  2885. package/bundles/mcp/node_modules/zod/v4/locales/kh.d.cts +5 -0
  2886. package/bundles/mcp/node_modules/zod/v4/locales/kh.d.ts +5 -0
  2887. package/bundles/mcp/node_modules/zod/v4/locales/kh.js +5 -0
  2888. package/bundles/mcp/node_modules/zod/v4/locales/km.cjs +137 -0
  2889. package/bundles/mcp/node_modules/zod/v4/locales/km.d.cts +5 -0
  2890. package/bundles/mcp/node_modules/zod/v4/locales/km.d.ts +4 -0
  2891. package/bundles/mcp/node_modules/zod/v4/locales/km.js +110 -0
  2892. package/bundles/mcp/node_modules/zod/v4/locales/ko.cjs +138 -0
  2893. package/bundles/mcp/node_modules/zod/v4/locales/ko.d.cts +5 -0
  2894. package/bundles/mcp/node_modules/zod/v4/locales/ko.d.ts +4 -0
  2895. package/bundles/mcp/node_modules/zod/v4/locales/ko.js +111 -0
  2896. package/bundles/mcp/node_modules/zod/v4/locales/lt.cjs +230 -0
  2897. package/bundles/mcp/node_modules/zod/v4/locales/lt.d.cts +5 -0
  2898. package/bundles/mcp/node_modules/zod/v4/locales/lt.d.ts +4 -0
  2899. package/bundles/mcp/node_modules/zod/v4/locales/lt.js +203 -0
  2900. package/bundles/mcp/node_modules/zod/v4/locales/mk.cjs +136 -0
  2901. package/bundles/mcp/node_modules/zod/v4/locales/mk.d.cts +5 -0
  2902. package/bundles/mcp/node_modules/zod/v4/locales/mk.d.ts +4 -0
  2903. package/bundles/mcp/node_modules/zod/v4/locales/mk.js +109 -0
  2904. package/bundles/mcp/node_modules/zod/v4/locales/ms.cjs +134 -0
  2905. package/bundles/mcp/node_modules/zod/v4/locales/ms.d.cts +5 -0
  2906. package/bundles/mcp/node_modules/zod/v4/locales/ms.d.ts +4 -0
  2907. package/bundles/mcp/node_modules/zod/v4/locales/ms.js +107 -0
  2908. package/bundles/mcp/node_modules/zod/v4/locales/nl.cjs +137 -0
  2909. package/bundles/mcp/node_modules/zod/v4/locales/nl.d.cts +5 -0
  2910. package/bundles/mcp/node_modules/zod/v4/locales/nl.d.ts +4 -0
  2911. package/bundles/mcp/node_modules/zod/v4/locales/nl.js +110 -0
  2912. package/bundles/mcp/node_modules/zod/v4/locales/no.cjs +135 -0
  2913. package/bundles/mcp/node_modules/zod/v4/locales/no.d.cts +5 -0
  2914. package/bundles/mcp/node_modules/zod/v4/locales/no.d.ts +4 -0
  2915. package/bundles/mcp/node_modules/zod/v4/locales/no.js +108 -0
  2916. package/bundles/mcp/node_modules/zod/v4/locales/ota.cjs +136 -0
  2917. package/bundles/mcp/node_modules/zod/v4/locales/ota.d.cts +5 -0
  2918. package/bundles/mcp/node_modules/zod/v4/locales/ota.d.ts +4 -0
  2919. package/bundles/mcp/node_modules/zod/v4/locales/ota.js +109 -0
  2920. package/bundles/mcp/node_modules/zod/v4/locales/package.json +6 -0
  2921. package/bundles/mcp/node_modules/zod/v4/locales/pl.cjs +136 -0
  2922. package/bundles/mcp/node_modules/zod/v4/locales/pl.d.cts +5 -0
  2923. package/bundles/mcp/node_modules/zod/v4/locales/pl.d.ts +4 -0
  2924. package/bundles/mcp/node_modules/zod/v4/locales/pl.js +109 -0
  2925. package/bundles/mcp/node_modules/zod/v4/locales/ps.cjs +141 -0
  2926. package/bundles/mcp/node_modules/zod/v4/locales/ps.d.cts +5 -0
  2927. package/bundles/mcp/node_modules/zod/v4/locales/ps.d.ts +4 -0
  2928. package/bundles/mcp/node_modules/zod/v4/locales/ps.js +114 -0
  2929. package/bundles/mcp/node_modules/zod/v4/locales/pt.cjs +135 -0
  2930. package/bundles/mcp/node_modules/zod/v4/locales/pt.d.cts +5 -0
  2931. package/bundles/mcp/node_modules/zod/v4/locales/pt.d.ts +4 -0
  2932. package/bundles/mcp/node_modules/zod/v4/locales/pt.js +108 -0
  2933. package/bundles/mcp/node_modules/zod/v4/locales/ru.cjs +183 -0
  2934. package/bundles/mcp/node_modules/zod/v4/locales/ru.d.cts +5 -0
  2935. package/bundles/mcp/node_modules/zod/v4/locales/ru.d.ts +4 -0
  2936. package/bundles/mcp/node_modules/zod/v4/locales/ru.js +156 -0
  2937. package/bundles/mcp/node_modules/zod/v4/locales/sl.cjs +136 -0
  2938. package/bundles/mcp/node_modules/zod/v4/locales/sl.d.cts +5 -0
  2939. package/bundles/mcp/node_modules/zod/v4/locales/sl.d.ts +4 -0
  2940. package/bundles/mcp/node_modules/zod/v4/locales/sl.js +109 -0
  2941. package/bundles/mcp/node_modules/zod/v4/locales/sv.cjs +137 -0
  2942. package/bundles/mcp/node_modules/zod/v4/locales/sv.d.cts +5 -0
  2943. package/bundles/mcp/node_modules/zod/v4/locales/sv.d.ts +4 -0
  2944. package/bundles/mcp/node_modules/zod/v4/locales/sv.js +110 -0
  2945. package/bundles/mcp/node_modules/zod/v4/locales/ta.cjs +137 -0
  2946. package/bundles/mcp/node_modules/zod/v4/locales/ta.d.cts +5 -0
  2947. package/bundles/mcp/node_modules/zod/v4/locales/ta.d.ts +4 -0
  2948. package/bundles/mcp/node_modules/zod/v4/locales/ta.js +110 -0
  2949. package/bundles/mcp/node_modules/zod/v4/locales/th.cjs +137 -0
  2950. package/bundles/mcp/node_modules/zod/v4/locales/th.d.cts +5 -0
  2951. package/bundles/mcp/node_modules/zod/v4/locales/th.d.ts +4 -0
  2952. package/bundles/mcp/node_modules/zod/v4/locales/th.js +110 -0
  2953. package/bundles/mcp/node_modules/zod/v4/locales/tr.cjs +132 -0
  2954. package/bundles/mcp/node_modules/zod/v4/locales/tr.d.cts +5 -0
  2955. package/bundles/mcp/node_modules/zod/v4/locales/tr.d.ts +4 -0
  2956. package/bundles/mcp/node_modules/zod/v4/locales/tr.js +105 -0
  2957. package/bundles/mcp/node_modules/zod/v4/locales/ua.cjs +12 -0
  2958. package/bundles/mcp/node_modules/zod/v4/locales/ua.d.cts +5 -0
  2959. package/bundles/mcp/node_modules/zod/v4/locales/ua.d.ts +5 -0
  2960. package/bundles/mcp/node_modules/zod/v4/locales/ua.js +5 -0
  2961. package/bundles/mcp/node_modules/zod/v4/locales/uk.cjs +135 -0
  2962. package/bundles/mcp/node_modules/zod/v4/locales/uk.d.cts +5 -0
  2963. package/bundles/mcp/node_modules/zod/v4/locales/uk.d.ts +4 -0
  2964. package/bundles/mcp/node_modules/zod/v4/locales/uk.js +108 -0
  2965. package/bundles/mcp/node_modules/zod/v4/locales/ur.cjs +137 -0
  2966. package/bundles/mcp/node_modules/zod/v4/locales/ur.d.cts +5 -0
  2967. package/bundles/mcp/node_modules/zod/v4/locales/ur.d.ts +4 -0
  2968. package/bundles/mcp/node_modules/zod/v4/locales/ur.js +110 -0
  2969. package/bundles/mcp/node_modules/zod/v4/locales/uz.cjs +136 -0
  2970. package/bundles/mcp/node_modules/zod/v4/locales/uz.d.cts +5 -0
  2971. package/bundles/mcp/node_modules/zod/v4/locales/uz.d.ts +4 -0
  2972. package/bundles/mcp/node_modules/zod/v4/locales/uz.js +109 -0
  2973. package/bundles/mcp/node_modules/zod/v4/locales/vi.cjs +135 -0
  2974. package/bundles/mcp/node_modules/zod/v4/locales/vi.d.cts +5 -0
  2975. package/bundles/mcp/node_modules/zod/v4/locales/vi.d.ts +4 -0
  2976. package/bundles/mcp/node_modules/zod/v4/locales/vi.js +108 -0
  2977. package/bundles/mcp/node_modules/zod/v4/locales/yo.cjs +134 -0
  2978. package/bundles/mcp/node_modules/zod/v4/locales/yo.d.cts +5 -0
  2979. package/bundles/mcp/node_modules/zod/v4/locales/yo.d.ts +4 -0
  2980. package/bundles/mcp/node_modules/zod/v4/locales/yo.js +107 -0
  2981. package/bundles/mcp/node_modules/zod/v4/locales/zh-CN.cjs +136 -0
  2982. package/bundles/mcp/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
  2983. package/bundles/mcp/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  2984. package/bundles/mcp/node_modules/zod/v4/locales/zh-CN.js +109 -0
  2985. package/bundles/mcp/node_modules/zod/v4/locales/zh-TW.cjs +134 -0
  2986. package/bundles/mcp/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
  2987. package/bundles/mcp/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  2988. package/bundles/mcp/node_modules/zod/v4/locales/zh-TW.js +107 -0
  2989. package/bundles/mcp/node_modules/zod/v4/mini/checks.cjs +34 -0
  2990. package/bundles/mcp/node_modules/zod/v4/mini/checks.d.cts +1 -0
  2991. package/bundles/mcp/node_modules/zod/v4/mini/checks.d.ts +1 -0
  2992. package/bundles/mcp/node_modules/zod/v4/mini/checks.js +1 -0
  2993. package/bundles/mcp/node_modules/zod/v4/mini/coerce.cjs +52 -0
  2994. package/bundles/mcp/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  2995. package/bundles/mcp/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  2996. package/bundles/mcp/node_modules/zod/v4/mini/coerce.js +22 -0
  2997. package/bundles/mcp/node_modules/zod/v4/mini/external.cjs +63 -0
  2998. package/bundles/mcp/node_modules/zod/v4/mini/external.d.cts +12 -0
  2999. package/bundles/mcp/node_modules/zod/v4/mini/external.d.ts +12 -0
  3000. package/bundles/mcp/node_modules/zod/v4/mini/external.js +14 -0
  3001. package/bundles/mcp/node_modules/zod/v4/mini/index.cjs +32 -0
  3002. package/bundles/mcp/node_modules/zod/v4/mini/index.d.cts +3 -0
  3003. package/bundles/mcp/node_modules/zod/v4/mini/index.d.ts +3 -0
  3004. package/bundles/mcp/node_modules/zod/v4/mini/index.js +3 -0
  3005. package/bundles/mcp/node_modules/zod/v4/mini/iso.cjs +64 -0
  3006. package/bundles/mcp/node_modules/zod/v4/mini/iso.d.cts +22 -0
  3007. package/bundles/mcp/node_modules/zod/v4/mini/iso.d.ts +22 -0
  3008. package/bundles/mcp/node_modules/zod/v4/mini/iso.js +34 -0
  3009. package/bundles/mcp/node_modules/zod/v4/mini/package.json +6 -0
  3010. package/bundles/mcp/node_modules/zod/v4/mini/parse.cjs +16 -0
  3011. package/bundles/mcp/node_modules/zod/v4/mini/parse.d.cts +1 -0
  3012. package/bundles/mcp/node_modules/zod/v4/mini/parse.d.ts +1 -0
  3013. package/bundles/mcp/node_modules/zod/v4/mini/parse.js +1 -0
  3014. package/bundles/mcp/node_modules/zod/v4/mini/schemas.cjs +1046 -0
  3015. package/bundles/mcp/node_modules/zod/v4/mini/schemas.d.cts +427 -0
  3016. package/bundles/mcp/node_modules/zod/v4/mini/schemas.d.ts +427 -0
  3017. package/bundles/mcp/node_modules/zod/v4/mini/schemas.js +925 -0
  3018. package/bundles/mcp/node_modules/zod/v4/package.json +6 -0
  3019. package/bundles/mcp/node_modules/zod/v4-mini/index.cjs +17 -0
  3020. package/bundles/mcp/node_modules/zod/v4-mini/index.d.cts +1 -0
  3021. package/bundles/mcp/node_modules/zod/v4-mini/index.d.ts +1 -0
  3022. package/bundles/mcp/node_modules/zod/v4-mini/index.js +1 -0
  3023. package/bundles/mcp/node_modules/zod/v4-mini/package.json +6 -0
  3024. package/bundles/mcp/node_modules/zod-to-json-schema/.github/CR_logotype-full-color.png +0 -0
  3025. package/bundles/mcp/node_modules/zod-to-json-schema/.github/FUNDING.yml +1 -0
  3026. package/bundles/mcp/node_modules/zod-to-json-schema/.prettierrc.json +1 -0
  3027. package/bundles/mcp/node_modules/zod-to-json-schema/LICENSE +15 -0
  3028. package/bundles/mcp/node_modules/zod-to-json-schema/README.md +390 -0
  3029. package/bundles/mcp/node_modules/zod-to-json-schema/changelog.md +82 -0
  3030. package/bundles/mcp/node_modules/zod-to-json-schema/contributing.md +9 -0
  3031. package/bundles/mcp/node_modules/zod-to-json-schema/createIndex.ts +32 -0
  3032. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/Options.js +51 -0
  3033. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/Refs.js +26 -0
  3034. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/errorMessages.js +19 -0
  3035. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/getRelativePath.js +12 -0
  3036. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/index.js +56 -0
  3037. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/package.json +1 -0
  3038. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parseDef.js +66 -0
  3039. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parseTypes.js +2 -0
  3040. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/any.js +21 -0
  3041. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/array.js +30 -0
  3042. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/bigint.js +53 -0
  3043. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/boolean.js +9 -0
  3044. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/branded.js +8 -0
  3045. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/catch.js +8 -0
  3046. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/date.js +50 -0
  3047. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/default.js +11 -0
  3048. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/effects.js +11 -0
  3049. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/enum.js +10 -0
  3050. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/intersection.js +56 -0
  3051. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/literal.js +25 -0
  3052. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/map.js +30 -0
  3053. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/nativeEnum.js +20 -0
  3054. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/never.js +15 -0
  3055. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/null.js +14 -0
  3056. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/nullable.js +37 -0
  3057. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/number.js +56 -0
  3058. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/object.js +76 -0
  3059. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/optional.js +25 -0
  3060. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/pipeline.js +24 -0
  3061. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/promise.js +8 -0
  3062. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/readonly.js +8 -0
  3063. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/record.js +65 -0
  3064. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/set.js +24 -0
  3065. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/string.js +356 -0
  3066. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/tuple.js +36 -0
  3067. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/undefined.js +10 -0
  3068. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/union.js +84 -0
  3069. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/unknown.js +8 -0
  3070. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/selectParser.js +109 -0
  3071. package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/zodToJsonSchema.js +90 -0
  3072. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/Options.js +46 -0
  3073. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/Refs.js +22 -0
  3074. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/errorMessages.js +14 -0
  3075. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/getRelativePath.js +8 -0
  3076. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/index.js +40 -0
  3077. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/package.json +1 -0
  3078. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parseDef.js +62 -0
  3079. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parseTypes.js +1 -0
  3080. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/any.js +17 -0
  3081. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/array.js +26 -0
  3082. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js +49 -0
  3083. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js +5 -0
  3084. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js +4 -0
  3085. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js +4 -0
  3086. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/date.js +46 -0
  3087. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/default.js +7 -0
  3088. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js +7 -0
  3089. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js +6 -0
  3090. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js +52 -0
  3091. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js +21 -0
  3092. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/map.js +26 -0
  3093. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js +16 -0
  3094. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/never.js +11 -0
  3095. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/null.js +10 -0
  3096. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js +33 -0
  3097. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/number.js +52 -0
  3098. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/object.js +72 -0
  3099. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js +21 -0
  3100. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js +20 -0
  3101. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js +4 -0
  3102. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js +4 -0
  3103. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/record.js +61 -0
  3104. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/set.js +20 -0
  3105. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/string.js +352 -0
  3106. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js +32 -0
  3107. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js +6 -0
  3108. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/union.js +80 -0
  3109. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js +4 -0
  3110. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/selectParser.js +105 -0
  3111. package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js +87 -0
  3112. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/Options.d.ts +37 -0
  3113. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/Refs.d.ts +17 -0
  3114. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/errorMessages.d.ts +15 -0
  3115. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/getRelativePath.d.ts +1 -0
  3116. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/index.d.ts +40 -0
  3117. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parseDef.d.ts +4 -0
  3118. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parseTypes.d.ts +34 -0
  3119. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/any.d.ts +5 -0
  3120. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/array.d.ts +12 -0
  3121. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/bigint.d.ts +14 -0
  3122. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/boolean.d.ts +4 -0
  3123. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/branded.d.ts +3 -0
  3124. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/catch.d.ts +3 -0
  3125. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/date.d.ts +15 -0
  3126. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/default.d.ts +6 -0
  3127. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/effects.d.ts +4 -0
  3128. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/enum.d.ts +6 -0
  3129. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/intersection.d.ts +8 -0
  3130. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/literal.d.ts +9 -0
  3131. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/map.d.ts +15 -0
  3132. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/nativeEnum.d.ts +6 -0
  3133. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/never.d.ts +6 -0
  3134. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/null.d.ts +5 -0
  3135. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/nullable.d.ts +10 -0
  3136. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/number.d.ts +13 -0
  3137. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/object.d.ts +10 -0
  3138. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/optional.d.ts +4 -0
  3139. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/pipeline.d.ts +5 -0
  3140. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/promise.d.ts +4 -0
  3141. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/readonly.d.ts +3 -0
  3142. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/record.d.ts +13 -0
  3143. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/set.d.ts +13 -0
  3144. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/string.d.ts +73 -0
  3145. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/tuple.d.ts +13 -0
  3146. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/undefined.d.ts +6 -0
  3147. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/union.d.ts +23 -0
  3148. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/unknown.d.ts +4 -0
  3149. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/selectParser.d.ts +5 -0
  3150. package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/zodToJsonSchema.d.ts +10 -0
  3151. package/bundles/mcp/node_modules/zod-to-json-schema/package.json +78 -0
  3152. package/bundles/mcp/node_modules/zod-to-json-schema/postcjs.ts +3 -0
  3153. package/bundles/mcp/node_modules/zod-to-json-schema/postesm.ts +3 -0
  3154. package/bundles/utils/node_modules/.package-lock.json +427 -0
  3155. package/bundles/utils/node_modules/@types/debug/LICENSE +21 -0
  3156. package/bundles/utils/node_modules/@types/debug/README.md +74 -0
  3157. package/bundles/utils/node_modules/@types/debug/index.d.ts +54 -0
  3158. package/bundles/utils/node_modules/@types/debug/package.json +57 -0
  3159. package/bundles/utils/node_modules/@types/diff/LICENSE +21 -0
  3160. package/bundles/utils/node_modules/@types/diff/README.md +15 -0
  3161. package/bundles/utils/node_modules/@types/diff/index.d.mts +1 -0
  3162. package/bundles/utils/node_modules/@types/diff/index.d.ts +465 -0
  3163. package/bundles/utils/node_modules/@types/diff/package.json +48 -0
  3164. package/bundles/utils/node_modules/@types/ini/LICENSE +21 -0
  3165. package/bundles/utils/node_modules/@types/ini/README.md +43 -0
  3166. package/bundles/utils/node_modules/@types/ini/index.d.ts +24 -0
  3167. package/bundles/utils/node_modules/@types/ini/package.json +35 -0
  3168. package/bundles/utils/node_modules/@types/mime/LICENSE +21 -0
  3169. package/bundles/utils/node_modules/@types/mime/Mime.d.ts +9 -0
  3170. package/bundles/utils/node_modules/@types/mime/README.md +16 -0
  3171. package/bundles/utils/node_modules/@types/mime/index.d.ts +15 -0
  3172. package/bundles/utils/node_modules/@types/mime/lite.d.ts +7 -0
  3173. package/bundles/utils/node_modules/@types/mime/package.json +29 -0
  3174. package/bundles/utils/node_modules/@types/minimatch/LICENSE +21 -0
  3175. package/bundles/utils/node_modules/@types/minimatch/README.md +16 -0
  3176. package/bundles/utils/node_modules/@types/minimatch/index.d.ts +204 -0
  3177. package/bundles/utils/node_modules/@types/minimatch/package.json +30 -0
  3178. package/bundles/utils/node_modules/@types/ms/LICENSE +21 -0
  3179. package/bundles/utils/node_modules/@types/ms/README.md +16 -0
  3180. package/bundles/utils/node_modules/@types/ms/index.d.ts +25 -0
  3181. package/bundles/utils/node_modules/@types/ms/package.json +24 -0
  3182. package/bundles/utils/node_modules/@types/node/LICENSE +21 -0
  3183. package/bundles/utils/node_modules/@types/node/README.md +16 -0
  3184. package/bundles/utils/node_modules/@types/node/assert/strict.d.ts +8 -0
  3185. package/bundles/utils/node_modules/@types/node/assert.d.ts +912 -0
  3186. package/bundles/utils/node_modules/@types/node/async_hooks.d.ts +501 -0
  3187. package/bundles/utils/node_modules/@types/node/buffer.d.ts +2232 -0
  3188. package/bundles/utils/node_modules/@types/node/child_process.d.ts +1366 -0
  3189. package/bundles/utils/node_modules/@types/node/cluster.d.ts +414 -0
  3190. package/bundles/utils/node_modules/@types/node/console.d.ts +412 -0
  3191. package/bundles/utils/node_modules/@types/node/constants.d.ts +18 -0
  3192. package/bundles/utils/node_modules/@types/node/crypto.d.ts +3307 -0
  3193. package/bundles/utils/node_modules/@types/node/dgram.d.ts +545 -0
  3194. package/bundles/utils/node_modules/@types/node/diagnostics_channel.d.ts +134 -0
  3195. package/bundles/utils/node_modules/@types/node/dns/promises.d.ts +370 -0
  3196. package/bundles/utils/node_modules/@types/node/dns.d.ts +659 -0
  3197. package/bundles/utils/node_modules/@types/node/domain.d.ts +169 -0
  3198. package/bundles/utils/node_modules/@types/node/events.d.ts +651 -0
  3199. package/bundles/utils/node_modules/@types/node/fs/promises.d.ts +1091 -0
  3200. package/bundles/utils/node_modules/@types/node/fs.d.ts +3869 -0
  3201. package/bundles/utils/node_modules/@types/node/globals.d.ts +284 -0
  3202. package/bundles/utils/node_modules/@types/node/globals.global.d.ts +1 -0
  3203. package/bundles/utils/node_modules/@types/node/http.d.ts +1396 -0
  3204. package/bundles/utils/node_modules/@types/node/http2.d.ts +2100 -0
  3205. package/bundles/utils/node_modules/@types/node/https.d.ts +391 -0
  3206. package/bundles/utils/node_modules/@types/node/index.d.ts +129 -0
  3207. package/bundles/utils/node_modules/@types/node/inspector.d.ts +2744 -0
  3208. package/bundles/utils/node_modules/@types/node/module.d.ts +114 -0
  3209. package/bundles/utils/node_modules/@types/node/net.d.ts +791 -0
  3210. package/bundles/utils/node_modules/@types/node/os.d.ts +455 -0
  3211. package/bundles/utils/node_modules/@types/node/package.json +220 -0
  3212. package/bundles/utils/node_modules/@types/node/path.d.ts +180 -0
  3213. package/bundles/utils/node_modules/@types/node/perf_hooks.d.ts +557 -0
  3214. package/bundles/utils/node_modules/@types/node/process.d.ts +1481 -0
  3215. package/bundles/utils/node_modules/@types/node/punycode.d.ts +117 -0
  3216. package/bundles/utils/node_modules/@types/node/querystring.d.ts +131 -0
  3217. package/bundles/utils/node_modules/@types/node/readline.d.ts +650 -0
  3218. package/bundles/utils/node_modules/@types/node/repl.d.ts +424 -0
  3219. package/bundles/utils/node_modules/@types/node/stream/consumers.d.ts +24 -0
  3220. package/bundles/utils/node_modules/@types/node/stream/promises.d.ts +42 -0
  3221. package/bundles/utils/node_modules/@types/node/stream/web.d.ts +330 -0
  3222. package/bundles/utils/node_modules/@types/node/stream.d.ts +1249 -0
  3223. package/bundles/utils/node_modules/@types/node/string_decoder.d.ts +67 -0
  3224. package/bundles/utils/node_modules/@types/node/timers/promises.d.ts +68 -0
  3225. package/bundles/utils/node_modules/@types/node/timers.d.ts +94 -0
  3226. package/bundles/utils/node_modules/@types/node/tls.d.ts +1020 -0
  3227. package/bundles/utils/node_modules/@types/node/trace_events.d.ts +161 -0
  3228. package/bundles/utils/node_modules/@types/node/tty.d.ts +204 -0
  3229. package/bundles/utils/node_modules/@types/node/url.d.ts +891 -0
  3230. package/bundles/utils/node_modules/@types/node/util.d.ts +1594 -0
  3231. package/bundles/utils/node_modules/@types/node/v8.d.ts +378 -0
  3232. package/bundles/utils/node_modules/@types/node/vm.d.ts +507 -0
  3233. package/bundles/utils/node_modules/@types/node/wasi.d.ts +158 -0
  3234. package/bundles/utils/node_modules/@types/node/worker_threads.d.ts +649 -0
  3235. package/bundles/utils/node_modules/@types/node/zlib.d.ts +517 -0
  3236. package/bundles/utils/node_modules/@types/pngjs/LICENSE +21 -0
  3237. package/bundles/utils/node_modules/@types/pngjs/README.md +16 -0
  3238. package/bundles/utils/node_modules/@types/pngjs/index.d.ts +108 -0
  3239. package/bundles/utils/node_modules/@types/pngjs/package.json +37 -0
  3240. package/bundles/utils/node_modules/@types/progress/LICENSE +21 -0
  3241. package/bundles/utils/node_modules/@types/progress/README.md +16 -0
  3242. package/bundles/utils/node_modules/@types/progress/index.d.ts +148 -0
  3243. package/bundles/utils/node_modules/@types/progress/package.json +27 -0
  3244. package/bundles/utils/node_modules/@types/proper-lockfile/LICENSE +21 -0
  3245. package/bundles/utils/node_modules/@types/proper-lockfile/README.md +60 -0
  3246. package/bundles/utils/node_modules/@types/proper-lockfile/index.d.ts +40 -0
  3247. package/bundles/utils/node_modules/@types/proper-lockfile/package.json +37 -0
  3248. package/bundles/utils/node_modules/@types/proxy-from-env/LICENSE +21 -0
  3249. package/bundles/utils/node_modules/@types/proxy-from-env/README.md +16 -0
  3250. package/bundles/utils/node_modules/@types/proxy-from-env/index.d.ts +18 -0
  3251. package/bundles/utils/node_modules/@types/proxy-from-env/package.json +31 -0
  3252. package/bundles/utils/node_modules/@types/retry/LICENSE +21 -0
  3253. package/bundles/utils/node_modules/@types/retry/README.md +16 -0
  3254. package/bundles/utils/node_modules/@types/retry/index.d.ts +153 -0
  3255. package/bundles/utils/node_modules/@types/retry/package.json +30 -0
  3256. package/bundles/utils/node_modules/@types/stack-utils/LICENSE +21 -0
  3257. package/bundles/utils/node_modules/@types/stack-utils/README.md +85 -0
  3258. package/bundles/utils/node_modules/@types/stack-utils/index.d.ts +65 -0
  3259. package/bundles/utils/node_modules/@types/stack-utils/package.json +25 -0
  3260. package/bundles/utils/node_modules/@types/ws/LICENSE +21 -0
  3261. package/bundles/utils/node_modules/@types/ws/README.md +16 -0
  3262. package/bundles/utils/node_modules/@types/ws/index.d.mts +3 -0
  3263. package/bundles/utils/node_modules/@types/ws/index.d.ts +358 -0
  3264. package/bundles/utils/node_modules/@types/ws/package.json +66 -0
  3265. package/bundles/utils/node_modules/agent-base/LICENSE +22 -0
  3266. package/bundles/utils/node_modules/agent-base/README.md +69 -0
  3267. package/bundles/utils/node_modules/agent-base/dist/helpers.d.ts +15 -0
  3268. package/bundles/utils/node_modules/agent-base/dist/helpers.d.ts.map +1 -0
  3269. package/bundles/utils/node_modules/agent-base/dist/helpers.js +66 -0
  3270. package/bundles/utils/node_modules/agent-base/dist/helpers.js.map +1 -0
  3271. package/bundles/utils/node_modules/agent-base/dist/index.d.ts +41 -0
  3272. package/bundles/utils/node_modules/agent-base/dist/index.d.ts.map +1 -0
  3273. package/bundles/utils/node_modules/agent-base/dist/index.js +178 -0
  3274. package/bundles/utils/node_modules/agent-base/dist/index.js.map +1 -0
  3275. package/bundles/utils/node_modules/agent-base/package.json +46 -0
  3276. package/bundles/utils/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  3277. package/bundles/utils/node_modules/balanced-match/LICENSE.md +21 -0
  3278. package/bundles/utils/node_modules/balanced-match/README.md +97 -0
  3279. package/bundles/utils/node_modules/balanced-match/index.js +62 -0
  3280. package/bundles/utils/node_modules/balanced-match/package.json +48 -0
  3281. package/bundles/utils/node_modules/brace-expansion/LICENSE +21 -0
  3282. package/bundles/utils/node_modules/brace-expansion/README.md +129 -0
  3283. package/bundles/utils/node_modules/brace-expansion/index.js +201 -0
  3284. package/bundles/utils/node_modules/brace-expansion/package.json +50 -0
  3285. package/bundles/utils/node_modules/colors/LICENSE +25 -0
  3286. package/bundles/utils/node_modules/colors/README.md +221 -0
  3287. package/bundles/utils/node_modules/colors/examples/normal-usage.js +82 -0
  3288. package/bundles/utils/node_modules/colors/examples/safe-string.js +79 -0
  3289. package/bundles/utils/node_modules/colors/index.d.ts +136 -0
  3290. package/bundles/utils/node_modules/colors/lib/colors.js +211 -0
  3291. package/bundles/utils/node_modules/colors/lib/custom/trap.js +46 -0
  3292. package/bundles/utils/node_modules/colors/lib/custom/zalgo.js +110 -0
  3293. package/bundles/utils/node_modules/colors/lib/extendStringPrototype.js +110 -0
  3294. package/bundles/utils/node_modules/colors/lib/index.js +13 -0
  3295. package/bundles/utils/node_modules/colors/lib/maps/america.js +10 -0
  3296. package/bundles/utils/node_modules/colors/lib/maps/rainbow.js +12 -0
  3297. package/bundles/utils/node_modules/colors/lib/maps/random.js +11 -0
  3298. package/bundles/utils/node_modules/colors/lib/maps/zebra.js +5 -0
  3299. package/bundles/utils/node_modules/colors/lib/styles.js +95 -0
  3300. package/bundles/utils/node_modules/colors/lib/system/has-flag.js +35 -0
  3301. package/bundles/utils/node_modules/colors/lib/system/supports-colors.js +151 -0
  3302. package/bundles/utils/node_modules/colors/package.json +45 -0
  3303. package/bundles/utils/node_modules/colors/safe.d.ts +48 -0
  3304. package/bundles/utils/node_modules/colors/safe.js +10 -0
  3305. package/bundles/utils/node_modules/colors/themes/generic-logging.js +12 -0
  3306. package/bundles/utils/node_modules/commander/LICENSE +22 -0
  3307. package/bundles/utils/node_modules/commander/Readme.md +1149 -0
  3308. package/bundles/utils/node_modules/commander/esm.mjs +16 -0
  3309. package/bundles/utils/node_modules/commander/index.js +24 -0
  3310. package/bundles/utils/node_modules/commander/lib/argument.js +149 -0
  3311. package/bundles/utils/node_modules/commander/lib/command.js +2662 -0
  3312. package/bundles/utils/node_modules/commander/lib/error.js +39 -0
  3313. package/bundles/utils/node_modules/commander/lib/help.js +709 -0
  3314. package/bundles/utils/node_modules/commander/lib/option.js +367 -0
  3315. package/bundles/utils/node_modules/commander/lib/suggestSimilar.js +101 -0
  3316. package/bundles/utils/node_modules/commander/package-support.json +16 -0
  3317. package/bundles/utils/node_modules/commander/package.json +82 -0
  3318. package/bundles/utils/node_modules/commander/typings/esm.d.mts +3 -0
  3319. package/bundles/utils/node_modules/commander/typings/index.d.ts +1045 -0
  3320. package/bundles/utils/node_modules/concat-map/.travis.yml +4 -0
  3321. package/bundles/utils/node_modules/concat-map/LICENSE +18 -0
  3322. package/bundles/utils/node_modules/concat-map/README.markdown +62 -0
  3323. package/bundles/utils/node_modules/concat-map/example/map.js +6 -0
  3324. package/bundles/utils/node_modules/concat-map/index.js +13 -0
  3325. package/bundles/utils/node_modules/concat-map/package.json +43 -0
  3326. package/bundles/utils/node_modules/concat-map/test/map.js +39 -0
  3327. package/bundles/utils/node_modules/debug/LICENSE +20 -0
  3328. package/bundles/utils/node_modules/debug/README.md +481 -0
  3329. package/bundles/utils/node_modules/debug/package.json +59 -0
  3330. package/bundles/utils/node_modules/define-lazy-prop/index.d.ts +33 -0
  3331. package/bundles/utils/node_modules/define-lazy-prop/index.js +19 -0
  3332. package/bundles/utils/node_modules/define-lazy-prop/license +9 -0
  3333. package/bundles/utils/node_modules/define-lazy-prop/package.json +48 -0
  3334. package/bundles/utils/node_modules/define-lazy-prop/readme.md +64 -0
  3335. package/bundles/utils/node_modules/diff/CONTRIBUTING.md +40 -0
  3336. package/bundles/utils/node_modules/diff/LICENSE +29 -0
  3337. package/bundles/utils/node_modules/diff/README.md +346 -0
  3338. package/bundles/utils/node_modules/diff/dist/diff.js +2106 -0
  3339. package/bundles/utils/node_modules/diff/dist/diff.min.js +37 -0
  3340. package/bundles/utils/node_modules/diff/lib/convert/dmp.js +27 -0
  3341. package/bundles/utils/node_modules/diff/lib/convert/xml.js +35 -0
  3342. package/bundles/utils/node_modules/diff/lib/diff/array.js +39 -0
  3343. package/bundles/utils/node_modules/diff/lib/diff/base.js +304 -0
  3344. package/bundles/utils/node_modules/diff/lib/diff/character.js +33 -0
  3345. package/bundles/utils/node_modules/diff/lib/diff/css.js +36 -0
  3346. package/bundles/utils/node_modules/diff/lib/diff/json.js +143 -0
  3347. package/bundles/utils/node_modules/diff/lib/diff/line.js +121 -0
  3348. package/bundles/utils/node_modules/diff/lib/diff/sentence.js +36 -0
  3349. package/bundles/utils/node_modules/diff/lib/diff/word.js +543 -0
  3350. package/bundles/utils/node_modules/diff/lib/index.es6.js +2041 -0
  3351. package/bundles/utils/node_modules/diff/lib/index.js +217 -0
  3352. package/bundles/utils/node_modules/diff/lib/index.mjs +2041 -0
  3353. package/bundles/utils/node_modules/diff/lib/patch/apply.js +393 -0
  3354. package/bundles/utils/node_modules/diff/lib/patch/create.js +369 -0
  3355. package/bundles/utils/node_modules/diff/lib/patch/line-endings.js +176 -0
  3356. package/bundles/utils/node_modules/diff/lib/patch/merge.js +535 -0
  3357. package/bundles/utils/node_modules/diff/lib/patch/parse.js +151 -0
  3358. package/bundles/utils/node_modules/diff/lib/patch/reverse.js +58 -0
  3359. package/bundles/utils/node_modules/diff/lib/util/array.js +27 -0
  3360. package/bundles/utils/node_modules/diff/lib/util/distance-iterator.js +54 -0
  3361. package/bundles/utils/node_modules/diff/lib/util/params.js +22 -0
  3362. package/bundles/utils/node_modules/diff/lib/util/string.js +131 -0
  3363. package/bundles/utils/node_modules/diff/package.json +88 -0
  3364. package/bundles/utils/node_modules/diff/release-notes.md +361 -0
  3365. package/bundles/utils/node_modules/diff/runtime.js +3 -0
  3366. package/bundles/utils/node_modules/dotenv/CHANGELOG.md +475 -0
  3367. package/bundles/utils/node_modules/dotenv/LICENSE +23 -0
  3368. package/bundles/utils/node_modules/dotenv/README-es.md +448 -0
  3369. package/bundles/utils/node_modules/dotenv/README.md +728 -0
  3370. package/bundles/utils/node_modules/dotenv/config.d.ts +1 -0
  3371. package/bundles/utils/node_modules/dotenv/config.js +9 -0
  3372. package/bundles/utils/node_modules/dotenv/lib/cli-options.js +11 -0
  3373. package/bundles/utils/node_modules/dotenv/lib/env-options.js +24 -0
  3374. package/bundles/utils/node_modules/dotenv/lib/main.d.ts +153 -0
  3375. package/bundles/utils/node_modules/dotenv/lib/main.js +361 -0
  3376. package/bundles/utils/node_modules/dotenv/package.json +65 -0
  3377. package/bundles/utils/node_modules/graceful-fs/LICENSE +15 -0
  3378. package/bundles/utils/node_modules/graceful-fs/README.md +143 -0
  3379. package/bundles/utils/node_modules/graceful-fs/clone.js +23 -0
  3380. package/bundles/utils/node_modules/graceful-fs/graceful-fs.js +448 -0
  3381. package/bundles/utils/node_modules/graceful-fs/legacy-streams.js +118 -0
  3382. package/bundles/utils/node_modules/graceful-fs/package.json +50 -0
  3383. package/bundles/utils/node_modules/graceful-fs/polyfills.js +355 -0
  3384. package/bundles/utils/node_modules/https-proxy-agent/LICENSE +22 -0
  3385. package/bundles/utils/node_modules/https-proxy-agent/README.md +70 -0
  3386. package/bundles/utils/node_modules/https-proxy-agent/dist/index.d.ts +47 -0
  3387. package/bundles/utils/node_modules/https-proxy-agent/dist/index.d.ts.map +1 -0
  3388. package/bundles/utils/node_modules/https-proxy-agent/dist/index.js +180 -0
  3389. package/bundles/utils/node_modules/https-proxy-agent/dist/index.js.map +1 -0
  3390. package/bundles/utils/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +15 -0
  3391. package/bundles/utils/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts.map +1 -0
  3392. package/bundles/utils/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
  3393. package/bundles/utils/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
  3394. package/bundles/utils/node_modules/https-proxy-agent/package.json +50 -0
  3395. package/bundles/utils/node_modules/ini/LICENSE +15 -0
  3396. package/bundles/utils/node_modules/ini/README.md +180 -0
  3397. package/bundles/utils/node_modules/ini/lib/ini.js +280 -0
  3398. package/bundles/utils/node_modules/ini/package.json +45 -0
  3399. package/bundles/utils/node_modules/ip-address/LICENSE +19 -0
  3400. package/bundles/utils/node_modules/ip-address/README.md +108 -0
  3401. package/bundles/utils/node_modules/ip-address/dist/address-error.d.ts +5 -0
  3402. package/bundles/utils/node_modules/ip-address/dist/address-error.d.ts.map +1 -0
  3403. package/bundles/utils/node_modules/ip-address/dist/address-error.js +14 -0
  3404. package/bundles/utils/node_modules/ip-address/dist/address-error.js.map +1 -0
  3405. package/bundles/utils/node_modules/ip-address/dist/common.d.ts +8 -0
  3406. package/bundles/utils/node_modules/ip-address/dist/common.d.ts.map +1 -0
  3407. package/bundles/utils/node_modules/ip-address/dist/common.js +26 -0
  3408. package/bundles/utils/node_modules/ip-address/dist/common.js.map +1 -0
  3409. package/bundles/utils/node_modules/ip-address/dist/ip-address.d.ts +11 -0
  3410. package/bundles/utils/node_modules/ip-address/dist/ip-address.d.ts.map +1 -0
  3411. package/bundles/utils/node_modules/ip-address/dist/ip-address.js +35 -0
  3412. package/bundles/utils/node_modules/ip-address/dist/ip-address.js.map +1 -0
  3413. package/bundles/utils/node_modules/ip-address/dist/ipv4.d.ts +194 -0
  3414. package/bundles/utils/node_modules/ip-address/dist/ipv4.d.ts.map +1 -0
  3415. package/bundles/utils/node_modules/ip-address/dist/ipv4.js +326 -0
  3416. package/bundles/utils/node_modules/ip-address/dist/ipv4.js.map +1 -0
  3417. package/bundles/utils/node_modules/ip-address/dist/ipv6.d.ts +429 -0
  3418. package/bundles/utils/node_modules/ip-address/dist/ipv6.d.ts.map +1 -0
  3419. package/bundles/utils/node_modules/ip-address/dist/ipv6.js +998 -0
  3420. package/bundles/utils/node_modules/ip-address/dist/ipv6.js.map +1 -0
  3421. package/bundles/utils/node_modules/ip-address/dist/v4/constants.d.ts +5 -0
  3422. package/bundles/utils/node_modules/ip-address/dist/v4/constants.d.ts.map +1 -0
  3423. package/bundles/utils/node_modules/ip-address/dist/v4/constants.js +8 -0
  3424. package/bundles/utils/node_modules/ip-address/dist/v4/constants.js.map +1 -0
  3425. package/bundles/utils/node_modules/ip-address/dist/v6/constants.d.ts +45 -0
  3426. package/bundles/utils/node_modules/ip-address/dist/v6/constants.d.ts.map +1 -0
  3427. package/bundles/utils/node_modules/ip-address/dist/v6/constants.js +76 -0
  3428. package/bundles/utils/node_modules/ip-address/dist/v6/constants.js.map +1 -0
  3429. package/bundles/utils/node_modules/ip-address/dist/v6/helpers.d.ts +18 -0
  3430. package/bundles/utils/node_modules/ip-address/dist/v6/helpers.d.ts.map +1 -0
  3431. package/bundles/utils/node_modules/ip-address/dist/v6/helpers.js +48 -0
  3432. package/bundles/utils/node_modules/ip-address/dist/v6/helpers.js.map +1 -0
  3433. package/bundles/utils/node_modules/ip-address/dist/v6/regular-expressions.d.ts +6 -0
  3434. package/bundles/utils/node_modules/ip-address/dist/v6/regular-expressions.d.ts.map +1 -0
  3435. package/bundles/utils/node_modules/ip-address/dist/v6/regular-expressions.js +96 -0
  3436. package/bundles/utils/node_modules/ip-address/dist/v6/regular-expressions.js.map +1 -0
  3437. package/bundles/utils/node_modules/ip-address/package.json +87 -0
  3438. package/bundles/utils/node_modules/is-docker/cli.js +5 -0
  3439. package/bundles/utils/node_modules/is-docker/index.d.ts +15 -0
  3440. package/bundles/utils/node_modules/is-docker/index.js +29 -0
  3441. package/bundles/utils/node_modules/is-docker/license +9 -0
  3442. package/bundles/utils/node_modules/is-docker/package.json +42 -0
  3443. package/bundles/utils/node_modules/is-docker/readme.md +27 -0
  3444. package/bundles/utils/node_modules/is-wsl/index.d.ts +15 -0
  3445. package/bundles/utils/node_modules/is-wsl/index.js +31 -0
  3446. package/bundles/utils/node_modules/is-wsl/license +9 -0
  3447. package/bundles/utils/node_modules/is-wsl/package.json +45 -0
  3448. package/bundles/utils/node_modules/is-wsl/readme.md +36 -0
  3449. package/bundles/utils/node_modules/jpeg-js/.github/workflows/ci.yml +19 -0
  3450. package/bundles/utils/node_modules/jpeg-js/CONTRIBUTING.md +27 -0
  3451. package/bundles/utils/node_modules/jpeg-js/LICENSE +25 -0
  3452. package/bundles/utils/node_modules/jpeg-js/README.md +176 -0
  3453. package/bundles/utils/node_modules/jpeg-js/index.d.ts +36 -0
  3454. package/bundles/utils/node_modules/jpeg-js/index.js +7 -0
  3455. package/bundles/utils/node_modules/jpeg-js/lib/decoder.js +1151 -0
  3456. package/bundles/utils/node_modules/jpeg-js/lib/encoder.js +814 -0
  3457. package/bundles/utils/node_modules/jpeg-js/package.json +32 -0
  3458. package/bundles/utils/node_modules/jsbn/CHANGELOG.md +16 -0
  3459. package/bundles/utils/node_modules/jsbn/LICENSE +40 -0
  3460. package/bundles/utils/node_modules/jsbn/README.md +173 -0
  3461. package/bundles/utils/node_modules/jsbn/example.html +11 -0
  3462. package/bundles/utils/node_modules/jsbn/example.js +5 -0
  3463. package/bundles/utils/node_modules/jsbn/index.js +1361 -0
  3464. package/bundles/utils/node_modules/jsbn/package.json +21 -0
  3465. package/bundles/utils/node_modules/jsbn/test/es6-import.js +3 -0
  3466. package/bundles/utils/node_modules/mime/CHANGELOG.md +312 -0
  3467. package/bundles/utils/node_modules/mime/LICENSE +21 -0
  3468. package/bundles/utils/node_modules/mime/Mime.js +97 -0
  3469. package/bundles/utils/node_modules/mime/README.md +178 -0
  3470. package/bundles/utils/node_modules/mime/cli.js +46 -0
  3471. package/bundles/utils/node_modules/mime/index.js +4 -0
  3472. package/bundles/utils/node_modules/mime/lite.js +4 -0
  3473. package/bundles/utils/node_modules/mime/package.json +52 -0
  3474. package/bundles/utils/node_modules/mime/types/other.js +1 -0
  3475. package/bundles/utils/node_modules/mime/types/standard.js +1 -0
  3476. package/bundles/utils/node_modules/minimatch/LICENSE +15 -0
  3477. package/bundles/utils/node_modules/minimatch/README.md +230 -0
  3478. package/bundles/utils/node_modules/minimatch/minimatch.js +1005 -0
  3479. package/bundles/utils/node_modules/minimatch/package.json +33 -0
  3480. package/bundles/utils/node_modules/ms/index.js +162 -0
  3481. package/bundles/utils/node_modules/ms/license.md +21 -0
  3482. package/bundles/utils/node_modules/ms/package.json +37 -0
  3483. package/bundles/utils/node_modules/ms/readme.md +60 -0
  3484. package/bundles/utils/node_modules/open/index.d.ts +153 -0
  3485. package/bundles/utils/node_modules/open/index.js +315 -0
  3486. package/bundles/utils/node_modules/open/license +9 -0
  3487. package/bundles/utils/node_modules/open/package.json +61 -0
  3488. package/bundles/utils/node_modules/open/readme.md +183 -0
  3489. package/bundles/utils/node_modules/open/xdg-open +1066 -0
  3490. package/bundles/utils/node_modules/pngjs/LICENSE +20 -0
  3491. package/bundles/utils/node_modules/pngjs/README.md +433 -0
  3492. package/bundles/utils/node_modules/pngjs/browser.js +18554 -0
  3493. package/bundles/utils/node_modules/pngjs/lib/bitmapper.js +267 -0
  3494. package/bundles/utils/node_modules/pngjs/lib/bitpacker.js +158 -0
  3495. package/bundles/utils/node_modules/pngjs/lib/chunkstream.js +189 -0
  3496. package/bundles/utils/node_modules/pngjs/lib/constants.js +32 -0
  3497. package/bundles/utils/node_modules/pngjs/lib/crc.js +40 -0
  3498. package/bundles/utils/node_modules/pngjs/lib/filter-pack.js +171 -0
  3499. package/bundles/utils/node_modules/pngjs/lib/filter-parse-async.js +24 -0
  3500. package/bundles/utils/node_modules/pngjs/lib/filter-parse-sync.js +21 -0
  3501. package/bundles/utils/node_modules/pngjs/lib/filter-parse.js +177 -0
  3502. package/bundles/utils/node_modules/pngjs/lib/format-normaliser.js +93 -0
  3503. package/bundles/utils/node_modules/pngjs/lib/interlace.js +95 -0
  3504. package/bundles/utils/node_modules/pngjs/lib/packer-async.js +50 -0
  3505. package/bundles/utils/node_modules/pngjs/lib/packer-sync.js +56 -0
  3506. package/bundles/utils/node_modules/pngjs/lib/packer.js +129 -0
  3507. package/bundles/utils/node_modules/pngjs/lib/paeth-predictor.js +16 -0
  3508. package/bundles/utils/node_modules/pngjs/lib/parser-async.js +169 -0
  3509. package/bundles/utils/node_modules/pngjs/lib/parser-sync.js +112 -0
  3510. package/bundles/utils/node_modules/pngjs/lib/parser.js +290 -0
  3511. package/bundles/utils/node_modules/pngjs/lib/png-sync.js +12 -0
  3512. package/bundles/utils/node_modules/pngjs/lib/png.js +194 -0
  3513. package/bundles/utils/node_modules/pngjs/lib/sync-inflate.js +168 -0
  3514. package/bundles/utils/node_modules/pngjs/lib/sync-reader.js +45 -0
  3515. package/bundles/utils/node_modules/pngjs/package.json +77 -0
  3516. package/bundles/utils/node_modules/progress/CHANGELOG.md +115 -0
  3517. package/bundles/utils/node_modules/progress/LICENSE +22 -0
  3518. package/bundles/utils/node_modules/progress/Makefile +8 -0
  3519. package/bundles/utils/node_modules/progress/Readme.md +146 -0
  3520. package/bundles/utils/node_modules/progress/index.js +1 -0
  3521. package/bundles/utils/node_modules/progress/lib/node-progress.js +236 -0
  3522. package/bundles/utils/node_modules/progress/package.json +26 -0
  3523. package/bundles/utils/node_modules/proxy-from-env/.github/workflows/run-tests.yaml +66 -0
  3524. package/bundles/utils/node_modules/proxy-from-env/LICENSE +20 -0
  3525. package/bundles/utils/node_modules/proxy-from-env/README.md +154 -0
  3526. package/bundles/utils/node_modules/proxy-from-env/eslint.config.mjs +54 -0
  3527. package/bundles/utils/node_modules/proxy-from-env/index.js +103 -0
  3528. package/bundles/utils/node_modules/proxy-from-env/package.json +35 -0
  3529. package/bundles/utils/node_modules/proxy-from-env/test.js +432 -0
  3530. package/bundles/utils/node_modules/retry/.travis.yml +15 -0
  3531. package/bundles/utils/node_modules/retry/License +21 -0
  3532. package/bundles/utils/node_modules/retry/Makefile +18 -0
  3533. package/bundles/utils/node_modules/retry/README.md +227 -0
  3534. package/bundles/utils/node_modules/retry/equation.gif +0 -0
  3535. package/bundles/utils/node_modules/retry/example/dns.js +31 -0
  3536. package/bundles/utils/node_modules/retry/example/stop.js +40 -0
  3537. package/bundles/utils/node_modules/retry/index.js +1 -0
  3538. package/bundles/utils/node_modules/retry/lib/retry.js +100 -0
  3539. package/bundles/utils/node_modules/retry/lib/retry_operation.js +158 -0
  3540. package/bundles/utils/node_modules/retry/package.json +32 -0
  3541. package/bundles/utils/node_modules/retry/test/common.js +10 -0
  3542. package/bundles/utils/node_modules/retry/test/integration/test-forever.js +24 -0
  3543. package/bundles/utils/node_modules/retry/test/integration/test-retry-operation.js +258 -0
  3544. package/bundles/utils/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
  3545. package/bundles/utils/node_modules/retry/test/integration/test-timeouts.js +69 -0
  3546. package/bundles/utils/node_modules/signal-exit/LICENSE.txt +16 -0
  3547. package/bundles/utils/node_modules/signal-exit/README.md +39 -0
  3548. package/bundles/utils/node_modules/signal-exit/index.js +202 -0
  3549. package/bundles/utils/node_modules/signal-exit/package.json +38 -0
  3550. package/bundles/utils/node_modules/signal-exit/signals.js +53 -0
  3551. package/bundles/utils/node_modules/smart-buffer/.prettierrc.yaml +5 -0
  3552. package/bundles/utils/node_modules/smart-buffer/.travis.yml +13 -0
  3553. package/bundles/utils/node_modules/smart-buffer/LICENSE +20 -0
  3554. package/bundles/utils/node_modules/smart-buffer/README.md +633 -0
  3555. package/bundles/utils/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
  3556. package/bundles/utils/node_modules/smart-buffer/build/smartbuffer.js.map +1 -0
  3557. package/bundles/utils/node_modules/smart-buffer/build/utils.js +108 -0
  3558. package/bundles/utils/node_modules/smart-buffer/build/utils.js.map +1 -0
  3559. package/bundles/utils/node_modules/smart-buffer/docs/CHANGELOG.md +70 -0
  3560. package/bundles/utils/node_modules/smart-buffer/docs/README_v3.md +367 -0
  3561. package/bundles/utils/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
  3562. package/bundles/utils/node_modules/smart-buffer/package.json +79 -0
  3563. package/bundles/utils/node_modules/smart-buffer/typings/smartbuffer.d.ts +755 -0
  3564. package/bundles/utils/node_modules/smart-buffer/typings/utils.d.ts +66 -0
  3565. package/bundles/utils/node_modules/socks/.prettierrc.yaml +7 -0
  3566. package/bundles/utils/node_modules/socks/LICENSE +20 -0
  3567. package/bundles/utils/node_modules/socks/README.md +686 -0
  3568. package/bundles/utils/node_modules/socks/build/client/socksclient.js +793 -0
  3569. package/bundles/utils/node_modules/socks/build/client/socksclient.js.map +1 -0
  3570. package/bundles/utils/node_modules/socks/build/common/constants.js +108 -0
  3571. package/bundles/utils/node_modules/socks/build/common/constants.js.map +1 -0
  3572. package/bundles/utils/node_modules/socks/build/common/helpers.js +166 -0
  3573. package/bundles/utils/node_modules/socks/build/common/helpers.js.map +1 -0
  3574. package/bundles/utils/node_modules/socks/build/common/receivebuffer.js +43 -0
  3575. package/bundles/utils/node_modules/socks/build/common/receivebuffer.js.map +1 -0
  3576. package/bundles/utils/node_modules/socks/build/common/util.js +25 -0
  3577. package/bundles/utils/node_modules/socks/build/common/util.js.map +1 -0
  3578. package/bundles/utils/node_modules/socks/build/index.js +18 -0
  3579. package/bundles/utils/node_modules/socks/build/index.js.map +1 -0
  3580. package/bundles/utils/node_modules/socks/docs/examples/index.md +17 -0
  3581. package/bundles/utils/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
  3582. package/bundles/utils/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
  3583. package/bundles/utils/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
  3584. package/bundles/utils/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
  3585. package/bundles/utils/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
  3586. package/bundles/utils/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
  3587. package/bundles/utils/node_modules/socks/docs/index.md +5 -0
  3588. package/bundles/utils/node_modules/socks/docs/migratingFromV1.md +86 -0
  3589. package/bundles/utils/node_modules/socks/package.json +58 -0
  3590. package/bundles/utils/node_modules/socks/typings/client/socksclient.d.ts +162 -0
  3591. package/bundles/utils/node_modules/socks/typings/common/constants.d.ts +151 -0
  3592. package/bundles/utils/node_modules/socks/typings/common/helpers.d.ts +17 -0
  3593. package/bundles/utils/node_modules/socks/typings/common/receivebuffer.d.ts +12 -0
  3594. package/bundles/utils/node_modules/socks/typings/common/util.d.ts +14 -0
  3595. package/bundles/utils/node_modules/socks/typings/index.d.ts +1 -0
  3596. package/bundles/utils/node_modules/socks-proxy-agent/LICENSE +22 -0
  3597. package/bundles/utils/node_modules/socks-proxy-agent/README.md +50 -0
  3598. package/bundles/utils/node_modules/socks-proxy-agent/dist/index.d.ts +27 -0
  3599. package/bundles/utils/node_modules/socks-proxy-agent/dist/index.d.ts.map +1 -0
  3600. package/bundles/utils/node_modules/socks-proxy-agent/dist/index.js +195 -0
  3601. package/bundles/utils/node_modules/socks-proxy-agent/dist/index.js.map +1 -0
  3602. package/bundles/utils/node_modules/socks-proxy-agent/package.json +142 -0
  3603. package/bundles/utils/node_modules/sprintf-js/CONTRIBUTORS.md +26 -0
  3604. package/bundles/utils/node_modules/sprintf-js/LICENSE +24 -0
  3605. package/bundles/utils/node_modules/sprintf-js/README.md +143 -0
  3606. package/bundles/utils/node_modules/sprintf-js/dist/.gitattributes +4 -0
  3607. package/bundles/utils/node_modules/sprintf-js/dist/angular-sprintf.min.js +3 -0
  3608. package/bundles/utils/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +1 -0
  3609. package/bundles/utils/node_modules/sprintf-js/dist/sprintf.min.js +3 -0
  3610. package/bundles/utils/node_modules/sprintf-js/dist/sprintf.min.js.map +1 -0
  3611. package/bundles/utils/node_modules/sprintf-js/package.json +35 -0
  3612. package/bundles/utils/node_modules/ws/LICENSE +20 -0
  3613. package/bundles/utils/node_modules/ws/README.md +548 -0
  3614. package/bundles/utils/node_modules/ws/browser.js +8 -0
  3615. package/bundles/utils/node_modules/ws/index.js +13 -0
  3616. package/bundles/utils/node_modules/ws/lib/buffer-util.js +131 -0
  3617. package/bundles/utils/node_modules/ws/lib/constants.js +12 -0
  3618. package/bundles/utils/node_modules/ws/lib/event-target.js +292 -0
  3619. package/bundles/utils/node_modules/ws/lib/extension.js +203 -0
  3620. package/bundles/utils/node_modules/ws/lib/limiter.js +55 -0
  3621. package/bundles/utils/node_modules/ws/lib/permessage-deflate.js +514 -0
  3622. package/bundles/utils/node_modules/ws/lib/receiver.js +704 -0
  3623. package/bundles/utils/node_modules/ws/lib/sender.js +497 -0
  3624. package/bundles/utils/node_modules/ws/lib/stream.js +159 -0
  3625. package/bundles/utils/node_modules/ws/lib/subprotocol.js +62 -0
  3626. package/bundles/utils/node_modules/ws/lib/validation.js +130 -0
  3627. package/bundles/utils/node_modules/ws/lib/websocket-server.js +540 -0
  3628. package/bundles/utils/node_modules/ws/lib/websocket.js +1338 -0
  3629. package/bundles/utils/node_modules/ws/package.json +69 -0
  3630. package/bundles/utils/node_modules/ws/wrapper.mjs +8 -0
  3631. package/bundles/utils/node_modules/yaml/LICENSE +13 -0
  3632. package/bundles/utils/node_modules/yaml/README.md +169 -0
  3633. package/bundles/utils/node_modules/yaml/bin.mjs +11 -0
  3634. package/bundles/utils/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
  3635. package/bundles/utils/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
  3636. package/bundles/utils/node_modules/yaml/browser/dist/compose/compose-node.js +102 -0
  3637. package/bundles/utils/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
  3638. package/bundles/utils/node_modules/yaml/browser/dist/compose/composer.js +217 -0
  3639. package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
  3640. package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
  3641. package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
  3642. package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
  3643. package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
  3644. package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
  3645. package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-props.js +148 -0
  3646. package/bundles/utils/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
  3647. package/bundles/utils/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +27 -0
  3648. package/bundles/utils/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
  3649. package/bundles/utils/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
  3650. package/bundles/utils/node_modules/yaml/browser/dist/doc/Document.js +335 -0
  3651. package/bundles/utils/node_modules/yaml/browser/dist/doc/anchors.js +72 -0
  3652. package/bundles/utils/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
  3653. package/bundles/utils/node_modules/yaml/browser/dist/doc/createNode.js +89 -0
  3654. package/bundles/utils/node_modules/yaml/browser/dist/doc/directives.js +176 -0
  3655. package/bundles/utils/node_modules/yaml/browser/dist/errors.js +57 -0
  3656. package/bundles/utils/node_modules/yaml/browser/dist/index.js +17 -0
  3657. package/bundles/utils/node_modules/yaml/browser/dist/log.js +14 -0
  3658. package/bundles/utils/node_modules/yaml/browser/dist/nodes/Alias.js +101 -0
  3659. package/bundles/utils/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
  3660. package/bundles/utils/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
  3661. package/bundles/utils/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
  3662. package/bundles/utils/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
  3663. package/bundles/utils/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
  3664. package/bundles/utils/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
  3665. package/bundles/utils/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +62 -0
  3666. package/bundles/utils/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
  3667. package/bundles/utils/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
  3668. package/bundles/utils/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
  3669. package/bundles/utils/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
  3670. package/bundles/utils/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
  3671. package/bundles/utils/node_modules/yaml/browser/dist/parse/cst.js +98 -0
  3672. package/bundles/utils/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
  3673. package/bundles/utils/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
  3674. package/bundles/utils/node_modules/yaml/browser/dist/parse/parser.js +954 -0
  3675. package/bundles/utils/node_modules/yaml/browser/dist/public-api.js +102 -0
  3676. package/bundles/utils/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
  3677. package/bundles/utils/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
  3678. package/bundles/utils/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
  3679. package/bundles/utils/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
  3680. package/bundles/utils/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
  3681. package/bundles/utils/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
  3682. package/bundles/utils/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
  3683. package/bundles/utils/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
  3684. package/bundles/utils/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
  3685. package/bundles/utils/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
  3686. package/bundles/utils/node_modules/yaml/browser/dist/schema/tags.js +96 -0
  3687. package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +66 -0
  3688. package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
  3689. package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
  3690. package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
  3691. package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
  3692. package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
  3693. package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
  3694. package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
  3695. package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
  3696. package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
  3697. package/bundles/utils/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
  3698. package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
  3699. package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +143 -0
  3700. package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
  3701. package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
  3702. package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
  3703. package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
  3704. package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyString.js +328 -0
  3705. package/bundles/utils/node_modules/yaml/browser/dist/util.js +11 -0
  3706. package/bundles/utils/node_modules/yaml/browser/dist/visit.js +233 -0
  3707. package/bundles/utils/node_modules/yaml/browser/index.js +5 -0
  3708. package/bundles/utils/node_modules/yaml/browser/package.json +3 -0
  3709. package/bundles/utils/node_modules/yaml/dist/cli.d.ts +8 -0
  3710. package/bundles/utils/node_modules/yaml/dist/cli.mjs +199 -0
  3711. package/bundles/utils/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
  3712. package/bundles/utils/node_modules/yaml/dist/compose/compose-collection.js +90 -0
  3713. package/bundles/utils/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
  3714. package/bundles/utils/node_modules/yaml/dist/compose/compose-doc.js +45 -0
  3715. package/bundles/utils/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
  3716. package/bundles/utils/node_modules/yaml/dist/compose/compose-node.js +105 -0
  3717. package/bundles/utils/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
  3718. package/bundles/utils/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
  3719. package/bundles/utils/node_modules/yaml/dist/compose/composer.d.ts +62 -0
  3720. package/bundles/utils/node_modules/yaml/dist/compose/composer.js +221 -0
  3721. package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
  3722. package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
  3723. package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
  3724. package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
  3725. package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
  3726. package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
  3727. package/bundles/utils/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
  3728. package/bundles/utils/node_modules/yaml/dist/compose/resolve-end.js +39 -0
  3729. package/bundles/utils/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
  3730. package/bundles/utils/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
  3731. package/bundles/utils/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
  3732. package/bundles/utils/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
  3733. package/bundles/utils/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
  3734. package/bundles/utils/node_modules/yaml/dist/compose/resolve-props.js +150 -0
  3735. package/bundles/utils/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
  3736. package/bundles/utils/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
  3737. package/bundles/utils/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
  3738. package/bundles/utils/node_modules/yaml/dist/compose/util-empty-scalar-position.js +29 -0
  3739. package/bundles/utils/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
  3740. package/bundles/utils/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
  3741. package/bundles/utils/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
  3742. package/bundles/utils/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
  3743. package/bundles/utils/node_modules/yaml/dist/doc/Document.d.ts +141 -0
  3744. package/bundles/utils/node_modules/yaml/dist/doc/Document.js +337 -0
  3745. package/bundles/utils/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
  3746. package/bundles/utils/node_modules/yaml/dist/doc/anchors.js +77 -0
  3747. package/bundles/utils/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
  3748. package/bundles/utils/node_modules/yaml/dist/doc/applyReviver.js +57 -0
  3749. package/bundles/utils/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
  3750. package/bundles/utils/node_modules/yaml/dist/doc/createNode.js +91 -0
  3751. package/bundles/utils/node_modules/yaml/dist/doc/directives.d.ts +49 -0
  3752. package/bundles/utils/node_modules/yaml/dist/doc/directives.js +178 -0
  3753. package/bundles/utils/node_modules/yaml/dist/errors.d.ts +21 -0
  3754. package/bundles/utils/node_modules/yaml/dist/errors.js +62 -0
  3755. package/bundles/utils/node_modules/yaml/dist/index.d.ts +22 -0
  3756. package/bundles/utils/node_modules/yaml/dist/index.js +50 -0
  3757. package/bundles/utils/node_modules/yaml/dist/log.d.ts +3 -0
  3758. package/bundles/utils/node_modules/yaml/dist/log.js +17 -0
  3759. package/bundles/utils/node_modules/yaml/dist/nodes/Alias.d.ts +28 -0
  3760. package/bundles/utils/node_modules/yaml/dist/nodes/Alias.js +103 -0
  3761. package/bundles/utils/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
  3762. package/bundles/utils/node_modules/yaml/dist/nodes/Collection.js +151 -0
  3763. package/bundles/utils/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
  3764. package/bundles/utils/node_modules/yaml/dist/nodes/Node.js +40 -0
  3765. package/bundles/utils/node_modules/yaml/dist/nodes/Pair.d.ts +21 -0
  3766. package/bundles/utils/node_modules/yaml/dist/nodes/Pair.js +39 -0
  3767. package/bundles/utils/node_modules/yaml/dist/nodes/Scalar.d.ts +42 -0
  3768. package/bundles/utils/node_modules/yaml/dist/nodes/Scalar.js +27 -0
  3769. package/bundles/utils/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
  3770. package/bundles/utils/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
  3771. package/bundles/utils/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
  3772. package/bundles/utils/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
  3773. package/bundles/utils/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
  3774. package/bundles/utils/node_modules/yaml/dist/nodes/addPairToJSMap.js +64 -0
  3775. package/bundles/utils/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
  3776. package/bundles/utils/node_modules/yaml/dist/nodes/identity.js +53 -0
  3777. package/bundles/utils/node_modules/yaml/dist/nodes/toJS.d.ts +27 -0
  3778. package/bundles/utils/node_modules/yaml/dist/nodes/toJS.js +39 -0
  3779. package/bundles/utils/node_modules/yaml/dist/options.d.ts +344 -0
  3780. package/bundles/utils/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
  3781. package/bundles/utils/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
  3782. package/bundles/utils/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
  3783. package/bundles/utils/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
  3784. package/bundles/utils/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
  3785. package/bundles/utils/node_modules/yaml/dist/parse/cst-visit.js +99 -0
  3786. package/bundles/utils/node_modules/yaml/dist/parse/cst.d.ts +108 -0
  3787. package/bundles/utils/node_modules/yaml/dist/parse/cst.js +112 -0
  3788. package/bundles/utils/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
  3789. package/bundles/utils/node_modules/yaml/dist/parse/lexer.js +719 -0
  3790. package/bundles/utils/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
  3791. package/bundles/utils/node_modules/yaml/dist/parse/line-counter.js +41 -0
  3792. package/bundles/utils/node_modules/yaml/dist/parse/parser.d.ts +84 -0
  3793. package/bundles/utils/node_modules/yaml/dist/parse/parser.js +958 -0
  3794. package/bundles/utils/node_modules/yaml/dist/public-api.d.ts +43 -0
  3795. package/bundles/utils/node_modules/yaml/dist/public-api.js +107 -0
  3796. package/bundles/utils/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
  3797. package/bundles/utils/node_modules/yaml/dist/schema/Schema.js +39 -0
  3798. package/bundles/utils/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
  3799. package/bundles/utils/node_modules/yaml/dist/schema/common/map.js +19 -0
  3800. package/bundles/utils/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
  3801. package/bundles/utils/node_modules/yaml/dist/schema/common/null.js +17 -0
  3802. package/bundles/utils/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
  3803. package/bundles/utils/node_modules/yaml/dist/schema/common/seq.js +19 -0
  3804. package/bundles/utils/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
  3805. package/bundles/utils/node_modules/yaml/dist/schema/common/string.js +16 -0
  3806. package/bundles/utils/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
  3807. package/bundles/utils/node_modules/yaml/dist/schema/core/bool.js +21 -0
  3808. package/bundles/utils/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
  3809. package/bundles/utils/node_modules/yaml/dist/schema/core/float.js +47 -0
  3810. package/bundles/utils/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
  3811. package/bundles/utils/node_modules/yaml/dist/schema/core/int.js +42 -0
  3812. package/bundles/utils/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
  3813. package/bundles/utils/node_modules/yaml/dist/schema/core/schema.js +25 -0
  3814. package/bundles/utils/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
  3815. package/bundles/utils/node_modules/yaml/dist/schema/json/schema.js +64 -0
  3816. package/bundles/utils/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
  3817. package/bundles/utils/node_modules/yaml/dist/schema/tags.d.ts +48 -0
  3818. package/bundles/utils/node_modules/yaml/dist/schema/tags.js +99 -0
  3819. package/bundles/utils/node_modules/yaml/dist/schema/types.d.ts +92 -0
  3820. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
  3821. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/binary.js +68 -0
  3822. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
  3823. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
  3824. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
  3825. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
  3826. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
  3827. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
  3828. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
  3829. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
  3830. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +28 -0
  3831. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
  3832. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
  3833. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
  3834. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
  3835. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
  3836. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
  3837. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
  3838. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
  3839. package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
  3840. package/bundles/utils/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
  3841. package/bundles/utils/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
  3842. package/bundles/utils/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
  3843. package/bundles/utils/node_modules/yaml/dist/stringify/stringify.js +132 -0
  3844. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
  3845. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyCollection.js +145 -0
  3846. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
  3847. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
  3848. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
  3849. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
  3850. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
  3851. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
  3852. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
  3853. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
  3854. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
  3855. package/bundles/utils/node_modules/yaml/dist/stringify/stringifyString.js +330 -0
  3856. package/bundles/utils/node_modules/yaml/dist/test-events.d.ts +4 -0
  3857. package/bundles/utils/node_modules/yaml/dist/test-events.js +134 -0
  3858. package/bundles/utils/node_modules/yaml/dist/util.d.ts +12 -0
  3859. package/bundles/utils/node_modules/yaml/dist/util.js +28 -0
  3860. package/bundles/utils/node_modules/yaml/dist/visit.d.ts +102 -0
  3861. package/bundles/utils/node_modules/yaml/dist/visit.js +236 -0
  3862. package/bundles/utils/node_modules/yaml/package.json +96 -0
  3863. package/bundles/utils/node_modules/yaml/util.js +2 -0
  3864. package/bundles/zip/node_modules/.package-lock.json +139 -0
  3865. package/bundles/zip/node_modules/@types/node/LICENSE +21 -0
  3866. package/bundles/zip/node_modules/@types/node/README.md +16 -0
  3867. package/bundles/zip/node_modules/@types/node/assert/strict.d.ts +8 -0
  3868. package/bundles/zip/node_modules/@types/node/assert.d.ts +912 -0
  3869. package/bundles/zip/node_modules/@types/node/async_hooks.d.ts +501 -0
  3870. package/bundles/zip/node_modules/@types/node/buffer.d.ts +2232 -0
  3871. package/bundles/zip/node_modules/@types/node/child_process.d.ts +1366 -0
  3872. package/bundles/zip/node_modules/@types/node/cluster.d.ts +414 -0
  3873. package/bundles/zip/node_modules/@types/node/console.d.ts +412 -0
  3874. package/bundles/zip/node_modules/@types/node/constants.d.ts +18 -0
  3875. package/bundles/zip/node_modules/@types/node/crypto.d.ts +3307 -0
  3876. package/bundles/zip/node_modules/@types/node/dgram.d.ts +545 -0
  3877. package/bundles/zip/node_modules/@types/node/diagnostics_channel.d.ts +134 -0
  3878. package/bundles/zip/node_modules/@types/node/dns/promises.d.ts +370 -0
  3879. package/bundles/zip/node_modules/@types/node/dns.d.ts +659 -0
  3880. package/bundles/zip/node_modules/@types/node/domain.d.ts +169 -0
  3881. package/bundles/zip/node_modules/@types/node/events.d.ts +651 -0
  3882. package/bundles/zip/node_modules/@types/node/fs/promises.d.ts +1091 -0
  3883. package/bundles/zip/node_modules/@types/node/fs.d.ts +3869 -0
  3884. package/bundles/zip/node_modules/@types/node/globals.d.ts +284 -0
  3885. package/bundles/zip/node_modules/@types/node/globals.global.d.ts +1 -0
  3886. package/bundles/zip/node_modules/@types/node/http.d.ts +1396 -0
  3887. package/bundles/zip/node_modules/@types/node/http2.d.ts +2100 -0
  3888. package/bundles/zip/node_modules/@types/node/https.d.ts +391 -0
  3889. package/bundles/zip/node_modules/@types/node/index.d.ts +129 -0
  3890. package/bundles/zip/node_modules/@types/node/inspector.d.ts +2744 -0
  3891. package/bundles/zip/node_modules/@types/node/module.d.ts +114 -0
  3892. package/bundles/zip/node_modules/@types/node/net.d.ts +791 -0
  3893. package/bundles/zip/node_modules/@types/node/os.d.ts +455 -0
  3894. package/bundles/zip/node_modules/@types/node/package.json +220 -0
  3895. package/bundles/zip/node_modules/@types/node/path.d.ts +180 -0
  3896. package/bundles/zip/node_modules/@types/node/perf_hooks.d.ts +557 -0
  3897. package/bundles/zip/node_modules/@types/node/process.d.ts +1481 -0
  3898. package/bundles/zip/node_modules/@types/node/punycode.d.ts +117 -0
  3899. package/bundles/zip/node_modules/@types/node/querystring.d.ts +131 -0
  3900. package/bundles/zip/node_modules/@types/node/readline.d.ts +650 -0
  3901. package/bundles/zip/node_modules/@types/node/repl.d.ts +424 -0
  3902. package/bundles/zip/node_modules/@types/node/stream/consumers.d.ts +24 -0
  3903. package/bundles/zip/node_modules/@types/node/stream/promises.d.ts +42 -0
  3904. package/bundles/zip/node_modules/@types/node/stream/web.d.ts +330 -0
  3905. package/bundles/zip/node_modules/@types/node/stream.d.ts +1249 -0
  3906. package/bundles/zip/node_modules/@types/node/string_decoder.d.ts +67 -0
  3907. package/bundles/zip/node_modules/@types/node/timers/promises.d.ts +68 -0
  3908. package/bundles/zip/node_modules/@types/node/timers.d.ts +94 -0
  3909. package/bundles/zip/node_modules/@types/node/tls.d.ts +1020 -0
  3910. package/bundles/zip/node_modules/@types/node/trace_events.d.ts +161 -0
  3911. package/bundles/zip/node_modules/@types/node/tty.d.ts +204 -0
  3912. package/bundles/zip/node_modules/@types/node/url.d.ts +891 -0
  3913. package/bundles/zip/node_modules/@types/node/util.d.ts +1594 -0
  3914. package/bundles/zip/node_modules/@types/node/v8.d.ts +378 -0
  3915. package/bundles/zip/node_modules/@types/node/vm.d.ts +507 -0
  3916. package/bundles/zip/node_modules/@types/node/wasi.d.ts +158 -0
  3917. package/bundles/zip/node_modules/@types/node/worker_threads.d.ts +649 -0
  3918. package/bundles/zip/node_modules/@types/node/zlib.d.ts +517 -0
  3919. package/bundles/zip/node_modules/@types/yauzl/LICENSE +21 -0
  3920. package/bundles/zip/node_modules/@types/yauzl/README.md +16 -0
  3921. package/bundles/zip/node_modules/@types/yauzl/index.d.ts +98 -0
  3922. package/bundles/zip/node_modules/@types/yauzl/package.json +27 -0
  3923. package/bundles/zip/node_modules/@types/yazl/LICENSE +21 -0
  3924. package/bundles/zip/node_modules/@types/yazl/README.md +16 -0
  3925. package/bundles/zip/node_modules/@types/yazl/index.d.ts +46 -0
  3926. package/bundles/zip/node_modules/@types/yazl/package.json +31 -0
  3927. package/bundles/zip/node_modules/buffer-crc32/LICENSE +19 -0
  3928. package/bundles/zip/node_modules/buffer-crc32/README.md +47 -0
  3929. package/bundles/zip/node_modules/buffer-crc32/index.js +111 -0
  3930. package/bundles/zip/node_modules/buffer-crc32/package.json +39 -0
  3931. package/bundles/zip/node_modules/debug/LICENSE +20 -0
  3932. package/bundles/zip/node_modules/debug/README.md +481 -0
  3933. package/bundles/zip/node_modules/debug/package.json +65 -0
  3934. package/bundles/zip/node_modules/end-of-stream/LICENSE +21 -0
  3935. package/bundles/zip/node_modules/end-of-stream/README.md +54 -0
  3936. package/bundles/zip/node_modules/end-of-stream/index.js +94 -0
  3937. package/bundles/zip/node_modules/end-of-stream/package.json +37 -0
  3938. package/bundles/zip/node_modules/get-stream/buffer-stream.js +52 -0
  3939. package/bundles/zip/node_modules/get-stream/index.d.ts +108 -0
  3940. package/bundles/zip/node_modules/get-stream/index.js +60 -0
  3941. package/bundles/zip/node_modules/get-stream/license +9 -0
  3942. package/bundles/zip/node_modules/get-stream/package.json +50 -0
  3943. package/bundles/zip/node_modules/get-stream/readme.md +124 -0
  3944. package/bundles/zip/node_modules/ms/index.js +162 -0
  3945. package/bundles/zip/node_modules/ms/license.md +21 -0
  3946. package/bundles/zip/node_modules/ms/package.json +38 -0
  3947. package/bundles/zip/node_modules/ms/readme.md +59 -0
  3948. package/bundles/zip/node_modules/once/LICENSE +15 -0
  3949. package/bundles/zip/node_modules/once/README.md +79 -0
  3950. package/bundles/zip/node_modules/once/once.js +42 -0
  3951. package/bundles/zip/node_modules/once/package.json +33 -0
  3952. package/bundles/zip/node_modules/pend/LICENSE +23 -0
  3953. package/bundles/zip/node_modules/pend/README.md +41 -0
  3954. package/bundles/zip/node_modules/pend/index.js +55 -0
  3955. package/bundles/zip/node_modules/pend/package.json +18 -0
  3956. package/bundles/zip/node_modules/pend/test.js +137 -0
  3957. package/bundles/zip/node_modules/pump/.github/FUNDING.yml +2 -0
  3958. package/bundles/zip/node_modules/pump/.travis.yml +5 -0
  3959. package/bundles/zip/node_modules/pump/LICENSE +21 -0
  3960. package/bundles/zip/node_modules/pump/README.md +74 -0
  3961. package/bundles/zip/node_modules/pump/SECURITY.md +5 -0
  3962. package/bundles/zip/node_modules/pump/index.js +86 -0
  3963. package/bundles/zip/node_modules/pump/package.json +24 -0
  3964. package/bundles/zip/node_modules/pump/test-browser.js +66 -0
  3965. package/bundles/zip/node_modules/pump/test-node.js +53 -0
  3966. package/bundles/zip/node_modules/wrappy/LICENSE +15 -0
  3967. package/bundles/zip/node_modules/wrappy/README.md +36 -0
  3968. package/bundles/zip/node_modules/wrappy/package.json +29 -0
  3969. package/bundles/zip/node_modules/wrappy/wrappy.js +33 -0
  3970. package/bundles/zip/node_modules/yauzl/LICENSE +21 -0
  3971. package/bundles/zip/node_modules/yauzl/README.md +873 -0
  3972. package/bundles/zip/node_modules/yauzl/fd-slicer.js +314 -0
  3973. package/bundles/zip/node_modules/yauzl/index.js +954 -0
  3974. package/bundles/zip/node_modules/yauzl/package.json +40 -0
  3975. package/bundles/zip/node_modules/yazl/LICENSE +21 -0
  3976. package/bundles/zip/node_modules/yazl/README.md +389 -0
  3977. package/bundles/zip/node_modules/yazl/index.js +749 -0
  3978. package/bundles/zip/node_modules/yazl/package.json +38 -0
  3979. package/lib/tools/mcp/program.js +14 -4
  3980. package/lib/tools/utils/mcp/server.js +2 -1
  3981. package/lib/vite/traceViewer/index.CzAVbF3D.js +2 -0
  3982. package/lib/vite/traceViewer/index.html +1 -1
  3983. package/package.json +1 -1
@@ -0,0 +1,2744 @@
1
+ // tslint:disable-next-line:dt-header
2
+ // Type definitions for inspector
3
+
4
+ // These definitions are auto-generated.
5
+ // Please see https://github.com/DefinitelyTyped/DefinitelyTyped/pull/19330
6
+ // for more information.
7
+
8
+ // tslint:disable:max-line-length
9
+
10
+ /**
11
+ * The `inspector` module provides an API for interacting with the V8 inspector.
12
+ *
13
+ * It can be accessed using:
14
+ *
15
+ * ```js
16
+ * const inspector = require('inspector');
17
+ * ```
18
+ * @see [source](https://github.com/nodejs/node/blob/v17.0.0/lib/inspector.js)
19
+ */
20
+ declare module 'inspector' {
21
+ import EventEmitter = require('node:events');
22
+ interface InspectorNotification<T> {
23
+ method: string;
24
+ params: T;
25
+ }
26
+ namespace Schema {
27
+ /**
28
+ * Description of the protocol domain.
29
+ */
30
+ interface Domain {
31
+ /**
32
+ * Domain name.
33
+ */
34
+ name: string;
35
+ /**
36
+ * Domain version.
37
+ */
38
+ version: string;
39
+ }
40
+ interface GetDomainsReturnType {
41
+ /**
42
+ * List of supported domains.
43
+ */
44
+ domains: Domain[];
45
+ }
46
+ }
47
+ namespace Runtime {
48
+ /**
49
+ * Unique script identifier.
50
+ */
51
+ type ScriptId = string;
52
+ /**
53
+ * Unique object identifier.
54
+ */
55
+ type RemoteObjectId = string;
56
+ /**
57
+ * Primitive value which cannot be JSON-stringified.
58
+ */
59
+ type UnserializableValue = string;
60
+ /**
61
+ * Mirror object referencing original JavaScript object.
62
+ */
63
+ interface RemoteObject {
64
+ /**
65
+ * Object type.
66
+ */
67
+ type: string;
68
+ /**
69
+ * Object subtype hint. Specified for <code>object</code> type values only.
70
+ */
71
+ subtype?: string | undefined;
72
+ /**
73
+ * Object class (constructor) name. Specified for <code>object</code> type values only.
74
+ */
75
+ className?: string | undefined;
76
+ /**
77
+ * Remote object value in case of primitive values or JSON values (if it was requested).
78
+ */
79
+ value?: any;
80
+ /**
81
+ * Primitive value which can not be JSON-stringified does not have <code>value</code>, but gets this property.
82
+ */
83
+ unserializableValue?: UnserializableValue | undefined;
84
+ /**
85
+ * String representation of the object.
86
+ */
87
+ description?: string | undefined;
88
+ /**
89
+ * Unique object identifier (for non-primitive values).
90
+ */
91
+ objectId?: RemoteObjectId | undefined;
92
+ /**
93
+ * Preview containing abbreviated property values. Specified for <code>object</code> type values only.
94
+ * @experimental
95
+ */
96
+ preview?: ObjectPreview | undefined;
97
+ /**
98
+ * @experimental
99
+ */
100
+ customPreview?: CustomPreview | undefined;
101
+ }
102
+ /**
103
+ * @experimental
104
+ */
105
+ interface CustomPreview {
106
+ header: string;
107
+ hasBody: boolean;
108
+ formatterObjectId: RemoteObjectId;
109
+ bindRemoteObjectFunctionId: RemoteObjectId;
110
+ configObjectId?: RemoteObjectId | undefined;
111
+ }
112
+ /**
113
+ * Object containing abbreviated remote object value.
114
+ * @experimental
115
+ */
116
+ interface ObjectPreview {
117
+ /**
118
+ * Object type.
119
+ */
120
+ type: string;
121
+ /**
122
+ * Object subtype hint. Specified for <code>object</code> type values only.
123
+ */
124
+ subtype?: string | undefined;
125
+ /**
126
+ * String representation of the object.
127
+ */
128
+ description?: string | undefined;
129
+ /**
130
+ * True iff some of the properties or entries of the original object did not fit.
131
+ */
132
+ overflow: boolean;
133
+ /**
134
+ * List of the properties.
135
+ */
136
+ properties: PropertyPreview[];
137
+ /**
138
+ * List of the entries. Specified for <code>map</code> and <code>set</code> subtype values only.
139
+ */
140
+ entries?: EntryPreview[] | undefined;
141
+ }
142
+ /**
143
+ * @experimental
144
+ */
145
+ interface PropertyPreview {
146
+ /**
147
+ * Property name.
148
+ */
149
+ name: string;
150
+ /**
151
+ * Object type. Accessor means that the property itself is an accessor property.
152
+ */
153
+ type: string;
154
+ /**
155
+ * User-friendly property value string.
156
+ */
157
+ value?: string | undefined;
158
+ /**
159
+ * Nested value preview.
160
+ */
161
+ valuePreview?: ObjectPreview | undefined;
162
+ /**
163
+ * Object subtype hint. Specified for <code>object</code> type values only.
164
+ */
165
+ subtype?: string | undefined;
166
+ }
167
+ /**
168
+ * @experimental
169
+ */
170
+ interface EntryPreview {
171
+ /**
172
+ * Preview of the key. Specified for map-like collection entries.
173
+ */
174
+ key?: ObjectPreview | undefined;
175
+ /**
176
+ * Preview of the value.
177
+ */
178
+ value: ObjectPreview;
179
+ }
180
+ /**
181
+ * Object property descriptor.
182
+ */
183
+ interface PropertyDescriptor {
184
+ /**
185
+ * Property name or symbol description.
186
+ */
187
+ name: string;
188
+ /**
189
+ * The value associated with the property.
190
+ */
191
+ value?: RemoteObject | undefined;
192
+ /**
193
+ * True if the value associated with the property may be changed (data descriptors only).
194
+ */
195
+ writable?: boolean | undefined;
196
+ /**
197
+ * A function which serves as a getter for the property, or <code>undefined</code> if there is no getter (accessor descriptors only).
198
+ */
199
+ get?: RemoteObject | undefined;
200
+ /**
201
+ * A function which serves as a setter for the property, or <code>undefined</code> if there is no setter (accessor descriptors only).
202
+ */
203
+ set?: RemoteObject | undefined;
204
+ /**
205
+ * True if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.
206
+ */
207
+ configurable: boolean;
208
+ /**
209
+ * True if this property shows up during enumeration of the properties on the corresponding object.
210
+ */
211
+ enumerable: boolean;
212
+ /**
213
+ * True if the result was thrown during the evaluation.
214
+ */
215
+ wasThrown?: boolean | undefined;
216
+ /**
217
+ * True if the property is owned for the object.
218
+ */
219
+ isOwn?: boolean | undefined;
220
+ /**
221
+ * Property symbol object, if the property is of the <code>symbol</code> type.
222
+ */
223
+ symbol?: RemoteObject | undefined;
224
+ }
225
+ /**
226
+ * Object internal property descriptor. This property isn't normally visible in JavaScript code.
227
+ */
228
+ interface InternalPropertyDescriptor {
229
+ /**
230
+ * Conventional property name.
231
+ */
232
+ name: string;
233
+ /**
234
+ * The value associated with the property.
235
+ */
236
+ value?: RemoteObject | undefined;
237
+ }
238
+ /**
239
+ * Represents function call argument. Either remote object id <code>objectId</code>, primitive <code>value</code>, unserializable primitive value or neither of (for undefined) them should be specified.
240
+ */
241
+ interface CallArgument {
242
+ /**
243
+ * Primitive value or serializable javascript object.
244
+ */
245
+ value?: any;
246
+ /**
247
+ * Primitive value which can not be JSON-stringified.
248
+ */
249
+ unserializableValue?: UnserializableValue | undefined;
250
+ /**
251
+ * Remote object handle.
252
+ */
253
+ objectId?: RemoteObjectId | undefined;
254
+ }
255
+ /**
256
+ * Id of an execution context.
257
+ */
258
+ type ExecutionContextId = number;
259
+ /**
260
+ * Description of an isolated world.
261
+ */
262
+ interface ExecutionContextDescription {
263
+ /**
264
+ * Unique id of the execution context. It can be used to specify in which execution context script evaluation should be performed.
265
+ */
266
+ id: ExecutionContextId;
267
+ /**
268
+ * Execution context origin.
269
+ */
270
+ origin: string;
271
+ /**
272
+ * Human readable name describing given context.
273
+ */
274
+ name: string;
275
+ /**
276
+ * Embedder-specific auxiliary data.
277
+ */
278
+ auxData?: {} | undefined;
279
+ }
280
+ /**
281
+ * Detailed information about exception (or error) that was thrown during script compilation or execution.
282
+ */
283
+ interface ExceptionDetails {
284
+ /**
285
+ * Exception id.
286
+ */
287
+ exceptionId: number;
288
+ /**
289
+ * Exception text, which should be used together with exception object when available.
290
+ */
291
+ text: string;
292
+ /**
293
+ * Line number of the exception location (0-based).
294
+ */
295
+ lineNumber: number;
296
+ /**
297
+ * Column number of the exception location (0-based).
298
+ */
299
+ columnNumber: number;
300
+ /**
301
+ * Script ID of the exception location.
302
+ */
303
+ scriptId?: ScriptId | undefined;
304
+ /**
305
+ * URL of the exception location, to be used when the script was not reported.
306
+ */
307
+ url?: string | undefined;
308
+ /**
309
+ * JavaScript stack trace if available.
310
+ */
311
+ stackTrace?: StackTrace | undefined;
312
+ /**
313
+ * Exception object if available.
314
+ */
315
+ exception?: RemoteObject | undefined;
316
+ /**
317
+ * Identifier of the context where exception happened.
318
+ */
319
+ executionContextId?: ExecutionContextId | undefined;
320
+ }
321
+ /**
322
+ * Number of milliseconds since epoch.
323
+ */
324
+ type Timestamp = number;
325
+ /**
326
+ * Stack entry for runtime errors and assertions.
327
+ */
328
+ interface CallFrame {
329
+ /**
330
+ * JavaScript function name.
331
+ */
332
+ functionName: string;
333
+ /**
334
+ * JavaScript script id.
335
+ */
336
+ scriptId: ScriptId;
337
+ /**
338
+ * JavaScript script name or url.
339
+ */
340
+ url: string;
341
+ /**
342
+ * JavaScript script line number (0-based).
343
+ */
344
+ lineNumber: number;
345
+ /**
346
+ * JavaScript script column number (0-based).
347
+ */
348
+ columnNumber: number;
349
+ }
350
+ /**
351
+ * Call frames for assertions or error messages.
352
+ */
353
+ interface StackTrace {
354
+ /**
355
+ * String label of this stack trace. For async traces this may be a name of the function that initiated the async call.
356
+ */
357
+ description?: string | undefined;
358
+ /**
359
+ * JavaScript function name.
360
+ */
361
+ callFrames: CallFrame[];
362
+ /**
363
+ * Asynchronous JavaScript stack trace that preceded this stack, if available.
364
+ */
365
+ parent?: StackTrace | undefined;
366
+ /**
367
+ * Asynchronous JavaScript stack trace that preceded this stack, if available.
368
+ * @experimental
369
+ */
370
+ parentId?: StackTraceId | undefined;
371
+ }
372
+ /**
373
+ * Unique identifier of current debugger.
374
+ * @experimental
375
+ */
376
+ type UniqueDebuggerId = string;
377
+ /**
378
+ * If <code>debuggerId</code> is set stack trace comes from another debugger and can be resolved there. This allows to track cross-debugger calls. See <code>Runtime.StackTrace</code> and <code>Debugger.paused</code> for usages.
379
+ * @experimental
380
+ */
381
+ interface StackTraceId {
382
+ id: string;
383
+ debuggerId?: UniqueDebuggerId | undefined;
384
+ }
385
+ interface EvaluateParameterType {
386
+ /**
387
+ * Expression to evaluate.
388
+ */
389
+ expression: string;
390
+ /**
391
+ * Symbolic group name that can be used to release multiple objects.
392
+ */
393
+ objectGroup?: string | undefined;
394
+ /**
395
+ * Determines whether Command Line API should be available during the evaluation.
396
+ */
397
+ includeCommandLineAPI?: boolean | undefined;
398
+ /**
399
+ * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
400
+ */
401
+ silent?: boolean | undefined;
402
+ /**
403
+ * Specifies in which execution context to perform evaluation. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
404
+ */
405
+ contextId?: ExecutionContextId | undefined;
406
+ /**
407
+ * Whether the result is expected to be a JSON object that should be sent by value.
408
+ */
409
+ returnByValue?: boolean | undefined;
410
+ /**
411
+ * Whether preview should be generated for the result.
412
+ * @experimental
413
+ */
414
+ generatePreview?: boolean | undefined;
415
+ /**
416
+ * Whether execution should be treated as initiated by user in the UI.
417
+ */
418
+ userGesture?: boolean | undefined;
419
+ /**
420
+ * Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.
421
+ */
422
+ awaitPromise?: boolean | undefined;
423
+ }
424
+ interface AwaitPromiseParameterType {
425
+ /**
426
+ * Identifier of the promise.
427
+ */
428
+ promiseObjectId: RemoteObjectId;
429
+ /**
430
+ * Whether the result is expected to be a JSON object that should be sent by value.
431
+ */
432
+ returnByValue?: boolean | undefined;
433
+ /**
434
+ * Whether preview should be generated for the result.
435
+ */
436
+ generatePreview?: boolean | undefined;
437
+ }
438
+ interface CallFunctionOnParameterType {
439
+ /**
440
+ * Declaration of the function to call.
441
+ */
442
+ functionDeclaration: string;
443
+ /**
444
+ * Identifier of the object to call function on. Either objectId or executionContextId should be specified.
445
+ */
446
+ objectId?: RemoteObjectId | undefined;
447
+ /**
448
+ * Call arguments. All call arguments must belong to the same JavaScript world as the target object.
449
+ */
450
+ arguments?: CallArgument[] | undefined;
451
+ /**
452
+ * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
453
+ */
454
+ silent?: boolean | undefined;
455
+ /**
456
+ * Whether the result is expected to be a JSON object which should be sent by value.
457
+ */
458
+ returnByValue?: boolean | undefined;
459
+ /**
460
+ * Whether preview should be generated for the result.
461
+ * @experimental
462
+ */
463
+ generatePreview?: boolean | undefined;
464
+ /**
465
+ * Whether execution should be treated as initiated by user in the UI.
466
+ */
467
+ userGesture?: boolean | undefined;
468
+ /**
469
+ * Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.
470
+ */
471
+ awaitPromise?: boolean | undefined;
472
+ /**
473
+ * Specifies execution context which global object will be used to call function on. Either executionContextId or objectId should be specified.
474
+ */
475
+ executionContextId?: ExecutionContextId | undefined;
476
+ /**
477
+ * Symbolic group name that can be used to release multiple objects. If objectGroup is not specified and objectId is, objectGroup will be inherited from object.
478
+ */
479
+ objectGroup?: string | undefined;
480
+ }
481
+ interface GetPropertiesParameterType {
482
+ /**
483
+ * Identifier of the object to return properties for.
484
+ */
485
+ objectId: RemoteObjectId;
486
+ /**
487
+ * If true, returns properties belonging only to the element itself, not to its prototype chain.
488
+ */
489
+ ownProperties?: boolean | undefined;
490
+ /**
491
+ * If true, returns accessor properties (with getter/setter) only; internal properties are not returned either.
492
+ * @experimental
493
+ */
494
+ accessorPropertiesOnly?: boolean | undefined;
495
+ /**
496
+ * Whether preview should be generated for the results.
497
+ * @experimental
498
+ */
499
+ generatePreview?: boolean | undefined;
500
+ }
501
+ interface ReleaseObjectParameterType {
502
+ /**
503
+ * Identifier of the object to release.
504
+ */
505
+ objectId: RemoteObjectId;
506
+ }
507
+ interface ReleaseObjectGroupParameterType {
508
+ /**
509
+ * Symbolic object group name.
510
+ */
511
+ objectGroup: string;
512
+ }
513
+ interface SetCustomObjectFormatterEnabledParameterType {
514
+ enabled: boolean;
515
+ }
516
+ interface CompileScriptParameterType {
517
+ /**
518
+ * Expression to compile.
519
+ */
520
+ expression: string;
521
+ /**
522
+ * Source url to be set for the script.
523
+ */
524
+ sourceURL: string;
525
+ /**
526
+ * Specifies whether the compiled script should be persisted.
527
+ */
528
+ persistScript: boolean;
529
+ /**
530
+ * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
531
+ */
532
+ executionContextId?: ExecutionContextId | undefined;
533
+ }
534
+ interface RunScriptParameterType {
535
+ /**
536
+ * Id of the script to run.
537
+ */
538
+ scriptId: ScriptId;
539
+ /**
540
+ * Specifies in which execution context to perform script run. If the parameter is omitted the evaluation will be performed in the context of the inspected page.
541
+ */
542
+ executionContextId?: ExecutionContextId | undefined;
543
+ /**
544
+ * Symbolic group name that can be used to release multiple objects.
545
+ */
546
+ objectGroup?: string | undefined;
547
+ /**
548
+ * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
549
+ */
550
+ silent?: boolean | undefined;
551
+ /**
552
+ * Determines whether Command Line API should be available during the evaluation.
553
+ */
554
+ includeCommandLineAPI?: boolean | undefined;
555
+ /**
556
+ * Whether the result is expected to be a JSON object which should be sent by value.
557
+ */
558
+ returnByValue?: boolean | undefined;
559
+ /**
560
+ * Whether preview should be generated for the result.
561
+ */
562
+ generatePreview?: boolean | undefined;
563
+ /**
564
+ * Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.
565
+ */
566
+ awaitPromise?: boolean | undefined;
567
+ }
568
+ interface QueryObjectsParameterType {
569
+ /**
570
+ * Identifier of the prototype to return objects for.
571
+ */
572
+ prototypeObjectId: RemoteObjectId;
573
+ }
574
+ interface GlobalLexicalScopeNamesParameterType {
575
+ /**
576
+ * Specifies in which execution context to lookup global scope variables.
577
+ */
578
+ executionContextId?: ExecutionContextId | undefined;
579
+ }
580
+ interface EvaluateReturnType {
581
+ /**
582
+ * Evaluation result.
583
+ */
584
+ result: RemoteObject;
585
+ /**
586
+ * Exception details.
587
+ */
588
+ exceptionDetails?: ExceptionDetails | undefined;
589
+ }
590
+ interface AwaitPromiseReturnType {
591
+ /**
592
+ * Promise result. Will contain rejected value if promise was rejected.
593
+ */
594
+ result: RemoteObject;
595
+ /**
596
+ * Exception details if stack strace is available.
597
+ */
598
+ exceptionDetails?: ExceptionDetails | undefined;
599
+ }
600
+ interface CallFunctionOnReturnType {
601
+ /**
602
+ * Call result.
603
+ */
604
+ result: RemoteObject;
605
+ /**
606
+ * Exception details.
607
+ */
608
+ exceptionDetails?: ExceptionDetails | undefined;
609
+ }
610
+ interface GetPropertiesReturnType {
611
+ /**
612
+ * Object properties.
613
+ */
614
+ result: PropertyDescriptor[];
615
+ /**
616
+ * Internal object properties (only of the element itself).
617
+ */
618
+ internalProperties?: InternalPropertyDescriptor[] | undefined;
619
+ /**
620
+ * Exception details.
621
+ */
622
+ exceptionDetails?: ExceptionDetails | undefined;
623
+ }
624
+ interface CompileScriptReturnType {
625
+ /**
626
+ * Id of the script.
627
+ */
628
+ scriptId?: ScriptId | undefined;
629
+ /**
630
+ * Exception details.
631
+ */
632
+ exceptionDetails?: ExceptionDetails | undefined;
633
+ }
634
+ interface RunScriptReturnType {
635
+ /**
636
+ * Run result.
637
+ */
638
+ result: RemoteObject;
639
+ /**
640
+ * Exception details.
641
+ */
642
+ exceptionDetails?: ExceptionDetails | undefined;
643
+ }
644
+ interface QueryObjectsReturnType {
645
+ /**
646
+ * Array with objects.
647
+ */
648
+ objects: RemoteObject;
649
+ }
650
+ interface GlobalLexicalScopeNamesReturnType {
651
+ names: string[];
652
+ }
653
+ interface ExecutionContextCreatedEventDataType {
654
+ /**
655
+ * A newly created execution context.
656
+ */
657
+ context: ExecutionContextDescription;
658
+ }
659
+ interface ExecutionContextDestroyedEventDataType {
660
+ /**
661
+ * Id of the destroyed context
662
+ */
663
+ executionContextId: ExecutionContextId;
664
+ }
665
+ interface ExceptionThrownEventDataType {
666
+ /**
667
+ * Timestamp of the exception.
668
+ */
669
+ timestamp: Timestamp;
670
+ exceptionDetails: ExceptionDetails;
671
+ }
672
+ interface ExceptionRevokedEventDataType {
673
+ /**
674
+ * Reason describing why exception was revoked.
675
+ */
676
+ reason: string;
677
+ /**
678
+ * The id of revoked exception, as reported in <code>exceptionThrown</code>.
679
+ */
680
+ exceptionId: number;
681
+ }
682
+ interface ConsoleAPICalledEventDataType {
683
+ /**
684
+ * Type of the call.
685
+ */
686
+ type: string;
687
+ /**
688
+ * Call arguments.
689
+ */
690
+ args: RemoteObject[];
691
+ /**
692
+ * Identifier of the context where the call was made.
693
+ */
694
+ executionContextId: ExecutionContextId;
695
+ /**
696
+ * Call timestamp.
697
+ */
698
+ timestamp: Timestamp;
699
+ /**
700
+ * Stack trace captured when the call was made.
701
+ */
702
+ stackTrace?: StackTrace | undefined;
703
+ /**
704
+ * Console context descriptor for calls on non-default console context (not console.*): 'anonymous#unique-logger-id' for call on unnamed context, 'name#unique-logger-id' for call on named context.
705
+ * @experimental
706
+ */
707
+ context?: string | undefined;
708
+ }
709
+ interface InspectRequestedEventDataType {
710
+ object: RemoteObject;
711
+ hints: {};
712
+ }
713
+ }
714
+ namespace Debugger {
715
+ /**
716
+ * Breakpoint identifier.
717
+ */
718
+ type BreakpointId = string;
719
+ /**
720
+ * Call frame identifier.
721
+ */
722
+ type CallFrameId = string;
723
+ /**
724
+ * Location in the source code.
725
+ */
726
+ interface Location {
727
+ /**
728
+ * Script identifier as reported in the <code>Debugger.scriptParsed</code>.
729
+ */
730
+ scriptId: Runtime.ScriptId;
731
+ /**
732
+ * Line number in the script (0-based).
733
+ */
734
+ lineNumber: number;
735
+ /**
736
+ * Column number in the script (0-based).
737
+ */
738
+ columnNumber?: number | undefined;
739
+ }
740
+ /**
741
+ * Location in the source code.
742
+ * @experimental
743
+ */
744
+ interface ScriptPosition {
745
+ lineNumber: number;
746
+ columnNumber: number;
747
+ }
748
+ /**
749
+ * JavaScript call frame. Array of call frames form the call stack.
750
+ */
751
+ interface CallFrame {
752
+ /**
753
+ * Call frame identifier. This identifier is only valid while the virtual machine is paused.
754
+ */
755
+ callFrameId: CallFrameId;
756
+ /**
757
+ * Name of the JavaScript function called on this call frame.
758
+ */
759
+ functionName: string;
760
+ /**
761
+ * Location in the source code.
762
+ */
763
+ functionLocation?: Location | undefined;
764
+ /**
765
+ * Location in the source code.
766
+ */
767
+ location: Location;
768
+ /**
769
+ * JavaScript script name or url.
770
+ */
771
+ url: string;
772
+ /**
773
+ * Scope chain for this call frame.
774
+ */
775
+ scopeChain: Scope[];
776
+ /**
777
+ * <code>this</code> object for this call frame.
778
+ */
779
+ this: Runtime.RemoteObject;
780
+ /**
781
+ * The value being returned, if the function is at return point.
782
+ */
783
+ returnValue?: Runtime.RemoteObject | undefined;
784
+ }
785
+ /**
786
+ * Scope description.
787
+ */
788
+ interface Scope {
789
+ /**
790
+ * Scope type.
791
+ */
792
+ type: string;
793
+ /**
794
+ * Object representing the scope. For <code>global</code> and <code>with</code> scopes it represents the actual object; for the rest of the scopes, it is artificial transient object enumerating scope variables as its properties.
795
+ */
796
+ object: Runtime.RemoteObject;
797
+ name?: string | undefined;
798
+ /**
799
+ * Location in the source code where scope starts
800
+ */
801
+ startLocation?: Location | undefined;
802
+ /**
803
+ * Location in the source code where scope ends
804
+ */
805
+ endLocation?: Location | undefined;
806
+ }
807
+ /**
808
+ * Search match for resource.
809
+ */
810
+ interface SearchMatch {
811
+ /**
812
+ * Line number in resource content.
813
+ */
814
+ lineNumber: number;
815
+ /**
816
+ * Line with match content.
817
+ */
818
+ lineContent: string;
819
+ }
820
+ interface BreakLocation {
821
+ /**
822
+ * Script identifier as reported in the <code>Debugger.scriptParsed</code>.
823
+ */
824
+ scriptId: Runtime.ScriptId;
825
+ /**
826
+ * Line number in the script (0-based).
827
+ */
828
+ lineNumber: number;
829
+ /**
830
+ * Column number in the script (0-based).
831
+ */
832
+ columnNumber?: number | undefined;
833
+ type?: string | undefined;
834
+ }
835
+ interface SetBreakpointsActiveParameterType {
836
+ /**
837
+ * New value for breakpoints active state.
838
+ */
839
+ active: boolean;
840
+ }
841
+ interface SetSkipAllPausesParameterType {
842
+ /**
843
+ * New value for skip pauses state.
844
+ */
845
+ skip: boolean;
846
+ }
847
+ interface SetBreakpointByUrlParameterType {
848
+ /**
849
+ * Line number to set breakpoint at.
850
+ */
851
+ lineNumber: number;
852
+ /**
853
+ * URL of the resources to set breakpoint on.
854
+ */
855
+ url?: string | undefined;
856
+ /**
857
+ * Regex pattern for the URLs of the resources to set breakpoints on. Either <code>url</code> or <code>urlRegex</code> must be specified.
858
+ */
859
+ urlRegex?: string | undefined;
860
+ /**
861
+ * Script hash of the resources to set breakpoint on.
862
+ */
863
+ scriptHash?: string | undefined;
864
+ /**
865
+ * Offset in the line to set breakpoint at.
866
+ */
867
+ columnNumber?: number | undefined;
868
+ /**
869
+ * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
870
+ */
871
+ condition?: string | undefined;
872
+ }
873
+ interface SetBreakpointParameterType {
874
+ /**
875
+ * Location to set breakpoint in.
876
+ */
877
+ location: Location;
878
+ /**
879
+ * Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
880
+ */
881
+ condition?: string | undefined;
882
+ }
883
+ interface RemoveBreakpointParameterType {
884
+ breakpointId: BreakpointId;
885
+ }
886
+ interface GetPossibleBreakpointsParameterType {
887
+ /**
888
+ * Start of range to search possible breakpoint locations in.
889
+ */
890
+ start: Location;
891
+ /**
892
+ * End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.
893
+ */
894
+ end?: Location | undefined;
895
+ /**
896
+ * Only consider locations which are in the same (non-nested) function as start.
897
+ */
898
+ restrictToFunction?: boolean | undefined;
899
+ }
900
+ interface ContinueToLocationParameterType {
901
+ /**
902
+ * Location to continue to.
903
+ */
904
+ location: Location;
905
+ targetCallFrames?: string | undefined;
906
+ }
907
+ interface PauseOnAsyncCallParameterType {
908
+ /**
909
+ * Debugger will pause when async call with given stack trace is started.
910
+ */
911
+ parentStackTraceId: Runtime.StackTraceId;
912
+ }
913
+ interface StepIntoParameterType {
914
+ /**
915
+ * Debugger will issue additional Debugger.paused notification if any async task is scheduled before next pause.
916
+ * @experimental
917
+ */
918
+ breakOnAsyncCall?: boolean | undefined;
919
+ }
920
+ interface GetStackTraceParameterType {
921
+ stackTraceId: Runtime.StackTraceId;
922
+ }
923
+ interface SearchInContentParameterType {
924
+ /**
925
+ * Id of the script to search in.
926
+ */
927
+ scriptId: Runtime.ScriptId;
928
+ /**
929
+ * String to search for.
930
+ */
931
+ query: string;
932
+ /**
933
+ * If true, search is case sensitive.
934
+ */
935
+ caseSensitive?: boolean | undefined;
936
+ /**
937
+ * If true, treats string parameter as regex.
938
+ */
939
+ isRegex?: boolean | undefined;
940
+ }
941
+ interface SetScriptSourceParameterType {
942
+ /**
943
+ * Id of the script to edit.
944
+ */
945
+ scriptId: Runtime.ScriptId;
946
+ /**
947
+ * New content of the script.
948
+ */
949
+ scriptSource: string;
950
+ /**
951
+ * If true the change will not actually be applied. Dry run may be used to get result description without actually modifying the code.
952
+ */
953
+ dryRun?: boolean | undefined;
954
+ }
955
+ interface RestartFrameParameterType {
956
+ /**
957
+ * Call frame identifier to evaluate on.
958
+ */
959
+ callFrameId: CallFrameId;
960
+ }
961
+ interface GetScriptSourceParameterType {
962
+ /**
963
+ * Id of the script to get source for.
964
+ */
965
+ scriptId: Runtime.ScriptId;
966
+ }
967
+ interface SetPauseOnExceptionsParameterType {
968
+ /**
969
+ * Pause on exceptions mode.
970
+ */
971
+ state: string;
972
+ }
973
+ interface EvaluateOnCallFrameParameterType {
974
+ /**
975
+ * Call frame identifier to evaluate on.
976
+ */
977
+ callFrameId: CallFrameId;
978
+ /**
979
+ * Expression to evaluate.
980
+ */
981
+ expression: string;
982
+ /**
983
+ * String object group name to put result into (allows rapid releasing resulting object handles using <code>releaseObjectGroup</code>).
984
+ */
985
+ objectGroup?: string | undefined;
986
+ /**
987
+ * Specifies whether command line API should be available to the evaluated expression, defaults to false.
988
+ */
989
+ includeCommandLineAPI?: boolean | undefined;
990
+ /**
991
+ * In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.
992
+ */
993
+ silent?: boolean | undefined;
994
+ /**
995
+ * Whether the result is expected to be a JSON object that should be sent by value.
996
+ */
997
+ returnByValue?: boolean | undefined;
998
+ /**
999
+ * Whether preview should be generated for the result.
1000
+ * @experimental
1001
+ */
1002
+ generatePreview?: boolean | undefined;
1003
+ /**
1004
+ * Whether to throw an exception if side effect cannot be ruled out during evaluation.
1005
+ */
1006
+ throwOnSideEffect?: boolean | undefined;
1007
+ }
1008
+ interface SetVariableValueParameterType {
1009
+ /**
1010
+ * 0-based number of scope as was listed in scope chain. Only 'local', 'closure' and 'catch' scope types are allowed. Other scopes could be manipulated manually.
1011
+ */
1012
+ scopeNumber: number;
1013
+ /**
1014
+ * Variable name.
1015
+ */
1016
+ variableName: string;
1017
+ /**
1018
+ * New variable value.
1019
+ */
1020
+ newValue: Runtime.CallArgument;
1021
+ /**
1022
+ * Id of callframe that holds variable.
1023
+ */
1024
+ callFrameId: CallFrameId;
1025
+ }
1026
+ interface SetReturnValueParameterType {
1027
+ /**
1028
+ * New return value.
1029
+ */
1030
+ newValue: Runtime.CallArgument;
1031
+ }
1032
+ interface SetAsyncCallStackDepthParameterType {
1033
+ /**
1034
+ * Maximum depth of async call stacks. Setting to <code>0</code> will effectively disable collecting async call stacks (default).
1035
+ */
1036
+ maxDepth: number;
1037
+ }
1038
+ interface SetBlackboxPatternsParameterType {
1039
+ /**
1040
+ * Array of regexps that will be used to check script url for blackbox state.
1041
+ */
1042
+ patterns: string[];
1043
+ }
1044
+ interface SetBlackboxedRangesParameterType {
1045
+ /**
1046
+ * Id of the script.
1047
+ */
1048
+ scriptId: Runtime.ScriptId;
1049
+ positions: ScriptPosition[];
1050
+ }
1051
+ interface EnableReturnType {
1052
+ /**
1053
+ * Unique identifier of the debugger.
1054
+ * @experimental
1055
+ */
1056
+ debuggerId: Runtime.UniqueDebuggerId;
1057
+ }
1058
+ interface SetBreakpointByUrlReturnType {
1059
+ /**
1060
+ * Id of the created breakpoint for further reference.
1061
+ */
1062
+ breakpointId: BreakpointId;
1063
+ /**
1064
+ * List of the locations this breakpoint resolved into upon addition.
1065
+ */
1066
+ locations: Location[];
1067
+ }
1068
+ interface SetBreakpointReturnType {
1069
+ /**
1070
+ * Id of the created breakpoint for further reference.
1071
+ */
1072
+ breakpointId: BreakpointId;
1073
+ /**
1074
+ * Location this breakpoint resolved into.
1075
+ */
1076
+ actualLocation: Location;
1077
+ }
1078
+ interface GetPossibleBreakpointsReturnType {
1079
+ /**
1080
+ * List of the possible breakpoint locations.
1081
+ */
1082
+ locations: BreakLocation[];
1083
+ }
1084
+ interface GetStackTraceReturnType {
1085
+ stackTrace: Runtime.StackTrace;
1086
+ }
1087
+ interface SearchInContentReturnType {
1088
+ /**
1089
+ * List of search matches.
1090
+ */
1091
+ result: SearchMatch[];
1092
+ }
1093
+ interface SetScriptSourceReturnType {
1094
+ /**
1095
+ * New stack trace in case editing has happened while VM was stopped.
1096
+ */
1097
+ callFrames?: CallFrame[] | undefined;
1098
+ /**
1099
+ * Whether current call stack was modified after applying the changes.
1100
+ */
1101
+ stackChanged?: boolean | undefined;
1102
+ /**
1103
+ * Async stack trace, if any.
1104
+ */
1105
+ asyncStackTrace?: Runtime.StackTrace | undefined;
1106
+ /**
1107
+ * Async stack trace, if any.
1108
+ * @experimental
1109
+ */
1110
+ asyncStackTraceId?: Runtime.StackTraceId | undefined;
1111
+ /**
1112
+ * Exception details if any.
1113
+ */
1114
+ exceptionDetails?: Runtime.ExceptionDetails | undefined;
1115
+ }
1116
+ interface RestartFrameReturnType {
1117
+ /**
1118
+ * New stack trace.
1119
+ */
1120
+ callFrames: CallFrame[];
1121
+ /**
1122
+ * Async stack trace, if any.
1123
+ */
1124
+ asyncStackTrace?: Runtime.StackTrace | undefined;
1125
+ /**
1126
+ * Async stack trace, if any.
1127
+ * @experimental
1128
+ */
1129
+ asyncStackTraceId?: Runtime.StackTraceId | undefined;
1130
+ }
1131
+ interface GetScriptSourceReturnType {
1132
+ /**
1133
+ * Script source.
1134
+ */
1135
+ scriptSource: string;
1136
+ }
1137
+ interface EvaluateOnCallFrameReturnType {
1138
+ /**
1139
+ * Object wrapper for the evaluation result.
1140
+ */
1141
+ result: Runtime.RemoteObject;
1142
+ /**
1143
+ * Exception details.
1144
+ */
1145
+ exceptionDetails?: Runtime.ExceptionDetails | undefined;
1146
+ }
1147
+ interface ScriptParsedEventDataType {
1148
+ /**
1149
+ * Identifier of the script parsed.
1150
+ */
1151
+ scriptId: Runtime.ScriptId;
1152
+ /**
1153
+ * URL or name of the script parsed (if any).
1154
+ */
1155
+ url: string;
1156
+ /**
1157
+ * Line offset of the script within the resource with given URL (for script tags).
1158
+ */
1159
+ startLine: number;
1160
+ /**
1161
+ * Column offset of the script within the resource with given URL.
1162
+ */
1163
+ startColumn: number;
1164
+ /**
1165
+ * Last line of the script.
1166
+ */
1167
+ endLine: number;
1168
+ /**
1169
+ * Length of the last line of the script.
1170
+ */
1171
+ endColumn: number;
1172
+ /**
1173
+ * Specifies script creation context.
1174
+ */
1175
+ executionContextId: Runtime.ExecutionContextId;
1176
+ /**
1177
+ * Content hash of the script.
1178
+ */
1179
+ hash: string;
1180
+ /**
1181
+ * Embedder-specific auxiliary data.
1182
+ */
1183
+ executionContextAuxData?: {} | undefined;
1184
+ /**
1185
+ * True, if this script is generated as a result of the live edit operation.
1186
+ * @experimental
1187
+ */
1188
+ isLiveEdit?: boolean | undefined;
1189
+ /**
1190
+ * URL of source map associated with script (if any).
1191
+ */
1192
+ sourceMapURL?: string | undefined;
1193
+ /**
1194
+ * True, if this script has sourceURL.
1195
+ */
1196
+ hasSourceURL?: boolean | undefined;
1197
+ /**
1198
+ * True, if this script is ES6 module.
1199
+ */
1200
+ isModule?: boolean | undefined;
1201
+ /**
1202
+ * This script length.
1203
+ */
1204
+ length?: number | undefined;
1205
+ /**
1206
+ * JavaScript top stack frame of where the script parsed event was triggered if available.
1207
+ * @experimental
1208
+ */
1209
+ stackTrace?: Runtime.StackTrace | undefined;
1210
+ }
1211
+ interface ScriptFailedToParseEventDataType {
1212
+ /**
1213
+ * Identifier of the script parsed.
1214
+ */
1215
+ scriptId: Runtime.ScriptId;
1216
+ /**
1217
+ * URL or name of the script parsed (if any).
1218
+ */
1219
+ url: string;
1220
+ /**
1221
+ * Line offset of the script within the resource with given URL (for script tags).
1222
+ */
1223
+ startLine: number;
1224
+ /**
1225
+ * Column offset of the script within the resource with given URL.
1226
+ */
1227
+ startColumn: number;
1228
+ /**
1229
+ * Last line of the script.
1230
+ */
1231
+ endLine: number;
1232
+ /**
1233
+ * Length of the last line of the script.
1234
+ */
1235
+ endColumn: number;
1236
+ /**
1237
+ * Specifies script creation context.
1238
+ */
1239
+ executionContextId: Runtime.ExecutionContextId;
1240
+ /**
1241
+ * Content hash of the script.
1242
+ */
1243
+ hash: string;
1244
+ /**
1245
+ * Embedder-specific auxiliary data.
1246
+ */
1247
+ executionContextAuxData?: {} | undefined;
1248
+ /**
1249
+ * URL of source map associated with script (if any).
1250
+ */
1251
+ sourceMapURL?: string | undefined;
1252
+ /**
1253
+ * True, if this script has sourceURL.
1254
+ */
1255
+ hasSourceURL?: boolean | undefined;
1256
+ /**
1257
+ * True, if this script is ES6 module.
1258
+ */
1259
+ isModule?: boolean | undefined;
1260
+ /**
1261
+ * This script length.
1262
+ */
1263
+ length?: number | undefined;
1264
+ /**
1265
+ * JavaScript top stack frame of where the script parsed event was triggered if available.
1266
+ * @experimental
1267
+ */
1268
+ stackTrace?: Runtime.StackTrace | undefined;
1269
+ }
1270
+ interface BreakpointResolvedEventDataType {
1271
+ /**
1272
+ * Breakpoint unique identifier.
1273
+ */
1274
+ breakpointId: BreakpointId;
1275
+ /**
1276
+ * Actual breakpoint location.
1277
+ */
1278
+ location: Location;
1279
+ }
1280
+ interface PausedEventDataType {
1281
+ /**
1282
+ * Call stack the virtual machine stopped on.
1283
+ */
1284
+ callFrames: CallFrame[];
1285
+ /**
1286
+ * Pause reason.
1287
+ */
1288
+ reason: string;
1289
+ /**
1290
+ * Object containing break-specific auxiliary properties.
1291
+ */
1292
+ data?: {} | undefined;
1293
+ /**
1294
+ * Hit breakpoints IDs
1295
+ */
1296
+ hitBreakpoints?: string[] | undefined;
1297
+ /**
1298
+ * Async stack trace, if any.
1299
+ */
1300
+ asyncStackTrace?: Runtime.StackTrace | undefined;
1301
+ /**
1302
+ * Async stack trace, if any.
1303
+ * @experimental
1304
+ */
1305
+ asyncStackTraceId?: Runtime.StackTraceId | undefined;
1306
+ /**
1307
+ * Just scheduled async call will have this stack trace as parent stack during async execution. This field is available only after <code>Debugger.stepInto</code> call with <code>breakOnAsynCall</code> flag.
1308
+ * @experimental
1309
+ */
1310
+ asyncCallStackTraceId?: Runtime.StackTraceId | undefined;
1311
+ }
1312
+ }
1313
+ namespace Console {
1314
+ /**
1315
+ * Console message.
1316
+ */
1317
+ interface ConsoleMessage {
1318
+ /**
1319
+ * Message source.
1320
+ */
1321
+ source: string;
1322
+ /**
1323
+ * Message severity.
1324
+ */
1325
+ level: string;
1326
+ /**
1327
+ * Message text.
1328
+ */
1329
+ text: string;
1330
+ /**
1331
+ * URL of the message origin.
1332
+ */
1333
+ url?: string | undefined;
1334
+ /**
1335
+ * Line number in the resource that generated this message (1-based).
1336
+ */
1337
+ line?: number | undefined;
1338
+ /**
1339
+ * Column number in the resource that generated this message (1-based).
1340
+ */
1341
+ column?: number | undefined;
1342
+ }
1343
+ interface MessageAddedEventDataType {
1344
+ /**
1345
+ * Console message that has been added.
1346
+ */
1347
+ message: ConsoleMessage;
1348
+ }
1349
+ }
1350
+ namespace Profiler {
1351
+ /**
1352
+ * Profile node. Holds callsite information, execution statistics and child nodes.
1353
+ */
1354
+ interface ProfileNode {
1355
+ /**
1356
+ * Unique id of the node.
1357
+ */
1358
+ id: number;
1359
+ /**
1360
+ * Function location.
1361
+ */
1362
+ callFrame: Runtime.CallFrame;
1363
+ /**
1364
+ * Number of samples where this node was on top of the call stack.
1365
+ */
1366
+ hitCount?: number | undefined;
1367
+ /**
1368
+ * Child node ids.
1369
+ */
1370
+ children?: number[] | undefined;
1371
+ /**
1372
+ * The reason of being not optimized. The function may be deoptimized or marked as don't optimize.
1373
+ */
1374
+ deoptReason?: string | undefined;
1375
+ /**
1376
+ * An array of source position ticks.
1377
+ */
1378
+ positionTicks?: PositionTickInfo[] | undefined;
1379
+ }
1380
+ /**
1381
+ * Profile.
1382
+ */
1383
+ interface Profile {
1384
+ /**
1385
+ * The list of profile nodes. First item is the root node.
1386
+ */
1387
+ nodes: ProfileNode[];
1388
+ /**
1389
+ * Profiling start timestamp in microseconds.
1390
+ */
1391
+ startTime: number;
1392
+ /**
1393
+ * Profiling end timestamp in microseconds.
1394
+ */
1395
+ endTime: number;
1396
+ /**
1397
+ * Ids of samples top nodes.
1398
+ */
1399
+ samples?: number[] | undefined;
1400
+ /**
1401
+ * Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime.
1402
+ */
1403
+ timeDeltas?: number[] | undefined;
1404
+ }
1405
+ /**
1406
+ * Specifies a number of samples attributed to a certain source position.
1407
+ */
1408
+ interface PositionTickInfo {
1409
+ /**
1410
+ * Source line number (1-based).
1411
+ */
1412
+ line: number;
1413
+ /**
1414
+ * Number of samples attributed to the source line.
1415
+ */
1416
+ ticks: number;
1417
+ }
1418
+ /**
1419
+ * Coverage data for a source range.
1420
+ */
1421
+ interface CoverageRange {
1422
+ /**
1423
+ * JavaScript script source offset for the range start.
1424
+ */
1425
+ startOffset: number;
1426
+ /**
1427
+ * JavaScript script source offset for the range end.
1428
+ */
1429
+ endOffset: number;
1430
+ /**
1431
+ * Collected execution count of the source range.
1432
+ */
1433
+ count: number;
1434
+ }
1435
+ /**
1436
+ * Coverage data for a JavaScript function.
1437
+ */
1438
+ interface FunctionCoverage {
1439
+ /**
1440
+ * JavaScript function name.
1441
+ */
1442
+ functionName: string;
1443
+ /**
1444
+ * Source ranges inside the function with coverage data.
1445
+ */
1446
+ ranges: CoverageRange[];
1447
+ /**
1448
+ * Whether coverage data for this function has block granularity.
1449
+ */
1450
+ isBlockCoverage: boolean;
1451
+ }
1452
+ /**
1453
+ * Coverage data for a JavaScript script.
1454
+ */
1455
+ interface ScriptCoverage {
1456
+ /**
1457
+ * JavaScript script id.
1458
+ */
1459
+ scriptId: Runtime.ScriptId;
1460
+ /**
1461
+ * JavaScript script name or url.
1462
+ */
1463
+ url: string;
1464
+ /**
1465
+ * Functions contained in the script that has coverage data.
1466
+ */
1467
+ functions: FunctionCoverage[];
1468
+ }
1469
+ /**
1470
+ * Describes a type collected during runtime.
1471
+ * @experimental
1472
+ */
1473
+ interface TypeObject {
1474
+ /**
1475
+ * Name of a type collected with type profiling.
1476
+ */
1477
+ name: string;
1478
+ }
1479
+ /**
1480
+ * Source offset and types for a parameter or return value.
1481
+ * @experimental
1482
+ */
1483
+ interface TypeProfileEntry {
1484
+ /**
1485
+ * Source offset of the parameter or end of function for return values.
1486
+ */
1487
+ offset: number;
1488
+ /**
1489
+ * The types for this parameter or return value.
1490
+ */
1491
+ types: TypeObject[];
1492
+ }
1493
+ /**
1494
+ * Type profile data collected during runtime for a JavaScript script.
1495
+ * @experimental
1496
+ */
1497
+ interface ScriptTypeProfile {
1498
+ /**
1499
+ * JavaScript script id.
1500
+ */
1501
+ scriptId: Runtime.ScriptId;
1502
+ /**
1503
+ * JavaScript script name or url.
1504
+ */
1505
+ url: string;
1506
+ /**
1507
+ * Type profile entries for parameters and return values of the functions in the script.
1508
+ */
1509
+ entries: TypeProfileEntry[];
1510
+ }
1511
+ interface SetSamplingIntervalParameterType {
1512
+ /**
1513
+ * New sampling interval in microseconds.
1514
+ */
1515
+ interval: number;
1516
+ }
1517
+ interface StartPreciseCoverageParameterType {
1518
+ /**
1519
+ * Collect accurate call counts beyond simple 'covered' or 'not covered'.
1520
+ */
1521
+ callCount?: boolean | undefined;
1522
+ /**
1523
+ * Collect block-based coverage.
1524
+ */
1525
+ detailed?: boolean | undefined;
1526
+ }
1527
+ interface StopReturnType {
1528
+ /**
1529
+ * Recorded profile.
1530
+ */
1531
+ profile: Profile;
1532
+ }
1533
+ interface TakePreciseCoverageReturnType {
1534
+ /**
1535
+ * Coverage data for the current isolate.
1536
+ */
1537
+ result: ScriptCoverage[];
1538
+ }
1539
+ interface GetBestEffortCoverageReturnType {
1540
+ /**
1541
+ * Coverage data for the current isolate.
1542
+ */
1543
+ result: ScriptCoverage[];
1544
+ }
1545
+ interface TakeTypeProfileReturnType {
1546
+ /**
1547
+ * Type profile for all scripts since startTypeProfile() was turned on.
1548
+ */
1549
+ result: ScriptTypeProfile[];
1550
+ }
1551
+ interface ConsoleProfileStartedEventDataType {
1552
+ id: string;
1553
+ /**
1554
+ * Location of console.profile().
1555
+ */
1556
+ location: Debugger.Location;
1557
+ /**
1558
+ * Profile title passed as an argument to console.profile().
1559
+ */
1560
+ title?: string | undefined;
1561
+ }
1562
+ interface ConsoleProfileFinishedEventDataType {
1563
+ id: string;
1564
+ /**
1565
+ * Location of console.profileEnd().
1566
+ */
1567
+ location: Debugger.Location;
1568
+ profile: Profile;
1569
+ /**
1570
+ * Profile title passed as an argument to console.profile().
1571
+ */
1572
+ title?: string | undefined;
1573
+ }
1574
+ }
1575
+ namespace HeapProfiler {
1576
+ /**
1577
+ * Heap snapshot object id.
1578
+ */
1579
+ type HeapSnapshotObjectId = string;
1580
+ /**
1581
+ * Sampling Heap Profile node. Holds callsite information, allocation statistics and child nodes.
1582
+ */
1583
+ interface SamplingHeapProfileNode {
1584
+ /**
1585
+ * Function location.
1586
+ */
1587
+ callFrame: Runtime.CallFrame;
1588
+ /**
1589
+ * Allocations size in bytes for the node excluding children.
1590
+ */
1591
+ selfSize: number;
1592
+ /**
1593
+ * Child nodes.
1594
+ */
1595
+ children: SamplingHeapProfileNode[];
1596
+ }
1597
+ /**
1598
+ * Profile.
1599
+ */
1600
+ interface SamplingHeapProfile {
1601
+ head: SamplingHeapProfileNode;
1602
+ }
1603
+ interface StartTrackingHeapObjectsParameterType {
1604
+ trackAllocations?: boolean | undefined;
1605
+ }
1606
+ interface StopTrackingHeapObjectsParameterType {
1607
+ /**
1608
+ * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken when the tracking is stopped.
1609
+ */
1610
+ reportProgress?: boolean | undefined;
1611
+ }
1612
+ interface TakeHeapSnapshotParameterType {
1613
+ /**
1614
+ * If true 'reportHeapSnapshotProgress' events will be generated while snapshot is being taken.
1615
+ */
1616
+ reportProgress?: boolean | undefined;
1617
+ }
1618
+ interface GetObjectByHeapObjectIdParameterType {
1619
+ objectId: HeapSnapshotObjectId;
1620
+ /**
1621
+ * Symbolic group name that can be used to release multiple objects.
1622
+ */
1623
+ objectGroup?: string | undefined;
1624
+ }
1625
+ interface AddInspectedHeapObjectParameterType {
1626
+ /**
1627
+ * Heap snapshot object id to be accessible by means of $x command line API.
1628
+ */
1629
+ heapObjectId: HeapSnapshotObjectId;
1630
+ }
1631
+ interface GetHeapObjectIdParameterType {
1632
+ /**
1633
+ * Identifier of the object to get heap object id for.
1634
+ */
1635
+ objectId: Runtime.RemoteObjectId;
1636
+ }
1637
+ interface StartSamplingParameterType {
1638
+ /**
1639
+ * Average sample interval in bytes. Poisson distribution is used for the intervals. The default value is 32768 bytes.
1640
+ */
1641
+ samplingInterval?: number | undefined;
1642
+ }
1643
+ interface GetObjectByHeapObjectIdReturnType {
1644
+ /**
1645
+ * Evaluation result.
1646
+ */
1647
+ result: Runtime.RemoteObject;
1648
+ }
1649
+ interface GetHeapObjectIdReturnType {
1650
+ /**
1651
+ * Id of the heap snapshot object corresponding to the passed remote object id.
1652
+ */
1653
+ heapSnapshotObjectId: HeapSnapshotObjectId;
1654
+ }
1655
+ interface StopSamplingReturnType {
1656
+ /**
1657
+ * Recorded sampling heap profile.
1658
+ */
1659
+ profile: SamplingHeapProfile;
1660
+ }
1661
+ interface GetSamplingProfileReturnType {
1662
+ /**
1663
+ * Return the sampling profile being collected.
1664
+ */
1665
+ profile: SamplingHeapProfile;
1666
+ }
1667
+ interface AddHeapSnapshotChunkEventDataType {
1668
+ chunk: string;
1669
+ }
1670
+ interface ReportHeapSnapshotProgressEventDataType {
1671
+ done: number;
1672
+ total: number;
1673
+ finished?: boolean | undefined;
1674
+ }
1675
+ interface LastSeenObjectIdEventDataType {
1676
+ lastSeenObjectId: number;
1677
+ timestamp: number;
1678
+ }
1679
+ interface HeapStatsUpdateEventDataType {
1680
+ /**
1681
+ * An array of triplets. Each triplet describes a fragment. The first integer is the fragment index, the second integer is a total count of objects for the fragment, the third integer is a total size of the objects for the fragment.
1682
+ */
1683
+ statsUpdate: number[];
1684
+ }
1685
+ }
1686
+ namespace NodeTracing {
1687
+ interface TraceConfig {
1688
+ /**
1689
+ * Controls how the trace buffer stores data.
1690
+ */
1691
+ recordMode?: string;
1692
+ /**
1693
+ * Included category filters.
1694
+ */
1695
+ includedCategories: string[];
1696
+ }
1697
+ interface StartParameterType {
1698
+ traceConfig: TraceConfig;
1699
+ }
1700
+ interface GetCategoriesReturnType {
1701
+ /**
1702
+ * A list of supported tracing categories.
1703
+ */
1704
+ categories: string[];
1705
+ }
1706
+ interface DataCollectedEventDataType {
1707
+ value: Array<{}>;
1708
+ }
1709
+ }
1710
+ namespace NodeWorker {
1711
+ type WorkerID = string;
1712
+ /**
1713
+ * Unique identifier of attached debugging session.
1714
+ */
1715
+ type SessionID = string;
1716
+ interface WorkerInfo {
1717
+ workerId: WorkerID;
1718
+ type: string;
1719
+ title: string;
1720
+ url: string;
1721
+ }
1722
+ interface SendMessageToWorkerParameterType {
1723
+ message: string;
1724
+ /**
1725
+ * Identifier of the session.
1726
+ */
1727
+ sessionId: SessionID;
1728
+ }
1729
+ interface EnableParameterType {
1730
+ /**
1731
+ * Whether to new workers should be paused until the frontend sends `Runtime.runIfWaitingForDebugger`
1732
+ * message to run them.
1733
+ */
1734
+ waitForDebuggerOnStart: boolean;
1735
+ }
1736
+ interface DetachParameterType {
1737
+ sessionId: SessionID;
1738
+ }
1739
+ interface AttachedToWorkerEventDataType {
1740
+ /**
1741
+ * Identifier assigned to the session used to send/receive messages.
1742
+ */
1743
+ sessionId: SessionID;
1744
+ workerInfo: WorkerInfo;
1745
+ waitingForDebugger: boolean;
1746
+ }
1747
+ interface DetachedFromWorkerEventDataType {
1748
+ /**
1749
+ * Detached session identifier.
1750
+ */
1751
+ sessionId: SessionID;
1752
+ }
1753
+ interface ReceivedMessageFromWorkerEventDataType {
1754
+ /**
1755
+ * Identifier of a session which sends a message.
1756
+ */
1757
+ sessionId: SessionID;
1758
+ message: string;
1759
+ }
1760
+ }
1761
+ namespace NodeRuntime {
1762
+ interface NotifyWhenWaitingForDisconnectParameterType {
1763
+ enabled: boolean;
1764
+ }
1765
+ }
1766
+ /**
1767
+ * The `inspector.Session` is used for dispatching messages to the V8 inspector
1768
+ * back-end and receiving message responses and notifications.
1769
+ */
1770
+ class Session extends EventEmitter {
1771
+ /**
1772
+ * Create a new instance of the inspector.Session class.
1773
+ * The inspector session needs to be connected through session.connect() before the messages can be dispatched to the inspector backend.
1774
+ */
1775
+ constructor();
1776
+ /**
1777
+ * Connects a session to the inspector back-end.
1778
+ * @since v8.0.0
1779
+ */
1780
+ connect(): void;
1781
+ /**
1782
+ * Connects a session to the main thread inspector back-end. An exception will
1783
+ * be thrown if this API was not called on a Worker thread.
1784
+ * @since v12.11.0
1785
+ */
1786
+ connectToMainThread(): void;
1787
+ /**
1788
+ * Immediately close the session. All pending message callbacks will be called
1789
+ * with an error. `session.connect()` will need to be called to be able to send
1790
+ * messages again. Reconnected session will lose all inspector state, such as
1791
+ * enabled agents or configured breakpoints.
1792
+ * @since v8.0.0
1793
+ */
1794
+ disconnect(): void;
1795
+ /**
1796
+ * Posts a message to the inspector back-end. `callback` will be notified when
1797
+ * a response is received. `callback` is a function that accepts two optional
1798
+ * arguments: error and message-specific result.
1799
+ *
1800
+ * ```js
1801
+ * session.post('Runtime.evaluate', { expression: '2 + 2' },
1802
+ * (error, { result }) => console.log(result));
1803
+ * // Output: { type: 'number', value: 4, description: '4' }
1804
+ * ```
1805
+ *
1806
+ * The latest version of the V8 inspector protocol is published on the [Chrome DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/v8/).
1807
+ *
1808
+ * Node.js inspector supports all the Chrome DevTools Protocol domains declared
1809
+ * by V8\. Chrome DevTools Protocol domain provides an interface for interacting
1810
+ * with one of the runtime agents used to inspect the application state and listen
1811
+ * to the run-time events.
1812
+ *
1813
+ * ## Example usage
1814
+ *
1815
+ * Apart from the debugger, various V8 Profilers are available through the DevTools
1816
+ * protocol.
1817
+ * @since v8.0.0
1818
+ */
1819
+ post(method: string, params?: {}, callback?: (err: Error | null, params?: {}) => void): void;
1820
+ post(method: string, callback?: (err: Error | null, params?: {}) => void): void;
1821
+ /**
1822
+ * Returns supported domains.
1823
+ */
1824
+ post(method: 'Schema.getDomains', callback?: (err: Error | null, params: Schema.GetDomainsReturnType) => void): void;
1825
+ /**
1826
+ * Evaluates expression on global object.
1827
+ */
1828
+ post(method: 'Runtime.evaluate', params?: Runtime.EvaluateParameterType, callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void;
1829
+ post(method: 'Runtime.evaluate', callback?: (err: Error | null, params: Runtime.EvaluateReturnType) => void): void;
1830
+ /**
1831
+ * Add handler to promise with given promise object id.
1832
+ */
1833
+ post(method: 'Runtime.awaitPromise', params?: Runtime.AwaitPromiseParameterType, callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void;
1834
+ post(method: 'Runtime.awaitPromise', callback?: (err: Error | null, params: Runtime.AwaitPromiseReturnType) => void): void;
1835
+ /**
1836
+ * Calls function with given declaration on the given object. Object group of the result is inherited from the target object.
1837
+ */
1838
+ post(method: 'Runtime.callFunctionOn', params?: Runtime.CallFunctionOnParameterType, callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void;
1839
+ post(method: 'Runtime.callFunctionOn', callback?: (err: Error | null, params: Runtime.CallFunctionOnReturnType) => void): void;
1840
+ /**
1841
+ * Returns properties of a given object. Object group of the result is inherited from the target object.
1842
+ */
1843
+ post(method: 'Runtime.getProperties', params?: Runtime.GetPropertiesParameterType, callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void;
1844
+ post(method: 'Runtime.getProperties', callback?: (err: Error | null, params: Runtime.GetPropertiesReturnType) => void): void;
1845
+ /**
1846
+ * Releases remote object with given id.
1847
+ */
1848
+ post(method: 'Runtime.releaseObject', params?: Runtime.ReleaseObjectParameterType, callback?: (err: Error | null) => void): void;
1849
+ post(method: 'Runtime.releaseObject', callback?: (err: Error | null) => void): void;
1850
+ /**
1851
+ * Releases all remote objects that belong to a given group.
1852
+ */
1853
+ post(method: 'Runtime.releaseObjectGroup', params?: Runtime.ReleaseObjectGroupParameterType, callback?: (err: Error | null) => void): void;
1854
+ post(method: 'Runtime.releaseObjectGroup', callback?: (err: Error | null) => void): void;
1855
+ /**
1856
+ * Tells inspected instance to run if it was waiting for debugger to attach.
1857
+ */
1858
+ post(method: 'Runtime.runIfWaitingForDebugger', callback?: (err: Error | null) => void): void;
1859
+ /**
1860
+ * Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context.
1861
+ */
1862
+ post(method: 'Runtime.enable', callback?: (err: Error | null) => void): void;
1863
+ /**
1864
+ * Disables reporting of execution contexts creation.
1865
+ */
1866
+ post(method: 'Runtime.disable', callback?: (err: Error | null) => void): void;
1867
+ /**
1868
+ * Discards collected exceptions and console API calls.
1869
+ */
1870
+ post(method: 'Runtime.discardConsoleEntries', callback?: (err: Error | null) => void): void;
1871
+ /**
1872
+ * @experimental
1873
+ */
1874
+ post(method: 'Runtime.setCustomObjectFormatterEnabled', params?: Runtime.SetCustomObjectFormatterEnabledParameterType, callback?: (err: Error | null) => void): void;
1875
+ post(method: 'Runtime.setCustomObjectFormatterEnabled', callback?: (err: Error | null) => void): void;
1876
+ /**
1877
+ * Compiles expression.
1878
+ */
1879
+ post(method: 'Runtime.compileScript', params?: Runtime.CompileScriptParameterType, callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void;
1880
+ post(method: 'Runtime.compileScript', callback?: (err: Error | null, params: Runtime.CompileScriptReturnType) => void): void;
1881
+ /**
1882
+ * Runs script with given id in a given context.
1883
+ */
1884
+ post(method: 'Runtime.runScript', params?: Runtime.RunScriptParameterType, callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void;
1885
+ post(method: 'Runtime.runScript', callback?: (err: Error | null, params: Runtime.RunScriptReturnType) => void): void;
1886
+ post(method: 'Runtime.queryObjects', params?: Runtime.QueryObjectsParameterType, callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void;
1887
+ post(method: 'Runtime.queryObjects', callback?: (err: Error | null, params: Runtime.QueryObjectsReturnType) => void): void;
1888
+ /**
1889
+ * Returns all let, const and class variables from global scope.
1890
+ */
1891
+ post(
1892
+ method: 'Runtime.globalLexicalScopeNames',
1893
+ params?: Runtime.GlobalLexicalScopeNamesParameterType,
1894
+ callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void
1895
+ ): void;
1896
+ post(method: 'Runtime.globalLexicalScopeNames', callback?: (err: Error | null, params: Runtime.GlobalLexicalScopeNamesReturnType) => void): void;
1897
+ /**
1898
+ * Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.
1899
+ */
1900
+ post(method: 'Debugger.enable', callback?: (err: Error | null, params: Debugger.EnableReturnType) => void): void;
1901
+ /**
1902
+ * Disables debugger for given page.
1903
+ */
1904
+ post(method: 'Debugger.disable', callback?: (err: Error | null) => void): void;
1905
+ /**
1906
+ * Activates / deactivates all breakpoints on the page.
1907
+ */
1908
+ post(method: 'Debugger.setBreakpointsActive', params?: Debugger.SetBreakpointsActiveParameterType, callback?: (err: Error | null) => void): void;
1909
+ post(method: 'Debugger.setBreakpointsActive', callback?: (err: Error | null) => void): void;
1910
+ /**
1911
+ * Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc).
1912
+ */
1913
+ post(method: 'Debugger.setSkipAllPauses', params?: Debugger.SetSkipAllPausesParameterType, callback?: (err: Error | null) => void): void;
1914
+ post(method: 'Debugger.setSkipAllPauses', callback?: (err: Error | null) => void): void;
1915
+ /**
1916
+ * Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in <code>locations</code> property. Further matching script parsing will result in subsequent <code>breakpointResolved</code> events issued. This logical breakpoint will survive page reloads.
1917
+ */
1918
+ post(method: 'Debugger.setBreakpointByUrl', params?: Debugger.SetBreakpointByUrlParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void;
1919
+ post(method: 'Debugger.setBreakpointByUrl', callback?: (err: Error | null, params: Debugger.SetBreakpointByUrlReturnType) => void): void;
1920
+ /**
1921
+ * Sets JavaScript breakpoint at a given location.
1922
+ */
1923
+ post(method: 'Debugger.setBreakpoint', params?: Debugger.SetBreakpointParameterType, callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void;
1924
+ post(method: 'Debugger.setBreakpoint', callback?: (err: Error | null, params: Debugger.SetBreakpointReturnType) => void): void;
1925
+ /**
1926
+ * Removes JavaScript breakpoint.
1927
+ */
1928
+ post(method: 'Debugger.removeBreakpoint', params?: Debugger.RemoveBreakpointParameterType, callback?: (err: Error | null) => void): void;
1929
+ post(method: 'Debugger.removeBreakpoint', callback?: (err: Error | null) => void): void;
1930
+ /**
1931
+ * Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.
1932
+ */
1933
+ post(
1934
+ method: 'Debugger.getPossibleBreakpoints',
1935
+ params?: Debugger.GetPossibleBreakpointsParameterType,
1936
+ callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void
1937
+ ): void;
1938
+ post(method: 'Debugger.getPossibleBreakpoints', callback?: (err: Error | null, params: Debugger.GetPossibleBreakpointsReturnType) => void): void;
1939
+ /**
1940
+ * Continues execution until specific location is reached.
1941
+ */
1942
+ post(method: 'Debugger.continueToLocation', params?: Debugger.ContinueToLocationParameterType, callback?: (err: Error | null) => void): void;
1943
+ post(method: 'Debugger.continueToLocation', callback?: (err: Error | null) => void): void;
1944
+ /**
1945
+ * @experimental
1946
+ */
1947
+ post(method: 'Debugger.pauseOnAsyncCall', params?: Debugger.PauseOnAsyncCallParameterType, callback?: (err: Error | null) => void): void;
1948
+ post(method: 'Debugger.pauseOnAsyncCall', callback?: (err: Error | null) => void): void;
1949
+ /**
1950
+ * Steps over the statement.
1951
+ */
1952
+ post(method: 'Debugger.stepOver', callback?: (err: Error | null) => void): void;
1953
+ /**
1954
+ * Steps into the function call.
1955
+ */
1956
+ post(method: 'Debugger.stepInto', params?: Debugger.StepIntoParameterType, callback?: (err: Error | null) => void): void;
1957
+ post(method: 'Debugger.stepInto', callback?: (err: Error | null) => void): void;
1958
+ /**
1959
+ * Steps out of the function call.
1960
+ */
1961
+ post(method: 'Debugger.stepOut', callback?: (err: Error | null) => void): void;
1962
+ /**
1963
+ * Stops on the next JavaScript statement.
1964
+ */
1965
+ post(method: 'Debugger.pause', callback?: (err: Error | null) => void): void;
1966
+ /**
1967
+ * This method is deprecated - use Debugger.stepInto with breakOnAsyncCall and Debugger.pauseOnAsyncTask instead. Steps into next scheduled async task if any is scheduled before next pause. Returns success when async task is actually scheduled, returns error if no task were scheduled or another scheduleStepIntoAsync was called.
1968
+ * @experimental
1969
+ */
1970
+ post(method: 'Debugger.scheduleStepIntoAsync', callback?: (err: Error | null) => void): void;
1971
+ /**
1972
+ * Resumes JavaScript execution.
1973
+ */
1974
+ post(method: 'Debugger.resume', callback?: (err: Error | null) => void): void;
1975
+ /**
1976
+ * Returns stack trace with given <code>stackTraceId</code>.
1977
+ * @experimental
1978
+ */
1979
+ post(method: 'Debugger.getStackTrace', params?: Debugger.GetStackTraceParameterType, callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void;
1980
+ post(method: 'Debugger.getStackTrace', callback?: (err: Error | null, params: Debugger.GetStackTraceReturnType) => void): void;
1981
+ /**
1982
+ * Searches for given string in script content.
1983
+ */
1984
+ post(method: 'Debugger.searchInContent', params?: Debugger.SearchInContentParameterType, callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void;
1985
+ post(method: 'Debugger.searchInContent', callback?: (err: Error | null, params: Debugger.SearchInContentReturnType) => void): void;
1986
+ /**
1987
+ * Edits JavaScript source live.
1988
+ */
1989
+ post(method: 'Debugger.setScriptSource', params?: Debugger.SetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void;
1990
+ post(method: 'Debugger.setScriptSource', callback?: (err: Error | null, params: Debugger.SetScriptSourceReturnType) => void): void;
1991
+ /**
1992
+ * Restarts particular call frame from the beginning.
1993
+ */
1994
+ post(method: 'Debugger.restartFrame', params?: Debugger.RestartFrameParameterType, callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void;
1995
+ post(method: 'Debugger.restartFrame', callback?: (err: Error | null, params: Debugger.RestartFrameReturnType) => void): void;
1996
+ /**
1997
+ * Returns source for the script with given id.
1998
+ */
1999
+ post(method: 'Debugger.getScriptSource', params?: Debugger.GetScriptSourceParameterType, callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void;
2000
+ post(method: 'Debugger.getScriptSource', callback?: (err: Error | null, params: Debugger.GetScriptSourceReturnType) => void): void;
2001
+ /**
2002
+ * Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is <code>none</code>.
2003
+ */
2004
+ post(method: 'Debugger.setPauseOnExceptions', params?: Debugger.SetPauseOnExceptionsParameterType, callback?: (err: Error | null) => void): void;
2005
+ post(method: 'Debugger.setPauseOnExceptions', callback?: (err: Error | null) => void): void;
2006
+ /**
2007
+ * Evaluates expression on a given call frame.
2008
+ */
2009
+ post(method: 'Debugger.evaluateOnCallFrame', params?: Debugger.EvaluateOnCallFrameParameterType, callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void;
2010
+ post(method: 'Debugger.evaluateOnCallFrame', callback?: (err: Error | null, params: Debugger.EvaluateOnCallFrameReturnType) => void): void;
2011
+ /**
2012
+ * Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually.
2013
+ */
2014
+ post(method: 'Debugger.setVariableValue', params?: Debugger.SetVariableValueParameterType, callback?: (err: Error | null) => void): void;
2015
+ post(method: 'Debugger.setVariableValue', callback?: (err: Error | null) => void): void;
2016
+ /**
2017
+ * Changes return value in top frame. Available only at return break position.
2018
+ * @experimental
2019
+ */
2020
+ post(method: 'Debugger.setReturnValue', params?: Debugger.SetReturnValueParameterType, callback?: (err: Error | null) => void): void;
2021
+ post(method: 'Debugger.setReturnValue', callback?: (err: Error | null) => void): void;
2022
+ /**
2023
+ * Enables or disables async call stacks tracking.
2024
+ */
2025
+ post(method: 'Debugger.setAsyncCallStackDepth', params?: Debugger.SetAsyncCallStackDepthParameterType, callback?: (err: Error | null) => void): void;
2026
+ post(method: 'Debugger.setAsyncCallStackDepth', callback?: (err: Error | null) => void): void;
2027
+ /**
2028
+ * Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.
2029
+ * @experimental
2030
+ */
2031
+ post(method: 'Debugger.setBlackboxPatterns', params?: Debugger.SetBlackboxPatternsParameterType, callback?: (err: Error | null) => void): void;
2032
+ post(method: 'Debugger.setBlackboxPatterns', callback?: (err: Error | null) => void): void;
2033
+ /**
2034
+ * Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.
2035
+ * @experimental
2036
+ */
2037
+ post(method: 'Debugger.setBlackboxedRanges', params?: Debugger.SetBlackboxedRangesParameterType, callback?: (err: Error | null) => void): void;
2038
+ post(method: 'Debugger.setBlackboxedRanges', callback?: (err: Error | null) => void): void;
2039
+ /**
2040
+ * Enables console domain, sends the messages collected so far to the client by means of the <code>messageAdded</code> notification.
2041
+ */
2042
+ post(method: 'Console.enable', callback?: (err: Error | null) => void): void;
2043
+ /**
2044
+ * Disables console domain, prevents further console messages from being reported to the client.
2045
+ */
2046
+ post(method: 'Console.disable', callback?: (err: Error | null) => void): void;
2047
+ /**
2048
+ * Does nothing.
2049
+ */
2050
+ post(method: 'Console.clearMessages', callback?: (err: Error | null) => void): void;
2051
+ post(method: 'Profiler.enable', callback?: (err: Error | null) => void): void;
2052
+ post(method: 'Profiler.disable', callback?: (err: Error | null) => void): void;
2053
+ /**
2054
+ * Changes CPU profiler sampling interval. Must be called before CPU profiles recording started.
2055
+ */
2056
+ post(method: 'Profiler.setSamplingInterval', params?: Profiler.SetSamplingIntervalParameterType, callback?: (err: Error | null) => void): void;
2057
+ post(method: 'Profiler.setSamplingInterval', callback?: (err: Error | null) => void): void;
2058
+ post(method: 'Profiler.start', callback?: (err: Error | null) => void): void;
2059
+ post(method: 'Profiler.stop', callback?: (err: Error | null, params: Profiler.StopReturnType) => void): void;
2060
+ /**
2061
+ * Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters.
2062
+ */
2063
+ post(method: 'Profiler.startPreciseCoverage', params?: Profiler.StartPreciseCoverageParameterType, callback?: (err: Error | null) => void): void;
2064
+ post(method: 'Profiler.startPreciseCoverage', callback?: (err: Error | null) => void): void;
2065
+ /**
2066
+ * Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code.
2067
+ */
2068
+ post(method: 'Profiler.stopPreciseCoverage', callback?: (err: Error | null) => void): void;
2069
+ /**
2070
+ * Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started.
2071
+ */
2072
+ post(method: 'Profiler.takePreciseCoverage', callback?: (err: Error | null, params: Profiler.TakePreciseCoverageReturnType) => void): void;
2073
+ /**
2074
+ * Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection.
2075
+ */
2076
+ post(method: 'Profiler.getBestEffortCoverage', callback?: (err: Error | null, params: Profiler.GetBestEffortCoverageReturnType) => void): void;
2077
+ /**
2078
+ * Enable type profile.
2079
+ * @experimental
2080
+ */
2081
+ post(method: 'Profiler.startTypeProfile', callback?: (err: Error | null) => void): void;
2082
+ /**
2083
+ * Disable type profile. Disabling releases type profile data collected so far.
2084
+ * @experimental
2085
+ */
2086
+ post(method: 'Profiler.stopTypeProfile', callback?: (err: Error | null) => void): void;
2087
+ /**
2088
+ * Collect type profile.
2089
+ * @experimental
2090
+ */
2091
+ post(method: 'Profiler.takeTypeProfile', callback?: (err: Error | null, params: Profiler.TakeTypeProfileReturnType) => void): void;
2092
+ post(method: 'HeapProfiler.enable', callback?: (err: Error | null) => void): void;
2093
+ post(method: 'HeapProfiler.disable', callback?: (err: Error | null) => void): void;
2094
+ post(method: 'HeapProfiler.startTrackingHeapObjects', params?: HeapProfiler.StartTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void;
2095
+ post(method: 'HeapProfiler.startTrackingHeapObjects', callback?: (err: Error | null) => void): void;
2096
+ post(method: 'HeapProfiler.stopTrackingHeapObjects', params?: HeapProfiler.StopTrackingHeapObjectsParameterType, callback?: (err: Error | null) => void): void;
2097
+ post(method: 'HeapProfiler.stopTrackingHeapObjects', callback?: (err: Error | null) => void): void;
2098
+ post(method: 'HeapProfiler.takeHeapSnapshot', params?: HeapProfiler.TakeHeapSnapshotParameterType, callback?: (err: Error | null) => void): void;
2099
+ post(method: 'HeapProfiler.takeHeapSnapshot', callback?: (err: Error | null) => void): void;
2100
+ post(method: 'HeapProfiler.collectGarbage', callback?: (err: Error | null) => void): void;
2101
+ post(
2102
+ method: 'HeapProfiler.getObjectByHeapObjectId',
2103
+ params?: HeapProfiler.GetObjectByHeapObjectIdParameterType,
2104
+ callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void
2105
+ ): void;
2106
+ post(method: 'HeapProfiler.getObjectByHeapObjectId', callback?: (err: Error | null, params: HeapProfiler.GetObjectByHeapObjectIdReturnType) => void): void;
2107
+ /**
2108
+ * Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions).
2109
+ */
2110
+ post(method: 'HeapProfiler.addInspectedHeapObject', params?: HeapProfiler.AddInspectedHeapObjectParameterType, callback?: (err: Error | null) => void): void;
2111
+ post(method: 'HeapProfiler.addInspectedHeapObject', callback?: (err: Error | null) => void): void;
2112
+ post(method: 'HeapProfiler.getHeapObjectId', params?: HeapProfiler.GetHeapObjectIdParameterType, callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void;
2113
+ post(method: 'HeapProfiler.getHeapObjectId', callback?: (err: Error | null, params: HeapProfiler.GetHeapObjectIdReturnType) => void): void;
2114
+ post(method: 'HeapProfiler.startSampling', params?: HeapProfiler.StartSamplingParameterType, callback?: (err: Error | null) => void): void;
2115
+ post(method: 'HeapProfiler.startSampling', callback?: (err: Error | null) => void): void;
2116
+ post(method: 'HeapProfiler.stopSampling', callback?: (err: Error | null, params: HeapProfiler.StopSamplingReturnType) => void): void;
2117
+ post(method: 'HeapProfiler.getSamplingProfile', callback?: (err: Error | null, params: HeapProfiler.GetSamplingProfileReturnType) => void): void;
2118
+ /**
2119
+ * Gets supported tracing categories.
2120
+ */
2121
+ post(method: 'NodeTracing.getCategories', callback?: (err: Error | null, params: NodeTracing.GetCategoriesReturnType) => void): void;
2122
+ /**
2123
+ * Start trace events collection.
2124
+ */
2125
+ post(method: 'NodeTracing.start', params?: NodeTracing.StartParameterType, callback?: (err: Error | null) => void): void;
2126
+ post(method: 'NodeTracing.start', callback?: (err: Error | null) => void): void;
2127
+ /**
2128
+ * Stop trace events collection. Remaining collected events will be sent as a sequence of
2129
+ * dataCollected events followed by tracingComplete event.
2130
+ */
2131
+ post(method: 'NodeTracing.stop', callback?: (err: Error | null) => void): void;
2132
+ /**
2133
+ * Sends protocol message over session with given id.
2134
+ */
2135
+ post(method: 'NodeWorker.sendMessageToWorker', params?: NodeWorker.SendMessageToWorkerParameterType, callback?: (err: Error | null) => void): void;
2136
+ post(method: 'NodeWorker.sendMessageToWorker', callback?: (err: Error | null) => void): void;
2137
+ /**
2138
+ * Instructs the inspector to attach to running workers. Will also attach to new workers
2139
+ * as they start
2140
+ */
2141
+ post(method: 'NodeWorker.enable', params?: NodeWorker.EnableParameterType, callback?: (err: Error | null) => void): void;
2142
+ post(method: 'NodeWorker.enable', callback?: (err: Error | null) => void): void;
2143
+ /**
2144
+ * Detaches from all running workers and disables attaching to new workers as they are started.
2145
+ */
2146
+ post(method: 'NodeWorker.disable', callback?: (err: Error | null) => void): void;
2147
+ /**
2148
+ * Detached from the worker with given sessionId.
2149
+ */
2150
+ post(method: 'NodeWorker.detach', params?: NodeWorker.DetachParameterType, callback?: (err: Error | null) => void): void;
2151
+ post(method: 'NodeWorker.detach', callback?: (err: Error | null) => void): void;
2152
+ /**
2153
+ * Enable the `NodeRuntime.waitingForDisconnect`.
2154
+ */
2155
+ post(method: 'NodeRuntime.notifyWhenWaitingForDisconnect', params?: NodeRuntime.NotifyWhenWaitingForDisconnectParameterType, callback?: (err: Error | null) => void): void;
2156
+ post(method: 'NodeRuntime.notifyWhenWaitingForDisconnect', callback?: (err: Error | null) => void): void;
2157
+ // Events
2158
+ addListener(event: string, listener: (...args: any[]) => void): this;
2159
+ /**
2160
+ * Emitted when any notification from the V8 Inspector is received.
2161
+ */
2162
+ addListener(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this;
2163
+ /**
2164
+ * Issued when new execution context is created.
2165
+ */
2166
+ addListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
2167
+ /**
2168
+ * Issued when execution context is destroyed.
2169
+ */
2170
+ addListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
2171
+ /**
2172
+ * Issued when all executionContexts were cleared in browser
2173
+ */
2174
+ addListener(event: 'Runtime.executionContextsCleared', listener: () => void): this;
2175
+ /**
2176
+ * Issued when exception was thrown and unhandled.
2177
+ */
2178
+ addListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
2179
+ /**
2180
+ * Issued when unhandled exception was revoked.
2181
+ */
2182
+ addListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
2183
+ /**
2184
+ * Issued when console API was called.
2185
+ */
2186
+ addListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
2187
+ /**
2188
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
2189
+ */
2190
+ addListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
2191
+ /**
2192
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
2193
+ */
2194
+ addListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
2195
+ /**
2196
+ * Fired when virtual machine fails to parse the script.
2197
+ */
2198
+ addListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
2199
+ /**
2200
+ * Fired when breakpoint is resolved to an actual script and location.
2201
+ */
2202
+ addListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
2203
+ /**
2204
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
2205
+ */
2206
+ addListener(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
2207
+ /**
2208
+ * Fired when the virtual machine resumed execution.
2209
+ */
2210
+ addListener(event: 'Debugger.resumed', listener: () => void): this;
2211
+ /**
2212
+ * Issued when new console message is added.
2213
+ */
2214
+ addListener(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
2215
+ /**
2216
+ * Sent when new profile recording is started using console.profile() call.
2217
+ */
2218
+ addListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
2219
+ addListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
2220
+ addListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
2221
+ addListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this;
2222
+ addListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
2223
+ /**
2224
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
2225
+ */
2226
+ addListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
2227
+ /**
2228
+ * If heap objects tracking has been started then backend may send update for one or more fragments
2229
+ */
2230
+ addListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
2231
+ /**
2232
+ * Contains an bucket of collected trace events.
2233
+ */
2234
+ addListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
2235
+ /**
2236
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
2237
+ * delivered via dataCollected events.
2238
+ */
2239
+ addListener(event: 'NodeTracing.tracingComplete', listener: () => void): this;
2240
+ /**
2241
+ * Issued when attached to a worker.
2242
+ */
2243
+ addListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
2244
+ /**
2245
+ * Issued when detached from the worker.
2246
+ */
2247
+ addListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
2248
+ /**
2249
+ * Notifies about a new protocol message received from the session
2250
+ * (session ID is provided in attachedToWorker notification).
2251
+ */
2252
+ addListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
2253
+ /**
2254
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
2255
+ * enabled.
2256
+ * It is fired when the Node process finished all code execution and is
2257
+ * waiting for all frontends to disconnect.
2258
+ */
2259
+ addListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;
2260
+ emit(event: string | symbol, ...args: any[]): boolean;
2261
+ emit(event: 'inspectorNotification', message: InspectorNotification<{}>): boolean;
2262
+ emit(event: 'Runtime.executionContextCreated', message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>): boolean;
2263
+ emit(event: 'Runtime.executionContextDestroyed', message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>): boolean;
2264
+ emit(event: 'Runtime.executionContextsCleared'): boolean;
2265
+ emit(event: 'Runtime.exceptionThrown', message: InspectorNotification<Runtime.ExceptionThrownEventDataType>): boolean;
2266
+ emit(event: 'Runtime.exceptionRevoked', message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>): boolean;
2267
+ emit(event: 'Runtime.consoleAPICalled', message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>): boolean;
2268
+ emit(event: 'Runtime.inspectRequested', message: InspectorNotification<Runtime.InspectRequestedEventDataType>): boolean;
2269
+ emit(event: 'Debugger.scriptParsed', message: InspectorNotification<Debugger.ScriptParsedEventDataType>): boolean;
2270
+ emit(event: 'Debugger.scriptFailedToParse', message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>): boolean;
2271
+ emit(event: 'Debugger.breakpointResolved', message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>): boolean;
2272
+ emit(event: 'Debugger.paused', message: InspectorNotification<Debugger.PausedEventDataType>): boolean;
2273
+ emit(event: 'Debugger.resumed'): boolean;
2274
+ emit(event: 'Console.messageAdded', message: InspectorNotification<Console.MessageAddedEventDataType>): boolean;
2275
+ emit(event: 'Profiler.consoleProfileStarted', message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>): boolean;
2276
+ emit(event: 'Profiler.consoleProfileFinished', message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>): boolean;
2277
+ emit(event: 'HeapProfiler.addHeapSnapshotChunk', message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>): boolean;
2278
+ emit(event: 'HeapProfiler.resetProfiles'): boolean;
2279
+ emit(event: 'HeapProfiler.reportHeapSnapshotProgress', message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>): boolean;
2280
+ emit(event: 'HeapProfiler.lastSeenObjectId', message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>): boolean;
2281
+ emit(event: 'HeapProfiler.heapStatsUpdate', message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>): boolean;
2282
+ emit(event: 'NodeTracing.dataCollected', message: InspectorNotification<NodeTracing.DataCollectedEventDataType>): boolean;
2283
+ emit(event: 'NodeTracing.tracingComplete'): boolean;
2284
+ emit(event: 'NodeWorker.attachedToWorker', message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>): boolean;
2285
+ emit(event: 'NodeWorker.detachedFromWorker', message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>): boolean;
2286
+ emit(event: 'NodeWorker.receivedMessageFromWorker', message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>): boolean;
2287
+ emit(event: 'NodeRuntime.waitingForDisconnect'): boolean;
2288
+ on(event: string, listener: (...args: any[]) => void): this;
2289
+ /**
2290
+ * Emitted when any notification from the V8 Inspector is received.
2291
+ */
2292
+ on(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this;
2293
+ /**
2294
+ * Issued when new execution context is created.
2295
+ */
2296
+ on(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
2297
+ /**
2298
+ * Issued when execution context is destroyed.
2299
+ */
2300
+ on(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
2301
+ /**
2302
+ * Issued when all executionContexts were cleared in browser
2303
+ */
2304
+ on(event: 'Runtime.executionContextsCleared', listener: () => void): this;
2305
+ /**
2306
+ * Issued when exception was thrown and unhandled.
2307
+ */
2308
+ on(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
2309
+ /**
2310
+ * Issued when unhandled exception was revoked.
2311
+ */
2312
+ on(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
2313
+ /**
2314
+ * Issued when console API was called.
2315
+ */
2316
+ on(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
2317
+ /**
2318
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
2319
+ */
2320
+ on(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
2321
+ /**
2322
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
2323
+ */
2324
+ on(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
2325
+ /**
2326
+ * Fired when virtual machine fails to parse the script.
2327
+ */
2328
+ on(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
2329
+ /**
2330
+ * Fired when breakpoint is resolved to an actual script and location.
2331
+ */
2332
+ on(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
2333
+ /**
2334
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
2335
+ */
2336
+ on(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
2337
+ /**
2338
+ * Fired when the virtual machine resumed execution.
2339
+ */
2340
+ on(event: 'Debugger.resumed', listener: () => void): this;
2341
+ /**
2342
+ * Issued when new console message is added.
2343
+ */
2344
+ on(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
2345
+ /**
2346
+ * Sent when new profile recording is started using console.profile() call.
2347
+ */
2348
+ on(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
2349
+ on(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
2350
+ on(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
2351
+ on(event: 'HeapProfiler.resetProfiles', listener: () => void): this;
2352
+ on(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
2353
+ /**
2354
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
2355
+ */
2356
+ on(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
2357
+ /**
2358
+ * If heap objects tracking has been started then backend may send update for one or more fragments
2359
+ */
2360
+ on(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
2361
+ /**
2362
+ * Contains an bucket of collected trace events.
2363
+ */
2364
+ on(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
2365
+ /**
2366
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
2367
+ * delivered via dataCollected events.
2368
+ */
2369
+ on(event: 'NodeTracing.tracingComplete', listener: () => void): this;
2370
+ /**
2371
+ * Issued when attached to a worker.
2372
+ */
2373
+ on(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
2374
+ /**
2375
+ * Issued when detached from the worker.
2376
+ */
2377
+ on(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
2378
+ /**
2379
+ * Notifies about a new protocol message received from the session
2380
+ * (session ID is provided in attachedToWorker notification).
2381
+ */
2382
+ on(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
2383
+ /**
2384
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
2385
+ * enabled.
2386
+ * It is fired when the Node process finished all code execution and is
2387
+ * waiting for all frontends to disconnect.
2388
+ */
2389
+ on(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;
2390
+ once(event: string, listener: (...args: any[]) => void): this;
2391
+ /**
2392
+ * Emitted when any notification from the V8 Inspector is received.
2393
+ */
2394
+ once(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this;
2395
+ /**
2396
+ * Issued when new execution context is created.
2397
+ */
2398
+ once(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
2399
+ /**
2400
+ * Issued when execution context is destroyed.
2401
+ */
2402
+ once(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
2403
+ /**
2404
+ * Issued when all executionContexts were cleared in browser
2405
+ */
2406
+ once(event: 'Runtime.executionContextsCleared', listener: () => void): this;
2407
+ /**
2408
+ * Issued when exception was thrown and unhandled.
2409
+ */
2410
+ once(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
2411
+ /**
2412
+ * Issued when unhandled exception was revoked.
2413
+ */
2414
+ once(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
2415
+ /**
2416
+ * Issued when console API was called.
2417
+ */
2418
+ once(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
2419
+ /**
2420
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
2421
+ */
2422
+ once(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
2423
+ /**
2424
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
2425
+ */
2426
+ once(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
2427
+ /**
2428
+ * Fired when virtual machine fails to parse the script.
2429
+ */
2430
+ once(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
2431
+ /**
2432
+ * Fired when breakpoint is resolved to an actual script and location.
2433
+ */
2434
+ once(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
2435
+ /**
2436
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
2437
+ */
2438
+ once(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
2439
+ /**
2440
+ * Fired when the virtual machine resumed execution.
2441
+ */
2442
+ once(event: 'Debugger.resumed', listener: () => void): this;
2443
+ /**
2444
+ * Issued when new console message is added.
2445
+ */
2446
+ once(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
2447
+ /**
2448
+ * Sent when new profile recording is started using console.profile() call.
2449
+ */
2450
+ once(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
2451
+ once(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
2452
+ once(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
2453
+ once(event: 'HeapProfiler.resetProfiles', listener: () => void): this;
2454
+ once(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
2455
+ /**
2456
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
2457
+ */
2458
+ once(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
2459
+ /**
2460
+ * If heap objects tracking has been started then backend may send update for one or more fragments
2461
+ */
2462
+ once(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
2463
+ /**
2464
+ * Contains an bucket of collected trace events.
2465
+ */
2466
+ once(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
2467
+ /**
2468
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
2469
+ * delivered via dataCollected events.
2470
+ */
2471
+ once(event: 'NodeTracing.tracingComplete', listener: () => void): this;
2472
+ /**
2473
+ * Issued when attached to a worker.
2474
+ */
2475
+ once(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
2476
+ /**
2477
+ * Issued when detached from the worker.
2478
+ */
2479
+ once(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
2480
+ /**
2481
+ * Notifies about a new protocol message received from the session
2482
+ * (session ID is provided in attachedToWorker notification).
2483
+ */
2484
+ once(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
2485
+ /**
2486
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
2487
+ * enabled.
2488
+ * It is fired when the Node process finished all code execution and is
2489
+ * waiting for all frontends to disconnect.
2490
+ */
2491
+ once(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;
2492
+ prependListener(event: string, listener: (...args: any[]) => void): this;
2493
+ /**
2494
+ * Emitted when any notification from the V8 Inspector is received.
2495
+ */
2496
+ prependListener(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this;
2497
+ /**
2498
+ * Issued when new execution context is created.
2499
+ */
2500
+ prependListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
2501
+ /**
2502
+ * Issued when execution context is destroyed.
2503
+ */
2504
+ prependListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
2505
+ /**
2506
+ * Issued when all executionContexts were cleared in browser
2507
+ */
2508
+ prependListener(event: 'Runtime.executionContextsCleared', listener: () => void): this;
2509
+ /**
2510
+ * Issued when exception was thrown and unhandled.
2511
+ */
2512
+ prependListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
2513
+ /**
2514
+ * Issued when unhandled exception was revoked.
2515
+ */
2516
+ prependListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
2517
+ /**
2518
+ * Issued when console API was called.
2519
+ */
2520
+ prependListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
2521
+ /**
2522
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
2523
+ */
2524
+ prependListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
2525
+ /**
2526
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
2527
+ */
2528
+ prependListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
2529
+ /**
2530
+ * Fired when virtual machine fails to parse the script.
2531
+ */
2532
+ prependListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
2533
+ /**
2534
+ * Fired when breakpoint is resolved to an actual script and location.
2535
+ */
2536
+ prependListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
2537
+ /**
2538
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
2539
+ */
2540
+ prependListener(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
2541
+ /**
2542
+ * Fired when the virtual machine resumed execution.
2543
+ */
2544
+ prependListener(event: 'Debugger.resumed', listener: () => void): this;
2545
+ /**
2546
+ * Issued when new console message is added.
2547
+ */
2548
+ prependListener(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
2549
+ /**
2550
+ * Sent when new profile recording is started using console.profile() call.
2551
+ */
2552
+ prependListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
2553
+ prependListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
2554
+ prependListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
2555
+ prependListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this;
2556
+ prependListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
2557
+ /**
2558
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
2559
+ */
2560
+ prependListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
2561
+ /**
2562
+ * If heap objects tracking has been started then backend may send update for one or more fragments
2563
+ */
2564
+ prependListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
2565
+ /**
2566
+ * Contains an bucket of collected trace events.
2567
+ */
2568
+ prependListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
2569
+ /**
2570
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
2571
+ * delivered via dataCollected events.
2572
+ */
2573
+ prependListener(event: 'NodeTracing.tracingComplete', listener: () => void): this;
2574
+ /**
2575
+ * Issued when attached to a worker.
2576
+ */
2577
+ prependListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
2578
+ /**
2579
+ * Issued when detached from the worker.
2580
+ */
2581
+ prependListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
2582
+ /**
2583
+ * Notifies about a new protocol message received from the session
2584
+ * (session ID is provided in attachedToWorker notification).
2585
+ */
2586
+ prependListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
2587
+ /**
2588
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
2589
+ * enabled.
2590
+ * It is fired when the Node process finished all code execution and is
2591
+ * waiting for all frontends to disconnect.
2592
+ */
2593
+ prependListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;
2594
+ prependOnceListener(event: string, listener: (...args: any[]) => void): this;
2595
+ /**
2596
+ * Emitted when any notification from the V8 Inspector is received.
2597
+ */
2598
+ prependOnceListener(event: 'inspectorNotification', listener: (message: InspectorNotification<{}>) => void): this;
2599
+ /**
2600
+ * Issued when new execution context is created.
2601
+ */
2602
+ prependOnceListener(event: 'Runtime.executionContextCreated', listener: (message: InspectorNotification<Runtime.ExecutionContextCreatedEventDataType>) => void): this;
2603
+ /**
2604
+ * Issued when execution context is destroyed.
2605
+ */
2606
+ prependOnceListener(event: 'Runtime.executionContextDestroyed', listener: (message: InspectorNotification<Runtime.ExecutionContextDestroyedEventDataType>) => void): this;
2607
+ /**
2608
+ * Issued when all executionContexts were cleared in browser
2609
+ */
2610
+ prependOnceListener(event: 'Runtime.executionContextsCleared', listener: () => void): this;
2611
+ /**
2612
+ * Issued when exception was thrown and unhandled.
2613
+ */
2614
+ prependOnceListener(event: 'Runtime.exceptionThrown', listener: (message: InspectorNotification<Runtime.ExceptionThrownEventDataType>) => void): this;
2615
+ /**
2616
+ * Issued when unhandled exception was revoked.
2617
+ */
2618
+ prependOnceListener(event: 'Runtime.exceptionRevoked', listener: (message: InspectorNotification<Runtime.ExceptionRevokedEventDataType>) => void): this;
2619
+ /**
2620
+ * Issued when console API was called.
2621
+ */
2622
+ prependOnceListener(event: 'Runtime.consoleAPICalled', listener: (message: InspectorNotification<Runtime.ConsoleAPICalledEventDataType>) => void): this;
2623
+ /**
2624
+ * Issued when object should be inspected (for example, as a result of inspect() command line API call).
2625
+ */
2626
+ prependOnceListener(event: 'Runtime.inspectRequested', listener: (message: InspectorNotification<Runtime.InspectRequestedEventDataType>) => void): this;
2627
+ /**
2628
+ * Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.
2629
+ */
2630
+ prependOnceListener(event: 'Debugger.scriptParsed', listener: (message: InspectorNotification<Debugger.ScriptParsedEventDataType>) => void): this;
2631
+ /**
2632
+ * Fired when virtual machine fails to parse the script.
2633
+ */
2634
+ prependOnceListener(event: 'Debugger.scriptFailedToParse', listener: (message: InspectorNotification<Debugger.ScriptFailedToParseEventDataType>) => void): this;
2635
+ /**
2636
+ * Fired when breakpoint is resolved to an actual script and location.
2637
+ */
2638
+ prependOnceListener(event: 'Debugger.breakpointResolved', listener: (message: InspectorNotification<Debugger.BreakpointResolvedEventDataType>) => void): this;
2639
+ /**
2640
+ * Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
2641
+ */
2642
+ prependOnceListener(event: 'Debugger.paused', listener: (message: InspectorNotification<Debugger.PausedEventDataType>) => void): this;
2643
+ /**
2644
+ * Fired when the virtual machine resumed execution.
2645
+ */
2646
+ prependOnceListener(event: 'Debugger.resumed', listener: () => void): this;
2647
+ /**
2648
+ * Issued when new console message is added.
2649
+ */
2650
+ prependOnceListener(event: 'Console.messageAdded', listener: (message: InspectorNotification<Console.MessageAddedEventDataType>) => void): this;
2651
+ /**
2652
+ * Sent when new profile recording is started using console.profile() call.
2653
+ */
2654
+ prependOnceListener(event: 'Profiler.consoleProfileStarted', listener: (message: InspectorNotification<Profiler.ConsoleProfileStartedEventDataType>) => void): this;
2655
+ prependOnceListener(event: 'Profiler.consoleProfileFinished', listener: (message: InspectorNotification<Profiler.ConsoleProfileFinishedEventDataType>) => void): this;
2656
+ prependOnceListener(event: 'HeapProfiler.addHeapSnapshotChunk', listener: (message: InspectorNotification<HeapProfiler.AddHeapSnapshotChunkEventDataType>) => void): this;
2657
+ prependOnceListener(event: 'HeapProfiler.resetProfiles', listener: () => void): this;
2658
+ prependOnceListener(event: 'HeapProfiler.reportHeapSnapshotProgress', listener: (message: InspectorNotification<HeapProfiler.ReportHeapSnapshotProgressEventDataType>) => void): this;
2659
+ /**
2660
+ * If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.
2661
+ */
2662
+ prependOnceListener(event: 'HeapProfiler.lastSeenObjectId', listener: (message: InspectorNotification<HeapProfiler.LastSeenObjectIdEventDataType>) => void): this;
2663
+ /**
2664
+ * If heap objects tracking has been started then backend may send update for one or more fragments
2665
+ */
2666
+ prependOnceListener(event: 'HeapProfiler.heapStatsUpdate', listener: (message: InspectorNotification<HeapProfiler.HeapStatsUpdateEventDataType>) => void): this;
2667
+ /**
2668
+ * Contains an bucket of collected trace events.
2669
+ */
2670
+ prependOnceListener(event: 'NodeTracing.dataCollected', listener: (message: InspectorNotification<NodeTracing.DataCollectedEventDataType>) => void): this;
2671
+ /**
2672
+ * Signals that tracing is stopped and there is no trace buffers pending flush, all data were
2673
+ * delivered via dataCollected events.
2674
+ */
2675
+ prependOnceListener(event: 'NodeTracing.tracingComplete', listener: () => void): this;
2676
+ /**
2677
+ * Issued when attached to a worker.
2678
+ */
2679
+ prependOnceListener(event: 'NodeWorker.attachedToWorker', listener: (message: InspectorNotification<NodeWorker.AttachedToWorkerEventDataType>) => void): this;
2680
+ /**
2681
+ * Issued when detached from the worker.
2682
+ */
2683
+ prependOnceListener(event: 'NodeWorker.detachedFromWorker', listener: (message: InspectorNotification<NodeWorker.DetachedFromWorkerEventDataType>) => void): this;
2684
+ /**
2685
+ * Notifies about a new protocol message received from the session
2686
+ * (session ID is provided in attachedToWorker notification).
2687
+ */
2688
+ prependOnceListener(event: 'NodeWorker.receivedMessageFromWorker', listener: (message: InspectorNotification<NodeWorker.ReceivedMessageFromWorkerEventDataType>) => void): this;
2689
+ /**
2690
+ * This event is fired instead of `Runtime.executionContextDestroyed` when
2691
+ * enabled.
2692
+ * It is fired when the Node process finished all code execution and is
2693
+ * waiting for all frontends to disconnect.
2694
+ */
2695
+ prependOnceListener(event: 'NodeRuntime.waitingForDisconnect', listener: () => void): this;
2696
+ }
2697
+ /**
2698
+ * Activate inspector on host and port. Equivalent to `node --inspect=[[host:]port]`, but can be done programmatically after node has
2699
+ * started.
2700
+ *
2701
+ * If wait is `true`, will block until a client has connected to the inspect port
2702
+ * and flow control has been passed to the debugger client.
2703
+ *
2704
+ * See the `security warning` regarding the `host`parameter usage.
2705
+ * @param [port='what was specified on the CLI'] Port to listen on for inspector connections. Optional.
2706
+ * @param [host='what was specified on the CLI'] Host to listen on for inspector connections. Optional.
2707
+ * @param [wait=false] Block until a client has connected. Optional.
2708
+ */
2709
+ function open(port?: number, host?: string, wait?: boolean): void;
2710
+ /**
2711
+ * Deactivate the inspector. Blocks until there are no active connections.
2712
+ */
2713
+ function close(): void;
2714
+ /**
2715
+ * Return the URL of the active inspector, or `undefined` if there is none.
2716
+ *
2717
+ * ```console
2718
+ * $ node --inspect -p 'inspector.url()'
2719
+ * Debugger listening on ws://127.0.0.1:9229/166e272e-7a30-4d09-97ce-f1c012b43c34
2720
+ * For help see https://nodejs.org/en/docs/inspector
2721
+ * ws://127.0.0.1:9229/166e272e-7a30-4d09-97ce-f1c012b43c34
2722
+ *
2723
+ * $ node --inspect=localhost:3000 -p 'inspector.url()'
2724
+ * Debugger listening on ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a
2725
+ * For help see https://nodejs.org/en/docs/inspector
2726
+ * ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a
2727
+ *
2728
+ * $ node -p 'inspector.url()'
2729
+ * undefined
2730
+ * ```
2731
+ */
2732
+ function url(): string | undefined;
2733
+ /**
2734
+ * Blocks until a client (existing or connected later) has sent`Runtime.runIfWaitingForDebugger` command.
2735
+ *
2736
+ * An exception will be thrown if there is no active inspector.
2737
+ * @since v12.7.0
2738
+ */
2739
+ function waitForDebugger(): void;
2740
+ }
2741
+ declare module 'node:inspector' {
2742
+ import EventEmitter = require('inspector');
2743
+ export = EventEmitter;
2744
+ }