playwright-codegen-pro-core 1.0.3 → 1.0.5

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 (3987) 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/backend/browserBackend.js +31 -0
  3980. package/lib/tools/backend/mcpNetworkCapture.js +162 -0
  3981. package/lib/tools/backend/mcpSessionRecorder.js +212 -0
  3982. package/lib/tools/backend/recorder.js +2 -2
  3983. package/lib/tools/mcp/program.js +18 -4
  3984. package/lib/tools/utils/mcp/server.js +2 -1
  3985. package/lib/vite/traceViewer/index.CzAVbF3D.js +2 -0
  3986. package/lib/vite/traceViewer/index.html +1 -1
  3987. package/package.json +1 -1
@@ -0,0 +1,37 @@
1
+ /*!
2
+
3
+ diff v7.0.0
4
+
5
+ BSD 3-Clause License
6
+
7
+ Copyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>
8
+ All rights reserved.
9
+
10
+ Redistribution and use in source and binary forms, with or without
11
+ modification, are permitted provided that the following conditions are met:
12
+
13
+ 1. Redistributions of source code must retain the above copyright notice, this
14
+ list of conditions and the following disclaimer.
15
+
16
+ 2. Redistributions in binary form must reproduce the above copyright notice,
17
+ this list of conditions and the following disclaimer in the documentation
18
+ and/or other materials provided with the distribution.
19
+
20
+ 3. Neither the name of the copyright holder nor the names of its
21
+ contributors may be used to endorse or promote products derived from
22
+ this software without specific prior written permission.
23
+
24
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
28
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
+
35
+ @license
36
+ */
37
+ !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n((e="undefined"!=typeof globalThis?globalThis:e||self).Diff={})}(this,function(e){"use strict";function r(){}function w(e,n,t,r,i){for(var o,l=[];n;)l.push(n),o=n.previousComponent,delete n.previousComponent,n=o;l.reverse();for(var a=0,u=l.length,s=0,f=0;a<u;a++){var c,d=l[a];d.removed?(d.value=e.join(r.slice(f,f+d.count)),f+=d.count):(!d.added&&i?(c=(c=t.slice(s,s+d.count)).map(function(e,n){n=r[f+n];return n.length>e.length?n:e}),d.value=e.join(c)):d.value=e.join(t.slice(s,s+d.count)),s+=d.count,d.added||(f+=d.count))}return l}r.prototype={diff:function(l,a){var u=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{},n=u.callback,s=("function"==typeof u&&(n=u,u={}),this);function f(e){return e=s.postProcess(e,u),n?(setTimeout(function(){n(e)},0),!0):e}l=this.castInput(l,u),a=this.castInput(a,u),l=this.removeEmpty(this.tokenize(l,u));var c=(a=this.removeEmpty(this.tokenize(a,u))).length,d=l.length,h=1,t=c+d,e=(null!=u.maxEditLength&&(t=Math.min(t,u.maxEditLength)),null!=(e=u.timeout)?e:1/0),r=Date.now()+e,p=[{oldPos:-1,lastComponent:void 0}],v=this.extractCommon(p[0],a,l,0,u);if(p[0].oldPos+1>=d&&c<=v+1)return f(w(s,p[0].lastComponent,a,l,s.useLongestToken));var g=-1/0,m=1/0;function i(){for(var e=Math.max(g,-h);e<=Math.min(m,h);e+=2){var n=void 0,t=p[e-1],r=p[e+1],i=(t&&(p[e-1]=void 0),!1),o=(r&&(o=r.oldPos-e,i=r&&0<=o&&o<c),t&&t.oldPos+1<d);if(i||o){if(n=!o||i&&t.oldPos<r.oldPos?s.addToPath(r,!0,!1,0,u):s.addToPath(t,!1,!0,1,u),v=s.extractCommon(n,a,l,e,u),n.oldPos+1>=d&&c<=v+1)return f(w(s,n.lastComponent,a,l,s.useLongestToken));(p[e]=n).oldPos+1>=d&&(m=Math.min(m,e-1)),c<=v+1&&(g=Math.max(g,e+1))}else p[e]=void 0}h++}if(n)!function e(){setTimeout(function(){if(t<h||Date.now()>r)return n();i()||e()},0)}();else for(;h<=t&&Date.now()<=r;){var o=i();if(o)return o}},addToPath:function(e,n,t,r,i){var o=e.lastComponent;return o&&!i.oneChangePerToken&&o.added===n&&o.removed===t?{oldPos:e.oldPos+r,lastComponent:{count:o.count+1,added:n,removed:t,previousComponent:o.previousComponent}}:{oldPos:e.oldPos+r,lastComponent:{count:1,added:n,removed:t,previousComponent:o}}},extractCommon:function(e,n,t,r,i){for(var o=n.length,l=t.length,a=e.oldPos,u=a-r,s=0;u+1<o&&a+1<l&&this.equals(t[a+1],n[u+1],i);)u++,a++,s++,i.oneChangePerToken&&(e.lastComponent={count:1,previousComponent:e.lastComponent,added:!1,removed:!1});return s&&!i.oneChangePerToken&&(e.lastComponent={count:s,previousComponent:e.lastComponent,added:!1,removed:!1}),e.oldPos=a,u},equals:function(e,n,t){return t.comparator?t.comparator(e,n):e===n||t.ignoreCase&&e.toLowerCase()===n.toLowerCase()},removeEmpty:function(e){for(var n=[],t=0;t<e.length;t++)e[t]&&n.push(e[t]);return n},castInput:function(e){return e},tokenize:function(e){return Array.from(e)},join:function(e){return e.join("")},postProcess:function(e){return e}};var I=new r;function u(e,n){for(var t=0;t<e.length&&t<n.length;t++)if(e[t]!=n[t])return e.slice(0,t);return e.slice(0,t)}function s(e,n){var t;if(!e||!n||e[e.length-1]!=n[n.length-1])return"";for(t=0;t<e.length&&t<n.length;t++)if(e[e.length-(t+1)]!=n[n.length-(t+1)])return e.slice(-t);return e.slice(-t)}function f(e,n,t){if(e.slice(0,n.length)!=n)throw Error("string ".concat(JSON.stringify(e)," doesn't start with prefix ").concat(JSON.stringify(n),"; this is a bug"));return t+e.slice(n.length)}function c(e,n,t){if(!n)return e+t;if(e.slice(-n.length)!=n)throw Error("string ".concat(JSON.stringify(e)," doesn't end with suffix ").concat(JSON.stringify(n),"; this is a bug"));return e.slice(0,-n.length)+t}function d(e,n){return f(e,n,"")}function h(e,n){return c(e,n,"")}function p(e,n){return n.slice(0,function(e,n){var t=0;e.length>n.length&&(t=e.length-n.length);var r=n.length;e.length<n.length&&(r=e.length);var i=Array(r),o=0;i[0]=0;for(var l=1;l<r;l++){for(n[l]==n[o]?i[l]=i[o]:i[l]=o;0<o&&n[l]!=n[o];)o=i[o];n[l]==n[o]&&o++}o=0;for(var a=t;a<e.length;a++){for(;0<o&&e[a]!=n[o];)o=i[o];e[a]==n[o]&&o++}return o}(e,n))}var t="a-zA-Z0-9_\\u{C0}-\\u{FF}\\u{D8}-\\u{F6}\\u{F8}-\\u{2C6}\\u{2C8}-\\u{2D7}\\u{2DE}-\\u{2FF}\\u{1E00}-\\u{1EFF}",z=new RegExp("[".concat(t,"]+|\\s+|[^").concat(t,"]"),"ug"),i=new r;function o(e,n,t,r){var i,o,l,a;n&&t?(i=n.value.match(/^\s*/)[0],o=n.value.match(/\s*$/)[0],l=t.value.match(/^\s*/)[0],a=t.value.match(/\s*$/)[0],e&&(i=u(i,l),e.value=c(e.value,l,i),n.value=d(n.value,i),t.value=d(t.value,i)),r&&(l=s(o,a),r.value=f(r.value,a,l),n.value=h(n.value,l),t.value=h(t.value,l))):t?(e&&(t.value=t.value.replace(/^\s*/,"")),r&&(r.value=r.value.replace(/^\s*/,""))):e&&r?(i=r.value.match(/^\s*/)[0],o=n.value.match(/^\s*/)[0],a=n.value.match(/\s*$/)[0],l=u(i,o),n.value=d(n.value,l),t=s(d(i,l),a),n.value=h(n.value,t),r.value=f(r.value,i,t),e.value=c(e.value,i,i.slice(0,i.length-t.length))):r?(o=r.value.match(/^\s*/)[0],l=p(n.value.match(/\s*$/)[0],o),n.value=h(n.value,l)):e&&(a=p(e.value.match(/\s*$/)[0],n.value.match(/^\s*/)[0]),n.value=d(n.value,a))}i.equals=function(e,n,t){return t.ignoreCase&&(e=e.toLowerCase(),n=n.toLowerCase()),e.trim()===n.trim()},i.tokenize=function(e){var n,t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};if(t.intlSegmenter){if("word"!=t.intlSegmenter.resolvedOptions().granularity)throw new Error('The segmenter passed must have a granularity of "word"');n=Array.from(t.intlSegmenter.segment(e),function(e){return e.segment})}else n=e.match(z)||[];var r=[],i=null;return n.forEach(function(e){/\s/.test(e)?r.push(null==i?e:r.pop()+e):/\s/.test(i)?r.push(r[r.length-1]==i?r.pop()+e:i+e):r.push(e),i=e}),r},i.join=function(e){return e.map(function(e,n){return 0==n?e:e.replace(/^\s+/,"")}).join("")},i.postProcess=function(e,n){var t,r,i;return e&&!n.oneChangePerToken&&(i=r=t=null,e.forEach(function(e){e.added?r=e:i=e.removed?e:((r||i)&&o(t,i,r,e),t=e,r=null)}),r||i)&&o(t,i,r,null),e};var l=new r;function a(e,n,t){return l.diff(e,n,t)}l.tokenize=function(e){var n=new RegExp("(\\r?\\n)|[".concat(t,"]+|[^\\S\\n\\r]+|[^").concat(t,"]"),"ug");return e.match(n)||[]};var v=new r;function y(e,n,t){return v.diff(e,n,t)}v.tokenize=function(e,n){var t=[],r=(e=n.stripTrailingCr?e.replace(/\r\n/g,"\n"):e).split(/(\n|\r\n)/);r[r.length-1]||r.pop();for(var i=0;i<r.length;i++){var o=r[i];i%2&&!n.newlineIsToken?t[t.length-1]+=o:t.push(o)}return t},v.equals=function(e,n,t){return t.ignoreWhitespace?(t.newlineIsToken&&e.includes("\n")||(e=e.trim()),t.newlineIsToken&&n.includes("\n")||(n=n.trim())):t.ignoreNewlineAtEof&&!t.newlineIsToken&&(e.endsWith("\n")&&(e=e.slice(0,-1)),n.endsWith("\n"))&&(n=n.slice(0,-1)),r.prototype.equals.call(this,e,n,t)};var g=new r;g.tokenize=function(e){return e.split(/(\S.+?[.!?])(?=\s+|$)/)};var m=new r;function n(n,e){var t,r=Object.keys(n);return Object.getOwnPropertySymbols&&(t=Object.getOwnPropertySymbols(n),e&&(t=t.filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable})),r.push.apply(r,t)),r}function b(r){for(var e=1;e<arguments.length;e++){var i=null!=arguments[e]?arguments[e]:{};e%2?n(Object(i),!0).forEach(function(e){var n,t;n=r,t=i[e=e],(e=function(e){e=function(e,n){if("object"!=typeof e||!e)return e;var t=e[Symbol.toPrimitive];if(void 0===t)return("string"===n?String:Number)(e);t=t.call(e,n||"default");if("object"!=typeof t)return t;throw new TypeError("@@toPrimitive must return a primitive value.")}(e,"string");return"symbol"==typeof e?e:e+""}(e))in n?Object.defineProperty(n,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):n[e]=t}):Object.getOwnPropertyDescriptors?Object.defineProperties(r,Object.getOwnPropertyDescriptors(i)):n(Object(i)).forEach(function(e){Object.defineProperty(r,e,Object.getOwnPropertyDescriptor(i,e))})}return r}function L(e){return(L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function k(e){return function(e){if(Array.isArray(e))return S(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,n){var t;if(e)return"string"==typeof e?S(e,n):"Map"===(t="Object"===(t=Object.prototype.toString.call(e).slice(8,-1))&&e.constructor?e.constructor.name:t)||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?S(e,n):void 0}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function S(e,n){(null==n||n>e.length)&&(n=e.length);for(var t=0,r=new Array(n);t<n;t++)r[t]=e[t];return r}m.tokenize=function(e){return e.split(/([{}:;,]|\s+)/)};var x=new r;function P(e,n,t,r,i){var o,l;for(n=n||[],t=t||[],r&&(e=r(i,e)),o=0;o<n.length;o+=1)if(n[o]===e)return t[o];if("[object Array]"===Object.prototype.toString.call(e)){for(n.push(e),l=new Array(e.length),t.push(l),o=0;o<e.length;o+=1)l[o]=P(e[o],n,t,r,i);n.pop(),t.pop()}else if("object"===L(e=e&&e.toJSON?e.toJSON():e)&&null!==e){n.push(e),t.push(l={});var a,u=[];for(a in e)Object.prototype.hasOwnProperty.call(e,a)&&u.push(a);for(u.sort(),o=0;o<u.length;o+=1)l[a=u[o]]=P(e[a],n,t,r,a);n.pop(),t.pop()}else l=e;return l}x.useLongestToken=!0,x.tokenize=v.tokenize,x.castInput=function(e,n){var t=n.undefinedReplacement,n=n.stringifyReplacer,n=void 0===n?function(e,n){return void 0===n?t:n}:n;return"string"==typeof e?e:JSON.stringify(P(e,null,null,n),n," ")},x.equals=function(e,n,t){return r.prototype.equals.call(x,e.replace(/,([\r\n])/g,"$1"),n.replace(/,([\r\n])/g,"$1"),t)};var F=new r;function N(e){return Array.isArray(e)?e.map(N):b(b({},e),{},{hunks:e.hunks.map(function(t){return b(b({},t),{},{lines:t.lines.map(function(e,n){return e.startsWith("\\")||e.endsWith("\r")||null!=(n=t.lines[n+1])&&n.startsWith("\\")?e:e+"\r"})})})})}function C(e){return Array.isArray(e)?e.map(C):b(b({},e),{},{hunks:e.hunks.map(function(e){return b(b({},e),{},{lines:e.lines.map(function(e){return e.endsWith("\r")?e.substring(0,e.length-1):e})})})})}function j(e){var l=e.split(/\n/),r=[],a=0;function n(){var e={};for(r.push(e);a<l.length;){var n=l[a];if(/^(\-\-\-|\+\+\+|@@)\s/.test(n))break;n=/^(?:Index:|diff(?: -r \w+)+)\s+(.+?)\s*$/.exec(n);n&&(e.index=n[1]),a++}for(i(e),i(e),e.hunks=[];a<l.length;){var t=l[a];if(/^(Index:\s|diff\s|\-\-\-\s|\+\+\+\s|===================================================================)/.test(t))break;if(/^@@/.test(t))e.hunks.push(function(){var e=a,n=l[a++].split(/@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@/),t={oldStart:+n[1],oldLines:void 0===n[2]?1:+n[2],newStart:+n[3],newLines:void 0===n[4]?1:+n[4],lines:[]};0===t.oldLines&&(t.oldStart+=1);0===t.newLines&&(t.newStart+=1);for(var r=0,i=0;a<l.length&&(i<t.oldLines||r<t.newLines||null!=(o=l[a])&&o.startsWith("\\"));a++){var o=0==l[a].length&&a!=l.length-1?" ":l[a][0];if("+"!==o&&"-"!==o&&" "!==o&&"\\"!==o)throw new Error("Hunk at line ".concat(e+1," contained invalid line ").concat(l[a]));t.lines.push(l[a]),"+"===o?r++:"-"===o?i++:" "===o&&(r++,i++)}r||1!==t.newLines||(t.newLines=0);i||1!==t.oldLines||(t.oldLines=0);if(r!==t.newLines)throw new Error("Added line count did not match for hunk at line "+(e+1));if(i===t.oldLines)return t;throw new Error("Removed line count did not match for hunk at line "+(e+1))}());else{if(t)throw new Error("Unknown line "+(a+1)+" "+JSON.stringify(t));a++}}}function i(e){var n,t,r=/^(---|\+\+\+)\s+(.*)\r?$/.exec(l[a]);r&&(n="---"===r[1]?"old":"new",t=(r=r[2].split("\t",2))[0].replace(/\\\\/g,"\\"),/^".*"$/.test(t)&&(t=t.substr(1,t.length-2)),e[n+"FileName"]=t,e[n+"Header"]=(r[1]||"").trim(),a++)}for(;a<l.length;)n();return r}function D(e,n){var t,r=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};if("string"==typeof n&&(n=j(n)),Array.isArray(n)){if(1<n.length)throw new Error("applyPatch only works with a single input.");n=n[0]}!r.autoConvertLineEndings&&null!=r.autoConvertLineEndings||(!(t=e).includes("\r\n")||t.startsWith("\n")||t.match(/[^\r]\n/)||(t=n,(t=Array.isArray(t)?t:[t]).some(function(e){return e.hunks.some(function(e){return e.lines.some(function(e){return!e.startsWith("\\")&&e.endsWith("\r")})})}))?!(t=e).includes("\r\n")&&t.includes("\n")&&(t=n,(t=Array.isArray(t)?t:[t]).some(function(e){return e.hunks.some(function(e){return e.lines.some(function(e){return e.endsWith("\r")})})}))&&t.every(function(e){return e.hunks.every(function(t){return t.lines.every(function(e,n){return e.startsWith("\\")||e.endsWith("\r")||(null==(e=t.lines[n+1])?void 0:e.startsWith("\\"))})})})&&(n=C(n)):n=N(n));var g=e.split("\n"),i=n.hunks,m=r.compareLine||function(e,n,t,r){return n===r},o=r.fuzzFactor||0,l=0;if(o<0||!Number.isInteger(o))throw new Error("fuzzFactor must be a non-negative integer");if(!i.length)return e;for(var a="",u=!1,s=!1,f=0;f<i[i.length-1].lines.length;f++){var c=i[i.length-1].lines[f];"\\"==c[0]&&("+"==a[0]?u=!0:"-"==a[0]&&(s=!0)),a=c}if(u){if(s){if(!o&&""==g[g.length-1])return!1}else if(""==g[g.length-1])g.pop();else if(!o)return!1}else if(s)if(""!=g[g.length-1])g.push("");else if(!o)return!1;for(var d=[],h=0,p=0;p<i.length;p++){for(var v=i[p],w=void 0,y=g.length-v.oldLines+o,b=void 0,L=0;L<=o;L++){for(var k=function(n,t,r){var i=!0,o=!1,l=!1,a=1;return function e(){if(i&&!l){if(o?a++:i=!1,n+a<=r)return n+a;l=!0}if(!o)return l||(i=!0),t<=n-a?n-a++:(o=!0,e())}}(b=v.oldStart+h-1,l,y);void 0!==b&&!(w=function e(n,t,r,i,o,l,a){for(var u=3<arguments.length&&void 0!==i?i:0,s=!(4<arguments.length&&void 0!==o)||o,f=5<arguments.length&&void 0!==l?l:[],c=6<arguments.length&&void 0!==a?a:0,d=0,h=!1;u<n.length;u++){var p=0<(v=n[u]).length?v[0]:" ",v=0<v.length?v.substr(1):v;if("-"===p){if(!m(t+1,g[t],p,v))return r&&null!=g[t]?(f[c]=g[t],e(n,t+1,r-1,u,!1,f,c+1)):null;t++,d=0}if("+"===p){if(!s)return null;f[c]=v,c++,h=!(d=0)}if(" "===p){if(d++,f[c]=g[t],!m(t+1,g[t],p,v))return h||!r?null:g[t]&&(e(n,t+1,r-1,u+1,!1,f,c+1)||e(n,t+1,r-1,u,!1,f,c+1))||e(n,t,r-1,u+1,!1,f,c);c++,h=!(s=!0),t++}}return t-=d,f.length=c-=d,{patchedLines:f,oldLineLastI:t-1}}(v.lines,b,L));b=k());if(w)break}if(!w)return!1;for(var S=l;S<b;S++)d.push(g[S]);for(var x=0;x<w.patchedLines.length;x++){var P=w.patchedLines[x];d.push(P)}l=w.oldLineLastI+1,h=b+1-v.oldStart}for(var F=l;F<g.length;F++)d.push(g[F]);return d.join("\n")}function O(p,v,e,n,g,m,w){if(void 0===(w="function"==typeof(w=w||{})?{callback:w}:w).context&&(w.context=4),w.newlineIsToken)throw new Error("newlineIsToken may not be used with patch-generation functions, only with diffing functions");if(!w.callback)return r(y(e,n,w));var t=w.callback;function r(r){if(r){r.push({value:"",lines:[]});for(var i=[],o=0,l=0,a=[],u=1,s=1,e=function(){var e,n=r[f],t=n.lines||function(e){var n=e.endsWith("\n"),e=e.split("\n").map(function(e){return e+"\n"});n?e.pop():e.push(e.pop().slice(0,-1));return e}(n.value);n.lines=t,n.added||n.removed?(o||(e=r[f-1],o=u,l=s,e&&(a=0<w.context?h(e.lines.slice(-w.context)):[],o-=a.length,l-=a.length)),a.push.apply(a,k(t.map(function(e){return(n.added?"+":"-")+e}))),n.added?s+=t.length:u+=t.length):(o&&(t.length<=2*w.context&&f<r.length-2?a.push.apply(a,k(h(t))):(e=Math.min(t.length,w.context),a.push.apply(a,k(h(t.slice(0,e)))),e={oldStart:o,oldLines:u-o+e,newStart:l,newLines:s-l+e,lines:a},i.push(e),l=o=0,a=[])),u+=t.length,s+=t.length)},f=0;f<r.length;f++)e();for(var n=0,t=i;n<t.length;n++)for(var c=t[n],d=0;d<c.lines.length;d++)c.lines[d].endsWith("\n")?c.lines[d]=c.lines[d].slice(0,-1):(c.lines.splice(d+1,0,"\"),d++);return{oldFileName:p,newFileName:v,oldHeader:g,newHeader:m,hunks:i}}function h(e){return e.map(function(e){return" "+e})}}y(e,n,b(b({},w),{},{callback:function(e){e=r(e);t(e)}}))}function E(e){if(Array.isArray(e))return e.map(E).join("\n");var n=[];e.oldFileName==e.newFileName&&n.push("Index: "+e.oldFileName),n.push("==================================================================="),n.push("--- "+e.oldFileName+(void 0===e.oldHeader?"":"\t"+e.oldHeader)),n.push("+++ "+e.newFileName+(void 0===e.newHeader?"":"\t"+e.newHeader));for(var t=0;t<e.hunks.length;t++){var r=e.hunks[t];0===r.oldLines&&--r.oldStart,0===r.newLines&&--r.newStart,n.push("@@ -"+r.oldStart+","+r.oldLines+" +"+r.newStart+","+r.newLines+" @@"),n.push.apply(n,r.lines)}return n.join("\n")+"\n"}function M(e,n,t,r,i,o,l){if(null!=(u=l="function"==typeof l?{callback:l}:l)&&u.callback){var a=l.callback;O(e,n,t,r,i,o,b(b({},l),{},{callback:function(e){e?a(E(e)):a()}}))}else{var u=O(e,n,t,r,i,o,l);if(u)return E(u)}}function A(e,n){if(n.length>e.length)return!1;for(var t=0;t<n.length;t++)if(n[t]!==e[t])return!1;return!0}function $(e){var n=function r(e){var i=0;var o=0;e.forEach(function(e){var n,t;"string"!=typeof e?(n=r(e.mine),t=r(e.theirs),void 0!==i&&(n.oldLines===t.oldLines?i+=n.oldLines:i=void 0),void 0!==o&&(n.newLines===t.newLines?o+=n.newLines:o=void 0)):(void 0===o||"+"!==e[0]&&" "!==e[0]||o++,void 0===i||"-"!==e[0]&&" "!==e[0]||i++)});return{oldLines:i,newLines:o}}(e.lines),t=n.oldLines,n=n.newLines;void 0!==t?e.oldLines=t:delete e.oldLines,void 0!==n?e.newLines=n:delete e.newLines}function J(e,n){if("string"!=typeof e)return e;if(/^@@/m.test(e)||/^Index:/m.test(e))return j(e)[0];if(n)return O(void 0,void 0,n,e);throw new Error("Must provide a base reference or pass in a patch")}function q(e){return e.newFileName&&e.newFileName!==e.oldFileName}function H(e,n,t){return n===t?n:(e.conflict=!0,{mine:n,theirs:t})}function R(e,n){return e.oldStart<n.oldStart&&e.oldStart+e.oldLines<n.oldStart}function U(e,n){return{oldStart:e.oldStart,oldLines:e.oldLines,newStart:e.newStart+n,newLines:e.newLines,lines:e.lines}}function X(e,n,t,r){var i,n=W(n),t=function(e,n){var t=[],r=[],i=0,o=!1,l=!1;for(;i<n.length&&e.index<e.lines.length;){var a=e.lines[e.index],u=n[i];if("+"===u[0])break;if(o=o||" "!==a[0],r.push(u),i++,"+"===a[0])for(l=!0;"+"===a[0];)t.push(a),a=e.lines[++e.index];u.substr(1)===a.substr(1)?(t.push(a),e.index++):l=!0}"+"===(n[i]||"")[0]&&o&&(l=!0);if(l)return t;for(;i<n.length;)r.push(n[i++]);return{merged:r,changes:t}}(t,n);t.merged?(i=e.lines).push.apply(i,k(t.merged)):T(e,r?t:n,r?n:t)}function T(e,n,t){e.conflict=!0,e.lines.push({conflict:!0,mine:n,theirs:t})}function Z(e,n,t){for(;n.offset<t.offset&&n.index<n.lines.length;){var r=n.lines[n.index++];e.lines.push(r),n.offset++}}function _(e,n){for(;n.index<n.lines.length;){var t=n.lines[n.index++];e.lines.push(t)}}function W(e){for(var n=[],t=e.lines[e.index][0];e.index<e.lines.length;){var r=e.lines[e.index];if((t="-"===t&&"+"===r[0]?"+":t)!==r[0])break;n.push(r),e.index++}return n}function B(e){return e.reduce(function(e,n){return e&&"-"===n[0]},!0)}function G(e,n,t){for(var r=0;r<t;r++){var i=n[n.length-t+r].substr(1);if(e.lines[e.index+r]!==" "+i)return}return e.index+=t,1}F.tokenize=function(e){return e.slice()},F.join=F.removeEmpty=function(e){return e},e.Diff=r,e.applyPatch=D,e.applyPatches=function(e,i){"string"==typeof e&&(e=j(e));var n=0;!function t(){var r=e[n++];if(!r)return i.complete();i.loadFile(r,function(e,n){if(e)return i.complete(e);e=D(n,r,i),i.patched(r,e,function(e){if(e)return i.complete(e);t()})})}()},e.canonicalize=P,e.convertChangesToDMP=function(e){for(var n,t,r=[],i=0;i<e.length;i++)t=(n=e[i]).added?1:n.removed?-1:0,r.push([t,n.value]);return r},e.convertChangesToXML=function(e){for(var n=[],t=0;t<e.length;t++){var r=e[t];r.added?n.push("<ins>"):r.removed&&n.push("<del>"),n.push(r.value.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;")),r.added?n.push("</ins>"):r.removed&&n.push("</del>")}return n.join("")},e.createPatch=function(e,n,t,r,i,o){return M(e,e,n,t,r,i,o)},e.createTwoFilesPatch=M,e.diffArrays=function(e,n,t){return F.diff(e,n,t)},e.diffChars=function(e,n,t){return I.diff(e,n,t)},e.diffCss=function(e,n,t){return m.diff(e,n,t)},e.diffJson=function(e,n,t){return x.diff(e,n,t)},e.diffLines=y,e.diffSentences=function(e,n,t){return g.diff(e,n,t)},e.diffTrimmedLines=function(e,n,t){return t=function(e,n){if("function"==typeof e)n.callback=e;else if(e)for(var t in e)e.hasOwnProperty(t)&&(n[t]=e[t]);return n}(t,{ignoreWhitespace:!0}),v.diff(e,n,t)},e.diffWords=function(e,n,t){return null==(null==t?void 0:t.ignoreWhitespace)||t.ignoreWhitespace?i.diff(e,n,t):a(e,n,t)},e.diffWordsWithSpace=a,e.formatPatch=E,e.merge=function(e,n,t){e=J(e,t),n=J(n,t);for(var r={},i=((e.index||n.index)&&(r.index=e.index||n.index),(e.newFileName||n.newFileName)&&(q(e)?q(n)?(r.oldFileName=H(r,e.oldFileName,n.oldFileName),r.newFileName=H(r,e.newFileName,n.newFileName),r.oldHeader=H(r,e.oldHeader,n.oldHeader),r.newHeader=H(r,e.newHeader,n.newHeader)):(r.oldFileName=e.oldFileName,r.newFileName=e.newFileName,r.oldHeader=e.oldHeader,r.newHeader=e.newHeader):(r.oldFileName=n.oldFileName||e.oldFileName,r.newFileName=n.newFileName||e.newFileName,r.oldHeader=n.oldHeader||e.oldHeader,r.newHeader=n.newHeader||e.newHeader)),r.hunks=[],0),o=0,l=0,a=0;i<e.hunks.length||o<n.hunks.length;){var u=e.hunks[i]||{oldStart:1/0},s=n.hunks[o]||{oldStart:1/0};if(R(u,s))r.hunks.push(U(u,l)),i++,a+=u.newLines-u.oldLines;else if(R(s,u))r.hunks.push(U(s,a)),o++,l+=s.newLines-s.oldLines;else{var f,c={oldStart:Math.min(u.oldStart,s.oldStart),oldLines:0,newStart:Math.min(u.newStart+l,s.oldStart+a),newLines:0,lines:[]},d=(f=b=y=w=m=g=v=p=h=d=void 0,c),h=u.oldStart,p=u.lines,v=s.oldStart,g=s.lines,m={offset:h,lines:p,index:0},w={offset:v,lines:g,index:0};for(Z(d,m,w),Z(d,w,m);m.index<m.lines.length&&w.index<w.lines.length;){var y=m.lines[m.index],b=w.lines[w.index];"-"!==y[0]&&"+"!==y[0]||"-"!==b[0]&&"+"!==b[0]?"+"===y[0]&&" "===b[0]?(f=d.lines).push.apply(f,k(W(m))):"+"===b[0]&&" "===y[0]?(f=d.lines).push.apply(f,k(W(w))):"-"===y[0]&&" "===b[0]?X(d,m,w):"-"===b[0]&&" "===y[0]?X(d,w,m,!0):y===b?(d.lines.push(y),m.index++,w.index++):T(d,W(m),W(w)):function(e,n,t){var r=W(n),i=W(t);if(B(r)&&B(i)){if(A(r,i)&&G(t,r,r.length-i.length))return(t=e.lines).push.apply(t,k(r));if(A(i,r)&&G(n,i,i.length-r.length))return(t=e.lines).push.apply(t,k(i))}else if(function(e,n){return e.length===n.length&&A(e,n)}(r,i))return(n=e.lines).push.apply(n,k(r));T(e,r,i)}(d,m,w)}_(d,m),_(d,w),$(d),o++,i++,r.hunks.push(c)}}return r},e.parsePatch=j,e.reversePatch=function e(n){return Array.isArray(n)?n.map(e).reverse():b(b({},n),{},{oldFileName:n.newFileName,oldHeader:n.newHeader,newFileName:n.oldFileName,newHeader:n.oldHeader,hunks:n.hunks.map(function(e){return{oldLines:e.newLines,oldStart:e.newStart,newLines:e.oldLines,newStart:e.oldStart,lines:e.lines.map(function(e){return e.startsWith("-")?"+".concat(e.slice(1)):e.startsWith("+")?"-".concat(e.slice(1)):e})}})})},e.structuredPatch=O});
@@ -0,0 +1,27 @@
1
+ /*istanbul ignore start*/
2
+ "use strict";
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.convertChangesToDMP = convertChangesToDMP;
8
+ /*istanbul ignore end*/
9
+ // See: http://code.google.com/p/google-diff-match-patch/wiki/API
10
+ function convertChangesToDMP(changes) {
11
+ var ret = [],
12
+ change,
13
+ operation;
14
+ for (var i = 0; i < changes.length; i++) {
15
+ change = changes[i];
16
+ if (change.added) {
17
+ operation = 1;
18
+ } else if (change.removed) {
19
+ operation = -1;
20
+ } else {
21
+ operation = 0;
22
+ }
23
+ ret.push([operation, change.value]);
24
+ }
25
+ return ret;
26
+ }
27
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJjb252ZXJ0Q2hhbmdlc1RvRE1QIiwiY2hhbmdlcyIsInJldCIsImNoYW5nZSIsIm9wZXJhdGlvbiIsImkiLCJsZW5ndGgiLCJhZGRlZCIsInJlbW92ZWQiLCJwdXNoIiwidmFsdWUiXSwic291cmNlcyI6WyIuLi8uLi9zcmMvY29udmVydC9kbXAuanMiXSwic291cmNlc0NvbnRlbnQiOlsiLy8gU2VlOiBodHRwOi8vY29kZS5nb29nbGUuY29tL3AvZ29vZ2xlLWRpZmYtbWF0Y2gtcGF0Y2gvd2lraS9BUElcbmV4cG9ydCBmdW5jdGlvbiBjb252ZXJ0Q2hhbmdlc1RvRE1QKGNoYW5nZXMpIHtcbiAgbGV0IHJldCA9IFtdLFxuICAgICAgY2hhbmdlLFxuICAgICAgb3BlcmF0aW9uO1xuICBmb3IgKGxldCBpID0gMDsgaSA8IGNoYW5nZXMubGVuZ3RoOyBpKyspIHtcbiAgICBjaGFuZ2UgPSBjaGFuZ2VzW2ldO1xuICAgIGlmIChjaGFuZ2UuYWRkZWQpIHtcbiAgICAgIG9wZXJhdGlvbiA9IDE7XG4gICAgfSBlbHNlIGlmIChjaGFuZ2UucmVtb3ZlZCkge1xuICAgICAgb3BlcmF0aW9uID0gLTE7XG4gICAgfSBlbHNlIHtcbiAgICAgIG9wZXJhdGlvbiA9IDA7XG4gICAgfVxuXG4gICAgcmV0LnB1c2goW29wZXJhdGlvbiwgY2hhbmdlLnZhbHVlXSk7XG4gIH1cbiAgcmV0dXJuIHJldDtcbn1cbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7QUFBQTtBQUNPLFNBQVNBLG1CQUFtQkEsQ0FBQ0MsT0FBTyxFQUFFO0VBQzNDLElBQUlDLEdBQUcsR0FBRyxFQUFFO0lBQ1JDLE1BQU07SUFDTkMsU0FBUztFQUNiLEtBQUssSUFBSUMsQ0FBQyxHQUFHLENBQUMsRUFBRUEsQ0FBQyxHQUFHSixPQUFPLENBQUNLLE1BQU0sRUFBRUQsQ0FBQyxFQUFFLEVBQUU7SUFDdkNGLE1BQU0sR0FBR0YsT0FBTyxDQUFDSSxDQUFDLENBQUM7SUFDbkIsSUFBSUYsTUFBTSxDQUFDSSxLQUFLLEVBQUU7TUFDaEJILFNBQVMsR0FBRyxDQUFDO0lBQ2YsQ0FBQyxNQUFNLElBQUlELE1BQU0sQ0FBQ0ssT0FBTyxFQUFFO01BQ3pCSixTQUFTLEdBQUcsQ0FBQyxDQUFDO0lBQ2hCLENBQUMsTUFBTTtNQUNMQSxTQUFTLEdBQUcsQ0FBQztJQUNmO0lBRUFGLEdBQUcsQ0FBQ08sSUFBSSxDQUFDLENBQUNMLFNBQVMsRUFBRUQsTUFBTSxDQUFDTyxLQUFLLENBQUMsQ0FBQztFQUNyQztFQUNBLE9BQU9SLEdBQUc7QUFDWiIsImlnbm9yZUxpc3QiOltdfQ==
@@ -0,0 +1,35 @@
1
+ /*istanbul ignore start*/
2
+ "use strict";
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.convertChangesToXML = convertChangesToXML;
8
+ /*istanbul ignore end*/
9
+ function convertChangesToXML(changes) {
10
+ var ret = [];
11
+ for (var i = 0; i < changes.length; i++) {
12
+ var change = changes[i];
13
+ if (change.added) {
14
+ ret.push('<ins>');
15
+ } else if (change.removed) {
16
+ ret.push('<del>');
17
+ }
18
+ ret.push(escapeHTML(change.value));
19
+ if (change.added) {
20
+ ret.push('</ins>');
21
+ } else if (change.removed) {
22
+ ret.push('</del>');
23
+ }
24
+ }
25
+ return ret.join('');
26
+ }
27
+ function escapeHTML(s) {
28
+ var n = s;
29
+ n = n.replace(/&/g, '&amp;');
30
+ n = n.replace(/</g, '&lt;');
31
+ n = n.replace(/>/g, '&gt;');
32
+ n = n.replace(/"/g, '&quot;');
33
+ return n;
34
+ }
35
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJjb252ZXJ0Q2hhbmdlc1RvWE1MIiwiY2hhbmdlcyIsInJldCIsImkiLCJsZW5ndGgiLCJjaGFuZ2UiLCJhZGRlZCIsInB1c2giLCJyZW1vdmVkIiwiZXNjYXBlSFRNTCIsInZhbHVlIiwiam9pbiIsInMiLCJuIiwicmVwbGFjZSJdLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9jb252ZXJ0L3htbC5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZnVuY3Rpb24gY29udmVydENoYW5nZXNUb1hNTChjaGFuZ2VzKSB7XG4gIGxldCByZXQgPSBbXTtcbiAgZm9yIChsZXQgaSA9IDA7IGkgPCBjaGFuZ2VzLmxlbmd0aDsgaSsrKSB7XG4gICAgbGV0IGNoYW5nZSA9IGNoYW5nZXNbaV07XG4gICAgaWYgKGNoYW5nZS5hZGRlZCkge1xuICAgICAgcmV0LnB1c2goJzxpbnM+Jyk7XG4gICAgfSBlbHNlIGlmIChjaGFuZ2UucmVtb3ZlZCkge1xuICAgICAgcmV0LnB1c2goJzxkZWw+Jyk7XG4gICAgfVxuXG4gICAgcmV0LnB1c2goZXNjYXBlSFRNTChjaGFuZ2UudmFsdWUpKTtcblxuICAgIGlmIChjaGFuZ2UuYWRkZWQpIHtcbiAgICAgIHJldC5wdXNoKCc8L2lucz4nKTtcbiAgICB9IGVsc2UgaWYgKGNoYW5nZS5yZW1vdmVkKSB7XG4gICAgICByZXQucHVzaCgnPC9kZWw+Jyk7XG4gICAgfVxuICB9XG4gIHJldHVybiByZXQuam9pbignJyk7XG59XG5cbmZ1bmN0aW9uIGVzY2FwZUhUTUwocykge1xuICBsZXQgbiA9IHM7XG4gIG4gPSBuLnJlcGxhY2UoLyYvZywgJyZhbXA7Jyk7XG4gIG4gPSBuLnJlcGxhY2UoLzwvZywgJyZsdDsnKTtcbiAgbiA9IG4ucmVwbGFjZSgvPi9nLCAnJmd0OycpO1xuICBuID0gbi5yZXBsYWNlKC9cIi9nLCAnJnF1b3Q7Jyk7XG5cbiAgcmV0dXJuIG47XG59XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7O0FBQU8sU0FBU0EsbUJBQW1CQSxDQUFDQyxPQUFPLEVBQUU7RUFDM0MsSUFBSUMsR0FBRyxHQUFHLEVBQUU7RUFDWixLQUFLLElBQUlDLENBQUMsR0FBRyxDQUFDLEVBQUVBLENBQUMsR0FBR0YsT0FBTyxDQUFDRyxNQUFNLEVBQUVELENBQUMsRUFBRSxFQUFFO0lBQ3ZDLElBQUlFLE1BQU0sR0FBR0osT0FBTyxDQUFDRSxDQUFDLENBQUM7SUFDdkIsSUFBSUUsTUFBTSxDQUFDQyxLQUFLLEVBQUU7TUFDaEJKLEdBQUcsQ0FBQ0ssSUFBSSxDQUFDLE9BQU8sQ0FBQztJQUNuQixDQUFDLE1BQU0sSUFBSUYsTUFBTSxDQUFDRyxPQUFPLEVBQUU7TUFDekJOLEdBQUcsQ0FBQ0ssSUFBSSxDQUFDLE9BQU8sQ0FBQztJQUNuQjtJQUVBTCxHQUFHLENBQUNLLElBQUksQ0FBQ0UsVUFBVSxDQUFDSixNQUFNLENBQUNLLEtBQUssQ0FBQyxDQUFDO0lBRWxDLElBQUlMLE1BQU0sQ0FBQ0MsS0FBSyxFQUFFO01BQ2hCSixHQUFHLENBQUNLLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDcEIsQ0FBQyxNQUFNLElBQUlGLE1BQU0sQ0FBQ0csT0FBTyxFQUFFO01BQ3pCTixHQUFHLENBQUNLLElBQUksQ0FBQyxRQUFRLENBQUM7SUFDcEI7RUFDRjtFQUNBLE9BQU9MLEdBQUcsQ0FBQ1MsSUFBSSxDQUFDLEVBQUUsQ0FBQztBQUNyQjtBQUVBLFNBQVNGLFVBQVVBLENBQUNHLENBQUMsRUFBRTtFQUNyQixJQUFJQyxDQUFDLEdBQUdELENBQUM7RUFDVEMsQ0FBQyxHQUFHQSxDQUFDLENBQUNDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsT0FBTyxDQUFDO0VBQzVCRCxDQUFDLEdBQUdBLENBQUMsQ0FBQ0MsT0FBTyxDQUFDLElBQUksRUFBRSxNQUFNLENBQUM7RUFDM0JELENBQUMsR0FBR0EsQ0FBQyxDQUFDQyxPQUFPLENBQUMsSUFBSSxFQUFFLE1BQU0sQ0FBQztFQUMzQkQsQ0FBQyxHQUFHQSxDQUFDLENBQUNDLE9BQU8sQ0FBQyxJQUFJLEVBQUUsUUFBUSxDQUFDO0VBRTdCLE9BQU9ELENBQUM7QUFDViIsImlnbm9yZUxpc3QiOltdfQ==
@@ -0,0 +1,39 @@
1
+ /*istanbul ignore start*/
2
+ "use strict";
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.arrayDiff = void 0;
8
+ exports.diffArrays = diffArrays;
9
+ /*istanbul ignore end*/
10
+ var
11
+ /*istanbul ignore start*/
12
+ _base = _interopRequireDefault(require("./base"))
13
+ /*istanbul ignore end*/
14
+ ;
15
+ /*istanbul ignore start*/ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
16
+ /*istanbul ignore end*/
17
+ var arrayDiff =
18
+ /*istanbul ignore start*/
19
+ exports.arrayDiff =
20
+ /*istanbul ignore end*/
21
+ new
22
+ /*istanbul ignore start*/
23
+ _base
24
+ /*istanbul ignore end*/
25
+ [
26
+ /*istanbul ignore start*/
27
+ "default"
28
+ /*istanbul ignore end*/
29
+ ]();
30
+ arrayDiff.tokenize = function (value) {
31
+ return value.slice();
32
+ };
33
+ arrayDiff.join = arrayDiff.removeEmpty = function (value) {
34
+ return value;
35
+ };
36
+ function diffArrays(oldArr, newArr, callback) {
37
+ return arrayDiff.diff(oldArr, newArr, callback);
38
+ }
39
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJfYmFzZSIsIl9pbnRlcm9wUmVxdWlyZURlZmF1bHQiLCJyZXF1aXJlIiwib2JqIiwiX19lc01vZHVsZSIsImFycmF5RGlmZiIsImV4cG9ydHMiLCJEaWZmIiwidG9rZW5pemUiLCJ2YWx1ZSIsInNsaWNlIiwiam9pbiIsInJlbW92ZUVtcHR5IiwiZGlmZkFycmF5cyIsIm9sZEFyciIsIm5ld0FyciIsImNhbGxiYWNrIiwiZGlmZiJdLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaWZmL2FycmF5LmpzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBEaWZmIGZyb20gJy4vYmFzZSc7XG5cbmV4cG9ydCBjb25zdCBhcnJheURpZmYgPSBuZXcgRGlmZigpO1xuYXJyYXlEaWZmLnRva2VuaXplID0gZnVuY3Rpb24odmFsdWUpIHtcbiAgcmV0dXJuIHZhbHVlLnNsaWNlKCk7XG59O1xuYXJyYXlEaWZmLmpvaW4gPSBhcnJheURpZmYucmVtb3ZlRW1wdHkgPSBmdW5jdGlvbih2YWx1ZSkge1xuICByZXR1cm4gdmFsdWU7XG59O1xuXG5leHBvcnQgZnVuY3Rpb24gZGlmZkFycmF5cyhvbGRBcnIsIG5ld0FyciwgY2FsbGJhY2spIHsgcmV0dXJuIGFycmF5RGlmZi5kaWZmKG9sZEFyciwgbmV3QXJyLCBjYWxsYmFjayk7IH1cbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7O0FBQUE7QUFBQTtBQUFBQSxLQUFBLEdBQUFDLHNCQUFBLENBQUFDLE9BQUE7QUFBQTtBQUFBO0FBQTBCLG1DQUFBRCx1QkFBQUUsR0FBQSxXQUFBQSxHQUFBLElBQUFBLEdBQUEsQ0FBQUMsVUFBQSxHQUFBRCxHQUFBLGdCQUFBQSxHQUFBO0FBQUE7QUFFbkIsSUFBTUUsU0FBUztBQUFBO0FBQUFDLE9BQUEsQ0FBQUQsU0FBQTtBQUFBO0FBQUc7QUFBSUU7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUEsQ0FBSSxDQUFDLENBQUM7QUFDbkNGLFNBQVMsQ0FBQ0csUUFBUSxHQUFHLFVBQVNDLEtBQUssRUFBRTtFQUNuQyxPQUFPQSxLQUFLLENBQUNDLEtBQUssQ0FBQyxDQUFDO0FBQ3RCLENBQUM7QUFDREwsU0FBUyxDQUFDTSxJQUFJLEdBQUdOLFNBQVMsQ0FBQ08sV0FBVyxHQUFHLFVBQVNILEtBQUssRUFBRTtFQUN2RCxPQUFPQSxLQUFLO0FBQ2QsQ0FBQztBQUVNLFNBQVNJLFVBQVVBLENBQUNDLE1BQU0sRUFBRUMsTUFBTSxFQUFFQyxRQUFRLEVBQUU7RUFBRSxPQUFPWCxTQUFTLENBQUNZLElBQUksQ0FBQ0gsTUFBTSxFQUFFQyxNQUFNLEVBQUVDLFFBQVEsQ0FBQztBQUFFIiwiaWdub3JlTGlzdCI6W119
@@ -0,0 +1,304 @@
1
+ /*istanbul ignore start*/
2
+ "use strict";
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = Diff;
8
+ /*istanbul ignore end*/
9
+ function Diff() {}
10
+ Diff.prototype = {
11
+ /*istanbul ignore start*/
12
+ /*istanbul ignore end*/
13
+ diff: function diff(oldString, newString) {
14
+ /*istanbul ignore start*/
15
+ var _options$timeout;
16
+ var
17
+ /*istanbul ignore end*/
18
+ options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
19
+ var callback = options.callback;
20
+ if (typeof options === 'function') {
21
+ callback = options;
22
+ options = {};
23
+ }
24
+ var self = this;
25
+ function done(value) {
26
+ value = self.postProcess(value, options);
27
+ if (callback) {
28
+ setTimeout(function () {
29
+ callback(value);
30
+ }, 0);
31
+ return true;
32
+ } else {
33
+ return value;
34
+ }
35
+ }
36
+
37
+ // Allow subclasses to massage the input prior to running
38
+ oldString = this.castInput(oldString, options);
39
+ newString = this.castInput(newString, options);
40
+ oldString = this.removeEmpty(this.tokenize(oldString, options));
41
+ newString = this.removeEmpty(this.tokenize(newString, options));
42
+ var newLen = newString.length,
43
+ oldLen = oldString.length;
44
+ var editLength = 1;
45
+ var maxEditLength = newLen + oldLen;
46
+ if (options.maxEditLength != null) {
47
+ maxEditLength = Math.min(maxEditLength, options.maxEditLength);
48
+ }
49
+ var maxExecutionTime =
50
+ /*istanbul ignore start*/
51
+ (_options$timeout =
52
+ /*istanbul ignore end*/
53
+ options.timeout) !== null && _options$timeout !== void 0 ? _options$timeout : Infinity;
54
+ var abortAfterTimestamp = Date.now() + maxExecutionTime;
55
+ var bestPath = [{
56
+ oldPos: -1,
57
+ lastComponent: undefined
58
+ }];
59
+
60
+ // Seed editLength = 0, i.e. the content starts with the same values
61
+ var newPos = this.extractCommon(bestPath[0], newString, oldString, 0, options);
62
+ if (bestPath[0].oldPos + 1 >= oldLen && newPos + 1 >= newLen) {
63
+ // Identity per the equality and tokenizer
64
+ return done(buildValues(self, bestPath[0].lastComponent, newString, oldString, self.useLongestToken));
65
+ }
66
+
67
+ // Once we hit the right edge of the edit graph on some diagonal k, we can
68
+ // definitely reach the end of the edit graph in no more than k edits, so
69
+ // there's no point in considering any moves to diagonal k+1 any more (from
70
+ // which we're guaranteed to need at least k+1 more edits).
71
+ // Similarly, once we've reached the bottom of the edit graph, there's no
72
+ // point considering moves to lower diagonals.
73
+ // We record this fact by setting minDiagonalToConsider and
74
+ // maxDiagonalToConsider to some finite value once we've hit the edge of
75
+ // the edit graph.
76
+ // This optimization is not faithful to the original algorithm presented in
77
+ // Myers's paper, which instead pointlessly extends D-paths off the end of
78
+ // the edit graph - see page 7 of Myers's paper which notes this point
79
+ // explicitly and illustrates it with a diagram. This has major performance
80
+ // implications for some common scenarios. For instance, to compute a diff
81
+ // where the new text simply appends d characters on the end of the
82
+ // original text of length n, the true Myers algorithm will take O(n+d^2)
83
+ // time while this optimization needs only O(n+d) time.
84
+ var minDiagonalToConsider = -Infinity,
85
+ maxDiagonalToConsider = Infinity;
86
+
87
+ // Main worker method. checks all permutations of a given edit length for acceptance.
88
+ function execEditLength() {
89
+ for (var diagonalPath = Math.max(minDiagonalToConsider, -editLength); diagonalPath <= Math.min(maxDiagonalToConsider, editLength); diagonalPath += 2) {
90
+ var basePath =
91
+ /*istanbul ignore start*/
92
+ void 0
93
+ /*istanbul ignore end*/
94
+ ;
95
+ var removePath = bestPath[diagonalPath - 1],
96
+ addPath = bestPath[diagonalPath + 1];
97
+ if (removePath) {
98
+ // No one else is going to attempt to use this value, clear it
99
+ bestPath[diagonalPath - 1] = undefined;
100
+ }
101
+ var canAdd = false;
102
+ if (addPath) {
103
+ // what newPos will be after we do an insertion:
104
+ var addPathNewPos = addPath.oldPos - diagonalPath;
105
+ canAdd = addPath && 0 <= addPathNewPos && addPathNewPos < newLen;
106
+ }
107
+ var canRemove = removePath && removePath.oldPos + 1 < oldLen;
108
+ if (!canAdd && !canRemove) {
109
+ // If this path is a terminal then prune
110
+ bestPath[diagonalPath] = undefined;
111
+ continue;
112
+ }
113
+
114
+ // Select the diagonal that we want to branch from. We select the prior
115
+ // path whose position in the old string is the farthest from the origin
116
+ // and does not pass the bounds of the diff graph
117
+ if (!canRemove || canAdd && removePath.oldPos < addPath.oldPos) {
118
+ basePath = self.addToPath(addPath, true, false, 0, options);
119
+ } else {
120
+ basePath = self.addToPath(removePath, false, true, 1, options);
121
+ }
122
+ newPos = self.extractCommon(basePath, newString, oldString, diagonalPath, options);
123
+ if (basePath.oldPos + 1 >= oldLen && newPos + 1 >= newLen) {
124
+ // If we have hit the end of both strings, then we are done
125
+ return done(buildValues(self, basePath.lastComponent, newString, oldString, self.useLongestToken));
126
+ } else {
127
+ bestPath[diagonalPath] = basePath;
128
+ if (basePath.oldPos + 1 >= oldLen) {
129
+ maxDiagonalToConsider = Math.min(maxDiagonalToConsider, diagonalPath - 1);
130
+ }
131
+ if (newPos + 1 >= newLen) {
132
+ minDiagonalToConsider = Math.max(minDiagonalToConsider, diagonalPath + 1);
133
+ }
134
+ }
135
+ }
136
+ editLength++;
137
+ }
138
+
139
+ // Performs the length of edit iteration. Is a bit fugly as this has to support the
140
+ // sync and async mode which is never fun. Loops over execEditLength until a value
141
+ // is produced, or until the edit length exceeds options.maxEditLength (if given),
142
+ // in which case it will return undefined.
143
+ if (callback) {
144
+ (function exec() {
145
+ setTimeout(function () {
146
+ if (editLength > maxEditLength || Date.now() > abortAfterTimestamp) {
147
+ return callback();
148
+ }
149
+ if (!execEditLength()) {
150
+ exec();
151
+ }
152
+ }, 0);
153
+ })();
154
+ } else {
155
+ while (editLength <= maxEditLength && Date.now() <= abortAfterTimestamp) {
156
+ var ret = execEditLength();
157
+ if (ret) {
158
+ return ret;
159
+ }
160
+ }
161
+ }
162
+ },
163
+ /*istanbul ignore start*/
164
+ /*istanbul ignore end*/
165
+ addToPath: function addToPath(path, added, removed, oldPosInc, options) {
166
+ var last = path.lastComponent;
167
+ if (last && !options.oneChangePerToken && last.added === added && last.removed === removed) {
168
+ return {
169
+ oldPos: path.oldPos + oldPosInc,
170
+ lastComponent: {
171
+ count: last.count + 1,
172
+ added: added,
173
+ removed: removed,
174
+ previousComponent: last.previousComponent
175
+ }
176
+ };
177
+ } else {
178
+ return {
179
+ oldPos: path.oldPos + oldPosInc,
180
+ lastComponent: {
181
+ count: 1,
182
+ added: added,
183
+ removed: removed,
184
+ previousComponent: last
185
+ }
186
+ };
187
+ }
188
+ },
189
+ /*istanbul ignore start*/
190
+ /*istanbul ignore end*/
191
+ extractCommon: function extractCommon(basePath, newString, oldString, diagonalPath, options) {
192
+ var newLen = newString.length,
193
+ oldLen = oldString.length,
194
+ oldPos = basePath.oldPos,
195
+ newPos = oldPos - diagonalPath,
196
+ commonCount = 0;
197
+ while (newPos + 1 < newLen && oldPos + 1 < oldLen && this.equals(oldString[oldPos + 1], newString[newPos + 1], options)) {
198
+ newPos++;
199
+ oldPos++;
200
+ commonCount++;
201
+ if (options.oneChangePerToken) {
202
+ basePath.lastComponent = {
203
+ count: 1,
204
+ previousComponent: basePath.lastComponent,
205
+ added: false,
206
+ removed: false
207
+ };
208
+ }
209
+ }
210
+ if (commonCount && !options.oneChangePerToken) {
211
+ basePath.lastComponent = {
212
+ count: commonCount,
213
+ previousComponent: basePath.lastComponent,
214
+ added: false,
215
+ removed: false
216
+ };
217
+ }
218
+ basePath.oldPos = oldPos;
219
+ return newPos;
220
+ },
221
+ /*istanbul ignore start*/
222
+ /*istanbul ignore end*/
223
+ equals: function equals(left, right, options) {
224
+ if (options.comparator) {
225
+ return options.comparator(left, right);
226
+ } else {
227
+ return left === right || options.ignoreCase && left.toLowerCase() === right.toLowerCase();
228
+ }
229
+ },
230
+ /*istanbul ignore start*/
231
+ /*istanbul ignore end*/
232
+ removeEmpty: function removeEmpty(array) {
233
+ var ret = [];
234
+ for (var i = 0; i < array.length; i++) {
235
+ if (array[i]) {
236
+ ret.push(array[i]);
237
+ }
238
+ }
239
+ return ret;
240
+ },
241
+ /*istanbul ignore start*/
242
+ /*istanbul ignore end*/
243
+ castInput: function castInput(value) {
244
+ return value;
245
+ },
246
+ /*istanbul ignore start*/
247
+ /*istanbul ignore end*/
248
+ tokenize: function tokenize(value) {
249
+ return Array.from(value);
250
+ },
251
+ /*istanbul ignore start*/
252
+ /*istanbul ignore end*/
253
+ join: function join(chars) {
254
+ return chars.join('');
255
+ },
256
+ /*istanbul ignore start*/
257
+ /*istanbul ignore end*/
258
+ postProcess: function postProcess(changeObjects) {
259
+ return changeObjects;
260
+ }
261
+ };
262
+ function buildValues(diff, lastComponent, newString, oldString, useLongestToken) {
263
+ // First we convert our linked list of components in reverse order to an
264
+ // array in the right order:
265
+ var components = [];
266
+ var nextComponent;
267
+ while (lastComponent) {
268
+ components.push(lastComponent);
269
+ nextComponent = lastComponent.previousComponent;
270
+ delete lastComponent.previousComponent;
271
+ lastComponent = nextComponent;
272
+ }
273
+ components.reverse();
274
+ var componentPos = 0,
275
+ componentLen = components.length,
276
+ newPos = 0,
277
+ oldPos = 0;
278
+ for (; componentPos < componentLen; componentPos++) {
279
+ var component = components[componentPos];
280
+ if (!component.removed) {
281
+ if (!component.added && useLongestToken) {
282
+ var value = newString.slice(newPos, newPos + component.count);
283
+ value = value.map(function (value, i) {
284
+ var oldValue = oldString[oldPos + i];
285
+ return oldValue.length > value.length ? oldValue : value;
286
+ });
287
+ component.value = diff.join(value);
288
+ } else {
289
+ component.value = diff.join(newString.slice(newPos, newPos + component.count));
290
+ }
291
+ newPos += component.count;
292
+
293
+ // Common case
294
+ if (!component.added) {
295
+ oldPos += component.count;
296
+ }
297
+ } else {
298
+ component.value = diff.join(oldString.slice(oldPos, oldPos + component.count));
299
+ oldPos += component.count;
300
+ }
301
+ }
302
+ return components;
303
+ }
304
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJEaWZmIiwicHJvdG90eXBlIiwiZGlmZiIsIm9sZFN0cmluZyIsIm5ld1N0cmluZyIsIl9vcHRpb25zJHRpbWVvdXQiLCJvcHRpb25zIiwiYXJndW1lbnRzIiwibGVuZ3RoIiwidW5kZWZpbmVkIiwiY2FsbGJhY2siLCJzZWxmIiwiZG9uZSIsInZhbHVlIiwicG9zdFByb2Nlc3MiLCJzZXRUaW1lb3V0IiwiY2FzdElucHV0IiwicmVtb3ZlRW1wdHkiLCJ0b2tlbml6ZSIsIm5ld0xlbiIsIm9sZExlbiIsImVkaXRMZW5ndGgiLCJtYXhFZGl0TGVuZ3RoIiwiTWF0aCIsIm1pbiIsIm1heEV4ZWN1dGlvblRpbWUiLCJ0aW1lb3V0IiwiSW5maW5pdHkiLCJhYm9ydEFmdGVyVGltZXN0YW1wIiwiRGF0ZSIsIm5vdyIsImJlc3RQYXRoIiwib2xkUG9zIiwibGFzdENvbXBvbmVudCIsIm5ld1BvcyIsImV4dHJhY3RDb21tb24iLCJidWlsZFZhbHVlcyIsInVzZUxvbmdlc3RUb2tlbiIsIm1pbkRpYWdvbmFsVG9Db25zaWRlciIsIm1heERpYWdvbmFsVG9Db25zaWRlciIsImV4ZWNFZGl0TGVuZ3RoIiwiZGlhZ29uYWxQYXRoIiwibWF4IiwiYmFzZVBhdGgiLCJyZW1vdmVQYXRoIiwiYWRkUGF0aCIsImNhbkFkZCIsImFkZFBhdGhOZXdQb3MiLCJjYW5SZW1vdmUiLCJhZGRUb1BhdGgiLCJleGVjIiwicmV0IiwicGF0aCIsImFkZGVkIiwicmVtb3ZlZCIsIm9sZFBvc0luYyIsImxhc3QiLCJvbmVDaGFuZ2VQZXJUb2tlbiIsImNvdW50IiwicHJldmlvdXNDb21wb25lbnQiLCJjb21tb25Db3VudCIsImVxdWFscyIsImxlZnQiLCJyaWdodCIsImNvbXBhcmF0b3IiLCJpZ25vcmVDYXNlIiwidG9Mb3dlckNhc2UiLCJhcnJheSIsImkiLCJwdXNoIiwiQXJyYXkiLCJmcm9tIiwiam9pbiIsImNoYXJzIiwiY2hhbmdlT2JqZWN0cyIsImNvbXBvbmVudHMiLCJuZXh0Q29tcG9uZW50IiwicmV2ZXJzZSIsImNvbXBvbmVudFBvcyIsImNvbXBvbmVudExlbiIsImNvbXBvbmVudCIsInNsaWNlIiwibWFwIiwib2xkVmFsdWUiXSwic291cmNlcyI6WyIuLi8uLi9zcmMvZGlmZi9iYXNlLmpzIl0sInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWZhdWx0IGZ1bmN0aW9uIERpZmYoKSB7fVxuXG5EaWZmLnByb3RvdHlwZSA9IHtcbiAgZGlmZihvbGRTdHJpbmcsIG5ld1N0cmluZywgb3B0aW9ucyA9IHt9KSB7XG4gICAgbGV0IGNhbGxiYWNrID0gb3B0aW9ucy5jYWxsYmFjaztcbiAgICBpZiAodHlwZW9mIG9wdGlvbnMgPT09ICdmdW5jdGlvbicpIHtcbiAgICAgIGNhbGxiYWNrID0gb3B0aW9ucztcbiAgICAgIG9wdGlvbnMgPSB7fTtcbiAgICB9XG5cbiAgICBsZXQgc2VsZiA9IHRoaXM7XG5cbiAgICBmdW5jdGlvbiBkb25lKHZhbHVlKSB7XG4gICAgICB2YWx1ZSA9IHNlbGYucG9zdFByb2Nlc3ModmFsdWUsIG9wdGlvbnMpO1xuICAgICAgaWYgKGNhbGxiYWNrKSB7XG4gICAgICAgIHNldFRpbWVvdXQoZnVuY3Rpb24oKSB7IGNhbGxiYWNrKHZhbHVlKTsgfSwgMCk7XG4gICAgICAgIHJldHVybiB0cnVlO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgcmV0dXJuIHZhbHVlO1xuICAgICAgfVxuICAgIH1cblxuICAgIC8vIEFsbG93IHN1YmNsYXNzZXMgdG8gbWFzc2FnZSB0aGUgaW5wdXQgcHJpb3IgdG8gcnVubmluZ1xuICAgIG9sZFN0cmluZyA9IHRoaXMuY2FzdElucHV0KG9sZFN0cmluZywgb3B0aW9ucyk7XG4gICAgbmV3U3RyaW5nID0gdGhpcy5jYXN0SW5wdXQobmV3U3RyaW5nLCBvcHRpb25zKTtcblxuICAgIG9sZFN0cmluZyA9IHRoaXMucmVtb3ZlRW1wdHkodGhpcy50b2tlbml6ZShvbGRTdHJpbmcsIG9wdGlvbnMpKTtcbiAgICBuZXdTdHJpbmcgPSB0aGlzLnJlbW92ZUVtcHR5KHRoaXMudG9rZW5pemUobmV3U3RyaW5nLCBvcHRpb25zKSk7XG5cbiAgICBsZXQgbmV3TGVuID0gbmV3U3RyaW5nLmxlbmd0aCwgb2xkTGVuID0gb2xkU3RyaW5nLmxlbmd0aDtcbiAgICBsZXQgZWRpdExlbmd0aCA9IDE7XG4gICAgbGV0IG1heEVkaXRMZW5ndGggPSBuZXdMZW4gKyBvbGRMZW47XG4gICAgaWYob3B0aW9ucy5tYXhFZGl0TGVuZ3RoICE9IG51bGwpIHtcbiAgICAgIG1heEVkaXRMZW5ndGggPSBNYXRoLm1pbihtYXhFZGl0TGVuZ3RoLCBvcHRpb25zLm1heEVkaXRMZW5ndGgpO1xuICAgIH1cbiAgICBjb25zdCBtYXhFeGVjdXRpb25UaW1lID0gb3B0aW9ucy50aW1lb3V0ID8/IEluZmluaXR5O1xuICAgIGNvbnN0IGFib3J0QWZ0ZXJUaW1lc3RhbXAgPSBEYXRlLm5vdygpICsgbWF4RXhlY3V0aW9uVGltZTtcblxuICAgIGxldCBiZXN0UGF0aCA9IFt7IG9sZFBvczogLTEsIGxhc3RDb21wb25lbnQ6IHVuZGVmaW5lZCB9XTtcblxuICAgIC8vIFNlZWQgZWRpdExlbmd0aCA9IDAsIGkuZS4gdGhlIGNvbnRlbnQgc3RhcnRzIHdpdGggdGhlIHNhbWUgdmFsdWVzXG4gICAgbGV0IG5ld1BvcyA9IHRoaXMuZXh0cmFjdENvbW1vbihiZXN0UGF0aFswXSwgbmV3U3RyaW5nLCBvbGRTdHJpbmcsIDAsIG9wdGlvbnMpO1xuICAgIGlmIChiZXN0UGF0aFswXS5vbGRQb3MgKyAxID49IG9sZExlbiAmJiBuZXdQb3MgKyAxID49IG5ld0xlbikge1xuICAgICAgLy8gSWRlbnRpdHkgcGVyIHRoZSBlcXVhbGl0eSBhbmQgdG9rZW5pemVyXG4gICAgICByZXR1cm4gZG9uZShidWlsZFZhbHVlcyhzZWxmLCBiZXN0UGF0aFswXS5sYXN0Q29tcG9uZW50LCBuZXdTdHJpbmcsIG9sZFN0cmluZywgc2VsZi51c2VMb25nZXN0VG9rZW4pKTtcbiAgICB9XG5cbiAgICAvLyBPbmNlIHdlIGhpdCB0aGUgcmlnaHQgZWRnZSBvZiB0aGUgZWRpdCBncmFwaCBvbiBzb21lIGRpYWdvbmFsIGssIHdlIGNhblxuICAgIC8vIGRlZmluaXRlbHkgcmVhY2ggdGhlIGVuZCBvZiB0aGUgZWRpdCBncmFwaCBpbiBubyBtb3JlIHRoYW4gayBlZGl0cywgc29cbiAgICAvLyB0aGVyZSdzIG5vIHBvaW50IGluIGNvbnNpZGVyaW5nIGFueSBtb3ZlcyB0byBkaWFnb25hbCBrKzEgYW55IG1vcmUgKGZyb21cbiAgICAvLyB3aGljaCB3ZSdyZSBndWFyYW50ZWVkIHRvIG5lZWQgYXQgbGVhc3QgaysxIG1vcmUgZWRpdHMpLlxuICAgIC8vIFNpbWlsYXJseSwgb25jZSB3ZSd2ZSByZWFjaGVkIHRoZSBib3R0b20gb2YgdGhlIGVkaXQgZ3JhcGgsIHRoZXJlJ3Mgbm9cbiAgICAvLyBwb2ludCBjb25zaWRlcmluZyBtb3ZlcyB0byBsb3dlciBkaWFnb25hbHMuXG4gICAgLy8gV2UgcmVjb3JkIHRoaXMgZmFjdCBieSBzZXR0aW5nIG1pbkRpYWdvbmFsVG9Db25zaWRlciBhbmRcbiAgICAvLyBtYXhEaWFnb25hbFRvQ29uc2lkZXIgdG8gc29tZSBmaW5pdGUgdmFsdWUgb25jZSB3ZSd2ZSBoaXQgdGhlIGVkZ2Ugb2ZcbiAgICAvLyB0aGUgZWRpdCBncmFwaC5cbiAgICAvLyBUaGlzIG9wdGltaXphdGlvbiBpcyBub3QgZmFpdGhmdWwgdG8gdGhlIG9yaWdpbmFsIGFsZ29yaXRobSBwcmVzZW50ZWQgaW5cbiAgICAvLyBNeWVycydzIHBhcGVyLCB3aGljaCBpbnN0ZWFkIHBvaW50bGVzc2x5IGV4dGVuZHMgRC1wYXRocyBvZmYgdGhlIGVuZCBvZlxuICAgIC8vIHRoZSBlZGl0IGdyYXBoIC0gc2VlIHBhZ2UgNyBvZiBNeWVycydzIHBhcGVyIHdoaWNoIG5vdGVzIHRoaXMgcG9pbnRcbiAgICAvLyBleHBsaWNpdGx5IGFuZCBpbGx1c3RyYXRlcyBpdCB3aXRoIGEgZGlhZ3JhbS4gVGhpcyBoYXMgbWFqb3IgcGVyZm9ybWFuY2VcbiAgICAvLyBpbXBsaWNhdGlvbnMgZm9yIHNvbWUgY29tbW9uIHNjZW5hcmlvcy4gRm9yIGluc3RhbmNlLCB0byBjb21wdXRlIGEgZGlmZlxuICAgIC8vIHdoZXJlIHRoZSBuZXcgdGV4dCBzaW1wbHkgYXBwZW5kcyBkIGNoYXJhY3RlcnMgb24gdGhlIGVuZCBvZiB0aGVcbiAgICAvLyBvcmlnaW5hbCB0ZXh0IG9mIGxlbmd0aCBuLCB0aGUgdHJ1ZSBNeWVycyBhbGdvcml0aG0gd2lsbCB0YWtlIE8obitkXjIpXG4gICAgLy8gdGltZSB3aGlsZSB0aGlzIG9wdGltaXphdGlvbiBuZWVkcyBvbmx5IE8obitkKSB0aW1lLlxuICAgIGxldCBtaW5EaWFnb25hbFRvQ29uc2lkZXIgPSAtSW5maW5pdHksIG1heERpYWdvbmFsVG9Db25zaWRlciA9IEluZmluaXR5O1xuXG4gICAgLy8gTWFpbiB3b3JrZXIgbWV0aG9kLiBjaGVja3MgYWxsIHBlcm11dGF0aW9ucyBvZiBhIGdpdmVuIGVkaXQgbGVuZ3RoIGZvciBhY2NlcHRhbmNlLlxuICAgIGZ1bmN0aW9uIGV4ZWNFZGl0TGVuZ3RoKCkge1xuICAgICAgZm9yIChcbiAgICAgICAgbGV0IGRpYWdvbmFsUGF0aCA9IE1hdGgubWF4KG1pbkRpYWdvbmFsVG9Db25zaWRlciwgLWVkaXRMZW5ndGgpO1xuICAgICAgICBkaWFnb25hbFBhdGggPD0gTWF0aC5taW4obWF4RGlhZ29uYWxUb0NvbnNpZGVyLCBlZGl0TGVuZ3RoKTtcbiAgICAgICAgZGlhZ29uYWxQYXRoICs9IDJcbiAgICAgICkge1xuICAgICAgICBsZXQgYmFzZVBhdGg7XG4gICAgICAgIGxldCByZW1vdmVQYXRoID0gYmVzdFBhdGhbZGlhZ29uYWxQYXRoIC0gMV0sXG4gICAgICAgICAgICBhZGRQYXRoID0gYmVzdFBhdGhbZGlhZ29uYWxQYXRoICsgMV07XG4gICAgICAgIGlmIChyZW1vdmVQYXRoKSB7XG4gICAgICAgICAgLy8gTm8gb25lIGVsc2UgaXMgZ29pbmcgdG8gYXR0ZW1wdCB0byB1c2UgdGhpcyB2YWx1ZSwgY2xlYXIgaXRcbiAgICAgICAgICBiZXN0UGF0aFtkaWFnb25hbFBhdGggLSAxXSA9IHVuZGVmaW5lZDtcbiAgICAgICAgfVxuXG4gICAgICAgIGxldCBjYW5BZGQgPSBmYWxzZTtcbiAgICAgICAgaWYgKGFkZFBhdGgpIHtcbiAgICAgICAgICAvLyB3aGF0IG5ld1BvcyB3aWxsIGJlIGFmdGVyIHdlIGRvIGFuIGluc2VydGlvbjpcbiAgICAgICAgICBjb25zdCBhZGRQYXRoTmV3UG9zID0gYWRkUGF0aC5vbGRQb3MgLSBkaWFnb25hbFBhdGg7XG4gICAgICAgICAgY2FuQWRkID0gYWRkUGF0aCAmJiAwIDw9IGFkZFBhdGhOZXdQb3MgJiYgYWRkUGF0aE5ld1BvcyA8IG5ld0xlbjtcbiAgICAgICAgfVxuXG4gICAgICAgIGxldCBjYW5SZW1vdmUgPSByZW1vdmVQYXRoICYmIHJlbW92ZVBhdGgub2xkUG9zICsgMSA8IG9sZExlbjtcbiAgICAgICAgaWYgKCFjYW5BZGQgJiYgIWNhblJlbW92ZSkge1xuICAgICAgICAgIC8vIElmIHRoaXMgcGF0aCBpcyBhIHRlcm1pbmFsIHRoZW4gcHJ1bmVcbiAgICAgICAgICBiZXN0UGF0aFtkaWFnb25hbFBhdGhdID0gdW5kZWZpbmVkO1xuICAgICAgICAgIGNvbnRpbnVlO1xuICAgICAgICB9XG5cbiAgICAgICAgLy8gU2VsZWN0IHRoZSBkaWFnb25hbCB0aGF0IHdlIHdhbnQgdG8gYnJhbmNoIGZyb20uIFdlIHNlbGVjdCB0aGUgcHJpb3JcbiAgICAgICAgLy8gcGF0aCB3aG9zZSBwb3NpdGlvbiBpbiB0aGUgb2xkIHN0cmluZyBpcyB0aGUgZmFydGhlc3QgZnJvbSB0aGUgb3JpZ2luXG4gICAgICAgIC8vIGFuZCBkb2VzIG5vdCBwYXNzIHRoZSBib3VuZHMgb2YgdGhlIGRpZmYgZ3JhcGhcbiAgICAgICAgaWYgKCFjYW5SZW1vdmUgfHwgKGNhbkFkZCAmJiByZW1vdmVQYXRoLm9sZFBvcyA8IGFkZFBhdGgub2xkUG9zKSkge1xuICAgICAgICAgIGJhc2VQYXRoID0gc2VsZi5hZGRUb1BhdGgoYWRkUGF0aCwgdHJ1ZSwgZmFsc2UsIDAsIG9wdGlvbnMpO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIGJhc2VQYXRoID0gc2VsZi5hZGRUb1BhdGgocmVtb3ZlUGF0aCwgZmFsc2UsIHRydWUsIDEsIG9wdGlvbnMpO1xuICAgICAgICB9XG5cbiAgICAgICAgbmV3UG9zID0gc2VsZi5leHRyYWN0Q29tbW9uKGJhc2VQYXRoLCBuZXdTdHJpbmcsIG9sZFN0cmluZywgZGlhZ29uYWxQYXRoLCBvcHRpb25zKTtcblxuICAgICAgICBpZiAoYmFzZVBhdGgub2xkUG9zICsgMSA+PSBvbGRMZW4gJiYgbmV3UG9zICsgMSA+PSBuZXdMZW4pIHtcbiAgICAgICAgICAvLyBJZiB3ZSBoYXZlIGhpdCB0aGUgZW5kIG9mIGJvdGggc3RyaW5ncywgdGhlbiB3ZSBhcmUgZG9uZVxuICAgICAgICAgIHJldHVybiBkb25lKGJ1aWxkVmFsdWVzKHNlbGYsIGJhc2VQYXRoLmxhc3RDb21wb25lbnQsIG5ld1N0cmluZywgb2xkU3RyaW5nLCBzZWxmLnVzZUxvbmdlc3RUb2tlbikpO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIGJlc3RQYXRoW2RpYWdvbmFsUGF0aF0gPSBiYXNlUGF0aDtcbiAgICAgICAgICBpZiAoYmFzZVBhdGgub2xkUG9zICsgMSA+PSBvbGRMZW4pIHtcbiAgICAgICAgICAgIG1heERpYWdvbmFsVG9Db25zaWRlciA9IE1hdGgubWluKG1heERpYWdvbmFsVG9Db25zaWRlciwgZGlhZ29uYWxQYXRoIC0gMSk7XG4gICAgICAgICAgfVxuICAgICAgICAgIGlmIChuZXdQb3MgKyAxID49IG5ld0xlbikge1xuICAgICAgICAgICAgbWluRGlhZ29uYWxUb0NvbnNpZGVyID0gTWF0aC5tYXgobWluRGlhZ29uYWxUb0NvbnNpZGVyLCBkaWFnb25hbFBhdGggKyAxKTtcbiAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgZWRpdExlbmd0aCsrO1xuICAgIH1cblxuICAgIC8vIFBlcmZvcm1zIHRoZSBsZW5ndGggb2YgZWRpdCBpdGVyYXRpb24uIElzIGEgYml0IGZ1Z2x5IGFzIHRoaXMgaGFzIHRvIHN1cHBvcnQgdGhlXG4gICAgLy8gc3luYyBhbmQgYXN5bmMgbW9kZSB3aGljaCBpcyBuZXZlciBmdW4uIExvb3BzIG92ZXIgZXhlY0VkaXRMZW5ndGggdW50aWwgYSB2YWx1ZVxuICAgIC8vIGlzIHByb2R1Y2VkLCBvciB1bnRpbCB0aGUgZWRpdCBsZW5ndGggZXhjZWVkcyBvcHRpb25zLm1heEVkaXRMZW5ndGggKGlmIGdpdmVuKSxcbiAgICAvLyBpbiB3aGljaCBjYXNlIGl0IHdpbGwgcmV0dXJuIHVuZGVmaW5lZC5cbiAgICBpZiAoY2FsbGJhY2spIHtcbiAgICAgIChmdW5jdGlvbiBleGVjKCkge1xuICAgICAgICBzZXRUaW1lb3V0KGZ1bmN0aW9uKCkge1xuICAgICAgICAgIGlmIChlZGl0TGVuZ3RoID4gbWF4RWRpdExlbmd0aCB8fCBEYXRlLm5vdygpID4gYWJvcnRBZnRlclRpbWVzdGFtcCkge1xuICAgICAgICAgICAgcmV0dXJuIGNhbGxiYWNrKCk7XG4gICAgICAgICAgfVxuXG4gICAgICAgICAgaWYgKCFleGVjRWRpdExlbmd0aCgpKSB7XG4gICAgICAgICAgICBleGVjKCk7XG4gICAgICAgICAgfVxuICAgICAgICB9LCAwKTtcbiAgICAgIH0oKSk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHdoaWxlIChlZGl0TGVuZ3RoIDw9IG1heEVkaXRMZW5ndGggJiYgRGF0ZS5ub3coKSA8PSBhYm9ydEFmdGVyVGltZXN0YW1wKSB7XG4gICAgICAgIGxldCByZXQgPSBleGVjRWRpdExlbmd0aCgpO1xuICAgICAgICBpZiAocmV0KSB7XG4gICAgICAgICAgcmV0dXJuIHJldDtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfSxcblxuICBhZGRUb1BhdGgocGF0aCwgYWRkZWQsIHJlbW92ZWQsIG9sZFBvc0luYywgb3B0aW9ucykge1xuICAgIGxldCBsYXN0ID0gcGF0aC5sYXN0Q29tcG9uZW50O1xuICAgIGlmIChsYXN0ICYmICFvcHRpb25zLm9uZUNoYW5nZVBlclRva2VuICYmIGxhc3QuYWRkZWQgPT09IGFkZGVkICYmIGxhc3QucmVtb3ZlZCA9PT0gcmVtb3ZlZCkge1xuICAgICAgcmV0dXJuIHtcbiAgICAgICAgb2xkUG9zOiBwYXRoLm9sZFBvcyArIG9sZFBvc0luYyxcbiAgICAgICAgbGFzdENvbXBvbmVudDoge2NvdW50OiBsYXN0LmNvdW50ICsgMSwgYWRkZWQ6IGFkZGVkLCByZW1vdmVkOiByZW1vdmVkLCBwcmV2aW91c0NvbXBvbmVudDogbGFzdC5wcmV2aW91c0NvbXBvbmVudCB9XG4gICAgICB9O1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4ge1xuICAgICAgICBvbGRQb3M6IHBhdGgub2xkUG9zICsgb2xkUG9zSW5jLFxuICAgICAgICBsYXN0Q29tcG9uZW50OiB7Y291bnQ6IDEsIGFkZGVkOiBhZGRlZCwgcmVtb3ZlZDogcmVtb3ZlZCwgcHJldmlvdXNDb21wb25lbnQ6IGxhc3QgfVxuICAgICAgfTtcbiAgICB9XG4gIH0sXG4gIGV4dHJhY3RDb21tb24oYmFzZVBhdGgsIG5ld1N0cmluZywgb2xkU3RyaW5nLCBkaWFnb25hbFBhdGgsIG9wdGlvbnMpIHtcbiAgICBsZXQgbmV3TGVuID0gbmV3U3RyaW5nLmxlbmd0aCxcbiAgICAgICAgb2xkTGVuID0gb2xkU3RyaW5nLmxlbmd0aCxcbiAgICAgICAgb2xkUG9zID0gYmFzZVBhdGgub2xkUG9zLFxuICAgICAgICBuZXdQb3MgPSBvbGRQb3MgLSBkaWFnb25hbFBhdGgsXG5cbiAgICAgICAgY29tbW9uQ291bnQgPSAwO1xuICAgIHdoaWxlIChuZXdQb3MgKyAxIDwgbmV3TGVuICYmIG9sZFBvcyArIDEgPCBvbGRMZW4gJiYgdGhpcy5lcXVhbHMob2xkU3RyaW5nW29sZFBvcyArIDFdLCBuZXdTdHJpbmdbbmV3UG9zICsgMV0sIG9wdGlvbnMpKSB7XG4gICAgICBuZXdQb3MrKztcbiAgICAgIG9sZFBvcysrO1xuICAgICAgY29tbW9uQ291bnQrKztcbiAgICAgIGlmIChvcHRpb25zLm9uZUNoYW5nZVBlclRva2VuKSB7XG4gICAgICAgIGJhc2VQYXRoLmxhc3RDb21wb25lbnQgPSB7Y291bnQ6IDEsIHByZXZpb3VzQ29tcG9uZW50OiBiYXNlUGF0aC5sYXN0Q29tcG9uZW50LCBhZGRlZDogZmFsc2UsIHJlbW92ZWQ6IGZhbHNlfTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICBpZiAoY29tbW9uQ291bnQgJiYgIW9wdGlvbnMub25lQ2hhbmdlUGVyVG9rZW4pIHtcbiAgICAgIGJhc2VQYXRoLmxhc3RDb21wb25lbnQgPSB7Y291bnQ6IGNvbW1vbkNvdW50LCBwcmV2aW91c0NvbXBvbmVudDogYmFzZVBhdGgubGFzdENvbXBvbmVudCwgYWRkZWQ6IGZhbHNlLCByZW1vdmVkOiBmYWxzZX07XG4gICAgfVxuXG4gICAgYmFzZVBhdGgub2xkUG9zID0gb2xkUG9zO1xuICAgIHJldHVybiBuZXdQb3M7XG4gIH0sXG5cbiAgZXF1YWxzKGxlZnQsIHJpZ2h0LCBvcHRpb25zKSB7XG4gICAgaWYgKG9wdGlvbnMuY29tcGFyYXRvcikge1xuICAgICAgcmV0dXJuIG9wdGlvbnMuY29tcGFyYXRvcihsZWZ0LCByaWdodCk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiBsZWZ0ID09PSByaWdodFxuICAgICAgICB8fCAob3B0aW9ucy5pZ25vcmVDYXNlICYmIGxlZnQudG9Mb3dlckNhc2UoKSA9PT0gcmlnaHQudG9Mb3dlckNhc2UoKSk7XG4gICAgfVxuICB9LFxuICByZW1vdmVFbXB0eShhcnJheSkge1xuICAgIGxldCByZXQgPSBbXTtcbiAgICBmb3IgKGxldCBpID0gMDsgaSA8IGFycmF5Lmxlbmd0aDsgaSsrKSB7XG4gICAgICBpZiAoYXJyYXlbaV0pIHtcbiAgICAgICAgcmV0LnB1c2goYXJyYXlbaV0pO1xuICAgICAgfVxuICAgIH1cbiAgICByZXR1cm4gcmV0O1xuICB9LFxuICBjYXN0SW5wdXQodmFsdWUpIHtcbiAgICByZXR1cm4gdmFsdWU7XG4gIH0sXG4gIHRva2VuaXplKHZhbHVlKSB7XG4gICAgcmV0dXJuIEFycmF5LmZyb20odmFsdWUpO1xuICB9LFxuICBqb2luKGNoYXJzKSB7XG4gICAgcmV0dXJuIGNoYXJzLmpvaW4oJycpO1xuICB9LFxuICBwb3N0UHJvY2VzcyhjaGFuZ2VPYmplY3RzKSB7XG4gICAgcmV0dXJuIGNoYW5nZU9iamVjdHM7XG4gIH1cbn07XG5cbmZ1bmN0aW9uIGJ1aWxkVmFsdWVzKGRpZmYsIGxhc3RDb21wb25lbnQsIG5ld1N0cmluZywgb2xkU3RyaW5nLCB1c2VMb25nZXN0VG9rZW4pIHtcbiAgLy8gRmlyc3Qgd2UgY29udmVydCBvdXIgbGlua2VkIGxpc3Qgb2YgY29tcG9uZW50cyBpbiByZXZlcnNlIG9yZGVyIHRvIGFuXG4gIC8vIGFycmF5IGluIHRoZSByaWdodCBvcmRlcjpcbiAgY29uc3QgY29tcG9uZW50cyA9IFtdO1xuICBsZXQgbmV4dENvbXBvbmVudDtcbiAgd2hpbGUgKGxhc3RDb21wb25lbnQpIHtcbiAgICBjb21wb25lbnRzLnB1c2gobGFzdENvbXBvbmVudCk7XG4gICAgbmV4dENvbXBvbmVudCA9IGxhc3RDb21wb25lbnQucHJldmlvdXNDb21wb25lbnQ7XG4gICAgZGVsZXRlIGxhc3RDb21wb25lbnQucHJldmlvdXNDb21wb25lbnQ7XG4gICAgbGFzdENvbXBvbmVudCA9IG5leHRDb21wb25lbnQ7XG4gIH1cbiAgY29tcG9uZW50cy5yZXZlcnNlKCk7XG5cbiAgbGV0IGNvbXBvbmVudFBvcyA9IDAsXG4gICAgICBjb21wb25lbnRMZW4gPSBjb21wb25lbnRzLmxlbmd0aCxcbiAgICAgIG5ld1BvcyA9IDAsXG4gICAgICBvbGRQb3MgPSAwO1xuXG4gIGZvciAoOyBjb21wb25lbnRQb3MgPCBjb21wb25lbnRMZW47IGNvbXBvbmVudFBvcysrKSB7XG4gICAgbGV0IGNvbXBvbmVudCA9IGNvbXBvbmVudHNbY29tcG9uZW50UG9zXTtcbiAgICBpZiAoIWNvbXBvbmVudC5yZW1vdmVkKSB7XG4gICAgICBpZiAoIWNvbXBvbmVudC5hZGRlZCAmJiB1c2VMb25nZXN0VG9rZW4pIHtcbiAgICAgICAgbGV0IHZhbHVlID0gbmV3U3RyaW5nLnNsaWNlKG5ld1BvcywgbmV3UG9zICsgY29tcG9uZW50LmNvdW50KTtcbiAgICAgICAgdmFsdWUgPSB2YWx1ZS5tYXAoZnVuY3Rpb24odmFsdWUsIGkpIHtcbiAgICAgICAgICBsZXQgb2xkVmFsdWUgPSBvbGRTdHJpbmdbb2xkUG9zICsgaV07XG4gICAgICAgICAgcmV0dXJuIG9sZFZhbHVlLmxlbmd0aCA+IHZhbHVlLmxlbmd0aCA/IG9sZFZhbHVlIDogdmFsdWU7XG4gICAgICAgIH0pO1xuXG4gICAgICAgIGNvbXBvbmVudC52YWx1ZSA9IGRpZmYuam9pbih2YWx1ZSk7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBjb21wb25lbnQudmFsdWUgPSBkaWZmLmpvaW4obmV3U3RyaW5nLnNsaWNlKG5ld1BvcywgbmV3UG9zICsgY29tcG9uZW50LmNvdW50KSk7XG4gICAgICB9XG4gICAgICBuZXdQb3MgKz0gY29tcG9uZW50LmNvdW50O1xuXG4gICAgICAvLyBDb21tb24gY2FzZVxuICAgICAgaWYgKCFjb21wb25lbnQuYWRkZWQpIHtcbiAgICAgICAgb2xkUG9zICs9IGNvbXBvbmVudC5jb3VudDtcbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgY29tcG9uZW50LnZhbHVlID0gZGlmZi5qb2luKG9sZFN0cmluZy5zbGljZShvbGRQb3MsIG9sZFBvcyArIGNvbXBvbmVudC5jb3VudCkpO1xuICAgICAgb2xkUG9zICs9IGNvbXBvbmVudC5jb3VudDtcbiAgICB9XG4gIH1cblxuICByZXR1cm4gY29tcG9uZW50cztcbn1cbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7QUFBZSxTQUFTQSxJQUFJQSxDQUFBLEVBQUcsQ0FBQztBQUVoQ0EsSUFBSSxDQUFDQyxTQUFTLEdBQUc7RUFBQTtFQUFBO0VBQ2ZDLElBQUksV0FBQUEsS0FBQ0MsU0FBUyxFQUFFQyxTQUFTLEVBQWdCO0lBQUE7SUFBQSxJQUFBQyxnQkFBQTtJQUFBO0lBQUE7SUFBZEMsT0FBTyxHQUFBQyxTQUFBLENBQUFDLE1BQUEsUUFBQUQsU0FBQSxRQUFBRSxTQUFBLEdBQUFGLFNBQUEsTUFBRyxDQUFDLENBQUM7SUFDckMsSUFBSUcsUUFBUSxHQUFHSixPQUFPLENBQUNJLFFBQVE7SUFDL0IsSUFBSSxPQUFPSixPQUFPLEtBQUssVUFBVSxFQUFFO01BQ2pDSSxRQUFRLEdBQUdKLE9BQU87TUFDbEJBLE9BQU8sR0FBRyxDQUFDLENBQUM7SUFDZDtJQUVBLElBQUlLLElBQUksR0FBRyxJQUFJO0lBRWYsU0FBU0MsSUFBSUEsQ0FBQ0MsS0FBSyxFQUFFO01BQ25CQSxLQUFLLEdBQUdGLElBQUksQ0FBQ0csV0FBVyxDQUFDRCxLQUFLLEVBQUVQLE9BQU8sQ0FBQztNQUN4QyxJQUFJSSxRQUFRLEVBQUU7UUFDWkssVUFBVSxDQUFDLFlBQVc7VUFBRUwsUUFBUSxDQUFDRyxLQUFLLENBQUM7UUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQzlDLE9BQU8sSUFBSTtNQUNiLENBQUMsTUFBTTtRQUNMLE9BQU9BLEtBQUs7TUFDZDtJQUNGOztJQUVBO0lBQ0FWLFNBQVMsR0FBRyxJQUFJLENBQUNhLFNBQVMsQ0FBQ2IsU0FBUyxFQUFFRyxPQUFPLENBQUM7SUFDOUNGLFNBQVMsR0FBRyxJQUFJLENBQUNZLFNBQVMsQ0FBQ1osU0FBUyxFQUFFRSxPQUFPLENBQUM7SUFFOUNILFNBQVMsR0FBRyxJQUFJLENBQUNjLFdBQVcsQ0FBQyxJQUFJLENBQUNDLFFBQVEsQ0FBQ2YsU0FBUyxFQUFFRyxPQUFPLENBQUMsQ0FBQztJQUMvREYsU0FBUyxHQUFHLElBQUksQ0FBQ2EsV0FBVyxDQUFDLElBQUksQ0FBQ0MsUUFBUSxDQUFDZCxTQUFTLEVBQUVFLE9BQU8sQ0FBQyxDQUFDO0lBRS9ELElBQUlhLE1BQU0sR0FBR2YsU0FBUyxDQUFDSSxNQUFNO01BQUVZLE1BQU0sR0FBR2pCLFNBQVMsQ0FBQ0ssTUFBTTtJQUN4RCxJQUFJYSxVQUFVLEdBQUcsQ0FBQztJQUNsQixJQUFJQyxhQUFhLEdBQUdILE1BQU0sR0FBR0MsTUFBTTtJQUNuQyxJQUFHZCxPQUFPLENBQUNnQixhQUFhLElBQUksSUFBSSxFQUFFO01BQ2hDQSxhQUFhLEdBQUdDLElBQUksQ0FBQ0MsR0FBRyxDQUFDRixhQUFhLEVBQUVoQixPQUFPLENBQUNnQixhQUFhLENBQUM7SUFDaEU7SUFDQSxJQUFNRyxnQkFBZ0I7SUFBQTtJQUFBLENBQUFwQixnQkFBQTtJQUFBO0lBQUdDLE9BQU8sQ0FBQ29CLE9BQU8sY0FBQXJCLGdCQUFBLGNBQUFBLGdCQUFBLEdBQUlzQixRQUFRO0lBQ3BELElBQU1DLG1CQUFtQixHQUFHQyxJQUFJLENBQUNDLEdBQUcsQ0FBQyxDQUFDLEdBQUdMLGdCQUFnQjtJQUV6RCxJQUFJTSxRQUFRLEdBQUcsQ0FBQztNQUFFQyxNQUFNLEVBQUUsQ0FBQyxDQUFDO01BQUVDLGFBQWEsRUFBRXhCO0lBQVUsQ0FBQyxDQUFDOztJQUV6RDtJQUNBLElBQUl5QixNQUFNLEdBQUcsSUFBSSxDQUFDQyxhQUFhLENBQUNKLFFBQVEsQ0FBQyxDQUFDLENBQUMsRUFBRTNCLFNBQVMsRUFBRUQsU0FBUyxFQUFFLENBQUMsRUFBRUcsT0FBTyxDQUFDO0lBQzlFLElBQUl5QixRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUNDLE1BQU0sR0FBRyxDQUFDLElBQUlaLE1BQU0sSUFBSWMsTUFBTSxHQUFHLENBQUMsSUFBSWYsTUFBTSxFQUFFO01BQzVEO01BQ0EsT0FBT1AsSUFBSSxDQUFDd0IsV0FBVyxDQUFDekIsSUFBSSxFQUFFb0IsUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFDRSxhQUFhLEVBQUU3QixTQUFTLEVBQUVELFNBQVMsRUFBRVEsSUFBSSxDQUFDMEIsZUFBZSxDQUFDLENBQUM7SUFDdkc7O0lBRUE7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBLElBQUlDLHFCQUFxQixHQUFHLENBQUNYLFFBQVE7TUFBRVkscUJBQXFCLEdBQUdaLFFBQVE7O0lBRXZFO0lBQ0EsU0FBU2EsY0FBY0EsQ0FBQSxFQUFHO01BQ3hCLEtBQ0UsSUFBSUMsWUFBWSxHQUFHbEIsSUFBSSxDQUFDbUIsR0FBRyxDQUFDSixxQkFBcUIsRUFBRSxDQUFDakIsVUFBVSxDQUFDLEVBQy9Eb0IsWUFBWSxJQUFJbEIsSUFBSSxDQUFDQyxHQUFHLENBQUNlLHFCQUFxQixFQUFFbEIsVUFBVSxDQUFDLEVBQzNEb0IsWUFBWSxJQUFJLENBQUMsRUFDakI7UUFDQSxJQUFJRSxRQUFRO1FBQUE7UUFBQTtRQUFBO1FBQUE7UUFDWixJQUFJQyxVQUFVLEdBQUdiLFFBQVEsQ0FBQ1UsWUFBWSxHQUFHLENBQUMsQ0FBQztVQUN2Q0ksT0FBTyxHQUFHZCxRQUFRLENBQUNVLFlBQVksR0FBRyxDQUFDLENBQUM7UUFDeEMsSUFBSUcsVUFBVSxFQUFFO1VBQ2Q7VUFDQWIsUUFBUSxDQUFDVSxZQUFZLEdBQUcsQ0FBQyxDQUFDLEdBQUdoQyxTQUFTO1FBQ3hDO1FBRUEsSUFBSXFDLE1BQU0sR0FBRyxLQUFLO1FBQ2xCLElBQUlELE9BQU8sRUFBRTtVQUNYO1VBQ0EsSUFBTUUsYUFBYSxHQUFHRixPQUFPLENBQUNiLE1BQU0sR0FBR1MsWUFBWTtVQUNuREssTUFBTSxHQUFHRCxPQUFPLElBQUksQ0FBQyxJQUFJRSxhQUFhLElBQUlBLGFBQWEsR0FBRzVCLE1BQU07UUFDbEU7UUFFQSxJQUFJNkIsU0FBUyxHQUFHSixVQUFVLElBQUlBLFVBQVUsQ0FBQ1osTUFBTSxHQUFHLENBQUMsR0FBR1osTUFBTTtRQUM1RCxJQUFJLENBQUMwQixNQUFNLElBQUksQ0FBQ0UsU0FBUyxFQUFFO1VBQ3pCO1VBQ0FqQixRQUFRLENBQUNVLFlBQVksQ0FBQyxHQUFHaEMsU0FBUztVQUNsQztRQUNGOztRQUVBO1FBQ0E7UUFDQTtRQUNBLElBQUksQ0FBQ3VDLFNBQVMsSUFBS0YsTUFBTSxJQUFJRixVQUFVLENBQUNaLE1BQU0sR0FBR2EsT0FBTyxDQUFDYixNQUFPLEVBQUU7VUFDaEVXLFFBQVEsR0FBR2hDLElBQUksQ0FBQ3NDLFNBQVMsQ0FBQ0osT0FBTyxFQUFFLElBQUksRUFBRSxLQUFLLEVBQUUsQ0FBQyxFQUFFdkMsT0FBTyxDQUFDO1FBQzdELENBQUMsTUFBTTtVQUNMcUMsUUFBUSxHQUFHaEMsSUFBSSxDQUFDc0MsU0FBUyxDQUFDTCxVQUFVLEVBQUUsS0FBSyxFQUFFLElBQUksRUFBRSxDQUFDLEVBQUV0QyxPQUFPLENBQUM7UUFDaEU7UUFFQTRCLE1BQU0sR0FBR3ZCLElBQUksQ0FBQ3dCLGFBQWEsQ0FBQ1EsUUFBUSxFQUFFdkMsU0FBUyxFQUFFRCxTQUFTLEVBQUVzQyxZQUFZLEVBQUVuQyxPQUFPLENBQUM7UUFFbEYsSUFBSXFDLFFBQVEsQ0FBQ1gsTUFBTSxHQUFHLENBQUMsSUFBSVosTUFBTSxJQUFJYyxNQUFNLEdBQUcsQ0FBQyxJQUFJZixNQUFNLEVBQUU7VUFDekQ7VUFDQSxPQUFPUCxJQUFJLENBQUN3QixXQUFXLENBQUN6QixJQUFJLEVBQUVnQyxRQUFRLENBQUNWLGFBQWEsRUFBRTdCLFNBQVMsRUFBRUQsU0FBUyxFQUFFUSxJQUFJLENBQUMwQixlQUFlLENBQUMsQ0FBQztRQUNwRyxDQUFDLE1BQU07VUFDTE4sUUFBUSxDQUFDVSxZQUFZLENBQUMsR0FBR0UsUUFBUTtVQUNqQyxJQUFJQSxRQUFRLENBQUNYLE1BQU0sR0FBRyxDQUFDLElBQUlaLE1BQU0sRUFBRTtZQUNqQ21CLHFCQUFxQixHQUFHaEIsSUFBSSxDQUFDQyxHQUFHLENBQUNlLHFCQUFxQixFQUFFRSxZQUFZLEdBQUcsQ0FBQyxDQUFDO1VBQzNFO1VBQ0EsSUFBSVAsTUFBTSxHQUFHLENBQUMsSUFBSWYsTUFBTSxFQUFFO1lBQ3hCbUIscUJBQXFCLEdBQUdmLElBQUksQ0FBQ21CLEdBQUcsQ0FBQ0oscUJBQXFCLEVBQUVHLFlBQVksR0FBRyxDQUFDLENBQUM7VUFDM0U7UUFDRjtNQUNGO01BRUFwQixVQUFVLEVBQUU7SUFDZDs7SUFFQTtJQUNBO0lBQ0E7SUFDQTtJQUNBLElBQUlYLFFBQVEsRUFBRTtNQUNYLFVBQVN3QyxJQUFJQSxDQUFBLEVBQUc7UUFDZm5DLFVBQVUsQ0FBQyxZQUFXO1VBQ3BCLElBQUlNLFVBQVUsR0FBR0MsYUFBYSxJQUFJTyxJQUFJLENBQUNDLEdBQUcsQ0FBQyxDQUFDLEdBQUdGLG1CQUFtQixFQUFFO1lBQ2xFLE9BQU9sQixRQUFRLENBQUMsQ0FBQztVQUNuQjtVQUVBLElBQUksQ0FBQzhCLGNBQWMsQ0FBQyxDQUFDLEVBQUU7WUFDckJVLElBQUksQ0FBQyxDQUFDO1VBQ1I7UUFDRixDQUFDLEVBQUUsQ0FBQyxDQUFDO01BQ1AsQ0FBQyxFQUFDLENBQUM7SUFDTCxDQUFDLE1BQU07TUFDTCxPQUFPN0IsVUFBVSxJQUFJQyxhQUFhLElBQUlPLElBQUksQ0FBQ0MsR0FBRyxDQUFDLENBQUMsSUFBSUYsbUJBQW1CLEVBQUU7UUFDdkUsSUFBSXVCLEdBQUcsR0FBR1gsY0FBYyxDQUFDLENBQUM7UUFDMUIsSUFBSVcsR0FBRyxFQUFFO1VBQ1AsT0FBT0EsR0FBRztRQUNaO01BQ0Y7SUFDRjtFQUNGLENBQUM7RUFBQTtFQUFBO0VBRURGLFNBQVMsV0FBQUEsVUFBQ0csSUFBSSxFQUFFQyxLQUFLLEVBQUVDLE9BQU8sRUFBRUMsU0FBUyxFQUFFakQsT0FBTyxFQUFFO0lBQ2xELElBQUlrRCxJQUFJLEdBQUdKLElBQUksQ0FBQ25CLGFBQWE7SUFDN0IsSUFBSXVCLElBQUksSUFBSSxDQUFDbEQsT0FBTyxDQUFDbUQsaUJBQWlCLElBQUlELElBQUksQ0FBQ0gsS0FBSyxLQUFLQSxLQUFLLElBQUlHLElBQUksQ0FBQ0YsT0FBTyxLQUFLQSxPQUFPLEVBQUU7TUFDMUYsT0FBTztRQUNMdEIsTUFBTSxFQUFFb0IsSUFBSSxDQUFDcEIsTUFBTSxHQUFHdUIsU0FBUztRQUMvQnRCLGFBQWEsRUFBRTtVQUFDeUIsS0FBSyxFQUFFRixJQUFJLENBQUNFLEtBQUssR0FBRyxDQUFDO1VBQUVMLEtBQUssRUFBRUEsS0FBSztVQUFFQyxPQUFPLEVBQUVBLE9BQU87VUFBRUssaUJBQWlCLEVBQUVILElBQUksQ0FBQ0c7UUFBa0I7TUFDbkgsQ0FBQztJQUNILENBQUMsTUFBTTtNQUNMLE9BQU87UUFDTDNCLE1BQU0sRUFBRW9CLElBQUksQ0FBQ3BCLE1BQU0sR0FBR3VCLFNBQVM7UUFDL0J0QixhQUFhLEVBQUU7VUFBQ3lCLEtBQUssRUFBRSxDQUFDO1VBQUVMLEtBQUssRUFBRUEsS0FBSztVQUFFQyxPQUFPLEVBQUVBLE9BQU87VUFBRUssaUJBQWlCLEVBQUVIO1FBQUs7TUFDcEYsQ0FBQztJQUNIO0VBQ0YsQ0FBQztFQUFBO0VBQUE7RUFDRHJCLGFBQWEsV0FBQUEsY0FBQ1EsUUFBUSxFQUFFdkMsU0FBUyxFQUFFRCxTQUFTLEVBQUVzQyxZQUFZLEVBQUVuQyxPQUFPLEVBQUU7SUFDbkUsSUFBSWEsTUFBTSxHQUFHZixTQUFTLENBQUNJLE1BQU07TUFDekJZLE1BQU0sR0FBR2pCLFNBQVMsQ0FBQ0ssTUFBTTtNQUN6QndCLE1BQU0sR0FBR1csUUFBUSxDQUFDWCxNQUFNO01BQ3hCRSxNQUFNLEdBQUdGLE1BQU0sR0FBR1MsWUFBWTtNQUU5Qm1CLFdBQVcsR0FBRyxDQUFDO0lBQ25CLE9BQU8xQixNQUFNLEdBQUcsQ0FBQyxHQUFHZixNQUFNLElBQUlhLE1BQU0sR0FBRyxDQUFDLEdBQUdaLE1BQU0sSUFBSSxJQUFJLENBQUN5QyxNQUFNLENBQUMxRCxTQUFTLENBQUM2QixNQUFNLEdBQUcsQ0FBQyxDQUFDLEVBQUU1QixTQUFTLENBQUM4QixNQUFNLEdBQUcsQ0FBQyxDQUFDLEVBQUU1QixPQUFPLENBQUMsRUFBRTtNQUN2SDRCLE1BQU0sRUFBRTtNQUNSRixNQUFNLEVBQUU7TUFDUjRCLFdBQVcsRUFBRTtNQUNiLElBQUl0RCxPQUFPLENBQUNtRCxpQkFBaUIsRUFBRTtRQUM3QmQsUUFBUSxDQUFDVixhQUFhLEdBQUc7VUFBQ3lCLEtBQUssRUFBRSxDQUFDO1VBQUVDLGlCQUFpQixFQUFFaEIsUUFBUSxDQUFDVixhQUFhO1VBQUVvQixLQUFLLEVBQUUsS0FBSztVQUFFQyxPQUFPLEVBQUU7UUFBSyxDQUFDO01BQzlHO0lBQ0Y7SUFFQSxJQUFJTSxXQUFXLElBQUksQ0FBQ3RELE9BQU8sQ0FBQ21ELGlCQUFpQixFQUFFO01BQzdDZCxRQUFRLENBQUNWLGFBQWEsR0FBRztRQUFDeUIsS0FBSyxFQUFFRSxXQUFXO1FBQUVELGlCQUFpQixFQUFFaEIsUUFBUSxDQUFDVixhQUFhO1FBQUVvQixLQUFLLEVBQUUsS0FBSztRQUFFQyxPQUFPLEVBQUU7TUFBSyxDQUFDO0lBQ3hIO0lBRUFYLFFBQVEsQ0FBQ1gsTUFBTSxHQUFHQSxNQUFNO0lBQ3hCLE9BQU9FLE1BQU07RUFDZixDQUFDO0VBQUE7RUFBQTtFQUVEMkIsTUFBTSxXQUFBQSxPQUFDQyxJQUFJLEVBQUVDLEtBQUssRUFBRXpELE9BQU8sRUFBRTtJQUMzQixJQUFJQSxPQUFPLENBQUMwRCxVQUFVLEVBQUU7TUFDdEIsT0FBTzFELE9BQU8sQ0FBQzBELFVBQVUsQ0FBQ0YsSUFBSSxFQUFFQyxLQUFLLENBQUM7SUFDeEMsQ0FBQyxNQUFNO01BQ0wsT0FBT0QsSUFBSSxLQUFLQyxLQUFLLElBQ2Z6RCxPQUFPLENBQUMyRCxVQUFVLElBQUlILElBQUksQ0FBQ0ksV0FBVyxDQUFDLENBQUMsS0FBS0gsS0FBSyxDQUFDRyxXQUFXLENBQUMsQ0FBRTtJQUN6RTtFQUNGLENBQUM7RUFBQTtFQUFBO0VBQ0RqRCxXQUFXLFdBQUFBLFlBQUNrRCxLQUFLLEVBQUU7SUFDakIsSUFBSWhCLEdBQUcsR0FBRyxFQUFFO0lBQ1osS0FBSyxJQUFJaUIsQ0FBQyxHQUFHLENBQUMsRUFBRUEsQ0FBQyxHQUFHRCxLQUFLLENBQUMzRCxNQUFNLEVBQUU0RCxDQUFDLEVBQUUsRUFBRTtNQUNyQyxJQUFJRCxLQUFLLENBQUNDLENBQUMsQ0FBQyxFQUFFO1FBQ1pqQixHQUFHLENBQUNrQixJQUFJLENBQUNGLEtBQUssQ0FBQ0MsQ0FBQyxDQUFDLENBQUM7TUFDcEI7SUFDRjtJQUNBLE9BQU9qQixHQUFHO0VBQ1osQ0FBQztFQUFBO0VBQUE7RUFDRG5DLFNBQVMsV0FBQUEsVUFBQ0gsS0FBSyxFQUFFO0lBQ2YsT0FBT0EsS0FBSztFQUNkLENBQUM7RUFBQTtFQUFBO0VBQ0RLLFFBQVEsV0FBQUEsU0FBQ0wsS0FBSyxFQUFFO0lBQ2QsT0FBT3lELEtBQUssQ0FBQ0MsSUFBSSxDQUFDMUQsS0FBSyxDQUFDO0VBQzFCLENBQUM7RUFBQTtFQUFBO0VBQ0QyRCxJQUFJLFdBQUFBLEtBQUNDLEtBQUssRUFBRTtJQUNWLE9BQU9BLEtBQUssQ0FBQ0QsSUFBSSxDQUFDLEVBQUUsQ0FBQztFQUN2QixDQUFDO0VBQUE7RUFBQTtFQUNEMUQsV0FBVyxXQUFBQSxZQUFDNEQsYUFBYSxFQUFFO0lBQ3pCLE9BQU9BLGFBQWE7RUFDdEI7QUFDRixDQUFDO0FBRUQsU0FBU3RDLFdBQVdBLENBQUNsQyxJQUFJLEVBQUUrQixhQUFhLEVBQUU3QixTQUFTLEVBQUVELFNBQVMsRUFBRWtDLGVBQWUsRUFBRTtFQUMvRTtFQUNBO0VBQ0EsSUFBTXNDLFVBQVUsR0FBRyxFQUFFO0VBQ3JCLElBQUlDLGFBQWE7RUFDakIsT0FBTzNDLGFBQWEsRUFBRTtJQUNwQjBDLFVBQVUsQ0FBQ04sSUFBSSxDQUFDcEMsYUFBYSxDQUFDO0lBQzlCMkMsYUFBYSxHQUFHM0MsYUFBYSxDQUFDMEIsaUJBQWlCO0lBQy9DLE9BQU8xQixhQUFhLENBQUMwQixpQkFBaUI7SUFDdEMxQixhQUFhLEdBQUcyQyxhQUFhO0VBQy9CO0VBQ0FELFVBQVUsQ0FBQ0UsT0FBTyxDQUFDLENBQUM7RUFFcEIsSUFBSUMsWUFBWSxHQUFHLENBQUM7SUFDaEJDLFlBQVksR0FBR0osVUFBVSxDQUFDbkUsTUFBTTtJQUNoQzBCLE1BQU0sR0FBRyxDQUFDO0lBQ1ZGLE1BQU0sR0FBRyxDQUFDO0VBRWQsT0FBTzhDLFlBQVksR0FBR0MsWUFBWSxFQUFFRCxZQUFZLEVBQUUsRUFBRTtJQUNsRCxJQUFJRSxTQUFTLEdBQUdMLFVBQVUsQ0FBQ0csWUFBWSxDQUFDO0lBQ3hDLElBQUksQ0FBQ0UsU0FBUyxDQUFDMUIsT0FBTyxFQUFFO01BQ3RCLElBQUksQ0FBQzBCLFNBQVMsQ0FBQzNCLEtBQUssSUFBSWhCLGVBQWUsRUFBRTtRQUN2QyxJQUFJeEIsS0FBSyxHQUFHVCxTQUFTLENBQUM2RSxLQUFLLENBQUMvQyxNQUFNLEVBQUVBLE1BQU0sR0FBRzhDLFNBQVMsQ0FBQ3RCLEtBQUssQ0FBQztRQUM3RDdDLEtBQUssR0FBR0EsS0FBSyxDQUFDcUUsR0FBRyxDQUFDLFVBQVNyRSxLQUFLLEVBQUV1RCxDQUFDLEVBQUU7VUFDbkMsSUFBSWUsUUFBUSxHQUFHaEYsU0FBUyxDQUFDNkIsTUFBTSxHQUFHb0MsQ0FBQyxDQUFDO1VBQ3BDLE9BQU9lLFFBQVEsQ0FBQzNFLE1BQU0sR0FBR0ssS0FBSyxDQUFDTCxNQUFNLEdBQUcyRSxRQUFRLEdBQUd0RSxLQUFLO1FBQzFELENBQUMsQ0FBQztRQUVGbUUsU0FBUyxDQUFDbkUsS0FBSyxHQUFHWCxJQUFJLENBQUNzRSxJQUFJLENBQUMzRCxLQUFLLENBQUM7TUFDcEMsQ0FBQyxNQUFNO1FBQ0xtRSxTQUFTLENBQUNuRSxLQUFLLEdBQUdYLElBQUksQ0FBQ3NFLElBQUksQ0FBQ3BFLFNBQVMsQ0FBQzZFLEtBQUssQ0FBQy9DLE1BQU0sRUFBRUEsTUFBTSxHQUFHOEMsU0FBUyxDQUFDdEIsS0FBSyxDQUFDLENBQUM7TUFDaEY7TUFDQXhCLE1BQU0sSUFBSThDLFNBQVMsQ0FBQ3RCLEtBQUs7O01BRXpCO01BQ0EsSUFBSSxDQUFDc0IsU0FBUyxDQUFDM0IsS0FBSyxFQUFFO1FBQ3BCckIsTUFBTSxJQUFJZ0QsU0FBUyxDQUFDdEIsS0FBSztNQUMzQjtJQUNGLENBQUMsTUFBTTtNQUNMc0IsU0FBUyxDQUFDbkUsS0FBSyxHQUFHWCxJQUFJLENBQUNzRSxJQUFJLENBQUNyRSxTQUFTLENBQUM4RSxLQUFLLENBQUNqRCxNQUFNLEVBQUVBLE1BQU0sR0FBR2dELFNBQVMsQ0FBQ3RCLEtBQUssQ0FBQyxDQUFDO01BQzlFMUIsTUFBTSxJQUFJZ0QsU0FBUyxDQUFDdEIsS0FBSztJQUMzQjtFQUNGO0VBRUEsT0FBT2lCLFVBQVU7QUFDbkIiLCJpZ25vcmVMaXN0IjpbXX0=
@@ -0,0 +1,33 @@
1
+ /*istanbul ignore start*/
2
+ "use strict";
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.characterDiff = void 0;
8
+ exports.diffChars = diffChars;
9
+ /*istanbul ignore end*/
10
+ var
11
+ /*istanbul ignore start*/
12
+ _base = _interopRequireDefault(require("./base"))
13
+ /*istanbul ignore end*/
14
+ ;
15
+ /*istanbul ignore start*/ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
16
+ /*istanbul ignore end*/
17
+ var characterDiff =
18
+ /*istanbul ignore start*/
19
+ exports.characterDiff =
20
+ /*istanbul ignore end*/
21
+ new
22
+ /*istanbul ignore start*/
23
+ _base
24
+ /*istanbul ignore end*/
25
+ [
26
+ /*istanbul ignore start*/
27
+ "default"
28
+ /*istanbul ignore end*/
29
+ ]();
30
+ function diffChars(oldStr, newStr, options) {
31
+ return characterDiff.diff(oldStr, newStr, options);
32
+ }
33
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJfYmFzZSIsIl9pbnRlcm9wUmVxdWlyZURlZmF1bHQiLCJyZXF1aXJlIiwib2JqIiwiX19lc01vZHVsZSIsImNoYXJhY3RlckRpZmYiLCJleHBvcnRzIiwiRGlmZiIsImRpZmZDaGFycyIsIm9sZFN0ciIsIm5ld1N0ciIsIm9wdGlvbnMiLCJkaWZmIl0sInNvdXJjZXMiOlsiLi4vLi4vc3JjL2RpZmYvY2hhcmFjdGVyLmpzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBEaWZmIGZyb20gJy4vYmFzZSc7XG5cbmV4cG9ydCBjb25zdCBjaGFyYWN0ZXJEaWZmID0gbmV3IERpZmYoKTtcbmV4cG9ydCBmdW5jdGlvbiBkaWZmQ2hhcnMob2xkU3RyLCBuZXdTdHIsIG9wdGlvbnMpIHsgcmV0dXJuIGNoYXJhY3RlckRpZmYuZGlmZihvbGRTdHIsIG5ld1N0ciwgb3B0aW9ucyk7IH1cbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7O0FBQUE7QUFBQTtBQUFBQSxLQUFBLEdBQUFDLHNCQUFBLENBQUFDLE9BQUE7QUFBQTtBQUFBO0FBQTBCLG1DQUFBRCx1QkFBQUUsR0FBQSxXQUFBQSxHQUFBLElBQUFBLEdBQUEsQ0FBQUMsVUFBQSxHQUFBRCxHQUFBLGdCQUFBQSxHQUFBO0FBQUE7QUFFbkIsSUFBTUUsYUFBYTtBQUFBO0FBQUFDLE9BQUEsQ0FBQUQsYUFBQTtBQUFBO0FBQUc7QUFBSUU7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUEsQ0FBSSxDQUFDLENBQUM7QUFDaEMsU0FBU0MsU0FBU0EsQ0FBQ0MsTUFBTSxFQUFFQyxNQUFNLEVBQUVDLE9BQU8sRUFBRTtFQUFFLE9BQU9OLGFBQWEsQ0FBQ08sSUFBSSxDQUFDSCxNQUFNLEVBQUVDLE1BQU0sRUFBRUMsT0FBTyxDQUFDO0FBQUUiLCJpZ25vcmVMaXN0IjpbXX0=
@@ -0,0 +1,36 @@
1
+ /*istanbul ignore start*/
2
+ "use strict";
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.cssDiff = void 0;
8
+ exports.diffCss = diffCss;
9
+ /*istanbul ignore end*/
10
+ var
11
+ /*istanbul ignore start*/
12
+ _base = _interopRequireDefault(require("./base"))
13
+ /*istanbul ignore end*/
14
+ ;
15
+ /*istanbul ignore start*/ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
16
+ /*istanbul ignore end*/
17
+ var cssDiff =
18
+ /*istanbul ignore start*/
19
+ exports.cssDiff =
20
+ /*istanbul ignore end*/
21
+ new
22
+ /*istanbul ignore start*/
23
+ _base
24
+ /*istanbul ignore end*/
25
+ [
26
+ /*istanbul ignore start*/
27
+ "default"
28
+ /*istanbul ignore end*/
29
+ ]();
30
+ cssDiff.tokenize = function (value) {
31
+ return value.split(/([{}:;,]|\s+)/);
32
+ };
33
+ function diffCss(oldStr, newStr, callback) {
34
+ return cssDiff.diff(oldStr, newStr, callback);
35
+ }
36
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJfYmFzZSIsIl9pbnRlcm9wUmVxdWlyZURlZmF1bHQiLCJyZXF1aXJlIiwib2JqIiwiX19lc01vZHVsZSIsImNzc0RpZmYiLCJleHBvcnRzIiwiRGlmZiIsInRva2VuaXplIiwidmFsdWUiLCJzcGxpdCIsImRpZmZDc3MiLCJvbGRTdHIiLCJuZXdTdHIiLCJjYWxsYmFjayIsImRpZmYiXSwic291cmNlcyI6WyIuLi8uLi9zcmMvZGlmZi9jc3MuanMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IERpZmYgZnJvbSAnLi9iYXNlJztcblxuZXhwb3J0IGNvbnN0IGNzc0RpZmYgPSBuZXcgRGlmZigpO1xuY3NzRGlmZi50b2tlbml6ZSA9IGZ1bmN0aW9uKHZhbHVlKSB7XG4gIHJldHVybiB2YWx1ZS5zcGxpdCgvKFt7fTo7LF18XFxzKykvKTtcbn07XG5cbmV4cG9ydCBmdW5jdGlvbiBkaWZmQ3NzKG9sZFN0ciwgbmV3U3RyLCBjYWxsYmFjaykgeyByZXR1cm4gY3NzRGlmZi5kaWZmKG9sZFN0ciwgbmV3U3RyLCBjYWxsYmFjayk7IH1cbiJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7O0FBQUE7QUFBQTtBQUFBQSxLQUFBLEdBQUFDLHNCQUFBLENBQUFDLE9BQUE7QUFBQTtBQUFBO0FBQTBCLG1DQUFBRCx1QkFBQUUsR0FBQSxXQUFBQSxHQUFBLElBQUFBLEdBQUEsQ0FBQUMsVUFBQSxHQUFBRCxHQUFBLGdCQUFBQSxHQUFBO0FBQUE7QUFFbkIsSUFBTUUsT0FBTztBQUFBO0FBQUFDLE9BQUEsQ0FBQUQsT0FBQTtBQUFBO0FBQUc7QUFBSUU7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUE7QUFBQUEsQ0FBSSxDQUFDLENBQUM7QUFDakNGLE9BQU8sQ0FBQ0csUUFBUSxHQUFHLFVBQVNDLEtBQUssRUFBRTtFQUNqQyxPQUFPQSxLQUFLLENBQUNDLEtBQUssQ0FBQyxlQUFlLENBQUM7QUFDckMsQ0FBQztBQUVNLFNBQVNDLE9BQU9BLENBQUNDLE1BQU0sRUFBRUMsTUFBTSxFQUFFQyxRQUFRLEVBQUU7RUFBRSxPQUFPVCxPQUFPLENBQUNVLElBQUksQ0FBQ0gsTUFBTSxFQUFFQyxNQUFNLEVBQUVDLFFBQVEsQ0FBQztBQUFFIiwiaWdub3JlTGlzdCI6W119