playwright-codegen-pro-core 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/mcp/node_modules/.package-lock.json +1126 -0
- package/bundles/mcp/node_modules/@hono/node-server/LICENSE +21 -0
- package/bundles/mcp/node_modules/@hono/node-server/README.md +358 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/conninfo.d.mts +10 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/conninfo.d.ts +10 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/conninfo.js +42 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/conninfo.mjs +17 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/globals.d.mts +2 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/globals.d.ts +2 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/globals.js +29 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/globals.mjs +5 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/index.d.mts +8 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/index.d.ts +8 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/index.js +632 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/index.mjs +592 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/listener.d.mts +13 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/listener.d.ts +13 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/listener.js +600 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/listener.mjs +565 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/request.d.mts +25 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/request.d.ts +25 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/request.js +227 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/request.mjs +195 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/response.d.mts +26 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/response.d.ts +26 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/response.js +101 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/response.mjs +74 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/serve-static.d.mts +17 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/serve-static.d.ts +17 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/serve-static.js +177 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/serve-static.mjs +152 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/server.d.mts +10 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/server.d.ts +10 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/server.js +626 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/server.mjs +590 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/types.d.mts +44 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/types.d.ts +44 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/types.js +18 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/types.mjs +0 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response/constants.d.mts +3 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response/constants.d.ts +3 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response/constants.js +30 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response/constants.mjs +5 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response.d.mts +3 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response.d.ts +3 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response.js +37 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils/response.mjs +10 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils.d.mts +9 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils.d.ts +9 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils.js +99 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/utils.mjs +71 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/vercel.d.mts +7 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/vercel.d.ts +7 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/vercel.js +607 -0
- package/bundles/mcp/node_modules/@hono/node-server/dist/vercel.mjs +570 -0
- package/bundles/mcp/node_modules/@hono/node-server/package.json +103 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/LICENSE +21 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/README.md +169 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts +190 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js +299 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth-extensions.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts +368 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js +848 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/auth.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.d.ts +588 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js +629 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/index.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.d.ts +169 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.js +252 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/middleware.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.d.ts +81 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js +211 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/sse.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.d.ts +77 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.js +199 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/stdio.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.d.ts +171 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.js +482 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/streamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.d.ts +17 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.js +58 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/client/websocket.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js +692 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/elicitationUrlExample.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.js +134 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/multipleClientsParallel.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.js +176 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/parallelToolCallsClient.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.d.ts +20 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.js +70 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleClientCredentials.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.d.ts +3 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js +413 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClient.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.d.ts +26 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.js +51 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleOAuthClientProvider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js +818 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.d.ts +10 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.js +157 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/simpleTaskInteractiveClient.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.js +95 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/ssePollingClient.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.js +168 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/client/streamableHttpWithSseFallbackClient.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.d.ts +78 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.js +205 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/demoInMemoryOAuthProvider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js +437 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationFormExample.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.js +656 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/elicitationUrlExample.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.d.ts +10 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js +85 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/honoWebStandardStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.js +171 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/jsonResponseStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.d.ts +7 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.js +95 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/mcpServerOutputSchema.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.js +168 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleSseServer.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.js +166 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStatelessStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js +661 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.d.ts +12 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.js +600 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/simpleTaskInteractive.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.js +256 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/sseAndStreamableHttpCompatibleServer.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js +107 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/ssePollingExample.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js +124 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/standaloneSseWithGetStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.js +73 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/server/toolWithSampleServer.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.d.ts +31 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.js +69 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/examples/shared/inMemoryEventStore.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.d.ts +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.js +29 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/index.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.d.ts +121 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.js +188 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/client.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.d.ts +47 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.js +68 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/helpers.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.d.ts +16 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.js +39 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/index.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.d.ts +232 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.js +19 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/interfaces.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.d.ts +77 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.js +36 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/mcp-server.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts +83 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js +93 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/server.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.d.ts +94 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.js +251 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/stores/in-memory.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.d.ts +10 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.js +28 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/experimental/tasks/types.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.d.ts +31 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js +51 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/inMemory.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/package.json +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.d.ts +19 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.js +3 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/clients.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.d.ts +148 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.js +202 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/errors.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.d.ts +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.js +167 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/authorize.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.d.ts +4 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.js +21 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/metadata.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.d.ts +29 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.js +77 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/register.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.d.ts +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.js +65 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/revoke.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.d.ts +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.js +136 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/handlers/token.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.d.ts +9 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.js +21 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/allowedMethods.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.d.ts +35 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.js +75 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/bearerAuth.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.d.ts +19 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.js +71 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/middleware/clientAuth.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.d.ts +68 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.js +3 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/provider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.d.ts +49 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.js +159 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/providers/proxyProvider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.d.ts +101 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js +128 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/router.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.d.ts +32 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.js +3 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/auth/types.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.d.ts +38 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.js +48 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/completable.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.d.ts +45 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.js +56 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/express.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.d.ts +196 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.js +444 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/index.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.d.ts +364 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js +918 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/mcp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.d.ts +32 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.js +80 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/middleware/hostHeaderValidation.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts +82 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js +165 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/sse.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.d.ts +28 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.js +82 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/stdio.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.d.ts +122 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js +165 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/streamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts +268 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js +736 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/webStandardStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.d.ts +84 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.js +244 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-compat.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.d.ts +12 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.js +79 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/server/zod-json-schema-compat.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.d.ts +23 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.js +48 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth-utils.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.d.ts +240 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.js +224 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/auth.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.d.ts +16 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.js +25 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/metadataUtils.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts +443 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js +1104 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/protocol.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.d.ts +45 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.js +23 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/responseMessage.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.d.ts +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.js +37 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/stdio.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.d.ts +31 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.js +97 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/toolNameValidation.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.d.ts +89 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.js +43 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/transport.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.d.ts +25 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.js +243 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/shared/uriTemplate.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.d.ts +2299 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.js +27 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/spec.types.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts +8133 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.js +2092 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/types.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.d.ts +53 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.js +94 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/ajv-provider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.d.ts +51 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.js +69 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/cfworker-provider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.d.ts +29 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.js +30 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/index.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.d.ts +65 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.js +3 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/cjs/validation/types.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts +190 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js +269 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth-extensions.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts +368 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js +824 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/auth.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts +588 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js +624 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.d.ts +169 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.js +245 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/middleware.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.d.ts +81 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.js +206 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/sse.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts +77 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js +191 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.d.ts +171 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.js +477 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/streamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.d.ts +17 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.js +54 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/client/websocket.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js +690 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/elicitationUrlExample.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.js +132 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/multipleClientsParallel.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.js +174 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/parallelToolCallsClient.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.d.ts +20 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.js +68 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleClientCredentials.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.d.ts +3 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js +411 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.d.ts +26 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.js +47 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClientProvider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js +816 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.d.ts +10 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.js +155 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleTaskInteractiveClient.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.js +93 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/ssePollingClient.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.js +166 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/streamableHttpWithSseFallbackClient.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.d.ts +78 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.js +196 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/demoInMemoryOAuthProvider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js +435 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationFormExample.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.js +651 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/elicitationUrlExample.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.d.ts +10 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js +60 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/honoWebStandardStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.js +146 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/jsonResponseStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.d.ts +7 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.js +70 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/mcpServerOutputSchema.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.js +143 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleSseServer.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.js +141 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStatelessStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js +636 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.d.ts +12 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.js +598 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/simpleTaskInteractive.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.js +231 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/sseAndStreamableHttpCompatibleServer.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js +102 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/ssePollingExample.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js +122 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/standaloneSseWithGetStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.d.ts +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.js +48 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/server/toolWithSampleServer.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.d.ts +31 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.js +65 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/examples/shared/inMemoryEventStore.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.d.ts +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.js +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/index.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.d.ts +121 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.js +184 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/client.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.d.ts +47 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js +64 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/helpers.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.d.ts +16 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.js +20 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/index.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.d.ts +232 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js +16 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/interfaces.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.d.ts +77 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js +32 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/mcp-server.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts +83 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js +89 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/server.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.d.ts +94 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.js +246 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/stores/in-memory.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.d.ts +10 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.js +10 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/experimental/tasks/types.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.d.ts +31 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.js +47 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/inMemory.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/package.json +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.d.ts +19 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.js +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/clients.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.d.ts +148 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.js +180 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/errors.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.d.ts +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.js +138 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/authorize.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.d.ts +4 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.js +15 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/metadata.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.d.ts +29 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.js +71 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/register.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.d.ts +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.js +59 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/revoke.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.d.ts +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.js +107 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/handlers/token.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.d.ts +9 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.js +18 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/allowedMethods.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.d.ts +35 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.js +72 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/bearerAuth.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.d.ts +19 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.js +45 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/middleware/clientAuth.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.d.ts +68 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.js +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/provider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.d.ts +49 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.js +155 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/providers/proxyProvider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.d.ts +101 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.js +118 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/router.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts +32 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.js +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/auth/types.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.d.ts +38 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js +41 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/completable.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.d.ts +45 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.js +50 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/express.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts +196 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js +440 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/index.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts +364 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js +913 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/mcp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.d.ts +32 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.js +76 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/middleware/hostHeaderValidation.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts +82 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js +158 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/sse.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts +28 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js +75 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/stdio.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.d.ts +122 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.js +161 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/streamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts +268 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js +732 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/webStandardStreamableHttp.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.d.ts +84 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js +209 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-compat.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.d.ts +12 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js +51 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/server/zod-json-schema-compat.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.d.ts +23 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.js +44 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth-utils.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.d.ts +240 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js +198 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/auth.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.d.ts +16 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.js +22 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/metadataUtils.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts +443 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js +1099 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/protocol.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.d.ts +45 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.js +19 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/responseMessage.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.d.ts +13 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js +31 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/stdio.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.d.ts +31 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js +92 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/toolNameValidation.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts +89 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.js +39 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/transport.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts +25 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js +239 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/shared/uriTemplate.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts +2299 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js +24 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/spec.types.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts +8133 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/types.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js +2052 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/types.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts +53 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js +87 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/ajv-provider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts +51 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js +65 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/cfworker-provider.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts +29 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js +29 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/index.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts +65 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.d.ts.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js +2 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/dist/esm/validation/types.js.map +1 -0
- package/bundles/mcp/node_modules/@modelcontextprotocol/sdk/package.json +149 -0
- package/bundles/mcp/node_modules/accepts/HISTORY.md +250 -0
- package/bundles/mcp/node_modules/accepts/LICENSE +23 -0
- package/bundles/mcp/node_modules/accepts/README.md +140 -0
- package/bundles/mcp/node_modules/accepts/index.js +238 -0
- package/bundles/mcp/node_modules/accepts/package.json +47 -0
- package/bundles/mcp/node_modules/ajv/.runkit_example.js +23 -0
- package/bundles/mcp/node_modules/ajv/LICENSE +22 -0
- package/bundles/mcp/node_modules/ajv/README.md +207 -0
- package/bundles/mcp/node_modules/ajv/dist/2019.d.ts +19 -0
- package/bundles/mcp/node_modules/ajv/dist/2019.js +61 -0
- package/bundles/mcp/node_modules/ajv/dist/2019.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/2020.d.ts +19 -0
- package/bundles/mcp/node_modules/ajv/dist/2020.js +55 -0
- package/bundles/mcp/node_modules/ajv/dist/2020.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/bundles/mcp/node_modules/ajv/dist/ajv.js +50 -0
- package/bundles/mcp/node_modules/ajv/dist/ajv.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/codegen/code.js +156 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/errors.js +123 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/index.js +242 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/jtd/serialize.js +229 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/names.js +28 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/rules.js +26 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/util.js +178 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/bundles/mcp/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/core.d.ts +173 -0
- package/bundles/mcp/node_modules/ajv/dist/core.js +618 -0
- package/bundles/mcp/node_modules/ajv/dist/core.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/bundles/mcp/node_modules/ajv/dist/jtd.js +72 -0
- package/bundles/mcp/node_modules/ajv/dist/jtd.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/data.json +13 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/bundles/mcp/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/bundles/mcp/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/standalone/index.js +90 -0
- package/bundles/mcp/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/bundles/mcp/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/bundles/mcp/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/bundles/mcp/node_modules/ajv/dist/types/index.js +3 -0
- package/bundles/mcp/node_modules/ajv/dist/types/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/bundles/mcp/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/bundles/mcp/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/bundles/mcp/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/bundles/mcp/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/bundles/mcp/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/bundles/mcp/node_modules/ajv/lib/2019.ts +81 -0
- package/bundles/mcp/node_modules/ajv/lib/2020.ts +75 -0
- package/bundles/mcp/node_modules/ajv/lib/ajv.ts +70 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/index.ts +324 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/jtd/serialize.ts +266 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/names.ts +27 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/util.ts +213 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/bundles/mcp/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/bundles/mcp/node_modules/ajv/lib/core.ts +891 -0
- package/bundles/mcp/node_modules/ajv/lib/jtd.ts +132 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/data.json +13 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/bundles/mcp/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/bundles/mcp/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/bundles/mcp/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/bundles/mcp/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/bundles/mcp/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/bundles/mcp/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/bundles/mcp/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/bundles/mcp/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/bundles/mcp/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/bundles/mcp/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/bundles/mcp/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/bundles/mcp/node_modules/ajv/lib/types/index.ts +244 -0
- package/bundles/mcp/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/bundles/mcp/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/bundles/mcp/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/bundles/mcp/node_modules/ajv/package.json +126 -0
- package/bundles/mcp/node_modules/ajv-formats/LICENSE +21 -0
- package/bundles/mcp/node_modules/ajv-formats/README.md +125 -0
- package/bundles/mcp/node_modules/ajv-formats/dist/formats.d.ts +9 -0
- package/bundles/mcp/node_modules/ajv-formats/dist/formats.js +208 -0
- package/bundles/mcp/node_modules/ajv-formats/dist/formats.js.map +1 -0
- package/bundles/mcp/node_modules/ajv-formats/dist/index.d.ts +15 -0
- package/bundles/mcp/node_modules/ajv-formats/dist/index.js +37 -0
- package/bundles/mcp/node_modules/ajv-formats/dist/index.js.map +1 -0
- package/bundles/mcp/node_modules/ajv-formats/dist/limit.d.ts +10 -0
- package/bundles/mcp/node_modules/ajv-formats/dist/limit.js +69 -0
- package/bundles/mcp/node_modules/ajv-formats/dist/limit.js.map +1 -0
- package/bundles/mcp/node_modules/ajv-formats/package.json +74 -0
- package/bundles/mcp/node_modules/body-parser/LICENSE +23 -0
- package/bundles/mcp/node_modules/body-parser/README.md +494 -0
- package/bundles/mcp/node_modules/body-parser/index.js +71 -0
- package/bundles/mcp/node_modules/body-parser/lib/read.js +247 -0
- package/bundles/mcp/node_modules/body-parser/lib/types/json.js +158 -0
- package/bundles/mcp/node_modules/body-parser/lib/types/raw.js +42 -0
- package/bundles/mcp/node_modules/body-parser/lib/types/text.js +36 -0
- package/bundles/mcp/node_modules/body-parser/lib/types/urlencoded.js +142 -0
- package/bundles/mcp/node_modules/body-parser/lib/utils.js +98 -0
- package/bundles/mcp/node_modules/body-parser/package.json +52 -0
- package/bundles/mcp/node_modules/bytes/History.md +97 -0
- package/bundles/mcp/node_modules/bytes/LICENSE +23 -0
- package/bundles/mcp/node_modules/bytes/Readme.md +152 -0
- package/bundles/mcp/node_modules/bytes/index.js +170 -0
- package/bundles/mcp/node_modules/bytes/package.json +42 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/bundles/mcp/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/bundles/mcp/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/call-bound/.nycrc +9 -0
- package/bundles/mcp/node_modules/call-bound/CHANGELOG.md +42 -0
- package/bundles/mcp/node_modules/call-bound/LICENSE +21 -0
- package/bundles/mcp/node_modules/call-bound/README.md +53 -0
- package/bundles/mcp/node_modules/call-bound/index.d.ts +94 -0
- package/bundles/mcp/node_modules/call-bound/index.js +19 -0
- package/bundles/mcp/node_modules/call-bound/package.json +99 -0
- package/bundles/mcp/node_modules/call-bound/test/index.js +61 -0
- package/bundles/mcp/node_modules/content-disposition/HISTORY.md +72 -0
- package/bundles/mcp/node_modules/content-disposition/LICENSE +22 -0
- package/bundles/mcp/node_modules/content-disposition/README.md +142 -0
- package/bundles/mcp/node_modules/content-disposition/index.js +458 -0
- package/bundles/mcp/node_modules/content-disposition/package.json +43 -0
- package/bundles/mcp/node_modules/content-type/HISTORY.md +29 -0
- package/bundles/mcp/node_modules/content-type/LICENSE +22 -0
- package/bundles/mcp/node_modules/content-type/README.md +94 -0
- package/bundles/mcp/node_modules/content-type/index.js +225 -0
- package/bundles/mcp/node_modules/content-type/package.json +42 -0
- package/bundles/mcp/node_modules/cookie/LICENSE +24 -0
- package/bundles/mcp/node_modules/cookie/README.md +317 -0
- package/bundles/mcp/node_modules/cookie/SECURITY.md +25 -0
- package/bundles/mcp/node_modules/cookie/index.js +335 -0
- package/bundles/mcp/node_modules/cookie/package.json +44 -0
- package/bundles/mcp/node_modules/cookie-signature/History.md +70 -0
- package/bundles/mcp/node_modules/cookie-signature/LICENSE +22 -0
- package/bundles/mcp/node_modules/cookie-signature/Readme.md +23 -0
- package/bundles/mcp/node_modules/cookie-signature/index.js +47 -0
- package/bundles/mcp/node_modules/cookie-signature/package.json +24 -0
- package/bundles/mcp/node_modules/cors/CONTRIBUTING.md +33 -0
- package/bundles/mcp/node_modules/cors/HISTORY.md +58 -0
- package/bundles/mcp/node_modules/cors/LICENSE +22 -0
- package/bundles/mcp/node_modules/cors/README.md +243 -0
- package/bundles/mcp/node_modules/cors/lib/index.js +238 -0
- package/bundles/mcp/node_modules/cors/package.json +41 -0
- package/bundles/mcp/node_modules/cross-spawn/LICENSE +21 -0
- package/bundles/mcp/node_modules/cross-spawn/README.md +89 -0
- package/bundles/mcp/node_modules/cross-spawn/index.js +39 -0
- package/bundles/mcp/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/bundles/mcp/node_modules/cross-spawn/lib/parse.js +91 -0
- package/bundles/mcp/node_modules/cross-spawn/lib/util/escape.js +47 -0
- package/bundles/mcp/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/bundles/mcp/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/bundles/mcp/node_modules/cross-spawn/package.json +73 -0
- package/bundles/mcp/node_modules/debug/LICENSE +20 -0
- package/bundles/mcp/node_modules/debug/README.md +481 -0
- package/bundles/mcp/node_modules/debug/package.json +64 -0
- package/bundles/mcp/node_modules/depd/History.md +103 -0
- package/bundles/mcp/node_modules/depd/LICENSE +22 -0
- package/bundles/mcp/node_modules/depd/Readme.md +280 -0
- package/bundles/mcp/node_modules/depd/index.js +538 -0
- package/bundles/mcp/node_modules/depd/lib/browser/index.js +77 -0
- package/bundles/mcp/node_modules/depd/package.json +45 -0
- package/bundles/mcp/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/dunder-proto/.nycrc +13 -0
- package/bundles/mcp/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/bundles/mcp/node_modules/dunder-proto/LICENSE +21 -0
- package/bundles/mcp/node_modules/dunder-proto/README.md +54 -0
- package/bundles/mcp/node_modules/dunder-proto/get.d.ts +5 -0
- package/bundles/mcp/node_modules/dunder-proto/get.js +30 -0
- package/bundles/mcp/node_modules/dunder-proto/package.json +76 -0
- package/bundles/mcp/node_modules/dunder-proto/set.d.ts +5 -0
- package/bundles/mcp/node_modules/dunder-proto/set.js +35 -0
- package/bundles/mcp/node_modules/dunder-proto/test/get.js +34 -0
- package/bundles/mcp/node_modules/dunder-proto/test/index.js +4 -0
- package/bundles/mcp/node_modules/dunder-proto/test/set.js +50 -0
- package/bundles/mcp/node_modules/ee-first/LICENSE +22 -0
- package/bundles/mcp/node_modules/ee-first/README.md +80 -0
- package/bundles/mcp/node_modules/ee-first/index.js +95 -0
- package/bundles/mcp/node_modules/ee-first/package.json +29 -0
- package/bundles/mcp/node_modules/encodeurl/LICENSE +22 -0
- package/bundles/mcp/node_modules/encodeurl/README.md +109 -0
- package/bundles/mcp/node_modules/encodeurl/index.js +60 -0
- package/bundles/mcp/node_modules/encodeurl/package.json +40 -0
- package/bundles/mcp/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/es-define-property/.nycrc +9 -0
- package/bundles/mcp/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/bundles/mcp/node_modules/es-define-property/LICENSE +21 -0
- package/bundles/mcp/node_modules/es-define-property/README.md +49 -0
- package/bundles/mcp/node_modules/es-define-property/index.d.ts +3 -0
- package/bundles/mcp/node_modules/es-define-property/index.js +14 -0
- package/bundles/mcp/node_modules/es-define-property/package.json +81 -0
- package/bundles/mcp/node_modules/es-define-property/test/index.js +56 -0
- package/bundles/mcp/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/es-errors/CHANGELOG.md +40 -0
- package/bundles/mcp/node_modules/es-errors/LICENSE +21 -0
- package/bundles/mcp/node_modules/es-errors/README.md +55 -0
- package/bundles/mcp/node_modules/es-errors/eval.d.ts +3 -0
- package/bundles/mcp/node_modules/es-errors/eval.js +4 -0
- package/bundles/mcp/node_modules/es-errors/index.d.ts +3 -0
- package/bundles/mcp/node_modules/es-errors/index.js +4 -0
- package/bundles/mcp/node_modules/es-errors/package.json +80 -0
- package/bundles/mcp/node_modules/es-errors/range.d.ts +3 -0
- package/bundles/mcp/node_modules/es-errors/range.js +4 -0
- package/bundles/mcp/node_modules/es-errors/ref.d.ts +3 -0
- package/bundles/mcp/node_modules/es-errors/ref.js +4 -0
- package/bundles/mcp/node_modules/es-errors/syntax.d.ts +3 -0
- package/bundles/mcp/node_modules/es-errors/syntax.js +4 -0
- package/bundles/mcp/node_modules/es-errors/test/index.js +19 -0
- package/bundles/mcp/node_modules/es-errors/type.d.ts +3 -0
- package/bundles/mcp/node_modules/es-errors/type.js +4 -0
- package/bundles/mcp/node_modules/es-errors/uri.d.ts +3 -0
- package/bundles/mcp/node_modules/es-errors/uri.js +4 -0
- package/bundles/mcp/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/bundles/mcp/node_modules/es-object-atoms/LICENSE +21 -0
- package/bundles/mcp/node_modules/es-object-atoms/README.md +63 -0
- package/bundles/mcp/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/bundles/mcp/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/bundles/mcp/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/bundles/mcp/node_modules/es-object-atoms/ToObject.js +10 -0
- package/bundles/mcp/node_modules/es-object-atoms/index.d.ts +3 -0
- package/bundles/mcp/node_modules/es-object-atoms/index.js +4 -0
- package/bundles/mcp/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/bundles/mcp/node_modules/es-object-atoms/isObject.js +6 -0
- package/bundles/mcp/node_modules/es-object-atoms/package.json +80 -0
- package/bundles/mcp/node_modules/es-object-atoms/test/index.js +38 -0
- package/bundles/mcp/node_modules/escape-html/LICENSE +24 -0
- package/bundles/mcp/node_modules/escape-html/Readme.md +43 -0
- package/bundles/mcp/node_modules/escape-html/index.js +78 -0
- package/bundles/mcp/node_modules/escape-html/package.json +24 -0
- package/bundles/mcp/node_modules/etag/HISTORY.md +83 -0
- package/bundles/mcp/node_modules/etag/LICENSE +22 -0
- package/bundles/mcp/node_modules/etag/README.md +159 -0
- package/bundles/mcp/node_modules/etag/index.js +131 -0
- package/bundles/mcp/node_modules/etag/package.json +47 -0
- package/bundles/mcp/node_modules/eventsource/LICENSE +22 -0
- package/bundles/mcp/node_modules/eventsource/README.md +167 -0
- package/bundles/mcp/node_modules/eventsource/dist/index.cjs +273 -0
- package/bundles/mcp/node_modules/eventsource/dist/index.cjs.map +1 -0
- package/bundles/mcp/node_modules/eventsource/dist/index.d.cts +332 -0
- package/bundles/mcp/node_modules/eventsource/dist/index.d.ts +332 -0
- package/bundles/mcp/node_modules/eventsource/dist/index.js +273 -0
- package/bundles/mcp/node_modules/eventsource/dist/index.js.map +1 -0
- package/bundles/mcp/node_modules/eventsource/package.json +130 -0
- package/bundles/mcp/node_modules/eventsource-parser/LICENSE +21 -0
- package/bundles/mcp/node_modules/eventsource-parser/README.md +126 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/index.cjs +106 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/index.cjs.map +1 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/index.d.cts +144 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/index.d.ts +144 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/index.js +106 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/index.js.map +1 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/stream.cjs +28 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/stream.cjs.map +1 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/stream.d.cts +118 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/stream.d.ts +118 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/stream.js +29 -0
- package/bundles/mcp/node_modules/eventsource-parser/dist/stream.js.map +1 -0
- package/bundles/mcp/node_modules/eventsource-parser/package.json +115 -0
- package/bundles/mcp/node_modules/eventsource-parser/stream.js +2 -0
- package/bundles/mcp/node_modules/express/LICENSE +24 -0
- package/bundles/mcp/node_modules/express/Readme.md +276 -0
- package/bundles/mcp/node_modules/express/index.js +11 -0
- package/bundles/mcp/node_modules/express/lib/application.js +631 -0
- package/bundles/mcp/node_modules/express/lib/express.js +81 -0
- package/bundles/mcp/node_modules/express/lib/request.js +514 -0
- package/bundles/mcp/node_modules/express/lib/response.js +1053 -0
- package/bundles/mcp/node_modules/express/lib/utils.js +271 -0
- package/bundles/mcp/node_modules/express/lib/view.js +205 -0
- package/bundles/mcp/node_modules/express/package.json +99 -0
- package/bundles/mcp/node_modules/express-rate-limit/dist/index.cjs +959 -0
- package/bundles/mcp/node_modules/express-rate-limit/dist/index.d.cts +642 -0
- package/bundles/mcp/node_modules/express-rate-limit/dist/index.d.mts +642 -0
- package/bundles/mcp/node_modules/express-rate-limit/dist/index.d.ts +642 -0
- package/bundles/mcp/node_modules/express-rate-limit/dist/index.mjs +929 -0
- package/bundles/mcp/node_modules/express-rate-limit/license.md +20 -0
- package/bundles/mcp/node_modules/express-rate-limit/package.json +112 -0
- package/bundles/mcp/node_modules/express-rate-limit/readme.md +151 -0
- package/bundles/mcp/node_modules/fast-deep-equal/LICENSE +21 -0
- package/bundles/mcp/node_modules/fast-deep-equal/README.md +96 -0
- package/bundles/mcp/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/bundles/mcp/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/bundles/mcp/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/bundles/mcp/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/bundles/mcp/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/bundles/mcp/node_modules/fast-deep-equal/index.js +46 -0
- package/bundles/mcp/node_modules/fast-deep-equal/package.json +61 -0
- package/bundles/mcp/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/bundles/mcp/node_modules/fast-deep-equal/react.js +53 -0
- package/bundles/mcp/node_modules/fast-uri/.gitattributes +2 -0
- package/bundles/mcp/node_modules/fast-uri/.github/.stale.yml +21 -0
- package/bundles/mcp/node_modules/fast-uri/.github/dependabot.yml +13 -0
- package/bundles/mcp/node_modules/fast-uri/.github/tests_checker.yml +8 -0
- package/bundles/mcp/node_modules/fast-uri/.github/workflows/ci.yml +101 -0
- package/bundles/mcp/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
- package/bundles/mcp/node_modules/fast-uri/LICENSE +32 -0
- package/bundles/mcp/node_modules/fast-uri/README.md +143 -0
- package/bundles/mcp/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
- package/bundles/mcp/node_modules/fast-uri/benchmark/equal.mjs +51 -0
- package/bundles/mcp/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
- package/bundles/mcp/node_modules/fast-uri/benchmark/package.json +17 -0
- package/bundles/mcp/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
- package/bundles/mcp/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
- package/bundles/mcp/node_modules/fast-uri/eslint.config.js +6 -0
- package/bundles/mcp/node_modules/fast-uri/index.js +340 -0
- package/bundles/mcp/node_modules/fast-uri/lib/schemes.js +267 -0
- package/bundles/mcp/node_modules/fast-uri/lib/utils.js +336 -0
- package/bundles/mcp/node_modules/fast-uri/package.json +69 -0
- package/bundles/mcp/node_modules/fast-uri/test/ajv.test.js +43 -0
- package/bundles/mcp/node_modules/fast-uri/test/equal.test.js +108 -0
- package/bundles/mcp/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
- package/bundles/mcp/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
- package/bundles/mcp/node_modules/fast-uri/test/parse.test.js +318 -0
- package/bundles/mcp/node_modules/fast-uri/test/resolve.test.js +78 -0
- package/bundles/mcp/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
- package/bundles/mcp/node_modules/fast-uri/test/serialize.test.js +151 -0
- package/bundles/mcp/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
- package/bundles/mcp/node_modules/fast-uri/test/uri-js.test.js +912 -0
- package/bundles/mcp/node_modules/fast-uri/test/util.test.js +38 -0
- package/bundles/mcp/node_modules/fast-uri/types/index.d.ts +60 -0
- package/bundles/mcp/node_modules/fast-uri/types/index.test-d.ts +17 -0
- package/bundles/mcp/node_modules/finalhandler/HISTORY.md +239 -0
- package/bundles/mcp/node_modules/finalhandler/LICENSE +22 -0
- package/bundles/mcp/node_modules/finalhandler/README.md +150 -0
- package/bundles/mcp/node_modules/finalhandler/index.js +293 -0
- package/bundles/mcp/node_modules/finalhandler/package.json +47 -0
- package/bundles/mcp/node_modules/forwarded/HISTORY.md +21 -0
- package/bundles/mcp/node_modules/forwarded/LICENSE +22 -0
- package/bundles/mcp/node_modules/forwarded/README.md +57 -0
- package/bundles/mcp/node_modules/forwarded/index.js +90 -0
- package/bundles/mcp/node_modules/forwarded/package.json +45 -0
- package/bundles/mcp/node_modules/fresh/HISTORY.md +80 -0
- package/bundles/mcp/node_modules/fresh/LICENSE +23 -0
- package/bundles/mcp/node_modules/fresh/README.md +117 -0
- package/bundles/mcp/node_modules/fresh/index.js +136 -0
- package/bundles/mcp/node_modules/fresh/package.json +46 -0
- package/bundles/mcp/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/bundles/mcp/node_modules/function-bind/.nycrc +13 -0
- package/bundles/mcp/node_modules/function-bind/CHANGELOG.md +136 -0
- package/bundles/mcp/node_modules/function-bind/LICENSE +20 -0
- package/bundles/mcp/node_modules/function-bind/README.md +46 -0
- package/bundles/mcp/node_modules/function-bind/implementation.js +84 -0
- package/bundles/mcp/node_modules/function-bind/index.js +5 -0
- package/bundles/mcp/node_modules/function-bind/package.json +87 -0
- package/bundles/mcp/node_modules/function-bind/test/index.js +252 -0
- package/bundles/mcp/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/get-intrinsic/.nycrc +9 -0
- package/bundles/mcp/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/bundles/mcp/node_modules/get-intrinsic/LICENSE +21 -0
- package/bundles/mcp/node_modules/get-intrinsic/README.md +71 -0
- package/bundles/mcp/node_modules/get-intrinsic/index.js +378 -0
- package/bundles/mcp/node_modules/get-intrinsic/package.json +97 -0
- package/bundles/mcp/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/bundles/mcp/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/get-proto/.nycrc +9 -0
- package/bundles/mcp/node_modules/get-proto/CHANGELOG.md +21 -0
- package/bundles/mcp/node_modules/get-proto/LICENSE +21 -0
- package/bundles/mcp/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/bundles/mcp/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/bundles/mcp/node_modules/get-proto/README.md +50 -0
- package/bundles/mcp/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/bundles/mcp/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/bundles/mcp/node_modules/get-proto/index.d.ts +5 -0
- package/bundles/mcp/node_modules/get-proto/index.js +27 -0
- package/bundles/mcp/node_modules/get-proto/package.json +81 -0
- package/bundles/mcp/node_modules/get-proto/test/index.js +68 -0
- package/bundles/mcp/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/gopd/CHANGELOG.md +45 -0
- package/bundles/mcp/node_modules/gopd/LICENSE +21 -0
- package/bundles/mcp/node_modules/gopd/README.md +40 -0
- package/bundles/mcp/node_modules/gopd/gOPD.d.ts +1 -0
- package/bundles/mcp/node_modules/gopd/gOPD.js +4 -0
- package/bundles/mcp/node_modules/gopd/index.d.ts +5 -0
- package/bundles/mcp/node_modules/gopd/index.js +15 -0
- package/bundles/mcp/node_modules/gopd/package.json +77 -0
- package/bundles/mcp/node_modules/gopd/test/index.js +36 -0
- package/bundles/mcp/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/has-symbols/.nycrc +9 -0
- package/bundles/mcp/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/bundles/mcp/node_modules/has-symbols/LICENSE +21 -0
- package/bundles/mcp/node_modules/has-symbols/README.md +46 -0
- package/bundles/mcp/node_modules/has-symbols/index.d.ts +3 -0
- package/bundles/mcp/node_modules/has-symbols/index.js +14 -0
- package/bundles/mcp/node_modules/has-symbols/package.json +111 -0
- package/bundles/mcp/node_modules/has-symbols/shams.d.ts +3 -0
- package/bundles/mcp/node_modules/has-symbols/shams.js +45 -0
- package/bundles/mcp/node_modules/has-symbols/test/index.js +22 -0
- package/bundles/mcp/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/bundles/mcp/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/bundles/mcp/node_modules/has-symbols/test/tests.js +58 -0
- package/bundles/mcp/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/hasown/.nycrc +13 -0
- package/bundles/mcp/node_modules/hasown/CHANGELOG.md +40 -0
- package/bundles/mcp/node_modules/hasown/LICENSE +21 -0
- package/bundles/mcp/node_modules/hasown/README.md +40 -0
- package/bundles/mcp/node_modules/hasown/index.d.ts +3 -0
- package/bundles/mcp/node_modules/hasown/index.js +8 -0
- package/bundles/mcp/node_modules/hasown/package.json +92 -0
- package/bundles/mcp/node_modules/hono/LICENSE +21 -0
- package/bundles/mcp/node_modules/hono/README.md +85 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/aws-lambda/conninfo.js +24 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/aws-lambda/handler.js +366 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/aws-lambda/index.js +9 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/bun/conninfo.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/bun/index.js +16 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/bun/serve-static.js +30 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/bun/server.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/bun/ssg.js +17 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/bun/websocket.js +71 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-pages/conninfo.js +9 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +67 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-pages/index.js +9 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +9 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/index.js +9 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +8 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +22 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +35 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +41 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/deno/conninfo.js +14 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/deno/index.js +12 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/deno/serve-static.js +40 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/deno/ssg.js +18 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/deno/websocket.js +28 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +9 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/lambda-edge/handler.js +80 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/lambda-edge/index.js +7 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/netlify/conninfo.js +9 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/netlify/handler.js +9 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/netlify/index.js +2 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/netlify/mod.js +7 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/service-worker/handler.js +20 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/service-worker/index.js +11 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/vercel/conninfo.js +10 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/vercel/handler.js +7 -0
- package/bundles/mcp/node_modules/hono/dist/adapter/vercel/index.js +7 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/aws-lambda/conninfo.js +46 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +397 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +34 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +49 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/index.js +45 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +52 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/server.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/ssg.js +40 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/bun/websocket.js +96 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-pages/conninfo.js +31 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +91 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +34 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +31 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +33 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +30 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +44 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +57 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +63 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +36 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/index.js +38 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +62 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/ssg.js +41 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/deno/websocket.js +50 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +31 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +114 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +30 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/netlify/conninfo.js +31 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/netlify/handler.js +31 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/netlify/index.js +21 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/netlify/mod.js +30 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +42 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/service-worker/index.js +34 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/service-worker/types.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +32 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/vercel/handler.js +29 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/adapter/vercel/index.js +30 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/client/client.js +195 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/client/fetch-result-please.js +85 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/client/index.js +32 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/client/types.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/client/utils.js +105 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/compose.js +68 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/context.js +435 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/accepts/accepts.js +43 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/accepts/index.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/adapter/index.js +81 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/conninfo/index.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/conninfo/types.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/cookie/index.js +130 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/css/common.js +222 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/css/index.js +142 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/dev/index.js +79 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/factory/index.js +54 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/html/index.js +64 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/proxy/index.js +111 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/route/index.js +71 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/ssg/index.js +43 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/ssg/middleware.js +73 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/ssg/plugins.js +70 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/ssg/ssg.js +316 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/ssg/utils.js +84 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/streaming/index.js +35 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/streaming/sse.js +90 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/streaming/stream.js +56 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/streaming/text.js +34 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/streaming/utils.js +35 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/testing/index.js +33 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/helper/websocket/index.js +81 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/hono-base.js +400 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/hono.js +43 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/http-exception.js +57 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/index.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/base.js +374 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/children.js +44 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/components.js +201 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/constants.js +42 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/context.js +62 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/client.js +76 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/components.js +55 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/context.js +71 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/css.js +161 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +74 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/index.js +181 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +399 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +52 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +32 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/render.js +619 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/server.js +67 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/dom/utils.js +32 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/hooks/index.js +370 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/index.js +138 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +50 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +189 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +41 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +68 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/streaming.js +177 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/types.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/jsx/utils.js +50 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +88 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +105 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/body-limit/index.js +84 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/cache/index.js +111 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/combine/index.js +101 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/compress/index.js +61 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/context-storage/index.js +47 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/cors/index.js +109 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/csrf/index.js +77 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/etag/digest.js +55 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/etag/index.js +95 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +124 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +82 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/jwk/index.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +134 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/jwt/index.js +38 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +140 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/language/index.js +35 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/language/language.js +221 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/logger/index.js +72 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/method-override/index.js +104 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/powered-by/index.js +32 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +37 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/request-id/index.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +43 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +29 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +189 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/serve-static/index.js +99 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/serve-static/path.js +40 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/timeout/index.js +47 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/timing/index.js +35 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/timing/timing.js +128 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +62 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/package.json +3 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/preset/quick.js +38 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/preset/tiny.js +34 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/request/constants.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/request.js +324 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/linear-router/index.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/linear-router/router.js +140 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/pattern-router/index.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/pattern-router/router.js +70 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +34 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +48 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +134 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +166 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +208 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +81 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/smart-router/index.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/smart-router/router.js +80 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/trie-router/index.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/trie-router/node.js +201 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router/trie-router/router.js +48 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/router.js +40 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/types.js +28 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/accept.js +245 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/basic-auth.js +45 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/body.js +97 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/buffer.js +102 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/color.js +48 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/compress.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/concurrent.js +61 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/constants.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/cookie.js +177 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/crypto.js +69 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/encode.js +54 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/filepath.js +58 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/handler.js +36 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/headers.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/html.js +150 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/http-status.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/ipaddr.js +129 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/index.js +28 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/jwa.js +42 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/jws.js +215 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/jwt.js +213 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/types.js +161 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/jwt/utf8.js +30 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/mime.js +108 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/stream.js +101 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/types.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/utils/url.js +256 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/validator/index.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/validator/utils.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/cjs/validator/validator.js +108 -0
- package/bundles/mcp/node_modules/hono/dist/client/client.js +180 -0
- package/bundles/mcp/node_modules/hono/dist/client/fetch-result-please.js +62 -0
- package/bundles/mcp/node_modules/hono/dist/client/index.js +8 -0
- package/bundles/mcp/node_modules/hono/dist/client/types.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/client/utils.js +76 -0
- package/bundles/mcp/node_modules/hono/dist/compose.js +46 -0
- package/bundles/mcp/node_modules/hono/dist/context.js +412 -0
- package/bundles/mcp/node_modules/hono/dist/helper/accepts/accepts.js +20 -0
- package/bundles/mcp/node_modules/hono/dist/helper/accepts/index.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/helper/adapter/index.js +56 -0
- package/bundles/mcp/node_modules/hono/dist/helper/conninfo/index.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/helper/conninfo/types.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/helper/cookie/index.js +102 -0
- package/bundles/mcp/node_modules/hono/dist/helper/css/common.js +185 -0
- package/bundles/mcp/node_modules/hono/dist/helper/css/index.js +125 -0
- package/bundles/mcp/node_modules/hono/dist/helper/dev/index.js +55 -0
- package/bundles/mcp/node_modules/hono/dist/helper/factory/index.js +30 -0
- package/bundles/mcp/node_modules/hono/dist/helper/html/index.js +41 -0
- package/bundles/mcp/node_modules/hono/dist/helper/proxy/index.js +89 -0
- package/bundles/mcp/node_modules/hono/dist/helper/route/index.js +46 -0
- package/bundles/mcp/node_modules/hono/dist/helper/ssg/index.js +19 -0
- package/bundles/mcp/node_modules/hono/dist/helper/ssg/middleware.js +45 -0
- package/bundles/mcp/node_modules/hono/dist/helper/ssg/plugins.js +47 -0
- package/bundles/mcp/node_modules/hono/dist/helper/ssg/ssg.js +287 -0
- package/bundles/mcp/node_modules/hono/dist/helper/ssg/utils.js +59 -0
- package/bundles/mcp/node_modules/hono/dist/helper/streaming/index.js +10 -0
- package/bundles/mcp/node_modules/hono/dist/helper/streaming/sse.js +67 -0
- package/bundles/mcp/node_modules/hono/dist/helper/streaming/stream.js +34 -0
- package/bundles/mcp/node_modules/hono/dist/helper/streaming/text.js +12 -0
- package/bundles/mcp/node_modules/hono/dist/helper/streaming/utils.js +13 -0
- package/bundles/mcp/node_modules/hono/dist/helper/testing/index.js +11 -0
- package/bundles/mcp/node_modules/hono/dist/helper/websocket/index.js +57 -0
- package/bundles/mcp/node_modules/hono/dist/hono-base.js +378 -0
- package/bundles/mcp/node_modules/hono/dist/hono.js +21 -0
- package/bundles/mcp/node_modules/hono/dist/http-exception.js +35 -0
- package/bundles/mcp/node_modules/hono/dist/index.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/base.js +331 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/children.js +21 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/components.js +178 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/constants.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/context.js +38 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/client.js +53 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/components.js +32 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/context.js +48 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/css.js +143 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/hooks/index.js +48 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/index.js +142 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +374 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +19 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/jsx-runtime.js +8 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/render.js +595 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/server.js +33 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/dom/utils.js +10 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/hooks/index.js +328 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/index.js +103 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/intrinsic-element/common.js +24 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/intrinsic-element/components.js +165 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/jsx-dev-runtime.js +18 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/jsx-runtime.js +41 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/streaming.js +153 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/types.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/jsx/utils.js +27 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/basic-auth/index.js +66 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/bearer-auth/index.js +83 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/body-limit/index.js +62 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/cache/index.js +89 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/combine/index.js +77 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/compress/index.js +39 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/context-storage/index.js +23 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/cors/index.js +87 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/csrf/index.js +55 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/etag/digest.js +33 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/etag/index.js +72 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/ip-restriction/index.js +107 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/jsx-renderer/index.js +58 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/jwk/index.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/jwk/jwk.js +112 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/jwt/index.js +11 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/jwt/jwt.js +114 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/language/index.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/language/language.js +190 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/logger/index.js +44 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/method-override/index.js +82 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/powered-by/index.js +10 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/pretty-json/index.js +15 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/request-id/index.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/request-id/request-id.js +21 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/secure-headers/index.js +6 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +166 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/serve-static/index.js +77 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/serve-static/path.js +18 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/timeout/index.js +25 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/timing/index.js +9 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/timing/timing.js +102 -0
- package/bundles/mcp/node_modules/hono/dist/middleware/trailing-slash/index.js +39 -0
- package/bundles/mcp/node_modules/hono/dist/preset/quick.js +16 -0
- package/bundles/mcp/node_modules/hono/dist/preset/tiny.js +12 -0
- package/bundles/mcp/node_modules/hono/dist/request/constants.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/request.js +301 -0
- package/bundles/mcp/node_modules/hono/dist/router/linear-router/index.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/router/linear-router/router.js +118 -0
- package/bundles/mcp/node_modules/hono/dist/router/pattern-router/index.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/router/pattern-router/router.js +48 -0
- package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/index.js +9 -0
- package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/matcher.js +25 -0
- package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/node.js +111 -0
- package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +142 -0
- package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/router.js +190 -0
- package/bundles/mcp/node_modules/hono/dist/router/reg-exp-router/trie.js +59 -0
- package/bundles/mcp/node_modules/hono/dist/router/smart-router/index.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/router/smart-router/router.js +58 -0
- package/bundles/mcp/node_modules/hono/dist/router/trie-router/index.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/router/trie-router/node.js +179 -0
- package/bundles/mcp/node_modules/hono/dist/router/trie-router/router.js +26 -0
- package/bundles/mcp/node_modules/hono/dist/router.js +14 -0
- package/bundles/mcp/node_modules/hono/dist/tsconfig.build.tsbuildinfo +1 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/aws-lambda/conninfo.d.ts +27 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +184 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +144 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/index.d.ts +10 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +3 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/server.d.ts +12 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +13 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +39 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-pages/conninfo.d.ts +21 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +33 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +2 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +4 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +16 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +5 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +2 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/deno/index.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +3 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +13 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +2 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +2 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +87 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/netlify/conninfo.d.ts +21 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +2 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/netlify/index.d.ts +5 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +2 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +16 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +28 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +12 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +2 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +2 -0
- package/bundles/mcp/node_modules/hono/dist/types/adapter/vercel/index.d.ts +6 -0
- package/bundles/mcp/node_modules/hono/dist/types/client/client.d.ts +4 -0
- package/bundles/mcp/node_modules/hono/dist/types/client/fetch-result-please.d.ts +35 -0
- package/bundles/mcp/node_modules/hono/dist/types/client/index.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/client/types.d.ts +209 -0
- package/bundles/mcp/node_modules/hono/dist/types/client/utils.d.ts +18 -0
- package/bundles/mcp/node_modules/hono/dist/types/compose.d.ts +14 -0
- package/bundles/mcp/node_modules/hono/dist/types/context.d.ts +455 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +30 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/accepts/index.d.ts +5 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/adapter/index.d.ts +12 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/conninfo/index.d.ts +5 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/conninfo/types.d.ts +36 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/cookie/index.d.ts +24 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/css/common.d.ts +42 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/css/index.d.ts +73 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/dev/index.d.ts +20 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/factory/index.d.ts +82 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/html/index.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/proxy/index.d.ts +72 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/route/index.d.ts +75 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/ssg/index.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +44 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/ssg/plugins.d.ts +27 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +91 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/ssg/utils.d.ts +15 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/streaming/index.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/streaming/sse.d.ts +13 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/streaming/stream.d.ts +3 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/streaming/text.d.ts +3 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/streaming/utils.d.ts +1 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/testing/index.d.ts +12 -0
- package/bundles/mcp/node_modules/hono/dist/types/helper/websocket/index.d.ts +69 -0
- package/bundles/mcp/node_modules/hono/dist/types/hono-base.d.ts +220 -0
- package/bundles/mcp/node_modules/hono/dist/types/hono.d.ts +19 -0
- package/bundles/mcp/node_modules/hono/dist/types/http-exception.d.ts +59 -0
- package/bundles/mcp/node_modules/hono/dist/types/index.d.ts +36 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/base.d.ts +58 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/children.d.ts +9 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/components.d.ts +15 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/constants.d.ts +6 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/context.d.ts +12 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/client.d.ts +31 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/components.d.ts +10 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/context.d.ts +3 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/css.d.ts +77 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +39 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/index.d.ts +88 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +16 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/render.d.ts +73 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/server.d.ts +106 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/dom/utils.d.ts +1 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/hooks/index.d.ts +45 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/index.d.ts +75 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +6 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +13 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +722 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +12 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/streaming.d.ts +36 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/types.d.ts +35 -0
- package/bundles/mcp/node_modules/hono/dist/types/jsx/utils.d.ts +2 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +75 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +91 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +45 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/cache/index.d.ts +41 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/combine/index.d.ts +85 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/compress/index.d.ts +29 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +40 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/cors/index.d.ts +55 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/csrf/index.d.ts +78 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/etag/digest.d.ts +1 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/etag/index.d.ts +42 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +31 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +77 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/jwk/index.d.ts +1 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +54 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/jwt/index.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +67 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/language/index.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/language/language.d.ts +102 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/logger/index.d.ts +24 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/method-override/index.d.ts +48 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +29 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +42 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/request-id/index.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +37 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +14 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +109 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +31 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +5 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/timeout/index.d.ts +31 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/timing/index.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/timing/timing.d.ts +129 -0
- package/bundles/mcp/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +78 -0
- package/bundles/mcp/node_modules/hono/dist/types/package.json +3 -0
- package/bundles/mcp/node_modules/hono/dist/types/preset/quick.d.ts +10 -0
- package/bundles/mcp/node_modules/hono/dist/types/preset/tiny.d.ts +10 -0
- package/bundles/mcp/node_modules/hono/dist/types/request/constants.d.ts +1 -0
- package/bundles/mcp/node_modules/hono/dist/types/request.d.ts +313 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/linear-router/index.d.ts +5 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/linear-router/router.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/pattern-router/index.d.ts +5 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/pattern-router/router.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +6 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +10 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +17 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +11 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/smart-router/index.d.ts +5 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/smart-router/router.d.ts +11 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/trie-router/index.d.ts +5 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/trie-router/node.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/router/trie-router/router.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/router.d.ts +97 -0
- package/bundles/mcp/node_modules/hono/dist/types/types.d.ts +573 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/accept.d.ts +6 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/basic-auth.d.ts +5 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/body.d.ts +79 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/buffer.d.ts +17 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/color.d.ts +21 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/compress.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/concurrent.d.ts +11 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/constants.d.ts +4 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/cookie.d.ts +40 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/crypto.d.ts +15 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/encode.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/filepath.d.ts +12 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/handler.d.ts +6 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/headers.d.ts +8 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/html.d.ts +44 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/http-status.d.ts +32 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/ipaddr.d.ts +40 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/index.d.ts +18 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +23 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/jws.d.ts +12 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +43 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/types.d.ts +86 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +6 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/mime.d.ts +70 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/stream.d.ts +31 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/types.d.ts +74 -0
- package/bundles/mcp/node_modules/hono/dist/types/utils/url.d.ts +39 -0
- package/bundles/mcp/node_modules/hono/dist/types/validator/index.d.ts +7 -0
- package/bundles/mcp/node_modules/hono/dist/types/validator/utils.d.ts +29 -0
- package/bundles/mcp/node_modules/hono/dist/types/validator/validator.d.ts +16 -0
- package/bundles/mcp/node_modules/hono/dist/types.js +6 -0
- package/bundles/mcp/node_modules/hono/dist/utils/accept.js +223 -0
- package/bundles/mcp/node_modules/hono/dist/utils/basic-auth.js +23 -0
- package/bundles/mcp/node_modules/hono/dist/utils/body.js +75 -0
- package/bundles/mcp/node_modules/hono/dist/utils/buffer.js +77 -0
- package/bundles/mcp/node_modules/hono/dist/utils/color.js +25 -0
- package/bundles/mcp/node_modules/hono/dist/utils/compress.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/utils/concurrent.js +39 -0
- package/bundles/mcp/node_modules/hono/dist/utils/constants.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/utils/cookie.js +152 -0
- package/bundles/mcp/node_modules/hono/dist/utils/crypto.js +44 -0
- package/bundles/mcp/node_modules/hono/dist/utils/encode.js +29 -0
- package/bundles/mcp/node_modules/hono/dist/utils/filepath.js +35 -0
- package/bundles/mcp/node_modules/hono/dist/utils/handler.js +13 -0
- package/bundles/mcp/node_modules/hono/dist/utils/headers.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/utils/html.js +123 -0
- package/bundles/mcp/node_modules/hono/dist/utils/http-status.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/utils/ipaddr.js +102 -0
- package/bundles/mcp/node_modules/hono/dist/utils/jwt/index.js +6 -0
- package/bundles/mcp/node_modules/hono/dist/utils/jwt/jwa.js +20 -0
- package/bundles/mcp/node_modules/hono/dist/utils/jwt/jws.js +192 -0
- package/bundles/mcp/node_modules/hono/dist/utils/jwt/jwt.js +201 -0
- package/bundles/mcp/node_modules/hono/dist/utils/jwt/types.js +124 -0
- package/bundles/mcp/node_modules/hono/dist/utils/jwt/utf8.js +7 -0
- package/bundles/mcp/node_modules/hono/dist/utils/mime.js +84 -0
- package/bundles/mcp/node_modules/hono/dist/utils/stream.js +79 -0
- package/bundles/mcp/node_modules/hono/dist/utils/types.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/utils/url.js +222 -0
- package/bundles/mcp/node_modules/hono/dist/validator/index.js +5 -0
- package/bundles/mcp/node_modules/hono/dist/validator/utils.js +0 -0
- package/bundles/mcp/node_modules/hono/dist/validator/validator.js +86 -0
- package/bundles/mcp/node_modules/hono/package.json +692 -0
- package/bundles/mcp/node_modules/http-errors/HISTORY.md +186 -0
- package/bundles/mcp/node_modules/http-errors/LICENSE +23 -0
- package/bundles/mcp/node_modules/http-errors/README.md +169 -0
- package/bundles/mcp/node_modules/http-errors/index.js +290 -0
- package/bundles/mcp/node_modules/http-errors/package.json +54 -0
- package/bundles/mcp/node_modules/iconv-lite/LICENSE +21 -0
- package/bundles/mcp/node_modules/iconv-lite/README.md +138 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/dbcs-codec.js +532 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/dbcs-data.js +185 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/index.js +23 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/internal.js +218 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/sbcs-codec.js +75 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/sbcs-data.js +178 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/utf16.js +187 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/utf32.js +307 -0
- package/bundles/mcp/node_modules/iconv-lite/encodings/utf7.js +283 -0
- package/bundles/mcp/node_modules/iconv-lite/lib/bom-handling.js +48 -0
- package/bundles/mcp/node_modules/iconv-lite/lib/helpers/merge-exports.js +13 -0
- package/bundles/mcp/node_modules/iconv-lite/lib/index.d.ts +129 -0
- package/bundles/mcp/node_modules/iconv-lite/lib/index.js +182 -0
- package/bundles/mcp/node_modules/iconv-lite/lib/streams.js +105 -0
- package/bundles/mcp/node_modules/iconv-lite/package.json +70 -0
- package/bundles/mcp/node_modules/iconv-lite/types/encodings.d.ts +423 -0
- package/bundles/mcp/node_modules/inherits/LICENSE +16 -0
- package/bundles/mcp/node_modules/inherits/README.md +42 -0
- package/bundles/mcp/node_modules/inherits/inherits.js +9 -0
- package/bundles/mcp/node_modules/inherits/inherits_browser.js +27 -0
- package/bundles/mcp/node_modules/inherits/package.json +29 -0
- package/bundles/mcp/node_modules/ip-address/LICENSE +19 -0
- package/bundles/mcp/node_modules/ip-address/README.md +105 -0
- package/bundles/mcp/node_modules/ip-address/dist/address-error.d.ts +5 -0
- package/bundles/mcp/node_modules/ip-address/dist/address-error.d.ts.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/address-error.js +12 -0
- package/bundles/mcp/node_modules/ip-address/dist/address-error.js.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/common.d.ts +15 -0
- package/bundles/mcp/node_modules/ip-address/dist/common.d.ts.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/common.js +46 -0
- package/bundles/mcp/node_modules/ip-address/dist/common.js.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/ip-address.d.ts +8 -0
- package/bundles/mcp/node_modules/ip-address/dist/ip-address.d.ts.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/ip-address.js +35 -0
- package/bundles/mcp/node_modules/ip-address/dist/ip-address.js.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/ipv4.d.ts +193 -0
- package/bundles/mcp/node_modules/ip-address/dist/ipv4.d.ts.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/ipv4.js +327 -0
- package/bundles/mcp/node_modules/ip-address/dist/ipv4.js.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/ipv6.d.ts +428 -0
- package/bundles/mcp/node_modules/ip-address/dist/ipv6.d.ts.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/ipv6.js +1003 -0
- package/bundles/mcp/node_modules/ip-address/dist/ipv6.js.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/v4/constants.d.ts +5 -0
- package/bundles/mcp/node_modules/ip-address/dist/v4/constants.d.ts.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/v4/constants.js +8 -0
- package/bundles/mcp/node_modules/ip-address/dist/v4/constants.js.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/constants.d.ts +45 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/constants.d.ts.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/constants.js +76 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/constants.js.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/helpers.d.ts +18 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/helpers.d.ts.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/helpers.js +45 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/helpers.js.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/regular-expressions.d.ts +6 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/regular-expressions.d.ts.map +1 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/regular-expressions.js +95 -0
- package/bundles/mcp/node_modules/ip-address/dist/v6/regular-expressions.js.map +1 -0
- package/bundles/mcp/node_modules/ip-address/package.json +78 -0
- package/bundles/mcp/node_modules/ipaddr.js/LICENSE +19 -0
- package/bundles/mcp/node_modules/ipaddr.js/README.md +233 -0
- package/bundles/mcp/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/bundles/mcp/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/bundles/mcp/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/bundles/mcp/node_modules/ipaddr.js/package.json +35 -0
- package/bundles/mcp/node_modules/is-promise/LICENSE +19 -0
- package/bundles/mcp/node_modules/is-promise/index.d.ts +2 -0
- package/bundles/mcp/node_modules/is-promise/index.js +6 -0
- package/bundles/mcp/node_modules/is-promise/index.mjs +3 -0
- package/bundles/mcp/node_modules/is-promise/package.json +30 -0
- package/bundles/mcp/node_modules/is-promise/readme.md +33 -0
- package/bundles/mcp/node_modules/isexe/LICENSE +15 -0
- package/bundles/mcp/node_modules/isexe/README.md +51 -0
- package/bundles/mcp/node_modules/isexe/index.js +57 -0
- package/bundles/mcp/node_modules/isexe/mode.js +41 -0
- package/bundles/mcp/node_modules/isexe/package.json +31 -0
- package/bundles/mcp/node_modules/isexe/test/basic.js +221 -0
- package/bundles/mcp/node_modules/isexe/windows.js +42 -0
- package/bundles/mcp/node_modules/jose/LICENSE.md +21 -0
- package/bundles/mcp/node_modules/jose/README.md +153 -0
- package/bundles/mcp/node_modules/jose/dist/types/index.d.ts +55 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +31 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +65 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +31 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +83 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +31 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +74 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwk/embedded.d.ts +17 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwk/thumbprint.d.ts +32 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwks/local.d.ts +29 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwks/remote.d.ts +237 -0
- package/bundles/mcp/node_modules/jose/dist/types/jws/compact/sign.d.ts +36 -0
- package/bundles/mcp/node_modules/jose/dist/types/jws/compact/verify.d.ts +33 -0
- package/bundles/mcp/node_modules/jose/dist/types/jws/flattened/sign.d.ts +42 -0
- package/bundles/mcp/node_modules/jose/dist/types/jws/flattened/verify.d.ts +33 -0
- package/bundles/mcp/node_modules/jose/dist/types/jws/general/sign.d.ts +53 -0
- package/bundles/mcp/node_modules/jose/dist/types/jws/general/verify.d.ts +33 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwt/decrypt.d.ts +35 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwt/encrypt.d.ts +91 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwt/sign.d.ts +43 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwt/unsecured.d.ts +43 -0
- package/bundles/mcp/node_modules/jose/dist/types/jwt/verify.d.ts +37 -0
- package/bundles/mcp/node_modules/jose/dist/types/key/export.d.ts +33 -0
- package/bundles/mcp/node_modules/jose/dist/types/key/generate_key_pair.d.ts +47 -0
- package/bundles/mcp/node_modules/jose/dist/types/key/generate_secret.d.ts +35 -0
- package/bundles/mcp/node_modules/jose/dist/types/key/import.d.ts +83 -0
- package/bundles/mcp/node_modules/jose/dist/types/types.d.ts +841 -0
- package/bundles/mcp/node_modules/jose/dist/types/util/base64url.d.ts +9 -0
- package/bundles/mcp/node_modules/jose/dist/types/util/decode_jwt.d.ts +18 -0
- package/bundles/mcp/node_modules/jose/dist/types/util/decode_protected_header.d.ts +17 -0
- package/bundles/mcp/node_modules/jose/dist/types/util/errors.d.ts +213 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/index.js +32 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +27 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +27 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +165 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +169 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwe/general/decrypt.js +31 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwe/general/encrypt.js +187 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwk/embedded.js +17 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwk/thumbprint.js +68 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwks/local.js +119 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwks/remote.js +179 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jws/compact/sign.js +18 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jws/compact/verify.js +21 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jws/flattened/sign.js +92 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jws/flattened/verify.js +120 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jws/general/sign.js +73 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jws/general/verify.js +24 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwt/decrypt.js +23 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwt/encrypt.js +108 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwt/sign.js +52 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwt/unsecured.js +63 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/jwt/verify.js +15 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/key/export.js +11 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/key/generate_key_pair.js +97 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/key/generate_secret.js +40 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/key/import.js +57 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/aesgcmkw.js +16 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/aeskw.js +25 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/asn1.js +243 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/base64.js +22 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/buffer_utils.js +43 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/cek.js +19 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/check_cek_length.js +7 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/check_iv_length.js +7 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/check_key_length.js +8 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/check_key_type.js +122 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/crypto_key.js +143 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/decrypt.js +106 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/decrypt_key_management.js +127 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/digest.js +4 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/ecdhes.js +52 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/encrypt.js +74 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/encrypt_key_management.js +92 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/get_sign_verify_key.js +12 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/invalid_key_input.js +27 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/is_disjoint.js +21 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/is_jwk.js +6 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/is_key_like.js +17 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/is_object.js +14 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/iv.js +19 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/jwk_to_key.js +109 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +238 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/key_to_jwk.js +31 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/normalize_key.js +176 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/pbes2kw.js +39 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/private_symbols.js +1 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/rsaes.js +24 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/sign.js +9 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/subtle_dsa.js +31 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/validate_algorithms.js +10 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/validate_crit.js +33 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/lib/verify.js +14 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/util/base64url.js +30 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/util/decode_jwt.js +32 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/util/decode_protected_header.js +34 -0
- package/bundles/mcp/node_modules/jose/dist/webapi/util/errors.js +99 -0
- package/bundles/mcp/node_modules/jose/package.json +200 -0
- package/bundles/mcp/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/bundles/mcp/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/bundles/mcp/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/bundles/mcp/node_modules/json-schema-traverse/LICENSE +21 -0
- package/bundles/mcp/node_modules/json-schema-traverse/README.md +95 -0
- package/bundles/mcp/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/bundles/mcp/node_modules/json-schema-traverse/index.js +93 -0
- package/bundles/mcp/node_modules/json-schema-traverse/package.json +43 -0
- package/bundles/mcp/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/bundles/mcp/node_modules/json-schema-typed/LICENSE.md +57 -0
- package/bundles/mcp/node_modules/json-schema-typed/README.md +108 -0
- package/bundles/mcp/node_modules/json-schema-typed/draft_07.d.ts +882 -0
- package/bundles/mcp/node_modules/json-schema-typed/draft_07.js +328 -0
- package/bundles/mcp/node_modules/json-schema-typed/draft_2019_09.d.ts +1247 -0
- package/bundles/mcp/node_modules/json-schema-typed/draft_2019_09.js +349 -0
- package/bundles/mcp/node_modules/json-schema-typed/draft_2020_12.d.ts +1239 -0
- package/bundles/mcp/node_modules/json-schema-typed/draft_2020_12.js +352 -0
- package/bundles/mcp/node_modules/json-schema-typed/package.json +44 -0
- package/bundles/mcp/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/bundles/mcp/node_modules/math-intrinsics/LICENSE +21 -0
- package/bundles/mcp/node_modules/math-intrinsics/README.md +50 -0
- package/bundles/mcp/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/bundles/mcp/node_modules/math-intrinsics/abs.js +4 -0
- package/bundles/mcp/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/bundles/mcp/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/bundles/mcp/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/bundles/mcp/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/bundles/mcp/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/bundles/mcp/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/bundles/mcp/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/bundles/mcp/node_modules/math-intrinsics/floor.js +4 -0
- package/bundles/mcp/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/bundles/mcp/node_modules/math-intrinsics/isFinite.js +12 -0
- package/bundles/mcp/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/bundles/mcp/node_modules/math-intrinsics/isInteger.js +16 -0
- package/bundles/mcp/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/bundles/mcp/node_modules/math-intrinsics/isNaN.js +6 -0
- package/bundles/mcp/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/bundles/mcp/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/bundles/mcp/node_modules/math-intrinsics/max.d.ts +1 -0
- package/bundles/mcp/node_modules/math-intrinsics/max.js +4 -0
- package/bundles/mcp/node_modules/math-intrinsics/min.d.ts +1 -0
- package/bundles/mcp/node_modules/math-intrinsics/min.js +4 -0
- package/bundles/mcp/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/bundles/mcp/node_modules/math-intrinsics/mod.js +9 -0
- package/bundles/mcp/node_modules/math-intrinsics/package.json +86 -0
- package/bundles/mcp/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/bundles/mcp/node_modules/math-intrinsics/pow.js +4 -0
- package/bundles/mcp/node_modules/math-intrinsics/round.d.ts +1 -0
- package/bundles/mcp/node_modules/math-intrinsics/round.js +4 -0
- package/bundles/mcp/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/bundles/mcp/node_modules/math-intrinsics/sign.js +11 -0
- package/bundles/mcp/node_modules/math-intrinsics/test/index.js +192 -0
- package/bundles/mcp/node_modules/media-typer/HISTORY.md +50 -0
- package/bundles/mcp/node_modules/media-typer/LICENSE +22 -0
- package/bundles/mcp/node_modules/media-typer/README.md +93 -0
- package/bundles/mcp/node_modules/media-typer/index.js +143 -0
- package/bundles/mcp/node_modules/media-typer/package.json +33 -0
- package/bundles/mcp/node_modules/merge-descriptors/index.d.ts +11 -0
- package/bundles/mcp/node_modules/merge-descriptors/index.js +26 -0
- package/bundles/mcp/node_modules/merge-descriptors/license +11 -0
- package/bundles/mcp/node_modules/merge-descriptors/package.json +50 -0
- package/bundles/mcp/node_modules/merge-descriptors/readme.md +55 -0
- package/bundles/mcp/node_modules/mime-db/HISTORY.md +541 -0
- package/bundles/mcp/node_modules/mime-db/LICENSE +23 -0
- package/bundles/mcp/node_modules/mime-db/README.md +109 -0
- package/bundles/mcp/node_modules/mime-db/db.json +9342 -0
- package/bundles/mcp/node_modules/mime-db/index.js +12 -0
- package/bundles/mcp/node_modules/mime-db/package.json +56 -0
- package/bundles/mcp/node_modules/mime-types/HISTORY.md +428 -0
- package/bundles/mcp/node_modules/mime-types/LICENSE +23 -0
- package/bundles/mcp/node_modules/mime-types/README.md +126 -0
- package/bundles/mcp/node_modules/mime-types/index.js +211 -0
- package/bundles/mcp/node_modules/mime-types/mimeScore.js +57 -0
- package/bundles/mcp/node_modules/mime-types/package.json +49 -0
- package/bundles/mcp/node_modules/ms/index.js +162 -0
- package/bundles/mcp/node_modules/ms/license.md +21 -0
- package/bundles/mcp/node_modules/ms/package.json +38 -0
- package/bundles/mcp/node_modules/ms/readme.md +59 -0
- package/bundles/mcp/node_modules/negotiator/HISTORY.md +114 -0
- package/bundles/mcp/node_modules/negotiator/LICENSE +24 -0
- package/bundles/mcp/node_modules/negotiator/README.md +212 -0
- package/bundles/mcp/node_modules/negotiator/index.js +83 -0
- package/bundles/mcp/node_modules/negotiator/lib/charset.js +169 -0
- package/bundles/mcp/node_modules/negotiator/lib/encoding.js +205 -0
- package/bundles/mcp/node_modules/negotiator/lib/language.js +179 -0
- package/bundles/mcp/node_modules/negotiator/lib/mediaType.js +294 -0
- package/bundles/mcp/node_modules/negotiator/package.json +43 -0
- package/bundles/mcp/node_modules/object-assign/index.js +90 -0
- package/bundles/mcp/node_modules/object-assign/license +21 -0
- package/bundles/mcp/node_modules/object-assign/package.json +42 -0
- package/bundles/mcp/node_modules/object-assign/readme.md +61 -0
- package/bundles/mcp/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/object-inspect/.nycrc +13 -0
- package/bundles/mcp/node_modules/object-inspect/CHANGELOG.md +424 -0
- package/bundles/mcp/node_modules/object-inspect/LICENSE +21 -0
- package/bundles/mcp/node_modules/object-inspect/example/all.js +23 -0
- package/bundles/mcp/node_modules/object-inspect/example/circular.js +6 -0
- package/bundles/mcp/node_modules/object-inspect/example/fn.js +5 -0
- package/bundles/mcp/node_modules/object-inspect/example/inspect.js +10 -0
- package/bundles/mcp/node_modules/object-inspect/index.js +544 -0
- package/bundles/mcp/node_modules/object-inspect/package-support.json +20 -0
- package/bundles/mcp/node_modules/object-inspect/package.json +105 -0
- package/bundles/mcp/node_modules/object-inspect/readme.markdown +84 -0
- package/bundles/mcp/node_modules/object-inspect/test/bigint.js +58 -0
- package/bundles/mcp/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/bundles/mcp/node_modules/object-inspect/test/circular.js +16 -0
- package/bundles/mcp/node_modules/object-inspect/test/deep.js +12 -0
- package/bundles/mcp/node_modules/object-inspect/test/element.js +53 -0
- package/bundles/mcp/node_modules/object-inspect/test/err.js +48 -0
- package/bundles/mcp/node_modules/object-inspect/test/fakes.js +29 -0
- package/bundles/mcp/node_modules/object-inspect/test/fn.js +76 -0
- package/bundles/mcp/node_modules/object-inspect/test/global.js +17 -0
- package/bundles/mcp/node_modules/object-inspect/test/has.js +15 -0
- package/bundles/mcp/node_modules/object-inspect/test/holes.js +15 -0
- package/bundles/mcp/node_modules/object-inspect/test/indent-option.js +271 -0
- package/bundles/mcp/node_modules/object-inspect/test/inspect.js +139 -0
- package/bundles/mcp/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/bundles/mcp/node_modules/object-inspect/test/number.js +58 -0
- package/bundles/mcp/node_modules/object-inspect/test/quoteStyle.js +26 -0
- package/bundles/mcp/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/bundles/mcp/node_modules/object-inspect/test/undef.js +12 -0
- package/bundles/mcp/node_modules/object-inspect/test/values.js +261 -0
- package/bundles/mcp/node_modules/object-inspect/test-core-js.js +26 -0
- package/bundles/mcp/node_modules/object-inspect/util.inspect.js +1 -0
- package/bundles/mcp/node_modules/on-finished/HISTORY.md +98 -0
- package/bundles/mcp/node_modules/on-finished/LICENSE +23 -0
- package/bundles/mcp/node_modules/on-finished/README.md +162 -0
- package/bundles/mcp/node_modules/on-finished/index.js +234 -0
- package/bundles/mcp/node_modules/on-finished/package.json +39 -0
- package/bundles/mcp/node_modules/once/LICENSE +15 -0
- package/bundles/mcp/node_modules/once/README.md +79 -0
- package/bundles/mcp/node_modules/once/once.js +42 -0
- package/bundles/mcp/node_modules/once/package.json +33 -0
- package/bundles/mcp/node_modules/parseurl/HISTORY.md +58 -0
- package/bundles/mcp/node_modules/parseurl/LICENSE +24 -0
- package/bundles/mcp/node_modules/parseurl/README.md +133 -0
- package/bundles/mcp/node_modules/parseurl/index.js +158 -0
- package/bundles/mcp/node_modules/parseurl/package.json +40 -0
- package/bundles/mcp/node_modules/path-key/index.d.ts +40 -0
- package/bundles/mcp/node_modules/path-key/index.js +16 -0
- package/bundles/mcp/node_modules/path-key/license +9 -0
- package/bundles/mcp/node_modules/path-key/package.json +39 -0
- package/bundles/mcp/node_modules/path-key/readme.md +61 -0
- package/bundles/mcp/node_modules/path-to-regexp/LICENSE +21 -0
- package/bundles/mcp/node_modules/path-to-regexp/Readme.md +224 -0
- package/bundles/mcp/node_modules/path-to-regexp/dist/index.d.ts +144 -0
- package/bundles/mcp/node_modules/path-to-regexp/dist/index.js +409 -0
- package/bundles/mcp/node_modules/path-to-regexp/dist/index.js.map +1 -0
- package/bundles/mcp/node_modules/path-to-regexp/package.json +64 -0
- package/bundles/mcp/node_modules/pkce-challenge/LICENSE +21 -0
- package/bundles/mcp/node_modules/pkce-challenge/README.md +55 -0
- package/bundles/mcp/node_modules/pkce-challenge/dist/index.browser.d.ts +19 -0
- package/bundles/mcp/node_modules/pkce-challenge/dist/index.browser.js +72 -0
- package/bundles/mcp/node_modules/pkce-challenge/dist/index.node.cjs +80 -0
- package/bundles/mcp/node_modules/pkce-challenge/dist/index.node.d.cts +19 -0
- package/bundles/mcp/node_modules/pkce-challenge/dist/index.node.d.ts +19 -0
- package/bundles/mcp/node_modules/pkce-challenge/dist/index.node.js +75 -0
- package/bundles/mcp/node_modules/pkce-challenge/package.json +58 -0
- package/bundles/mcp/node_modules/proxy-addr/HISTORY.md +161 -0
- package/bundles/mcp/node_modules/proxy-addr/LICENSE +22 -0
- package/bundles/mcp/node_modules/proxy-addr/README.md +139 -0
- package/bundles/mcp/node_modules/proxy-addr/index.js +327 -0
- package/bundles/mcp/node_modules/proxy-addr/package.json +47 -0
- package/bundles/mcp/node_modules/qs/.editorconfig +46 -0
- package/bundles/mcp/node_modules/qs/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/qs/.github/SECURITY.md +11 -0
- package/bundles/mcp/node_modules/qs/.github/THREAT_MODEL.md +78 -0
- package/bundles/mcp/node_modules/qs/.nycrc +13 -0
- package/bundles/mcp/node_modules/qs/CHANGELOG.md +631 -0
- package/bundles/mcp/node_modules/qs/LICENSE.md +29 -0
- package/bundles/mcp/node_modules/qs/README.md +733 -0
- package/bundles/mcp/node_modules/qs/dist/qs.js +141 -0
- package/bundles/mcp/node_modules/qs/eslint.config.mjs +56 -0
- package/bundles/mcp/node_modules/qs/lib/formats.js +23 -0
- package/bundles/mcp/node_modules/qs/lib/index.js +11 -0
- package/bundles/mcp/node_modules/qs/lib/parse.js +360 -0
- package/bundles/mcp/node_modules/qs/lib/stringify.js +356 -0
- package/bundles/mcp/node_modules/qs/lib/utils.js +320 -0
- package/bundles/mcp/node_modules/qs/package.json +94 -0
- package/bundles/mcp/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/bundles/mcp/node_modules/qs/test/parse.js +1396 -0
- package/bundles/mcp/node_modules/qs/test/stringify.js +1310 -0
- package/bundles/mcp/node_modules/qs/test/utils.js +381 -0
- package/bundles/mcp/node_modules/range-parser/HISTORY.md +56 -0
- package/bundles/mcp/node_modules/range-parser/LICENSE +23 -0
- package/bundles/mcp/node_modules/range-parser/README.md +84 -0
- package/bundles/mcp/node_modules/range-parser/index.js +162 -0
- package/bundles/mcp/node_modules/range-parser/package.json +44 -0
- package/bundles/mcp/node_modules/raw-body/LICENSE +22 -0
- package/bundles/mcp/node_modules/raw-body/README.md +223 -0
- package/bundles/mcp/node_modules/raw-body/index.d.ts +85 -0
- package/bundles/mcp/node_modules/raw-body/index.js +336 -0
- package/bundles/mcp/node_modules/raw-body/package.json +46 -0
- package/bundles/mcp/node_modules/require-from-string/index.js +34 -0
- package/bundles/mcp/node_modules/require-from-string/license +21 -0
- package/bundles/mcp/node_modules/require-from-string/package.json +28 -0
- package/bundles/mcp/node_modules/require-from-string/readme.md +56 -0
- package/bundles/mcp/node_modules/router/HISTORY.md +228 -0
- package/bundles/mcp/node_modules/router/LICENSE +23 -0
- package/bundles/mcp/node_modules/router/README.md +416 -0
- package/bundles/mcp/node_modules/router/index.js +748 -0
- package/bundles/mcp/node_modules/router/lib/layer.js +247 -0
- package/bundles/mcp/node_modules/router/lib/route.js +242 -0
- package/bundles/mcp/node_modules/router/package.json +44 -0
- package/bundles/mcp/node_modules/safer-buffer/LICENSE +21 -0
- package/bundles/mcp/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/bundles/mcp/node_modules/safer-buffer/Readme.md +156 -0
- package/bundles/mcp/node_modules/safer-buffer/dangerous.js +58 -0
- package/bundles/mcp/node_modules/safer-buffer/package.json +34 -0
- package/bundles/mcp/node_modules/safer-buffer/safer.js +77 -0
- package/bundles/mcp/node_modules/safer-buffer/tests.js +406 -0
- package/bundles/mcp/node_modules/send/LICENSE +23 -0
- package/bundles/mcp/node_modules/send/README.md +317 -0
- package/bundles/mcp/node_modules/send/index.js +997 -0
- package/bundles/mcp/node_modules/send/package.json +63 -0
- package/bundles/mcp/node_modules/serve-static/LICENSE +25 -0
- package/bundles/mcp/node_modules/serve-static/README.md +253 -0
- package/bundles/mcp/node_modules/serve-static/index.js +208 -0
- package/bundles/mcp/node_modules/serve-static/package.json +44 -0
- package/bundles/mcp/node_modules/setprototypeof/LICENSE +13 -0
- package/bundles/mcp/node_modules/setprototypeof/README.md +31 -0
- package/bundles/mcp/node_modules/setprototypeof/index.d.ts +2 -0
- package/bundles/mcp/node_modules/setprototypeof/index.js +17 -0
- package/bundles/mcp/node_modules/setprototypeof/package.json +38 -0
- package/bundles/mcp/node_modules/setprototypeof/test/index.js +24 -0
- package/bundles/mcp/node_modules/shebang-command/index.js +19 -0
- package/bundles/mcp/node_modules/shebang-command/license +9 -0
- package/bundles/mcp/node_modules/shebang-command/package.json +34 -0
- package/bundles/mcp/node_modules/shebang-command/readme.md +34 -0
- package/bundles/mcp/node_modules/shebang-regex/index.d.ts +22 -0
- package/bundles/mcp/node_modules/shebang-regex/index.js +2 -0
- package/bundles/mcp/node_modules/shebang-regex/license +9 -0
- package/bundles/mcp/node_modules/shebang-regex/package.json +35 -0
- package/bundles/mcp/node_modules/shebang-regex/readme.md +33 -0
- package/bundles/mcp/node_modules/side-channel/.editorconfig +9 -0
- package/bundles/mcp/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/side-channel/.nycrc +13 -0
- package/bundles/mcp/node_modules/side-channel/CHANGELOG.md +110 -0
- package/bundles/mcp/node_modules/side-channel/LICENSE +21 -0
- package/bundles/mcp/node_modules/side-channel/README.md +61 -0
- package/bundles/mcp/node_modules/side-channel/index.d.ts +14 -0
- package/bundles/mcp/node_modules/side-channel/index.js +43 -0
- package/bundles/mcp/node_modules/side-channel/package.json +85 -0
- package/bundles/mcp/node_modules/side-channel/test/index.js +104 -0
- package/bundles/mcp/node_modules/side-channel-list/.editorconfig +9 -0
- package/bundles/mcp/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/side-channel-list/.nycrc +13 -0
- package/bundles/mcp/node_modules/side-channel-list/CHANGELOG.md +15 -0
- package/bundles/mcp/node_modules/side-channel-list/LICENSE +21 -0
- package/bundles/mcp/node_modules/side-channel-list/README.md +62 -0
- package/bundles/mcp/node_modules/side-channel-list/index.d.ts +13 -0
- package/bundles/mcp/node_modules/side-channel-list/index.js +113 -0
- package/bundles/mcp/node_modules/side-channel-list/list.d.ts +14 -0
- package/bundles/mcp/node_modules/side-channel-list/package.json +77 -0
- package/bundles/mcp/node_modules/side-channel-list/test/index.js +104 -0
- package/bundles/mcp/node_modules/side-channel-map/.editorconfig +9 -0
- package/bundles/mcp/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/side-channel-map/.nycrc +13 -0
- package/bundles/mcp/node_modules/side-channel-map/CHANGELOG.md +22 -0
- package/bundles/mcp/node_modules/side-channel-map/LICENSE +21 -0
- package/bundles/mcp/node_modules/side-channel-map/README.md +62 -0
- package/bundles/mcp/node_modules/side-channel-map/index.d.ts +15 -0
- package/bundles/mcp/node_modules/side-channel-map/index.js +68 -0
- package/bundles/mcp/node_modules/side-channel-map/package.json +80 -0
- package/bundles/mcp/node_modules/side-channel-map/test/index.js +114 -0
- package/bundles/mcp/node_modules/side-channel-weakmap/.editorconfig +9 -0
- package/bundles/mcp/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
- package/bundles/mcp/node_modules/side-channel-weakmap/.nycrc +13 -0
- package/bundles/mcp/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
- package/bundles/mcp/node_modules/side-channel-weakmap/LICENSE +21 -0
- package/bundles/mcp/node_modules/side-channel-weakmap/README.md +62 -0
- package/bundles/mcp/node_modules/side-channel-weakmap/index.d.ts +15 -0
- package/bundles/mcp/node_modules/side-channel-weakmap/index.js +84 -0
- package/bundles/mcp/node_modules/side-channel-weakmap/package.json +87 -0
- package/bundles/mcp/node_modules/side-channel-weakmap/test/index.js +114 -0
- package/bundles/mcp/node_modules/statuses/HISTORY.md +87 -0
- package/bundles/mcp/node_modules/statuses/LICENSE +23 -0
- package/bundles/mcp/node_modules/statuses/README.md +139 -0
- package/bundles/mcp/node_modules/statuses/codes.json +65 -0
- package/bundles/mcp/node_modules/statuses/index.js +146 -0
- package/bundles/mcp/node_modules/statuses/package.json +49 -0
- package/bundles/mcp/node_modules/toidentifier/HISTORY.md +9 -0
- package/bundles/mcp/node_modules/toidentifier/LICENSE +21 -0
- package/bundles/mcp/node_modules/toidentifier/README.md +61 -0
- package/bundles/mcp/node_modules/toidentifier/index.js +32 -0
- package/bundles/mcp/node_modules/toidentifier/package.json +38 -0
- package/bundles/mcp/node_modules/type-is/HISTORY.md +292 -0
- package/bundles/mcp/node_modules/type-is/LICENSE +23 -0
- package/bundles/mcp/node_modules/type-is/README.md +198 -0
- package/bundles/mcp/node_modules/type-is/index.js +250 -0
- package/bundles/mcp/node_modules/type-is/package.json +47 -0
- package/bundles/mcp/node_modules/unpipe/HISTORY.md +4 -0
- package/bundles/mcp/node_modules/unpipe/LICENSE +22 -0
- package/bundles/mcp/node_modules/unpipe/README.md +43 -0
- package/bundles/mcp/node_modules/unpipe/index.js +69 -0
- package/bundles/mcp/node_modules/unpipe/package.json +27 -0
- package/bundles/mcp/node_modules/vary/HISTORY.md +39 -0
- package/bundles/mcp/node_modules/vary/LICENSE +22 -0
- package/bundles/mcp/node_modules/vary/README.md +101 -0
- package/bundles/mcp/node_modules/vary/index.js +149 -0
- package/bundles/mcp/node_modules/vary/package.json +43 -0
- package/bundles/mcp/node_modules/which/CHANGELOG.md +166 -0
- package/bundles/mcp/node_modules/which/LICENSE +15 -0
- package/bundles/mcp/node_modules/which/README.md +54 -0
- package/bundles/mcp/node_modules/which/bin/node-which +52 -0
- package/bundles/mcp/node_modules/which/package.json +43 -0
- package/bundles/mcp/node_modules/which/which.js +125 -0
- package/bundles/mcp/node_modules/wrappy/LICENSE +15 -0
- package/bundles/mcp/node_modules/wrappy/README.md +36 -0
- package/bundles/mcp/node_modules/wrappy/package.json +29 -0
- package/bundles/mcp/node_modules/wrappy/wrappy.js +33 -0
- package/bundles/mcp/node_modules/zod/LICENSE +21 -0
- package/bundles/mcp/node_modules/zod/README.md +208 -0
- package/bundles/mcp/node_modules/zod/index.cjs +33 -0
- package/bundles/mcp/node_modules/zod/index.d.cts +4 -0
- package/bundles/mcp/node_modules/zod/index.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/index.js +4 -0
- package/bundles/mcp/node_modules/zod/locales/index.cjs +17 -0
- package/bundles/mcp/node_modules/zod/locales/index.d.cts +1 -0
- package/bundles/mcp/node_modules/zod/locales/index.d.ts +1 -0
- package/bundles/mcp/node_modules/zod/locales/index.js +1 -0
- package/bundles/mcp/node_modules/zod/locales/package.json +6 -0
- package/bundles/mcp/node_modules/zod/mini/index.cjs +17 -0
- package/bundles/mcp/node_modules/zod/mini/index.d.cts +1 -0
- package/bundles/mcp/node_modules/zod/mini/index.d.ts +1 -0
- package/bundles/mcp/node_modules/zod/mini/index.js +1 -0
- package/bundles/mcp/node_modules/zod/mini/package.json +6 -0
- package/bundles/mcp/node_modules/zod/package.json +135 -0
- package/bundles/mcp/node_modules/zod/v3/ZodError.cjs +138 -0
- package/bundles/mcp/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/bundles/mcp/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/bundles/mcp/node_modules/zod/v3/ZodError.js +133 -0
- package/bundles/mcp/node_modules/zod/v3/errors.cjs +17 -0
- package/bundles/mcp/node_modules/zod/v3/errors.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v3/errors.d.ts +5 -0
- package/bundles/mcp/node_modules/zod/v3/errors.js +9 -0
- package/bundles/mcp/node_modules/zod/v3/external.cjs +22 -0
- package/bundles/mcp/node_modules/zod/v3/external.d.cts +6 -0
- package/bundles/mcp/node_modules/zod/v3/external.d.ts +6 -0
- package/bundles/mcp/node_modules/zod/v3/external.js +6 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/bundles/mcp/node_modules/zod/v3/helpers/util.js +133 -0
- package/bundles/mcp/node_modules/zod/v3/index.cjs +33 -0
- package/bundles/mcp/node_modules/zod/v3/index.d.cts +4 -0
- package/bundles/mcp/node_modules/zod/v3/index.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v3/index.js +4 -0
- package/bundles/mcp/node_modules/zod/v3/locales/en.cjs +112 -0
- package/bundles/mcp/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/bundles/mcp/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/bundles/mcp/node_modules/zod/v3/locales/en.js +109 -0
- package/bundles/mcp/node_modules/zod/v3/package.json +6 -0
- package/bundles/mcp/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/bundles/mcp/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/bundles/mcp/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/bundles/mcp/node_modules/zod/v3/standard-schema.js +1 -0
- package/bundles/mcp/node_modules/zod/v3/types.cjs +3777 -0
- package/bundles/mcp/node_modules/zod/v3/types.d.cts +1034 -0
- package/bundles/mcp/node_modules/zod/v3/types.d.ts +1034 -0
- package/bundles/mcp/node_modules/zod/v3/types.js +3695 -0
- package/bundles/mcp/node_modules/zod/v4/classic/checks.cjs +33 -0
- package/bundles/mcp/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/bundles/mcp/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/bundles/mcp/node_modules/zod/v4/classic/checks.js +1 -0
- package/bundles/mcp/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/bundles/mcp/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/bundles/mcp/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/bundles/mcp/node_modules/zod/v4/classic/coerce.js +17 -0
- package/bundles/mcp/node_modules/zod/v4/classic/compat.cjs +61 -0
- package/bundles/mcp/node_modules/zod/v4/classic/compat.d.cts +50 -0
- package/bundles/mcp/node_modules/zod/v4/classic/compat.d.ts +50 -0
- package/bundles/mcp/node_modules/zod/v4/classic/compat.js +31 -0
- package/bundles/mcp/node_modules/zod/v4/classic/errors.cjs +74 -0
- package/bundles/mcp/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/bundles/mcp/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/bundles/mcp/node_modules/zod/v4/classic/errors.js +48 -0
- package/bundles/mcp/node_modules/zod/v4/classic/external.cjs +73 -0
- package/bundles/mcp/node_modules/zod/v4/classic/external.d.cts +15 -0
- package/bundles/mcp/node_modules/zod/v4/classic/external.d.ts +15 -0
- package/bundles/mcp/node_modules/zod/v4/classic/external.js +20 -0
- package/bundles/mcp/node_modules/zod/v4/classic/from-json-schema.cjs +610 -0
- package/bundles/mcp/node_modules/zod/v4/classic/from-json-schema.d.cts +12 -0
- package/bundles/mcp/node_modules/zod/v4/classic/from-json-schema.d.ts +12 -0
- package/bundles/mcp/node_modules/zod/v4/classic/from-json-schema.js +584 -0
- package/bundles/mcp/node_modules/zod/v4/classic/index.cjs +33 -0
- package/bundles/mcp/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/bundles/mcp/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/classic/index.js +4 -0
- package/bundles/mcp/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/bundles/mcp/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/bundles/mcp/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/bundles/mcp/node_modules/zod/v4/classic/iso.js +30 -0
- package/bundles/mcp/node_modules/zod/v4/classic/package.json +6 -0
- package/bundles/mcp/node_modules/zod/v4/classic/parse.cjs +41 -0
- package/bundles/mcp/node_modules/zod/v4/classic/parse.d.cts +31 -0
- package/bundles/mcp/node_modules/zod/v4/classic/parse.d.ts +31 -0
- package/bundles/mcp/node_modules/zod/v4/classic/parse.js +15 -0
- package/bundles/mcp/node_modules/zod/v4/classic/schemas.cjs +1272 -0
- package/bundles/mcp/node_modules/zod/v4/classic/schemas.d.cts +739 -0
- package/bundles/mcp/node_modules/zod/v4/classic/schemas.d.ts +739 -0
- package/bundles/mcp/node_modules/zod/v4/classic/schemas.js +1157 -0
- package/bundles/mcp/node_modules/zod/v4/core/api.cjs +1222 -0
- package/bundles/mcp/node_modules/zod/v4/core/api.d.cts +304 -0
- package/bundles/mcp/node_modules/zod/v4/core/api.d.ts +304 -0
- package/bundles/mcp/node_modules/zod/v4/core/api.js +1082 -0
- package/bundles/mcp/node_modules/zod/v4/core/checks.cjs +601 -0
- package/bundles/mcp/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/bundles/mcp/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/bundles/mcp/node_modules/zod/v4/core/checks.js +575 -0
- package/bundles/mcp/node_modules/zod/v4/core/core.cjs +83 -0
- package/bundles/mcp/node_modules/zod/v4/core/core.d.cts +70 -0
- package/bundles/mcp/node_modules/zod/v4/core/core.d.ts +70 -0
- package/bundles/mcp/node_modules/zod/v4/core/core.js +76 -0
- package/bundles/mcp/node_modules/zod/v4/core/doc.cjs +39 -0
- package/bundles/mcp/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/bundles/mcp/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/bundles/mcp/node_modules/zod/v4/core/doc.js +35 -0
- package/bundles/mcp/node_modules/zod/v4/core/errors.cjs +213 -0
- package/bundles/mcp/node_modules/zod/v4/core/errors.d.cts +220 -0
- package/bundles/mcp/node_modules/zod/v4/core/errors.d.ts +220 -0
- package/bundles/mcp/node_modules/zod/v4/core/errors.js +182 -0
- package/bundles/mcp/node_modules/zod/v4/core/index.cjs +47 -0
- package/bundles/mcp/node_modules/zod/v4/core/index.d.cts +16 -0
- package/bundles/mcp/node_modules/zod/v4/core/index.d.ts +16 -0
- package/bundles/mcp/node_modules/zod/v4/core/index.js +16 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema-generator.cjs +99 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema-generator.d.cts +65 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema-generator.d.ts +65 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema-generator.js +95 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema-processors.cjs +648 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema-processors.d.cts +49 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema-processors.d.ts +49 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema-processors.js +605 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema.d.cts +88 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema.d.ts +88 -0
- package/bundles/mcp/node_modules/zod/v4/core/json-schema.js +1 -0
- package/bundles/mcp/node_modules/zod/v4/core/package.json +6 -0
- package/bundles/mcp/node_modules/zod/v4/core/parse.cjs +131 -0
- package/bundles/mcp/node_modules/zod/v4/core/parse.d.cts +49 -0
- package/bundles/mcp/node_modules/zod/v4/core/parse.d.ts +49 -0
- package/bundles/mcp/node_modules/zod/v4/core/parse.js +93 -0
- package/bundles/mcp/node_modules/zod/v4/core/regexes.cjs +166 -0
- package/bundles/mcp/node_modules/zod/v4/core/regexes.d.cts +79 -0
- package/bundles/mcp/node_modules/zod/v4/core/regexes.d.ts +79 -0
- package/bundles/mcp/node_modules/zod/v4/core/regexes.js +133 -0
- package/bundles/mcp/node_modules/zod/v4/core/registries.cjs +56 -0
- package/bundles/mcp/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/bundles/mcp/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/bundles/mcp/node_modules/zod/v4/core/registries.js +51 -0
- package/bundles/mcp/node_modules/zod/v4/core/schemas.cjs +2126 -0
- package/bundles/mcp/node_modules/zod/v4/core/schemas.d.cts +1146 -0
- package/bundles/mcp/node_modules/zod/v4/core/schemas.d.ts +1146 -0
- package/bundles/mcp/node_modules/zod/v4/core/schemas.js +2095 -0
- package/bundles/mcp/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/bundles/mcp/node_modules/zod/v4/core/standard-schema.d.cts +126 -0
- package/bundles/mcp/node_modules/zod/v4/core/standard-schema.d.ts +126 -0
- package/bundles/mcp/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/bundles/mcp/node_modules/zod/v4/core/to-json-schema.cjs +446 -0
- package/bundles/mcp/node_modules/zod/v4/core/to-json-schema.d.cts +114 -0
- package/bundles/mcp/node_modules/zod/v4/core/to-json-schema.d.ts +114 -0
- package/bundles/mcp/node_modules/zod/v4/core/to-json-schema.js +437 -0
- package/bundles/mcp/node_modules/zod/v4/core/util.cjs +710 -0
- package/bundles/mcp/node_modules/zod/v4/core/util.d.cts +199 -0
- package/bundles/mcp/node_modules/zod/v4/core/util.d.ts +199 -0
- package/bundles/mcp/node_modules/zod/v4/core/util.js +651 -0
- package/bundles/mcp/node_modules/zod/v4/core/versions.cjs +8 -0
- package/bundles/mcp/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/bundles/mcp/node_modules/zod/v4/core/versions.js +5 -0
- package/bundles/mcp/node_modules/zod/v4/index.cjs +22 -0
- package/bundles/mcp/node_modules/zod/v4/index.d.cts +3 -0
- package/bundles/mcp/node_modules/zod/v4/index.d.ts +3 -0
- package/bundles/mcp/node_modules/zod/v4/index.js +3 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ar.cjs +133 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ar.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ar.js +106 -0
- package/bundles/mcp/node_modules/zod/v4/locales/az.cjs +132 -0
- package/bundles/mcp/node_modules/zod/v4/locales/az.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/az.js +105 -0
- package/bundles/mcp/node_modules/zod/v4/locales/be.cjs +183 -0
- package/bundles/mcp/node_modules/zod/v4/locales/be.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/be.js +156 -0
- package/bundles/mcp/node_modules/zod/v4/locales/bg.cjs +147 -0
- package/bundles/mcp/node_modules/zod/v4/locales/bg.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/bg.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/bg.js +120 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ca.cjs +134 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ca.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ca.js +107 -0
- package/bundles/mcp/node_modules/zod/v4/locales/cs.cjs +138 -0
- package/bundles/mcp/node_modules/zod/v4/locales/cs.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/cs.js +111 -0
- package/bundles/mcp/node_modules/zod/v4/locales/da.cjs +142 -0
- package/bundles/mcp/node_modules/zod/v4/locales/da.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/da.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/da.js +115 -0
- package/bundles/mcp/node_modules/zod/v4/locales/de.cjs +135 -0
- package/bundles/mcp/node_modules/zod/v4/locales/de.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/de.js +108 -0
- package/bundles/mcp/node_modules/zod/v4/locales/en.cjs +136 -0
- package/bundles/mcp/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/en.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/en.js +109 -0
- package/bundles/mcp/node_modules/zod/v4/locales/eo.cjs +136 -0
- package/bundles/mcp/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/eo.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/eo.js +109 -0
- package/bundles/mcp/node_modules/zod/v4/locales/es.cjs +159 -0
- package/bundles/mcp/node_modules/zod/v4/locales/es.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/es.js +132 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fa.cjs +141 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fa.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fa.js +114 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fi.cjs +139 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fi.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fi.js +112 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fr-CA.cjs +134 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fr-CA.js +107 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fr.cjs +135 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fr.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/fr.js +108 -0
- package/bundles/mcp/node_modules/zod/v4/locales/he.cjs +241 -0
- package/bundles/mcp/node_modules/zod/v4/locales/he.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/he.js +214 -0
- package/bundles/mcp/node_modules/zod/v4/locales/hu.cjs +135 -0
- package/bundles/mcp/node_modules/zod/v4/locales/hu.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/hu.js +108 -0
- package/bundles/mcp/node_modules/zod/v4/locales/hy.cjs +174 -0
- package/bundles/mcp/node_modules/zod/v4/locales/hy.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/hy.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/hy.js +147 -0
- package/bundles/mcp/node_modules/zod/v4/locales/id.cjs +133 -0
- package/bundles/mcp/node_modules/zod/v4/locales/id.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/id.js +106 -0
- package/bundles/mcp/node_modules/zod/v4/locales/index.cjs +104 -0
- package/bundles/mcp/node_modules/zod/v4/locales/index.d.cts +49 -0
- package/bundles/mcp/node_modules/zod/v4/locales/index.d.ts +49 -0
- package/bundles/mcp/node_modules/zod/v4/locales/index.js +49 -0
- package/bundles/mcp/node_modules/zod/v4/locales/is.cjs +136 -0
- package/bundles/mcp/node_modules/zod/v4/locales/is.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/is.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/is.js +109 -0
- package/bundles/mcp/node_modules/zod/v4/locales/it.cjs +135 -0
- package/bundles/mcp/node_modules/zod/v4/locales/it.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/it.js +108 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ja.cjs +134 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ja.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ja.js +107 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ka.cjs +139 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ka.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ka.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ka.js +112 -0
- package/bundles/mcp/node_modules/zod/v4/locales/kh.cjs +12 -0
- package/bundles/mcp/node_modules/zod/v4/locales/kh.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/kh.d.ts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/kh.js +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/km.cjs +137 -0
- package/bundles/mcp/node_modules/zod/v4/locales/km.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/km.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/km.js +110 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ko.cjs +138 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ko.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ko.js +111 -0
- package/bundles/mcp/node_modules/zod/v4/locales/lt.cjs +230 -0
- package/bundles/mcp/node_modules/zod/v4/locales/lt.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/lt.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/lt.js +203 -0
- package/bundles/mcp/node_modules/zod/v4/locales/mk.cjs +136 -0
- package/bundles/mcp/node_modules/zod/v4/locales/mk.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/mk.js +109 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ms.cjs +134 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ms.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ms.js +107 -0
- package/bundles/mcp/node_modules/zod/v4/locales/nl.cjs +137 -0
- package/bundles/mcp/node_modules/zod/v4/locales/nl.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/nl.js +110 -0
- package/bundles/mcp/node_modules/zod/v4/locales/no.cjs +135 -0
- package/bundles/mcp/node_modules/zod/v4/locales/no.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/no.js +108 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ota.cjs +136 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ota.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ota.js +109 -0
- package/bundles/mcp/node_modules/zod/v4/locales/package.json +6 -0
- package/bundles/mcp/node_modules/zod/v4/locales/pl.cjs +136 -0
- package/bundles/mcp/node_modules/zod/v4/locales/pl.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/pl.js +109 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ps.cjs +141 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ps.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ps.js +114 -0
- package/bundles/mcp/node_modules/zod/v4/locales/pt.cjs +135 -0
- package/bundles/mcp/node_modules/zod/v4/locales/pt.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/pt.js +108 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ru.cjs +183 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ru.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ru.js +156 -0
- package/bundles/mcp/node_modules/zod/v4/locales/sl.cjs +136 -0
- package/bundles/mcp/node_modules/zod/v4/locales/sl.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/sl.js +109 -0
- package/bundles/mcp/node_modules/zod/v4/locales/sv.cjs +137 -0
- package/bundles/mcp/node_modules/zod/v4/locales/sv.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/sv.js +110 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ta.cjs +137 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ta.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ta.js +110 -0
- package/bundles/mcp/node_modules/zod/v4/locales/th.cjs +137 -0
- package/bundles/mcp/node_modules/zod/v4/locales/th.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/th.js +110 -0
- package/bundles/mcp/node_modules/zod/v4/locales/tr.cjs +132 -0
- package/bundles/mcp/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/tr.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/tr.js +105 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ua.cjs +12 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ua.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ua.d.ts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ua.js +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/uk.cjs +135 -0
- package/bundles/mcp/node_modules/zod/v4/locales/uk.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/uk.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/uk.js +108 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ur.cjs +137 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ur.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/ur.js +110 -0
- package/bundles/mcp/node_modules/zod/v4/locales/uz.cjs +136 -0
- package/bundles/mcp/node_modules/zod/v4/locales/uz.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/uz.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/uz.js +109 -0
- package/bundles/mcp/node_modules/zod/v4/locales/vi.cjs +135 -0
- package/bundles/mcp/node_modules/zod/v4/locales/vi.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/vi.js +108 -0
- package/bundles/mcp/node_modules/zod/v4/locales/yo.cjs +134 -0
- package/bundles/mcp/node_modules/zod/v4/locales/yo.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/yo.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/yo.js +107 -0
- package/bundles/mcp/node_modules/zod/v4/locales/zh-CN.cjs +136 -0
- package/bundles/mcp/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/zh-CN.js +109 -0
- package/bundles/mcp/node_modules/zod/v4/locales/zh-TW.cjs +134 -0
- package/bundles/mcp/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
- package/bundles/mcp/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/bundles/mcp/node_modules/zod/v4/locales/zh-TW.js +107 -0
- package/bundles/mcp/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/bundles/mcp/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/bundles/mcp/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/bundles/mcp/node_modules/zod/v4/mini/checks.js +1 -0
- package/bundles/mcp/node_modules/zod/v4/mini/coerce.cjs +52 -0
- package/bundles/mcp/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/bundles/mcp/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/bundles/mcp/node_modules/zod/v4/mini/coerce.js +22 -0
- package/bundles/mcp/node_modules/zod/v4/mini/external.cjs +63 -0
- package/bundles/mcp/node_modules/zod/v4/mini/external.d.cts +12 -0
- package/bundles/mcp/node_modules/zod/v4/mini/external.d.ts +12 -0
- package/bundles/mcp/node_modules/zod/v4/mini/external.js +14 -0
- package/bundles/mcp/node_modules/zod/v4/mini/index.cjs +32 -0
- package/bundles/mcp/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/bundles/mcp/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/bundles/mcp/node_modules/zod/v4/mini/index.js +3 -0
- package/bundles/mcp/node_modules/zod/v4/mini/iso.cjs +64 -0
- package/bundles/mcp/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/bundles/mcp/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/bundles/mcp/node_modules/zod/v4/mini/iso.js +34 -0
- package/bundles/mcp/node_modules/zod/v4/mini/package.json +6 -0
- package/bundles/mcp/node_modules/zod/v4/mini/parse.cjs +16 -0
- package/bundles/mcp/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/bundles/mcp/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/bundles/mcp/node_modules/zod/v4/mini/parse.js +1 -0
- package/bundles/mcp/node_modules/zod/v4/mini/schemas.cjs +1046 -0
- package/bundles/mcp/node_modules/zod/v4/mini/schemas.d.cts +427 -0
- package/bundles/mcp/node_modules/zod/v4/mini/schemas.d.ts +427 -0
- package/bundles/mcp/node_modules/zod/v4/mini/schemas.js +925 -0
- package/bundles/mcp/node_modules/zod/v4/package.json +6 -0
- package/bundles/mcp/node_modules/zod/v4-mini/index.cjs +17 -0
- package/bundles/mcp/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/bundles/mcp/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/bundles/mcp/node_modules/zod/v4-mini/index.js +1 -0
- package/bundles/mcp/node_modules/zod/v4-mini/package.json +6 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/.github/CR_logotype-full-color.png +0 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/.github/FUNDING.yml +1 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/.prettierrc.json +1 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/LICENSE +15 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/README.md +390 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/changelog.md +82 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/contributing.md +9 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/createIndex.ts +32 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/Options.js +51 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/Refs.js +26 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/errorMessages.js +19 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/getRelativePath.js +12 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/index.js +56 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/package.json +1 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parseDef.js +66 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parseTypes.js +2 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/any.js +21 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/array.js +30 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/bigint.js +53 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/boolean.js +9 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/branded.js +8 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/catch.js +8 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/date.js +50 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/default.js +11 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/effects.js +11 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/enum.js +10 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/intersection.js +56 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/literal.js +25 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/map.js +30 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/nativeEnum.js +20 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/never.js +15 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/null.js +14 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/nullable.js +37 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/number.js +56 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/object.js +76 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/optional.js +25 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/pipeline.js +24 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/promise.js +8 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/readonly.js +8 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/record.js +65 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/set.js +24 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/string.js +356 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/tuple.js +36 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/undefined.js +10 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/union.js +84 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/parsers/unknown.js +8 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/selectParser.js +109 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/cjs/zodToJsonSchema.js +90 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/Options.js +46 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/Refs.js +22 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/errorMessages.js +14 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/getRelativePath.js +8 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/index.js +40 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/package.json +1 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parseDef.js +62 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parseTypes.js +1 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/any.js +17 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/array.js +26 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js +49 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js +5 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/date.js +46 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/default.js +7 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js +7 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js +6 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js +52 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js +21 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/map.js +26 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js +16 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/never.js +11 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/null.js +10 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js +33 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/number.js +52 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/object.js +72 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js +21 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js +20 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/record.js +61 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/set.js +20 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/string.js +352 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js +32 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js +6 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/union.js +80 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/selectParser.js +105 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js +87 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/Options.d.ts +37 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/Refs.d.ts +17 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/errorMessages.d.ts +15 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/getRelativePath.d.ts +1 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/index.d.ts +40 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parseDef.d.ts +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parseTypes.d.ts +34 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/any.d.ts +5 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/array.d.ts +12 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/bigint.d.ts +14 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/boolean.d.ts +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/branded.d.ts +3 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/catch.d.ts +3 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/date.d.ts +15 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/default.d.ts +6 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/effects.d.ts +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/enum.d.ts +6 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/intersection.d.ts +8 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/literal.d.ts +9 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/map.d.ts +15 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/nativeEnum.d.ts +6 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/never.d.ts +6 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/null.d.ts +5 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/nullable.d.ts +10 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/number.d.ts +13 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/object.d.ts +10 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/optional.d.ts +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/pipeline.d.ts +5 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/promise.d.ts +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/readonly.d.ts +3 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/record.d.ts +13 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/set.d.ts +13 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/string.d.ts +73 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/tuple.d.ts +13 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/undefined.d.ts +6 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/union.d.ts +23 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/parsers/unknown.d.ts +4 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/selectParser.d.ts +5 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/dist/types/zodToJsonSchema.d.ts +10 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/package.json +78 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/postcjs.ts +3 -0
- package/bundles/mcp/node_modules/zod-to-json-schema/postesm.ts +3 -0
- package/bundles/utils/node_modules/.package-lock.json +427 -0
- package/bundles/utils/node_modules/@types/debug/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/debug/README.md +74 -0
- package/bundles/utils/node_modules/@types/debug/index.d.ts +54 -0
- package/bundles/utils/node_modules/@types/debug/package.json +57 -0
- package/bundles/utils/node_modules/@types/diff/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/diff/README.md +15 -0
- package/bundles/utils/node_modules/@types/diff/index.d.mts +1 -0
- package/bundles/utils/node_modules/@types/diff/index.d.ts +465 -0
- package/bundles/utils/node_modules/@types/diff/package.json +48 -0
- package/bundles/utils/node_modules/@types/ini/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/ini/README.md +43 -0
- package/bundles/utils/node_modules/@types/ini/index.d.ts +24 -0
- package/bundles/utils/node_modules/@types/ini/package.json +35 -0
- package/bundles/utils/node_modules/@types/mime/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/mime/Mime.d.ts +9 -0
- package/bundles/utils/node_modules/@types/mime/README.md +16 -0
- package/bundles/utils/node_modules/@types/mime/index.d.ts +15 -0
- package/bundles/utils/node_modules/@types/mime/lite.d.ts +7 -0
- package/bundles/utils/node_modules/@types/mime/package.json +29 -0
- package/bundles/utils/node_modules/@types/minimatch/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/minimatch/README.md +16 -0
- package/bundles/utils/node_modules/@types/minimatch/index.d.ts +204 -0
- package/bundles/utils/node_modules/@types/minimatch/package.json +30 -0
- package/bundles/utils/node_modules/@types/ms/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/ms/README.md +16 -0
- package/bundles/utils/node_modules/@types/ms/index.d.ts +25 -0
- package/bundles/utils/node_modules/@types/ms/package.json +24 -0
- package/bundles/utils/node_modules/@types/node/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/node/README.md +16 -0
- package/bundles/utils/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/bundles/utils/node_modules/@types/node/assert.d.ts +912 -0
- package/bundles/utils/node_modules/@types/node/async_hooks.d.ts +501 -0
- package/bundles/utils/node_modules/@types/node/buffer.d.ts +2232 -0
- package/bundles/utils/node_modules/@types/node/child_process.d.ts +1366 -0
- package/bundles/utils/node_modules/@types/node/cluster.d.ts +414 -0
- package/bundles/utils/node_modules/@types/node/console.d.ts +412 -0
- package/bundles/utils/node_modules/@types/node/constants.d.ts +18 -0
- package/bundles/utils/node_modules/@types/node/crypto.d.ts +3307 -0
- package/bundles/utils/node_modules/@types/node/dgram.d.ts +545 -0
- package/bundles/utils/node_modules/@types/node/diagnostics_channel.d.ts +134 -0
- package/bundles/utils/node_modules/@types/node/dns/promises.d.ts +370 -0
- package/bundles/utils/node_modules/@types/node/dns.d.ts +659 -0
- package/bundles/utils/node_modules/@types/node/domain.d.ts +169 -0
- package/bundles/utils/node_modules/@types/node/events.d.ts +651 -0
- package/bundles/utils/node_modules/@types/node/fs/promises.d.ts +1091 -0
- package/bundles/utils/node_modules/@types/node/fs.d.ts +3869 -0
- package/bundles/utils/node_modules/@types/node/globals.d.ts +284 -0
- package/bundles/utils/node_modules/@types/node/globals.global.d.ts +1 -0
- package/bundles/utils/node_modules/@types/node/http.d.ts +1396 -0
- package/bundles/utils/node_modules/@types/node/http2.d.ts +2100 -0
- package/bundles/utils/node_modules/@types/node/https.d.ts +391 -0
- package/bundles/utils/node_modules/@types/node/index.d.ts +129 -0
- package/bundles/utils/node_modules/@types/node/inspector.d.ts +2744 -0
- package/bundles/utils/node_modules/@types/node/module.d.ts +114 -0
- package/bundles/utils/node_modules/@types/node/net.d.ts +791 -0
- package/bundles/utils/node_modules/@types/node/os.d.ts +455 -0
- package/bundles/utils/node_modules/@types/node/package.json +220 -0
- package/bundles/utils/node_modules/@types/node/path.d.ts +180 -0
- package/bundles/utils/node_modules/@types/node/perf_hooks.d.ts +557 -0
- package/bundles/utils/node_modules/@types/node/process.d.ts +1481 -0
- package/bundles/utils/node_modules/@types/node/punycode.d.ts +117 -0
- package/bundles/utils/node_modules/@types/node/querystring.d.ts +131 -0
- package/bundles/utils/node_modules/@types/node/readline.d.ts +650 -0
- package/bundles/utils/node_modules/@types/node/repl.d.ts +424 -0
- package/bundles/utils/node_modules/@types/node/stream/consumers.d.ts +24 -0
- package/bundles/utils/node_modules/@types/node/stream/promises.d.ts +42 -0
- package/bundles/utils/node_modules/@types/node/stream/web.d.ts +330 -0
- package/bundles/utils/node_modules/@types/node/stream.d.ts +1249 -0
- package/bundles/utils/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/bundles/utils/node_modules/@types/node/timers/promises.d.ts +68 -0
- package/bundles/utils/node_modules/@types/node/timers.d.ts +94 -0
- package/bundles/utils/node_modules/@types/node/tls.d.ts +1020 -0
- package/bundles/utils/node_modules/@types/node/trace_events.d.ts +161 -0
- package/bundles/utils/node_modules/@types/node/tty.d.ts +204 -0
- package/bundles/utils/node_modules/@types/node/url.d.ts +891 -0
- package/bundles/utils/node_modules/@types/node/util.d.ts +1594 -0
- package/bundles/utils/node_modules/@types/node/v8.d.ts +378 -0
- package/bundles/utils/node_modules/@types/node/vm.d.ts +507 -0
- package/bundles/utils/node_modules/@types/node/wasi.d.ts +158 -0
- package/bundles/utils/node_modules/@types/node/worker_threads.d.ts +649 -0
- package/bundles/utils/node_modules/@types/node/zlib.d.ts +517 -0
- package/bundles/utils/node_modules/@types/pngjs/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/pngjs/README.md +16 -0
- package/bundles/utils/node_modules/@types/pngjs/index.d.ts +108 -0
- package/bundles/utils/node_modules/@types/pngjs/package.json +37 -0
- package/bundles/utils/node_modules/@types/progress/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/progress/README.md +16 -0
- package/bundles/utils/node_modules/@types/progress/index.d.ts +148 -0
- package/bundles/utils/node_modules/@types/progress/package.json +27 -0
- package/bundles/utils/node_modules/@types/proper-lockfile/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/proper-lockfile/README.md +60 -0
- package/bundles/utils/node_modules/@types/proper-lockfile/index.d.ts +40 -0
- package/bundles/utils/node_modules/@types/proper-lockfile/package.json +37 -0
- package/bundles/utils/node_modules/@types/proxy-from-env/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/proxy-from-env/README.md +16 -0
- package/bundles/utils/node_modules/@types/proxy-from-env/index.d.ts +18 -0
- package/bundles/utils/node_modules/@types/proxy-from-env/package.json +31 -0
- package/bundles/utils/node_modules/@types/retry/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/retry/README.md +16 -0
- package/bundles/utils/node_modules/@types/retry/index.d.ts +153 -0
- package/bundles/utils/node_modules/@types/retry/package.json +30 -0
- package/bundles/utils/node_modules/@types/stack-utils/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/stack-utils/README.md +85 -0
- package/bundles/utils/node_modules/@types/stack-utils/index.d.ts +65 -0
- package/bundles/utils/node_modules/@types/stack-utils/package.json +25 -0
- package/bundles/utils/node_modules/@types/ws/LICENSE +21 -0
- package/bundles/utils/node_modules/@types/ws/README.md +16 -0
- package/bundles/utils/node_modules/@types/ws/index.d.mts +3 -0
- package/bundles/utils/node_modules/@types/ws/index.d.ts +358 -0
- package/bundles/utils/node_modules/@types/ws/package.json +66 -0
- package/bundles/utils/node_modules/agent-base/LICENSE +22 -0
- package/bundles/utils/node_modules/agent-base/README.md +69 -0
- package/bundles/utils/node_modules/agent-base/dist/helpers.d.ts +15 -0
- package/bundles/utils/node_modules/agent-base/dist/helpers.d.ts.map +1 -0
- package/bundles/utils/node_modules/agent-base/dist/helpers.js +66 -0
- package/bundles/utils/node_modules/agent-base/dist/helpers.js.map +1 -0
- package/bundles/utils/node_modules/agent-base/dist/index.d.ts +41 -0
- package/bundles/utils/node_modules/agent-base/dist/index.d.ts.map +1 -0
- package/bundles/utils/node_modules/agent-base/dist/index.js +178 -0
- package/bundles/utils/node_modules/agent-base/dist/index.js.map +1 -0
- package/bundles/utils/node_modules/agent-base/package.json +46 -0
- package/bundles/utils/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/bundles/utils/node_modules/balanced-match/LICENSE.md +21 -0
- package/bundles/utils/node_modules/balanced-match/README.md +97 -0
- package/bundles/utils/node_modules/balanced-match/index.js +62 -0
- package/bundles/utils/node_modules/balanced-match/package.json +48 -0
- package/bundles/utils/node_modules/brace-expansion/LICENSE +21 -0
- package/bundles/utils/node_modules/brace-expansion/README.md +129 -0
- package/bundles/utils/node_modules/brace-expansion/index.js +201 -0
- package/bundles/utils/node_modules/brace-expansion/package.json +50 -0
- package/bundles/utils/node_modules/colors/LICENSE +25 -0
- package/bundles/utils/node_modules/colors/README.md +221 -0
- package/bundles/utils/node_modules/colors/examples/normal-usage.js +82 -0
- package/bundles/utils/node_modules/colors/examples/safe-string.js +79 -0
- package/bundles/utils/node_modules/colors/index.d.ts +136 -0
- package/bundles/utils/node_modules/colors/lib/colors.js +211 -0
- package/bundles/utils/node_modules/colors/lib/custom/trap.js +46 -0
- package/bundles/utils/node_modules/colors/lib/custom/zalgo.js +110 -0
- package/bundles/utils/node_modules/colors/lib/extendStringPrototype.js +110 -0
- package/bundles/utils/node_modules/colors/lib/index.js +13 -0
- package/bundles/utils/node_modules/colors/lib/maps/america.js +10 -0
- package/bundles/utils/node_modules/colors/lib/maps/rainbow.js +12 -0
- package/bundles/utils/node_modules/colors/lib/maps/random.js +11 -0
- package/bundles/utils/node_modules/colors/lib/maps/zebra.js +5 -0
- package/bundles/utils/node_modules/colors/lib/styles.js +95 -0
- package/bundles/utils/node_modules/colors/lib/system/has-flag.js +35 -0
- package/bundles/utils/node_modules/colors/lib/system/supports-colors.js +151 -0
- package/bundles/utils/node_modules/colors/package.json +45 -0
- package/bundles/utils/node_modules/colors/safe.d.ts +48 -0
- package/bundles/utils/node_modules/colors/safe.js +10 -0
- package/bundles/utils/node_modules/colors/themes/generic-logging.js +12 -0
- package/bundles/utils/node_modules/commander/LICENSE +22 -0
- package/bundles/utils/node_modules/commander/Readme.md +1149 -0
- package/bundles/utils/node_modules/commander/esm.mjs +16 -0
- package/bundles/utils/node_modules/commander/index.js +24 -0
- package/bundles/utils/node_modules/commander/lib/argument.js +149 -0
- package/bundles/utils/node_modules/commander/lib/command.js +2662 -0
- package/bundles/utils/node_modules/commander/lib/error.js +39 -0
- package/bundles/utils/node_modules/commander/lib/help.js +709 -0
- package/bundles/utils/node_modules/commander/lib/option.js +367 -0
- package/bundles/utils/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/bundles/utils/node_modules/commander/package-support.json +16 -0
- package/bundles/utils/node_modules/commander/package.json +82 -0
- package/bundles/utils/node_modules/commander/typings/esm.d.mts +3 -0
- package/bundles/utils/node_modules/commander/typings/index.d.ts +1045 -0
- package/bundles/utils/node_modules/concat-map/.travis.yml +4 -0
- package/bundles/utils/node_modules/concat-map/LICENSE +18 -0
- package/bundles/utils/node_modules/concat-map/README.markdown +62 -0
- package/bundles/utils/node_modules/concat-map/example/map.js +6 -0
- package/bundles/utils/node_modules/concat-map/index.js +13 -0
- package/bundles/utils/node_modules/concat-map/package.json +43 -0
- package/bundles/utils/node_modules/concat-map/test/map.js +39 -0
- package/bundles/utils/node_modules/debug/LICENSE +20 -0
- package/bundles/utils/node_modules/debug/README.md +481 -0
- package/bundles/utils/node_modules/debug/package.json +59 -0
- package/bundles/utils/node_modules/define-lazy-prop/index.d.ts +33 -0
- package/bundles/utils/node_modules/define-lazy-prop/index.js +19 -0
- package/bundles/utils/node_modules/define-lazy-prop/license +9 -0
- package/bundles/utils/node_modules/define-lazy-prop/package.json +48 -0
- package/bundles/utils/node_modules/define-lazy-prop/readme.md +64 -0
- package/bundles/utils/node_modules/diff/CONTRIBUTING.md +40 -0
- package/bundles/utils/node_modules/diff/LICENSE +29 -0
- package/bundles/utils/node_modules/diff/README.md +346 -0
- package/bundles/utils/node_modules/diff/dist/diff.js +2106 -0
- package/bundles/utils/node_modules/diff/dist/diff.min.js +37 -0
- package/bundles/utils/node_modules/diff/lib/convert/dmp.js +27 -0
- package/bundles/utils/node_modules/diff/lib/convert/xml.js +35 -0
- package/bundles/utils/node_modules/diff/lib/diff/array.js +39 -0
- package/bundles/utils/node_modules/diff/lib/diff/base.js +304 -0
- package/bundles/utils/node_modules/diff/lib/diff/character.js +33 -0
- package/bundles/utils/node_modules/diff/lib/diff/css.js +36 -0
- package/bundles/utils/node_modules/diff/lib/diff/json.js +143 -0
- package/bundles/utils/node_modules/diff/lib/diff/line.js +121 -0
- package/bundles/utils/node_modules/diff/lib/diff/sentence.js +36 -0
- package/bundles/utils/node_modules/diff/lib/diff/word.js +543 -0
- package/bundles/utils/node_modules/diff/lib/index.es6.js +2041 -0
- package/bundles/utils/node_modules/diff/lib/index.js +217 -0
- package/bundles/utils/node_modules/diff/lib/index.mjs +2041 -0
- package/bundles/utils/node_modules/diff/lib/patch/apply.js +393 -0
- package/bundles/utils/node_modules/diff/lib/patch/create.js +369 -0
- package/bundles/utils/node_modules/diff/lib/patch/line-endings.js +176 -0
- package/bundles/utils/node_modules/diff/lib/patch/merge.js +535 -0
- package/bundles/utils/node_modules/diff/lib/patch/parse.js +151 -0
- package/bundles/utils/node_modules/diff/lib/patch/reverse.js +58 -0
- package/bundles/utils/node_modules/diff/lib/util/array.js +27 -0
- package/bundles/utils/node_modules/diff/lib/util/distance-iterator.js +54 -0
- package/bundles/utils/node_modules/diff/lib/util/params.js +22 -0
- package/bundles/utils/node_modules/diff/lib/util/string.js +131 -0
- package/bundles/utils/node_modules/diff/package.json +88 -0
- package/bundles/utils/node_modules/diff/release-notes.md +361 -0
- package/bundles/utils/node_modules/diff/runtime.js +3 -0
- package/bundles/utils/node_modules/dotenv/CHANGELOG.md +475 -0
- package/bundles/utils/node_modules/dotenv/LICENSE +23 -0
- package/bundles/utils/node_modules/dotenv/README-es.md +448 -0
- package/bundles/utils/node_modules/dotenv/README.md +728 -0
- package/bundles/utils/node_modules/dotenv/config.d.ts +1 -0
- package/bundles/utils/node_modules/dotenv/config.js +9 -0
- package/bundles/utils/node_modules/dotenv/lib/cli-options.js +11 -0
- package/bundles/utils/node_modules/dotenv/lib/env-options.js +24 -0
- package/bundles/utils/node_modules/dotenv/lib/main.d.ts +153 -0
- package/bundles/utils/node_modules/dotenv/lib/main.js +361 -0
- package/bundles/utils/node_modules/dotenv/package.json +65 -0
- package/bundles/utils/node_modules/graceful-fs/LICENSE +15 -0
- package/bundles/utils/node_modules/graceful-fs/README.md +143 -0
- package/bundles/utils/node_modules/graceful-fs/clone.js +23 -0
- package/bundles/utils/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/bundles/utils/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/bundles/utils/node_modules/graceful-fs/package.json +50 -0
- package/bundles/utils/node_modules/graceful-fs/polyfills.js +355 -0
- package/bundles/utils/node_modules/https-proxy-agent/LICENSE +22 -0
- package/bundles/utils/node_modules/https-proxy-agent/README.md +70 -0
- package/bundles/utils/node_modules/https-proxy-agent/dist/index.d.ts +47 -0
- package/bundles/utils/node_modules/https-proxy-agent/dist/index.d.ts.map +1 -0
- package/bundles/utils/node_modules/https-proxy-agent/dist/index.js +180 -0
- package/bundles/utils/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- package/bundles/utils/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +15 -0
- package/bundles/utils/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts.map +1 -0
- package/bundles/utils/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/bundles/utils/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/bundles/utils/node_modules/https-proxy-agent/package.json +50 -0
- package/bundles/utils/node_modules/ini/LICENSE +15 -0
- package/bundles/utils/node_modules/ini/README.md +180 -0
- package/bundles/utils/node_modules/ini/lib/ini.js +280 -0
- package/bundles/utils/node_modules/ini/package.json +45 -0
- package/bundles/utils/node_modules/ip-address/LICENSE +19 -0
- package/bundles/utils/node_modules/ip-address/README.md +108 -0
- package/bundles/utils/node_modules/ip-address/dist/address-error.d.ts +5 -0
- package/bundles/utils/node_modules/ip-address/dist/address-error.d.ts.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/address-error.js +14 -0
- package/bundles/utils/node_modules/ip-address/dist/address-error.js.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/common.d.ts +8 -0
- package/bundles/utils/node_modules/ip-address/dist/common.d.ts.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/common.js +26 -0
- package/bundles/utils/node_modules/ip-address/dist/common.js.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/ip-address.d.ts +11 -0
- package/bundles/utils/node_modules/ip-address/dist/ip-address.d.ts.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/ip-address.js +35 -0
- package/bundles/utils/node_modules/ip-address/dist/ip-address.js.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/ipv4.d.ts +194 -0
- package/bundles/utils/node_modules/ip-address/dist/ipv4.d.ts.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/ipv4.js +326 -0
- package/bundles/utils/node_modules/ip-address/dist/ipv4.js.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/ipv6.d.ts +429 -0
- package/bundles/utils/node_modules/ip-address/dist/ipv6.d.ts.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/ipv6.js +998 -0
- package/bundles/utils/node_modules/ip-address/dist/ipv6.js.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/v4/constants.d.ts +5 -0
- package/bundles/utils/node_modules/ip-address/dist/v4/constants.d.ts.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/v4/constants.js +8 -0
- package/bundles/utils/node_modules/ip-address/dist/v4/constants.js.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/constants.d.ts +45 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/constants.d.ts.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/constants.js +76 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/constants.js.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/helpers.d.ts +18 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/helpers.d.ts.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/helpers.js +48 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/helpers.js.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/regular-expressions.d.ts +6 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/regular-expressions.d.ts.map +1 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/regular-expressions.js +96 -0
- package/bundles/utils/node_modules/ip-address/dist/v6/regular-expressions.js.map +1 -0
- package/bundles/utils/node_modules/ip-address/package.json +87 -0
- package/bundles/utils/node_modules/is-docker/cli.js +5 -0
- package/bundles/utils/node_modules/is-docker/index.d.ts +15 -0
- package/bundles/utils/node_modules/is-docker/index.js +29 -0
- package/bundles/utils/node_modules/is-docker/license +9 -0
- package/bundles/utils/node_modules/is-docker/package.json +42 -0
- package/bundles/utils/node_modules/is-docker/readme.md +27 -0
- package/bundles/utils/node_modules/is-wsl/index.d.ts +15 -0
- package/bundles/utils/node_modules/is-wsl/index.js +31 -0
- package/bundles/utils/node_modules/is-wsl/license +9 -0
- package/bundles/utils/node_modules/is-wsl/package.json +45 -0
- package/bundles/utils/node_modules/is-wsl/readme.md +36 -0
- package/bundles/utils/node_modules/jpeg-js/.github/workflows/ci.yml +19 -0
- package/bundles/utils/node_modules/jpeg-js/CONTRIBUTING.md +27 -0
- package/bundles/utils/node_modules/jpeg-js/LICENSE +25 -0
- package/bundles/utils/node_modules/jpeg-js/README.md +176 -0
- package/bundles/utils/node_modules/jpeg-js/index.d.ts +36 -0
- package/bundles/utils/node_modules/jpeg-js/index.js +7 -0
- package/bundles/utils/node_modules/jpeg-js/lib/decoder.js +1151 -0
- package/bundles/utils/node_modules/jpeg-js/lib/encoder.js +814 -0
- package/bundles/utils/node_modules/jpeg-js/package.json +32 -0
- package/bundles/utils/node_modules/jsbn/CHANGELOG.md +16 -0
- package/bundles/utils/node_modules/jsbn/LICENSE +40 -0
- package/bundles/utils/node_modules/jsbn/README.md +173 -0
- package/bundles/utils/node_modules/jsbn/example.html +11 -0
- package/bundles/utils/node_modules/jsbn/example.js +5 -0
- package/bundles/utils/node_modules/jsbn/index.js +1361 -0
- package/bundles/utils/node_modules/jsbn/package.json +21 -0
- package/bundles/utils/node_modules/jsbn/test/es6-import.js +3 -0
- package/bundles/utils/node_modules/mime/CHANGELOG.md +312 -0
- package/bundles/utils/node_modules/mime/LICENSE +21 -0
- package/bundles/utils/node_modules/mime/Mime.js +97 -0
- package/bundles/utils/node_modules/mime/README.md +178 -0
- package/bundles/utils/node_modules/mime/cli.js +46 -0
- package/bundles/utils/node_modules/mime/index.js +4 -0
- package/bundles/utils/node_modules/mime/lite.js +4 -0
- package/bundles/utils/node_modules/mime/package.json +52 -0
- package/bundles/utils/node_modules/mime/types/other.js +1 -0
- package/bundles/utils/node_modules/mime/types/standard.js +1 -0
- package/bundles/utils/node_modules/minimatch/LICENSE +15 -0
- package/bundles/utils/node_modules/minimatch/README.md +230 -0
- package/bundles/utils/node_modules/minimatch/minimatch.js +1005 -0
- package/bundles/utils/node_modules/minimatch/package.json +33 -0
- package/bundles/utils/node_modules/ms/index.js +162 -0
- package/bundles/utils/node_modules/ms/license.md +21 -0
- package/bundles/utils/node_modules/ms/package.json +37 -0
- package/bundles/utils/node_modules/ms/readme.md +60 -0
- package/bundles/utils/node_modules/open/index.d.ts +153 -0
- package/bundles/utils/node_modules/open/index.js +315 -0
- package/bundles/utils/node_modules/open/license +9 -0
- package/bundles/utils/node_modules/open/package.json +61 -0
- package/bundles/utils/node_modules/open/readme.md +183 -0
- package/bundles/utils/node_modules/open/xdg-open +1066 -0
- package/bundles/utils/node_modules/pngjs/LICENSE +20 -0
- package/bundles/utils/node_modules/pngjs/README.md +433 -0
- package/bundles/utils/node_modules/pngjs/browser.js +18554 -0
- package/bundles/utils/node_modules/pngjs/lib/bitmapper.js +267 -0
- package/bundles/utils/node_modules/pngjs/lib/bitpacker.js +158 -0
- package/bundles/utils/node_modules/pngjs/lib/chunkstream.js +189 -0
- package/bundles/utils/node_modules/pngjs/lib/constants.js +32 -0
- package/bundles/utils/node_modules/pngjs/lib/crc.js +40 -0
- package/bundles/utils/node_modules/pngjs/lib/filter-pack.js +171 -0
- package/bundles/utils/node_modules/pngjs/lib/filter-parse-async.js +24 -0
- package/bundles/utils/node_modules/pngjs/lib/filter-parse-sync.js +21 -0
- package/bundles/utils/node_modules/pngjs/lib/filter-parse.js +177 -0
- package/bundles/utils/node_modules/pngjs/lib/format-normaliser.js +93 -0
- package/bundles/utils/node_modules/pngjs/lib/interlace.js +95 -0
- package/bundles/utils/node_modules/pngjs/lib/packer-async.js +50 -0
- package/bundles/utils/node_modules/pngjs/lib/packer-sync.js +56 -0
- package/bundles/utils/node_modules/pngjs/lib/packer.js +129 -0
- package/bundles/utils/node_modules/pngjs/lib/paeth-predictor.js +16 -0
- package/bundles/utils/node_modules/pngjs/lib/parser-async.js +169 -0
- package/bundles/utils/node_modules/pngjs/lib/parser-sync.js +112 -0
- package/bundles/utils/node_modules/pngjs/lib/parser.js +290 -0
- package/bundles/utils/node_modules/pngjs/lib/png-sync.js +12 -0
- package/bundles/utils/node_modules/pngjs/lib/png.js +194 -0
- package/bundles/utils/node_modules/pngjs/lib/sync-inflate.js +168 -0
- package/bundles/utils/node_modules/pngjs/lib/sync-reader.js +45 -0
- package/bundles/utils/node_modules/pngjs/package.json +77 -0
- package/bundles/utils/node_modules/progress/CHANGELOG.md +115 -0
- package/bundles/utils/node_modules/progress/LICENSE +22 -0
- package/bundles/utils/node_modules/progress/Makefile +8 -0
- package/bundles/utils/node_modules/progress/Readme.md +146 -0
- package/bundles/utils/node_modules/progress/index.js +1 -0
- package/bundles/utils/node_modules/progress/lib/node-progress.js +236 -0
- package/bundles/utils/node_modules/progress/package.json +26 -0
- package/bundles/utils/node_modules/proxy-from-env/.github/workflows/run-tests.yaml +66 -0
- package/bundles/utils/node_modules/proxy-from-env/LICENSE +20 -0
- package/bundles/utils/node_modules/proxy-from-env/README.md +154 -0
- package/bundles/utils/node_modules/proxy-from-env/eslint.config.mjs +54 -0
- package/bundles/utils/node_modules/proxy-from-env/index.js +103 -0
- package/bundles/utils/node_modules/proxy-from-env/package.json +35 -0
- package/bundles/utils/node_modules/proxy-from-env/test.js +432 -0
- package/bundles/utils/node_modules/retry/.travis.yml +15 -0
- package/bundles/utils/node_modules/retry/License +21 -0
- package/bundles/utils/node_modules/retry/Makefile +18 -0
- package/bundles/utils/node_modules/retry/README.md +227 -0
- package/bundles/utils/node_modules/retry/equation.gif +0 -0
- package/bundles/utils/node_modules/retry/example/dns.js +31 -0
- package/bundles/utils/node_modules/retry/example/stop.js +40 -0
- package/bundles/utils/node_modules/retry/index.js +1 -0
- package/bundles/utils/node_modules/retry/lib/retry.js +100 -0
- package/bundles/utils/node_modules/retry/lib/retry_operation.js +158 -0
- package/bundles/utils/node_modules/retry/package.json +32 -0
- package/bundles/utils/node_modules/retry/test/common.js +10 -0
- package/bundles/utils/node_modules/retry/test/integration/test-forever.js +24 -0
- package/bundles/utils/node_modules/retry/test/integration/test-retry-operation.js +258 -0
- package/bundles/utils/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
- package/bundles/utils/node_modules/retry/test/integration/test-timeouts.js +69 -0
- package/bundles/utils/node_modules/signal-exit/LICENSE.txt +16 -0
- package/bundles/utils/node_modules/signal-exit/README.md +39 -0
- package/bundles/utils/node_modules/signal-exit/index.js +202 -0
- package/bundles/utils/node_modules/signal-exit/package.json +38 -0
- package/bundles/utils/node_modules/signal-exit/signals.js +53 -0
- package/bundles/utils/node_modules/smart-buffer/.prettierrc.yaml +5 -0
- package/bundles/utils/node_modules/smart-buffer/.travis.yml +13 -0
- package/bundles/utils/node_modules/smart-buffer/LICENSE +20 -0
- package/bundles/utils/node_modules/smart-buffer/README.md +633 -0
- package/bundles/utils/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
- package/bundles/utils/node_modules/smart-buffer/build/smartbuffer.js.map +1 -0
- package/bundles/utils/node_modules/smart-buffer/build/utils.js +108 -0
- package/bundles/utils/node_modules/smart-buffer/build/utils.js.map +1 -0
- package/bundles/utils/node_modules/smart-buffer/docs/CHANGELOG.md +70 -0
- package/bundles/utils/node_modules/smart-buffer/docs/README_v3.md +367 -0
- package/bundles/utils/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
- package/bundles/utils/node_modules/smart-buffer/package.json +79 -0
- package/bundles/utils/node_modules/smart-buffer/typings/smartbuffer.d.ts +755 -0
- package/bundles/utils/node_modules/smart-buffer/typings/utils.d.ts +66 -0
- package/bundles/utils/node_modules/socks/.prettierrc.yaml +7 -0
- package/bundles/utils/node_modules/socks/LICENSE +20 -0
- package/bundles/utils/node_modules/socks/README.md +686 -0
- package/bundles/utils/node_modules/socks/build/client/socksclient.js +793 -0
- package/bundles/utils/node_modules/socks/build/client/socksclient.js.map +1 -0
- package/bundles/utils/node_modules/socks/build/common/constants.js +108 -0
- package/bundles/utils/node_modules/socks/build/common/constants.js.map +1 -0
- package/bundles/utils/node_modules/socks/build/common/helpers.js +166 -0
- package/bundles/utils/node_modules/socks/build/common/helpers.js.map +1 -0
- package/bundles/utils/node_modules/socks/build/common/receivebuffer.js +43 -0
- package/bundles/utils/node_modules/socks/build/common/receivebuffer.js.map +1 -0
- package/bundles/utils/node_modules/socks/build/common/util.js +25 -0
- package/bundles/utils/node_modules/socks/build/common/util.js.map +1 -0
- package/bundles/utils/node_modules/socks/build/index.js +18 -0
- package/bundles/utils/node_modules/socks/build/index.js.map +1 -0
- package/bundles/utils/node_modules/socks/docs/examples/index.md +17 -0
- package/bundles/utils/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
- package/bundles/utils/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
- package/bundles/utils/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
- package/bundles/utils/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
- package/bundles/utils/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
- package/bundles/utils/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
- package/bundles/utils/node_modules/socks/docs/index.md +5 -0
- package/bundles/utils/node_modules/socks/docs/migratingFromV1.md +86 -0
- package/bundles/utils/node_modules/socks/package.json +58 -0
- package/bundles/utils/node_modules/socks/typings/client/socksclient.d.ts +162 -0
- package/bundles/utils/node_modules/socks/typings/common/constants.d.ts +151 -0
- package/bundles/utils/node_modules/socks/typings/common/helpers.d.ts +17 -0
- package/bundles/utils/node_modules/socks/typings/common/receivebuffer.d.ts +12 -0
- package/bundles/utils/node_modules/socks/typings/common/util.d.ts +14 -0
- package/bundles/utils/node_modules/socks/typings/index.d.ts +1 -0
- package/bundles/utils/node_modules/socks-proxy-agent/LICENSE +22 -0
- package/bundles/utils/node_modules/socks-proxy-agent/README.md +50 -0
- package/bundles/utils/node_modules/socks-proxy-agent/dist/index.d.ts +27 -0
- package/bundles/utils/node_modules/socks-proxy-agent/dist/index.d.ts.map +1 -0
- package/bundles/utils/node_modules/socks-proxy-agent/dist/index.js +195 -0
- package/bundles/utils/node_modules/socks-proxy-agent/dist/index.js.map +1 -0
- package/bundles/utils/node_modules/socks-proxy-agent/package.json +142 -0
- package/bundles/utils/node_modules/sprintf-js/CONTRIBUTORS.md +26 -0
- package/bundles/utils/node_modules/sprintf-js/LICENSE +24 -0
- package/bundles/utils/node_modules/sprintf-js/README.md +143 -0
- package/bundles/utils/node_modules/sprintf-js/dist/.gitattributes +4 -0
- package/bundles/utils/node_modules/sprintf-js/dist/angular-sprintf.min.js +3 -0
- package/bundles/utils/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +1 -0
- package/bundles/utils/node_modules/sprintf-js/dist/sprintf.min.js +3 -0
- package/bundles/utils/node_modules/sprintf-js/dist/sprintf.min.js.map +1 -0
- package/bundles/utils/node_modules/sprintf-js/package.json +35 -0
- package/bundles/utils/node_modules/ws/LICENSE +20 -0
- package/bundles/utils/node_modules/ws/README.md +548 -0
- package/bundles/utils/node_modules/ws/browser.js +8 -0
- package/bundles/utils/node_modules/ws/index.js +13 -0
- package/bundles/utils/node_modules/ws/lib/buffer-util.js +131 -0
- package/bundles/utils/node_modules/ws/lib/constants.js +12 -0
- package/bundles/utils/node_modules/ws/lib/event-target.js +292 -0
- package/bundles/utils/node_modules/ws/lib/extension.js +203 -0
- package/bundles/utils/node_modules/ws/lib/limiter.js +55 -0
- package/bundles/utils/node_modules/ws/lib/permessage-deflate.js +514 -0
- package/bundles/utils/node_modules/ws/lib/receiver.js +704 -0
- package/bundles/utils/node_modules/ws/lib/sender.js +497 -0
- package/bundles/utils/node_modules/ws/lib/stream.js +159 -0
- package/bundles/utils/node_modules/ws/lib/subprotocol.js +62 -0
- package/bundles/utils/node_modules/ws/lib/validation.js +130 -0
- package/bundles/utils/node_modules/ws/lib/websocket-server.js +540 -0
- package/bundles/utils/node_modules/ws/lib/websocket.js +1338 -0
- package/bundles/utils/node_modules/ws/package.json +69 -0
- package/bundles/utils/node_modules/ws/wrapper.mjs +8 -0
- package/bundles/utils/node_modules/yaml/LICENSE +13 -0
- package/bundles/utils/node_modules/yaml/README.md +169 -0
- package/bundles/utils/node_modules/yaml/bin.mjs +11 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/compose-node.js +102 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/resolve-props.js +148 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +27 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/bundles/utils/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/bundles/utils/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/bundles/utils/node_modules/yaml/browser/dist/doc/anchors.js +72 -0
- package/bundles/utils/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/bundles/utils/node_modules/yaml/browser/dist/doc/createNode.js +89 -0
- package/bundles/utils/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/bundles/utils/node_modules/yaml/browser/dist/errors.js +57 -0
- package/bundles/utils/node_modules/yaml/browser/dist/index.js +17 -0
- package/bundles/utils/node_modules/yaml/browser/dist/log.js +14 -0
- package/bundles/utils/node_modules/yaml/browser/dist/nodes/Alias.js +101 -0
- package/bundles/utils/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/bundles/utils/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/bundles/utils/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/bundles/utils/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/bundles/utils/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/bundles/utils/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/bundles/utils/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +62 -0
- package/bundles/utils/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/bundles/utils/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/bundles/utils/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/bundles/utils/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/bundles/utils/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/bundles/utils/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/bundles/utils/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
- package/bundles/utils/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/bundles/utils/node_modules/yaml/browser/dist/parse/parser.js +954 -0
- package/bundles/utils/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +66 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/bundles/utils/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/bundles/utils/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
- package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +143 -0
- package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
- package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/bundles/utils/node_modules/yaml/browser/dist/stringify/stringifyString.js +328 -0
- package/bundles/utils/node_modules/yaml/browser/dist/util.js +11 -0
- package/bundles/utils/node_modules/yaml/browser/dist/visit.js +233 -0
- package/bundles/utils/node_modules/yaml/browser/index.js +5 -0
- package/bundles/utils/node_modules/yaml/browser/package.json +3 -0
- package/bundles/utils/node_modules/yaml/dist/cli.d.ts +8 -0
- package/bundles/utils/node_modules/yaml/dist/cli.mjs +199 -0
- package/bundles/utils/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/bundles/utils/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/bundles/utils/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/bundles/utils/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/bundles/utils/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/bundles/utils/node_modules/yaml/dist/compose/compose-node.js +105 -0
- package/bundles/utils/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/bundles/utils/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/bundles/utils/node_modules/yaml/dist/compose/composer.d.ts +62 -0
- package/bundles/utils/node_modules/yaml/dist/compose/composer.js +221 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/bundles/utils/node_modules/yaml/dist/compose/resolve-props.js +150 -0
- package/bundles/utils/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/bundles/utils/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/bundles/utils/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/bundles/utils/node_modules/yaml/dist/compose/util-empty-scalar-position.js +29 -0
- package/bundles/utils/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/bundles/utils/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/bundles/utils/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/bundles/utils/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/bundles/utils/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/bundles/utils/node_modules/yaml/dist/doc/Document.js +337 -0
- package/bundles/utils/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/bundles/utils/node_modules/yaml/dist/doc/anchors.js +77 -0
- package/bundles/utils/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/bundles/utils/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/bundles/utils/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/bundles/utils/node_modules/yaml/dist/doc/createNode.js +91 -0
- package/bundles/utils/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/bundles/utils/node_modules/yaml/dist/doc/directives.js +178 -0
- package/bundles/utils/node_modules/yaml/dist/errors.d.ts +21 -0
- package/bundles/utils/node_modules/yaml/dist/errors.js +62 -0
- package/bundles/utils/node_modules/yaml/dist/index.d.ts +22 -0
- package/bundles/utils/node_modules/yaml/dist/index.js +50 -0
- package/bundles/utils/node_modules/yaml/dist/log.d.ts +3 -0
- package/bundles/utils/node_modules/yaml/dist/log.js +17 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/Alias.d.ts +28 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/Alias.js +103 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/Pair.d.ts +21 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/Scalar.d.ts +42 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/addPairToJSMap.js +64 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/toJS.d.ts +27 -0
- package/bundles/utils/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/bundles/utils/node_modules/yaml/dist/options.d.ts +344 -0
- package/bundles/utils/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/bundles/utils/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/bundles/utils/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/bundles/utils/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/bundles/utils/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/bundles/utils/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/bundles/utils/node_modules/yaml/dist/parse/cst.d.ts +108 -0
- package/bundles/utils/node_modules/yaml/dist/parse/cst.js +112 -0
- package/bundles/utils/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/bundles/utils/node_modules/yaml/dist/parse/lexer.js +719 -0
- package/bundles/utils/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/bundles/utils/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/bundles/utils/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/bundles/utils/node_modules/yaml/dist/parse/parser.js +958 -0
- package/bundles/utils/node_modules/yaml/dist/public-api.d.ts +43 -0
- package/bundles/utils/node_modules/yaml/dist/public-api.js +107 -0
- package/bundles/utils/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/bundles/utils/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/bundles/utils/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/bundles/utils/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/bundles/utils/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/bundles/utils/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/bundles/utils/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/bundles/utils/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/bundles/utils/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/bundles/utils/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/bundles/utils/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/bundles/utils/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/bundles/utils/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/bundles/utils/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/bundles/utils/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/bundles/utils/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/bundles/utils/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/bundles/utils/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/bundles/utils/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/bundles/utils/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/bundles/utils/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/bundles/utils/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/bundles/utils/node_modules/yaml/dist/schema/tags.js +99 -0
- package/bundles/utils/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/binary.js +68 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +28 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/bundles/utils/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringify.js +132 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyCollection.js +145 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/bundles/utils/node_modules/yaml/dist/stringify/stringifyString.js +330 -0
- package/bundles/utils/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/bundles/utils/node_modules/yaml/dist/test-events.js +134 -0
- package/bundles/utils/node_modules/yaml/dist/util.d.ts +12 -0
- package/bundles/utils/node_modules/yaml/dist/util.js +28 -0
- package/bundles/utils/node_modules/yaml/dist/visit.d.ts +102 -0
- package/bundles/utils/node_modules/yaml/dist/visit.js +236 -0
- package/bundles/utils/node_modules/yaml/package.json +96 -0
- package/bundles/utils/node_modules/yaml/util.js +2 -0
- package/bundles/zip/node_modules/.package-lock.json +139 -0
- package/bundles/zip/node_modules/@types/node/LICENSE +21 -0
- package/bundles/zip/node_modules/@types/node/README.md +16 -0
- package/bundles/zip/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/bundles/zip/node_modules/@types/node/assert.d.ts +912 -0
- package/bundles/zip/node_modules/@types/node/async_hooks.d.ts +501 -0
- package/bundles/zip/node_modules/@types/node/buffer.d.ts +2232 -0
- package/bundles/zip/node_modules/@types/node/child_process.d.ts +1366 -0
- package/bundles/zip/node_modules/@types/node/cluster.d.ts +414 -0
- package/bundles/zip/node_modules/@types/node/console.d.ts +412 -0
- package/bundles/zip/node_modules/@types/node/constants.d.ts +18 -0
- package/bundles/zip/node_modules/@types/node/crypto.d.ts +3307 -0
- package/bundles/zip/node_modules/@types/node/dgram.d.ts +545 -0
- package/bundles/zip/node_modules/@types/node/diagnostics_channel.d.ts +134 -0
- package/bundles/zip/node_modules/@types/node/dns/promises.d.ts +370 -0
- package/bundles/zip/node_modules/@types/node/dns.d.ts +659 -0
- package/bundles/zip/node_modules/@types/node/domain.d.ts +169 -0
- package/bundles/zip/node_modules/@types/node/events.d.ts +651 -0
- package/bundles/zip/node_modules/@types/node/fs/promises.d.ts +1091 -0
- package/bundles/zip/node_modules/@types/node/fs.d.ts +3869 -0
- package/bundles/zip/node_modules/@types/node/globals.d.ts +284 -0
- package/bundles/zip/node_modules/@types/node/globals.global.d.ts +1 -0
- package/bundles/zip/node_modules/@types/node/http.d.ts +1396 -0
- package/bundles/zip/node_modules/@types/node/http2.d.ts +2100 -0
- package/bundles/zip/node_modules/@types/node/https.d.ts +391 -0
- package/bundles/zip/node_modules/@types/node/index.d.ts +129 -0
- package/bundles/zip/node_modules/@types/node/inspector.d.ts +2744 -0
- package/bundles/zip/node_modules/@types/node/module.d.ts +114 -0
- package/bundles/zip/node_modules/@types/node/net.d.ts +791 -0
- package/bundles/zip/node_modules/@types/node/os.d.ts +455 -0
- package/bundles/zip/node_modules/@types/node/package.json +220 -0
- package/bundles/zip/node_modules/@types/node/path.d.ts +180 -0
- package/bundles/zip/node_modules/@types/node/perf_hooks.d.ts +557 -0
- package/bundles/zip/node_modules/@types/node/process.d.ts +1481 -0
- package/bundles/zip/node_modules/@types/node/punycode.d.ts +117 -0
- package/bundles/zip/node_modules/@types/node/querystring.d.ts +131 -0
- package/bundles/zip/node_modules/@types/node/readline.d.ts +650 -0
- package/bundles/zip/node_modules/@types/node/repl.d.ts +424 -0
- package/bundles/zip/node_modules/@types/node/stream/consumers.d.ts +24 -0
- package/bundles/zip/node_modules/@types/node/stream/promises.d.ts +42 -0
- package/bundles/zip/node_modules/@types/node/stream/web.d.ts +330 -0
- package/bundles/zip/node_modules/@types/node/stream.d.ts +1249 -0
- package/bundles/zip/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/bundles/zip/node_modules/@types/node/timers/promises.d.ts +68 -0
- package/bundles/zip/node_modules/@types/node/timers.d.ts +94 -0
- package/bundles/zip/node_modules/@types/node/tls.d.ts +1020 -0
- package/bundles/zip/node_modules/@types/node/trace_events.d.ts +161 -0
- package/bundles/zip/node_modules/@types/node/tty.d.ts +204 -0
- package/bundles/zip/node_modules/@types/node/url.d.ts +891 -0
- package/bundles/zip/node_modules/@types/node/util.d.ts +1594 -0
- package/bundles/zip/node_modules/@types/node/v8.d.ts +378 -0
- package/bundles/zip/node_modules/@types/node/vm.d.ts +507 -0
- package/bundles/zip/node_modules/@types/node/wasi.d.ts +158 -0
- package/bundles/zip/node_modules/@types/node/worker_threads.d.ts +649 -0
- package/bundles/zip/node_modules/@types/node/zlib.d.ts +517 -0
- package/bundles/zip/node_modules/@types/yauzl/LICENSE +21 -0
- package/bundles/zip/node_modules/@types/yauzl/README.md +16 -0
- package/bundles/zip/node_modules/@types/yauzl/index.d.ts +98 -0
- package/bundles/zip/node_modules/@types/yauzl/package.json +27 -0
- package/bundles/zip/node_modules/@types/yazl/LICENSE +21 -0
- package/bundles/zip/node_modules/@types/yazl/README.md +16 -0
- package/bundles/zip/node_modules/@types/yazl/index.d.ts +46 -0
- package/bundles/zip/node_modules/@types/yazl/package.json +31 -0
- package/bundles/zip/node_modules/buffer-crc32/LICENSE +19 -0
- package/bundles/zip/node_modules/buffer-crc32/README.md +47 -0
- package/bundles/zip/node_modules/buffer-crc32/index.js +111 -0
- package/bundles/zip/node_modules/buffer-crc32/package.json +39 -0
- package/bundles/zip/node_modules/debug/LICENSE +20 -0
- package/bundles/zip/node_modules/debug/README.md +481 -0
- package/bundles/zip/node_modules/debug/package.json +65 -0
- package/bundles/zip/node_modules/end-of-stream/LICENSE +21 -0
- package/bundles/zip/node_modules/end-of-stream/README.md +54 -0
- package/bundles/zip/node_modules/end-of-stream/index.js +94 -0
- package/bundles/zip/node_modules/end-of-stream/package.json +37 -0
- package/bundles/zip/node_modules/get-stream/buffer-stream.js +52 -0
- package/bundles/zip/node_modules/get-stream/index.d.ts +108 -0
- package/bundles/zip/node_modules/get-stream/index.js +60 -0
- package/bundles/zip/node_modules/get-stream/license +9 -0
- package/bundles/zip/node_modules/get-stream/package.json +50 -0
- package/bundles/zip/node_modules/get-stream/readme.md +124 -0
- package/bundles/zip/node_modules/ms/index.js +162 -0
- package/bundles/zip/node_modules/ms/license.md +21 -0
- package/bundles/zip/node_modules/ms/package.json +38 -0
- package/bundles/zip/node_modules/ms/readme.md +59 -0
- package/bundles/zip/node_modules/once/LICENSE +15 -0
- package/bundles/zip/node_modules/once/README.md +79 -0
- package/bundles/zip/node_modules/once/once.js +42 -0
- package/bundles/zip/node_modules/once/package.json +33 -0
- package/bundles/zip/node_modules/pend/LICENSE +23 -0
- package/bundles/zip/node_modules/pend/README.md +41 -0
- package/bundles/zip/node_modules/pend/index.js +55 -0
- package/bundles/zip/node_modules/pend/package.json +18 -0
- package/bundles/zip/node_modules/pend/test.js +137 -0
- package/bundles/zip/node_modules/pump/.github/FUNDING.yml +2 -0
- package/bundles/zip/node_modules/pump/.travis.yml +5 -0
- package/bundles/zip/node_modules/pump/LICENSE +21 -0
- package/bundles/zip/node_modules/pump/README.md +74 -0
- package/bundles/zip/node_modules/pump/SECURITY.md +5 -0
- package/bundles/zip/node_modules/pump/index.js +86 -0
- package/bundles/zip/node_modules/pump/package.json +24 -0
- package/bundles/zip/node_modules/pump/test-browser.js +66 -0
- package/bundles/zip/node_modules/pump/test-node.js +53 -0
- package/bundles/zip/node_modules/wrappy/LICENSE +15 -0
- package/bundles/zip/node_modules/wrappy/README.md +36 -0
- package/bundles/zip/node_modules/wrappy/package.json +29 -0
- package/bundles/zip/node_modules/wrappy/wrappy.js +33 -0
- package/bundles/zip/node_modules/yauzl/LICENSE +21 -0
- package/bundles/zip/node_modules/yauzl/README.md +873 -0
- package/bundles/zip/node_modules/yauzl/fd-slicer.js +314 -0
- package/bundles/zip/node_modules/yauzl/index.js +954 -0
- package/bundles/zip/node_modules/yauzl/package.json +40 -0
- package/bundles/zip/node_modules/yazl/LICENSE +21 -0
- package/bundles/zip/node_modules/yazl/README.md +389 -0
- package/bundles/zip/node_modules/yazl/index.js +749 -0
- package/bundles/zip/node_modules/yazl/package.json +38 -0
- package/lib/tools/mcp/program.js +14 -4
- package/lib/tools/utils/mcp/server.js +2 -1
- package/lib/vite/traceViewer/index.CzAVbF3D.js +2 -0
- package/lib/vite/traceViewer/index.html +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,2106 @@
|
|
|
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 (global, factory) {
|
|
38
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
|
39
|
+
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
|
40
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.Diff = {}));
|
|
41
|
+
})(this, (function (exports) { 'use strict';
|
|
42
|
+
|
|
43
|
+
function Diff() {}
|
|
44
|
+
Diff.prototype = {
|
|
45
|
+
diff: function diff(oldString, newString) {
|
|
46
|
+
var _options$timeout;
|
|
47
|
+
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
48
|
+
var callback = options.callback;
|
|
49
|
+
if (typeof options === 'function') {
|
|
50
|
+
callback = options;
|
|
51
|
+
options = {};
|
|
52
|
+
}
|
|
53
|
+
var self = this;
|
|
54
|
+
function done(value) {
|
|
55
|
+
value = self.postProcess(value, options);
|
|
56
|
+
if (callback) {
|
|
57
|
+
setTimeout(function () {
|
|
58
|
+
callback(value);
|
|
59
|
+
}, 0);
|
|
60
|
+
return true;
|
|
61
|
+
} else {
|
|
62
|
+
return value;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// Allow subclasses to massage the input prior to running
|
|
67
|
+
oldString = this.castInput(oldString, options);
|
|
68
|
+
newString = this.castInput(newString, options);
|
|
69
|
+
oldString = this.removeEmpty(this.tokenize(oldString, options));
|
|
70
|
+
newString = this.removeEmpty(this.tokenize(newString, options));
|
|
71
|
+
var newLen = newString.length,
|
|
72
|
+
oldLen = oldString.length;
|
|
73
|
+
var editLength = 1;
|
|
74
|
+
var maxEditLength = newLen + oldLen;
|
|
75
|
+
if (options.maxEditLength != null) {
|
|
76
|
+
maxEditLength = Math.min(maxEditLength, options.maxEditLength);
|
|
77
|
+
}
|
|
78
|
+
var maxExecutionTime = (_options$timeout = options.timeout) !== null && _options$timeout !== void 0 ? _options$timeout : Infinity;
|
|
79
|
+
var abortAfterTimestamp = Date.now() + maxExecutionTime;
|
|
80
|
+
var bestPath = [{
|
|
81
|
+
oldPos: -1,
|
|
82
|
+
lastComponent: undefined
|
|
83
|
+
}];
|
|
84
|
+
|
|
85
|
+
// Seed editLength = 0, i.e. the content starts with the same values
|
|
86
|
+
var newPos = this.extractCommon(bestPath[0], newString, oldString, 0, options);
|
|
87
|
+
if (bestPath[0].oldPos + 1 >= oldLen && newPos + 1 >= newLen) {
|
|
88
|
+
// Identity per the equality and tokenizer
|
|
89
|
+
return done(buildValues(self, bestPath[0].lastComponent, newString, oldString, self.useLongestToken));
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// Once we hit the right edge of the edit graph on some diagonal k, we can
|
|
93
|
+
// definitely reach the end of the edit graph in no more than k edits, so
|
|
94
|
+
// there's no point in considering any moves to diagonal k+1 any more (from
|
|
95
|
+
// which we're guaranteed to need at least k+1 more edits).
|
|
96
|
+
// Similarly, once we've reached the bottom of the edit graph, there's no
|
|
97
|
+
// point considering moves to lower diagonals.
|
|
98
|
+
// We record this fact by setting minDiagonalToConsider and
|
|
99
|
+
// maxDiagonalToConsider to some finite value once we've hit the edge of
|
|
100
|
+
// the edit graph.
|
|
101
|
+
// This optimization is not faithful to the original algorithm presented in
|
|
102
|
+
// Myers's paper, which instead pointlessly extends D-paths off the end of
|
|
103
|
+
// the edit graph - see page 7 of Myers's paper which notes this point
|
|
104
|
+
// explicitly and illustrates it with a diagram. This has major performance
|
|
105
|
+
// implications for some common scenarios. For instance, to compute a diff
|
|
106
|
+
// where the new text simply appends d characters on the end of the
|
|
107
|
+
// original text of length n, the true Myers algorithm will take O(n+d^2)
|
|
108
|
+
// time while this optimization needs only O(n+d) time.
|
|
109
|
+
var minDiagonalToConsider = -Infinity,
|
|
110
|
+
maxDiagonalToConsider = Infinity;
|
|
111
|
+
|
|
112
|
+
// Main worker method. checks all permutations of a given edit length for acceptance.
|
|
113
|
+
function execEditLength() {
|
|
114
|
+
for (var diagonalPath = Math.max(minDiagonalToConsider, -editLength); diagonalPath <= Math.min(maxDiagonalToConsider, editLength); diagonalPath += 2) {
|
|
115
|
+
var basePath = void 0;
|
|
116
|
+
var removePath = bestPath[diagonalPath - 1],
|
|
117
|
+
addPath = bestPath[diagonalPath + 1];
|
|
118
|
+
if (removePath) {
|
|
119
|
+
// No one else is going to attempt to use this value, clear it
|
|
120
|
+
bestPath[diagonalPath - 1] = undefined;
|
|
121
|
+
}
|
|
122
|
+
var canAdd = false;
|
|
123
|
+
if (addPath) {
|
|
124
|
+
// what newPos will be after we do an insertion:
|
|
125
|
+
var addPathNewPos = addPath.oldPos - diagonalPath;
|
|
126
|
+
canAdd = addPath && 0 <= addPathNewPos && addPathNewPos < newLen;
|
|
127
|
+
}
|
|
128
|
+
var canRemove = removePath && removePath.oldPos + 1 < oldLen;
|
|
129
|
+
if (!canAdd && !canRemove) {
|
|
130
|
+
// If this path is a terminal then prune
|
|
131
|
+
bestPath[diagonalPath] = undefined;
|
|
132
|
+
continue;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
// Select the diagonal that we want to branch from. We select the prior
|
|
136
|
+
// path whose position in the old string is the farthest from the origin
|
|
137
|
+
// and does not pass the bounds of the diff graph
|
|
138
|
+
if (!canRemove || canAdd && removePath.oldPos < addPath.oldPos) {
|
|
139
|
+
basePath = self.addToPath(addPath, true, false, 0, options);
|
|
140
|
+
} else {
|
|
141
|
+
basePath = self.addToPath(removePath, false, true, 1, options);
|
|
142
|
+
}
|
|
143
|
+
newPos = self.extractCommon(basePath, newString, oldString, diagonalPath, options);
|
|
144
|
+
if (basePath.oldPos + 1 >= oldLen && newPos + 1 >= newLen) {
|
|
145
|
+
// If we have hit the end of both strings, then we are done
|
|
146
|
+
return done(buildValues(self, basePath.lastComponent, newString, oldString, self.useLongestToken));
|
|
147
|
+
} else {
|
|
148
|
+
bestPath[diagonalPath] = basePath;
|
|
149
|
+
if (basePath.oldPos + 1 >= oldLen) {
|
|
150
|
+
maxDiagonalToConsider = Math.min(maxDiagonalToConsider, diagonalPath - 1);
|
|
151
|
+
}
|
|
152
|
+
if (newPos + 1 >= newLen) {
|
|
153
|
+
minDiagonalToConsider = Math.max(minDiagonalToConsider, diagonalPath + 1);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
editLength++;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// Performs the length of edit iteration. Is a bit fugly as this has to support the
|
|
161
|
+
// sync and async mode which is never fun. Loops over execEditLength until a value
|
|
162
|
+
// is produced, or until the edit length exceeds options.maxEditLength (if given),
|
|
163
|
+
// in which case it will return undefined.
|
|
164
|
+
if (callback) {
|
|
165
|
+
(function exec() {
|
|
166
|
+
setTimeout(function () {
|
|
167
|
+
if (editLength > maxEditLength || Date.now() > abortAfterTimestamp) {
|
|
168
|
+
return callback();
|
|
169
|
+
}
|
|
170
|
+
if (!execEditLength()) {
|
|
171
|
+
exec();
|
|
172
|
+
}
|
|
173
|
+
}, 0);
|
|
174
|
+
})();
|
|
175
|
+
} else {
|
|
176
|
+
while (editLength <= maxEditLength && Date.now() <= abortAfterTimestamp) {
|
|
177
|
+
var ret = execEditLength();
|
|
178
|
+
if (ret) {
|
|
179
|
+
return ret;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
addToPath: function addToPath(path, added, removed, oldPosInc, options) {
|
|
185
|
+
var last = path.lastComponent;
|
|
186
|
+
if (last && !options.oneChangePerToken && last.added === added && last.removed === removed) {
|
|
187
|
+
return {
|
|
188
|
+
oldPos: path.oldPos + oldPosInc,
|
|
189
|
+
lastComponent: {
|
|
190
|
+
count: last.count + 1,
|
|
191
|
+
added: added,
|
|
192
|
+
removed: removed,
|
|
193
|
+
previousComponent: last.previousComponent
|
|
194
|
+
}
|
|
195
|
+
};
|
|
196
|
+
} else {
|
|
197
|
+
return {
|
|
198
|
+
oldPos: path.oldPos + oldPosInc,
|
|
199
|
+
lastComponent: {
|
|
200
|
+
count: 1,
|
|
201
|
+
added: added,
|
|
202
|
+
removed: removed,
|
|
203
|
+
previousComponent: last
|
|
204
|
+
}
|
|
205
|
+
};
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
extractCommon: function extractCommon(basePath, newString, oldString, diagonalPath, options) {
|
|
209
|
+
var newLen = newString.length,
|
|
210
|
+
oldLen = oldString.length,
|
|
211
|
+
oldPos = basePath.oldPos,
|
|
212
|
+
newPos = oldPos - diagonalPath,
|
|
213
|
+
commonCount = 0;
|
|
214
|
+
while (newPos + 1 < newLen && oldPos + 1 < oldLen && this.equals(oldString[oldPos + 1], newString[newPos + 1], options)) {
|
|
215
|
+
newPos++;
|
|
216
|
+
oldPos++;
|
|
217
|
+
commonCount++;
|
|
218
|
+
if (options.oneChangePerToken) {
|
|
219
|
+
basePath.lastComponent = {
|
|
220
|
+
count: 1,
|
|
221
|
+
previousComponent: basePath.lastComponent,
|
|
222
|
+
added: false,
|
|
223
|
+
removed: false
|
|
224
|
+
};
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
if (commonCount && !options.oneChangePerToken) {
|
|
228
|
+
basePath.lastComponent = {
|
|
229
|
+
count: commonCount,
|
|
230
|
+
previousComponent: basePath.lastComponent,
|
|
231
|
+
added: false,
|
|
232
|
+
removed: false
|
|
233
|
+
};
|
|
234
|
+
}
|
|
235
|
+
basePath.oldPos = oldPos;
|
|
236
|
+
return newPos;
|
|
237
|
+
},
|
|
238
|
+
equals: function equals(left, right, options) {
|
|
239
|
+
if (options.comparator) {
|
|
240
|
+
return options.comparator(left, right);
|
|
241
|
+
} else {
|
|
242
|
+
return left === right || options.ignoreCase && left.toLowerCase() === right.toLowerCase();
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
removeEmpty: function removeEmpty(array) {
|
|
246
|
+
var ret = [];
|
|
247
|
+
for (var i = 0; i < array.length; i++) {
|
|
248
|
+
if (array[i]) {
|
|
249
|
+
ret.push(array[i]);
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
return ret;
|
|
253
|
+
},
|
|
254
|
+
castInput: function castInput(value) {
|
|
255
|
+
return value;
|
|
256
|
+
},
|
|
257
|
+
tokenize: function tokenize(value) {
|
|
258
|
+
return Array.from(value);
|
|
259
|
+
},
|
|
260
|
+
join: function join(chars) {
|
|
261
|
+
return chars.join('');
|
|
262
|
+
},
|
|
263
|
+
postProcess: function postProcess(changeObjects) {
|
|
264
|
+
return changeObjects;
|
|
265
|
+
}
|
|
266
|
+
};
|
|
267
|
+
function buildValues(diff, lastComponent, newString, oldString, useLongestToken) {
|
|
268
|
+
// First we convert our linked list of components in reverse order to an
|
|
269
|
+
// array in the right order:
|
|
270
|
+
var components = [];
|
|
271
|
+
var nextComponent;
|
|
272
|
+
while (lastComponent) {
|
|
273
|
+
components.push(lastComponent);
|
|
274
|
+
nextComponent = lastComponent.previousComponent;
|
|
275
|
+
delete lastComponent.previousComponent;
|
|
276
|
+
lastComponent = nextComponent;
|
|
277
|
+
}
|
|
278
|
+
components.reverse();
|
|
279
|
+
var componentPos = 0,
|
|
280
|
+
componentLen = components.length,
|
|
281
|
+
newPos = 0,
|
|
282
|
+
oldPos = 0;
|
|
283
|
+
for (; componentPos < componentLen; componentPos++) {
|
|
284
|
+
var component = components[componentPos];
|
|
285
|
+
if (!component.removed) {
|
|
286
|
+
if (!component.added && useLongestToken) {
|
|
287
|
+
var value = newString.slice(newPos, newPos + component.count);
|
|
288
|
+
value = value.map(function (value, i) {
|
|
289
|
+
var oldValue = oldString[oldPos + i];
|
|
290
|
+
return oldValue.length > value.length ? oldValue : value;
|
|
291
|
+
});
|
|
292
|
+
component.value = diff.join(value);
|
|
293
|
+
} else {
|
|
294
|
+
component.value = diff.join(newString.slice(newPos, newPos + component.count));
|
|
295
|
+
}
|
|
296
|
+
newPos += component.count;
|
|
297
|
+
|
|
298
|
+
// Common case
|
|
299
|
+
if (!component.added) {
|
|
300
|
+
oldPos += component.count;
|
|
301
|
+
}
|
|
302
|
+
} else {
|
|
303
|
+
component.value = diff.join(oldString.slice(oldPos, oldPos + component.count));
|
|
304
|
+
oldPos += component.count;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
return components;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
var characterDiff = new Diff();
|
|
311
|
+
function diffChars(oldStr, newStr, options) {
|
|
312
|
+
return characterDiff.diff(oldStr, newStr, options);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
function longestCommonPrefix(str1, str2) {
|
|
316
|
+
var i;
|
|
317
|
+
for (i = 0; i < str1.length && i < str2.length; i++) {
|
|
318
|
+
if (str1[i] != str2[i]) {
|
|
319
|
+
return str1.slice(0, i);
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
return str1.slice(0, i);
|
|
323
|
+
}
|
|
324
|
+
function longestCommonSuffix(str1, str2) {
|
|
325
|
+
var i;
|
|
326
|
+
|
|
327
|
+
// Unlike longestCommonPrefix, we need a special case to handle all scenarios
|
|
328
|
+
// where we return the empty string since str1.slice(-0) will return the
|
|
329
|
+
// entire string.
|
|
330
|
+
if (!str1 || !str2 || str1[str1.length - 1] != str2[str2.length - 1]) {
|
|
331
|
+
return '';
|
|
332
|
+
}
|
|
333
|
+
for (i = 0; i < str1.length && i < str2.length; i++) {
|
|
334
|
+
if (str1[str1.length - (i + 1)] != str2[str2.length - (i + 1)]) {
|
|
335
|
+
return str1.slice(-i);
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
return str1.slice(-i);
|
|
339
|
+
}
|
|
340
|
+
function replacePrefix(string, oldPrefix, newPrefix) {
|
|
341
|
+
if (string.slice(0, oldPrefix.length) != oldPrefix) {
|
|
342
|
+
throw Error("string ".concat(JSON.stringify(string), " doesn't start with prefix ").concat(JSON.stringify(oldPrefix), "; this is a bug"));
|
|
343
|
+
}
|
|
344
|
+
return newPrefix + string.slice(oldPrefix.length);
|
|
345
|
+
}
|
|
346
|
+
function replaceSuffix(string, oldSuffix, newSuffix) {
|
|
347
|
+
if (!oldSuffix) {
|
|
348
|
+
return string + newSuffix;
|
|
349
|
+
}
|
|
350
|
+
if (string.slice(-oldSuffix.length) != oldSuffix) {
|
|
351
|
+
throw Error("string ".concat(JSON.stringify(string), " doesn't end with suffix ").concat(JSON.stringify(oldSuffix), "; this is a bug"));
|
|
352
|
+
}
|
|
353
|
+
return string.slice(0, -oldSuffix.length) + newSuffix;
|
|
354
|
+
}
|
|
355
|
+
function removePrefix(string, oldPrefix) {
|
|
356
|
+
return replacePrefix(string, oldPrefix, '');
|
|
357
|
+
}
|
|
358
|
+
function removeSuffix(string, oldSuffix) {
|
|
359
|
+
return replaceSuffix(string, oldSuffix, '');
|
|
360
|
+
}
|
|
361
|
+
function maximumOverlap(string1, string2) {
|
|
362
|
+
return string2.slice(0, overlapCount(string1, string2));
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
// Nicked from https://stackoverflow.com/a/60422853/1709587
|
|
366
|
+
function overlapCount(a, b) {
|
|
367
|
+
// Deal with cases where the strings differ in length
|
|
368
|
+
var startA = 0;
|
|
369
|
+
if (a.length > b.length) {
|
|
370
|
+
startA = a.length - b.length;
|
|
371
|
+
}
|
|
372
|
+
var endB = b.length;
|
|
373
|
+
if (a.length < b.length) {
|
|
374
|
+
endB = a.length;
|
|
375
|
+
}
|
|
376
|
+
// Create a back-reference for each index
|
|
377
|
+
// that should be followed in case of a mismatch.
|
|
378
|
+
// We only need B to make these references:
|
|
379
|
+
var map = Array(endB);
|
|
380
|
+
var k = 0; // Index that lags behind j
|
|
381
|
+
map[0] = 0;
|
|
382
|
+
for (var j = 1; j < endB; j++) {
|
|
383
|
+
if (b[j] == b[k]) {
|
|
384
|
+
map[j] = map[k]; // skip over the same character (optional optimisation)
|
|
385
|
+
} else {
|
|
386
|
+
map[j] = k;
|
|
387
|
+
}
|
|
388
|
+
while (k > 0 && b[j] != b[k]) {
|
|
389
|
+
k = map[k];
|
|
390
|
+
}
|
|
391
|
+
if (b[j] == b[k]) {
|
|
392
|
+
k++;
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
// Phase 2: use these references while iterating over A
|
|
396
|
+
k = 0;
|
|
397
|
+
for (var i = startA; i < a.length; i++) {
|
|
398
|
+
while (k > 0 && a[i] != b[k]) {
|
|
399
|
+
k = map[k];
|
|
400
|
+
}
|
|
401
|
+
if (a[i] == b[k]) {
|
|
402
|
+
k++;
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
return k;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* Returns true if the string consistently uses Windows line endings.
|
|
410
|
+
*/
|
|
411
|
+
function hasOnlyWinLineEndings(string) {
|
|
412
|
+
return string.includes('\r\n') && !string.startsWith('\n') && !string.match(/[^\r]\n/);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* Returns true if the string consistently uses Unix line endings.
|
|
417
|
+
*/
|
|
418
|
+
function hasOnlyUnixLineEndings(string) {
|
|
419
|
+
return !string.includes('\r\n') && string.includes('\n');
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
// Based on https://en.wikipedia.org/wiki/Latin_script_in_Unicode
|
|
423
|
+
//
|
|
424
|
+
// Ranges and exceptions:
|
|
425
|
+
// Latin-1 Supplement, 0080–00FF
|
|
426
|
+
// - U+00D7 × Multiplication sign
|
|
427
|
+
// - U+00F7 ÷ Division sign
|
|
428
|
+
// Latin Extended-A, 0100–017F
|
|
429
|
+
// Latin Extended-B, 0180–024F
|
|
430
|
+
// IPA Extensions, 0250–02AF
|
|
431
|
+
// Spacing Modifier Letters, 02B0–02FF
|
|
432
|
+
// - U+02C7 ˇ ˇ Caron
|
|
433
|
+
// - U+02D8 ˘ ˘ Breve
|
|
434
|
+
// - U+02D9 ˙ ˙ Dot Above
|
|
435
|
+
// - U+02DA ˚ ˚ Ring Above
|
|
436
|
+
// - U+02DB ˛ ˛ Ogonek
|
|
437
|
+
// - U+02DC ˜ ˜ Small Tilde
|
|
438
|
+
// - U+02DD ˝ ˝ Double Acute Accent
|
|
439
|
+
// Latin Extended Additional, 1E00–1EFF
|
|
440
|
+
var extendedWordChars = "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}";
|
|
441
|
+
|
|
442
|
+
// Each token is one of the following:
|
|
443
|
+
// - A punctuation mark plus the surrounding whitespace
|
|
444
|
+
// - A word plus the surrounding whitespace
|
|
445
|
+
// - Pure whitespace (but only in the special case where this the entire text
|
|
446
|
+
// is just whitespace)
|
|
447
|
+
//
|
|
448
|
+
// We have to include surrounding whitespace in the tokens because the two
|
|
449
|
+
// alternative approaches produce horribly broken results:
|
|
450
|
+
// * If we just discard the whitespace, we can't fully reproduce the original
|
|
451
|
+
// text from the sequence of tokens and any attempt to render the diff will
|
|
452
|
+
// get the whitespace wrong.
|
|
453
|
+
// * If we have separate tokens for whitespace, then in a typical text every
|
|
454
|
+
// second token will be a single space character. But this often results in
|
|
455
|
+
// the optimal diff between two texts being a perverse one that preserves
|
|
456
|
+
// the spaces between words but deletes and reinserts actual common words.
|
|
457
|
+
// See https://github.com/kpdecker/jsdiff/issues/160#issuecomment-1866099640
|
|
458
|
+
// for an example.
|
|
459
|
+
//
|
|
460
|
+
// Keeping the surrounding whitespace of course has implications for .equals
|
|
461
|
+
// and .join, not just .tokenize.
|
|
462
|
+
|
|
463
|
+
// This regex does NOT fully implement the tokenization rules described above.
|
|
464
|
+
// Instead, it gives runs of whitespace their own "token". The tokenize method
|
|
465
|
+
// then handles stitching whitespace tokens onto adjacent word or punctuation
|
|
466
|
+
// tokens.
|
|
467
|
+
var tokenizeIncludingWhitespace = new RegExp("[".concat(extendedWordChars, "]+|\\s+|[^").concat(extendedWordChars, "]"), 'ug');
|
|
468
|
+
var wordDiff = new Diff();
|
|
469
|
+
wordDiff.equals = function (left, right, options) {
|
|
470
|
+
if (options.ignoreCase) {
|
|
471
|
+
left = left.toLowerCase();
|
|
472
|
+
right = right.toLowerCase();
|
|
473
|
+
}
|
|
474
|
+
return left.trim() === right.trim();
|
|
475
|
+
};
|
|
476
|
+
wordDiff.tokenize = function (value) {
|
|
477
|
+
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
478
|
+
var parts;
|
|
479
|
+
if (options.intlSegmenter) {
|
|
480
|
+
if (options.intlSegmenter.resolvedOptions().granularity != 'word') {
|
|
481
|
+
throw new Error('The segmenter passed must have a granularity of "word"');
|
|
482
|
+
}
|
|
483
|
+
parts = Array.from(options.intlSegmenter.segment(value), function (segment) {
|
|
484
|
+
return segment.segment;
|
|
485
|
+
});
|
|
486
|
+
} else {
|
|
487
|
+
parts = value.match(tokenizeIncludingWhitespace) || [];
|
|
488
|
+
}
|
|
489
|
+
var tokens = [];
|
|
490
|
+
var prevPart = null;
|
|
491
|
+
parts.forEach(function (part) {
|
|
492
|
+
if (/\s/.test(part)) {
|
|
493
|
+
if (prevPart == null) {
|
|
494
|
+
tokens.push(part);
|
|
495
|
+
} else {
|
|
496
|
+
tokens.push(tokens.pop() + part);
|
|
497
|
+
}
|
|
498
|
+
} else if (/\s/.test(prevPart)) {
|
|
499
|
+
if (tokens[tokens.length - 1] == prevPart) {
|
|
500
|
+
tokens.push(tokens.pop() + part);
|
|
501
|
+
} else {
|
|
502
|
+
tokens.push(prevPart + part);
|
|
503
|
+
}
|
|
504
|
+
} else {
|
|
505
|
+
tokens.push(part);
|
|
506
|
+
}
|
|
507
|
+
prevPart = part;
|
|
508
|
+
});
|
|
509
|
+
return tokens;
|
|
510
|
+
};
|
|
511
|
+
wordDiff.join = function (tokens) {
|
|
512
|
+
// Tokens being joined here will always have appeared consecutively in the
|
|
513
|
+
// same text, so we can simply strip off the leading whitespace from all the
|
|
514
|
+
// tokens except the first (and except any whitespace-only tokens - but such
|
|
515
|
+
// a token will always be the first and only token anyway) and then join them
|
|
516
|
+
// and the whitespace around words and punctuation will end up correct.
|
|
517
|
+
return tokens.map(function (token, i) {
|
|
518
|
+
if (i == 0) {
|
|
519
|
+
return token;
|
|
520
|
+
} else {
|
|
521
|
+
return token.replace(/^\s+/, '');
|
|
522
|
+
}
|
|
523
|
+
}).join('');
|
|
524
|
+
};
|
|
525
|
+
wordDiff.postProcess = function (changes, options) {
|
|
526
|
+
if (!changes || options.oneChangePerToken) {
|
|
527
|
+
return changes;
|
|
528
|
+
}
|
|
529
|
+
var lastKeep = null;
|
|
530
|
+
// Change objects representing any insertion or deletion since the last
|
|
531
|
+
// "keep" change object. There can be at most one of each.
|
|
532
|
+
var insertion = null;
|
|
533
|
+
var deletion = null;
|
|
534
|
+
changes.forEach(function (change) {
|
|
535
|
+
if (change.added) {
|
|
536
|
+
insertion = change;
|
|
537
|
+
} else if (change.removed) {
|
|
538
|
+
deletion = change;
|
|
539
|
+
} else {
|
|
540
|
+
if (insertion || deletion) {
|
|
541
|
+
// May be false at start of text
|
|
542
|
+
dedupeWhitespaceInChangeObjects(lastKeep, deletion, insertion, change);
|
|
543
|
+
}
|
|
544
|
+
lastKeep = change;
|
|
545
|
+
insertion = null;
|
|
546
|
+
deletion = null;
|
|
547
|
+
}
|
|
548
|
+
});
|
|
549
|
+
if (insertion || deletion) {
|
|
550
|
+
dedupeWhitespaceInChangeObjects(lastKeep, deletion, insertion, null);
|
|
551
|
+
}
|
|
552
|
+
return changes;
|
|
553
|
+
};
|
|
554
|
+
function diffWords(oldStr, newStr, options) {
|
|
555
|
+
// This option has never been documented and never will be (it's clearer to
|
|
556
|
+
// just call `diffWordsWithSpace` directly if you need that behavior), but
|
|
557
|
+
// has existed in jsdiff for a long time, so we retain support for it here
|
|
558
|
+
// for the sake of backwards compatibility.
|
|
559
|
+
if ((options === null || options === void 0 ? void 0 : options.ignoreWhitespace) != null && !options.ignoreWhitespace) {
|
|
560
|
+
return diffWordsWithSpace(oldStr, newStr, options);
|
|
561
|
+
}
|
|
562
|
+
return wordDiff.diff(oldStr, newStr, options);
|
|
563
|
+
}
|
|
564
|
+
function dedupeWhitespaceInChangeObjects(startKeep, deletion, insertion, endKeep) {
|
|
565
|
+
// Before returning, we tidy up the leading and trailing whitespace of the
|
|
566
|
+
// change objects to eliminate cases where trailing whitespace in one object
|
|
567
|
+
// is repeated as leading whitespace in the next.
|
|
568
|
+
// Below are examples of the outcomes we want here to explain the code.
|
|
569
|
+
// I=insert, K=keep, D=delete
|
|
570
|
+
// 1. diffing 'foo bar baz' vs 'foo baz'
|
|
571
|
+
// Prior to cleanup, we have K:'foo ' D:' bar ' K:' baz'
|
|
572
|
+
// After cleanup, we want: K:'foo ' D:'bar ' K:'baz'
|
|
573
|
+
//
|
|
574
|
+
// 2. Diffing 'foo bar baz' vs 'foo qux baz'
|
|
575
|
+
// Prior to cleanup, we have K:'foo ' D:' bar ' I:' qux ' K:' baz'
|
|
576
|
+
// After cleanup, we want K:'foo ' D:'bar' I:'qux' K:' baz'
|
|
577
|
+
//
|
|
578
|
+
// 3. Diffing 'foo\nbar baz' vs 'foo baz'
|
|
579
|
+
// Prior to cleanup, we have K:'foo ' D:'\nbar ' K:' baz'
|
|
580
|
+
// After cleanup, we want K'foo' D:'\nbar' K:' baz'
|
|
581
|
+
//
|
|
582
|
+
// 4. Diffing 'foo baz' vs 'foo\nbar baz'
|
|
583
|
+
// Prior to cleanup, we have K:'foo\n' I:'\nbar ' K:' baz'
|
|
584
|
+
// After cleanup, we ideally want K'foo' I:'\nbar' K:' baz'
|
|
585
|
+
// but don't actually manage this currently (the pre-cleanup change
|
|
586
|
+
// objects don't contain enough information to make it possible).
|
|
587
|
+
//
|
|
588
|
+
// 5. Diffing 'foo bar baz' vs 'foo baz'
|
|
589
|
+
// Prior to cleanup, we have K:'foo ' D:' bar ' K:' baz'
|
|
590
|
+
// After cleanup, we want K:'foo ' D:' bar ' K:'baz'
|
|
591
|
+
//
|
|
592
|
+
// Our handling is unavoidably imperfect in the case where there's a single
|
|
593
|
+
// indel between keeps and the whitespace has changed. For instance, consider
|
|
594
|
+
// diffing 'foo\tbar\nbaz' vs 'foo baz'. Unless we create an extra change
|
|
595
|
+
// object to represent the insertion of the space character (which isn't even
|
|
596
|
+
// a token), we have no way to avoid losing information about the texts'
|
|
597
|
+
// original whitespace in the result we return. Still, we do our best to
|
|
598
|
+
// output something that will look sensible if we e.g. print it with
|
|
599
|
+
// insertions in green and deletions in red.
|
|
600
|
+
|
|
601
|
+
// Between two "keep" change objects (or before the first or after the last
|
|
602
|
+
// change object), we can have either:
|
|
603
|
+
// * A "delete" followed by an "insert"
|
|
604
|
+
// * Just an "insert"
|
|
605
|
+
// * Just a "delete"
|
|
606
|
+
// We handle the three cases separately.
|
|
607
|
+
if (deletion && insertion) {
|
|
608
|
+
var oldWsPrefix = deletion.value.match(/^\s*/)[0];
|
|
609
|
+
var oldWsSuffix = deletion.value.match(/\s*$/)[0];
|
|
610
|
+
var newWsPrefix = insertion.value.match(/^\s*/)[0];
|
|
611
|
+
var newWsSuffix = insertion.value.match(/\s*$/)[0];
|
|
612
|
+
if (startKeep) {
|
|
613
|
+
var commonWsPrefix = longestCommonPrefix(oldWsPrefix, newWsPrefix);
|
|
614
|
+
startKeep.value = replaceSuffix(startKeep.value, newWsPrefix, commonWsPrefix);
|
|
615
|
+
deletion.value = removePrefix(deletion.value, commonWsPrefix);
|
|
616
|
+
insertion.value = removePrefix(insertion.value, commonWsPrefix);
|
|
617
|
+
}
|
|
618
|
+
if (endKeep) {
|
|
619
|
+
var commonWsSuffix = longestCommonSuffix(oldWsSuffix, newWsSuffix);
|
|
620
|
+
endKeep.value = replacePrefix(endKeep.value, newWsSuffix, commonWsSuffix);
|
|
621
|
+
deletion.value = removeSuffix(deletion.value, commonWsSuffix);
|
|
622
|
+
insertion.value = removeSuffix(insertion.value, commonWsSuffix);
|
|
623
|
+
}
|
|
624
|
+
} else if (insertion) {
|
|
625
|
+
// The whitespaces all reflect what was in the new text rather than
|
|
626
|
+
// the old, so we essentially have no information about whitespace
|
|
627
|
+
// insertion or deletion. We just want to dedupe the whitespace.
|
|
628
|
+
// We do that by having each change object keep its trailing
|
|
629
|
+
// whitespace and deleting duplicate leading whitespace where
|
|
630
|
+
// present.
|
|
631
|
+
if (startKeep) {
|
|
632
|
+
insertion.value = insertion.value.replace(/^\s*/, '');
|
|
633
|
+
}
|
|
634
|
+
if (endKeep) {
|
|
635
|
+
endKeep.value = endKeep.value.replace(/^\s*/, '');
|
|
636
|
+
}
|
|
637
|
+
// otherwise we've got a deletion and no insertion
|
|
638
|
+
} else if (startKeep && endKeep) {
|
|
639
|
+
var newWsFull = endKeep.value.match(/^\s*/)[0],
|
|
640
|
+
delWsStart = deletion.value.match(/^\s*/)[0],
|
|
641
|
+
delWsEnd = deletion.value.match(/\s*$/)[0];
|
|
642
|
+
|
|
643
|
+
// Any whitespace that comes straight after startKeep in both the old and
|
|
644
|
+
// new texts, assign to startKeep and remove from the deletion.
|
|
645
|
+
var newWsStart = longestCommonPrefix(newWsFull, delWsStart);
|
|
646
|
+
deletion.value = removePrefix(deletion.value, newWsStart);
|
|
647
|
+
|
|
648
|
+
// Any whitespace that comes straight before endKeep in both the old and
|
|
649
|
+
// new texts, and hasn't already been assigned to startKeep, assign to
|
|
650
|
+
// endKeep and remove from the deletion.
|
|
651
|
+
var newWsEnd = longestCommonSuffix(removePrefix(newWsFull, newWsStart), delWsEnd);
|
|
652
|
+
deletion.value = removeSuffix(deletion.value, newWsEnd);
|
|
653
|
+
endKeep.value = replacePrefix(endKeep.value, newWsFull, newWsEnd);
|
|
654
|
+
|
|
655
|
+
// If there's any whitespace from the new text that HASN'T already been
|
|
656
|
+
// assigned, assign it to the start:
|
|
657
|
+
startKeep.value = replaceSuffix(startKeep.value, newWsFull, newWsFull.slice(0, newWsFull.length - newWsEnd.length));
|
|
658
|
+
} else if (endKeep) {
|
|
659
|
+
// We are at the start of the text. Preserve all the whitespace on
|
|
660
|
+
// endKeep, and just remove whitespace from the end of deletion to the
|
|
661
|
+
// extent that it overlaps with the start of endKeep.
|
|
662
|
+
var endKeepWsPrefix = endKeep.value.match(/^\s*/)[0];
|
|
663
|
+
var deletionWsSuffix = deletion.value.match(/\s*$/)[0];
|
|
664
|
+
var overlap = maximumOverlap(deletionWsSuffix, endKeepWsPrefix);
|
|
665
|
+
deletion.value = removeSuffix(deletion.value, overlap);
|
|
666
|
+
} else if (startKeep) {
|
|
667
|
+
// We are at the END of the text. Preserve all the whitespace on
|
|
668
|
+
// startKeep, and just remove whitespace from the start of deletion to
|
|
669
|
+
// the extent that it overlaps with the end of startKeep.
|
|
670
|
+
var startKeepWsSuffix = startKeep.value.match(/\s*$/)[0];
|
|
671
|
+
var deletionWsPrefix = deletion.value.match(/^\s*/)[0];
|
|
672
|
+
var _overlap = maximumOverlap(startKeepWsSuffix, deletionWsPrefix);
|
|
673
|
+
deletion.value = removePrefix(deletion.value, _overlap);
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
var wordWithSpaceDiff = new Diff();
|
|
677
|
+
wordWithSpaceDiff.tokenize = function (value) {
|
|
678
|
+
// Slightly different to the tokenizeIncludingWhitespace regex used above in
|
|
679
|
+
// that this one treats each individual newline as a distinct tokens, rather
|
|
680
|
+
// than merging them into other surrounding whitespace. This was requested
|
|
681
|
+
// in https://github.com/kpdecker/jsdiff/issues/180 &
|
|
682
|
+
// https://github.com/kpdecker/jsdiff/issues/211
|
|
683
|
+
var regex = new RegExp("(\\r?\\n)|[".concat(extendedWordChars, "]+|[^\\S\\n\\r]+|[^").concat(extendedWordChars, "]"), 'ug');
|
|
684
|
+
return value.match(regex) || [];
|
|
685
|
+
};
|
|
686
|
+
function diffWordsWithSpace(oldStr, newStr, options) {
|
|
687
|
+
return wordWithSpaceDiff.diff(oldStr, newStr, options);
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
function generateOptions(options, defaults) {
|
|
691
|
+
if (typeof options === 'function') {
|
|
692
|
+
defaults.callback = options;
|
|
693
|
+
} else if (options) {
|
|
694
|
+
for (var name in options) {
|
|
695
|
+
/* istanbul ignore else */
|
|
696
|
+
if (options.hasOwnProperty(name)) {
|
|
697
|
+
defaults[name] = options[name];
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
return defaults;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
var lineDiff = new Diff();
|
|
705
|
+
lineDiff.tokenize = function (value, options) {
|
|
706
|
+
if (options.stripTrailingCr) {
|
|
707
|
+
// remove one \r before \n to match GNU diff's --strip-trailing-cr behavior
|
|
708
|
+
value = value.replace(/\r\n/g, '\n');
|
|
709
|
+
}
|
|
710
|
+
var retLines = [],
|
|
711
|
+
linesAndNewlines = value.split(/(\n|\r\n)/);
|
|
712
|
+
|
|
713
|
+
// Ignore the final empty token that occurs if the string ends with a new line
|
|
714
|
+
if (!linesAndNewlines[linesAndNewlines.length - 1]) {
|
|
715
|
+
linesAndNewlines.pop();
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
// Merge the content and line separators into single tokens
|
|
719
|
+
for (var i = 0; i < linesAndNewlines.length; i++) {
|
|
720
|
+
var line = linesAndNewlines[i];
|
|
721
|
+
if (i % 2 && !options.newlineIsToken) {
|
|
722
|
+
retLines[retLines.length - 1] += line;
|
|
723
|
+
} else {
|
|
724
|
+
retLines.push(line);
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
return retLines;
|
|
728
|
+
};
|
|
729
|
+
lineDiff.equals = function (left, right, options) {
|
|
730
|
+
// If we're ignoring whitespace, we need to normalise lines by stripping
|
|
731
|
+
// whitespace before checking equality. (This has an annoying interaction
|
|
732
|
+
// with newlineIsToken that requires special handling: if newlines get their
|
|
733
|
+
// own token, then we DON'T want to trim the *newline* tokens down to empty
|
|
734
|
+
// strings, since this would cause us to treat whitespace-only line content
|
|
735
|
+
// as equal to a separator between lines, which would be weird and
|
|
736
|
+
// inconsistent with the documented behavior of the options.)
|
|
737
|
+
if (options.ignoreWhitespace) {
|
|
738
|
+
if (!options.newlineIsToken || !left.includes('\n')) {
|
|
739
|
+
left = left.trim();
|
|
740
|
+
}
|
|
741
|
+
if (!options.newlineIsToken || !right.includes('\n')) {
|
|
742
|
+
right = right.trim();
|
|
743
|
+
}
|
|
744
|
+
} else if (options.ignoreNewlineAtEof && !options.newlineIsToken) {
|
|
745
|
+
if (left.endsWith('\n')) {
|
|
746
|
+
left = left.slice(0, -1);
|
|
747
|
+
}
|
|
748
|
+
if (right.endsWith('\n')) {
|
|
749
|
+
right = right.slice(0, -1);
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
return Diff.prototype.equals.call(this, left, right, options);
|
|
753
|
+
};
|
|
754
|
+
function diffLines(oldStr, newStr, callback) {
|
|
755
|
+
return lineDiff.diff(oldStr, newStr, callback);
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
// Kept for backwards compatibility. This is a rather arbitrary wrapper method
|
|
759
|
+
// that just calls `diffLines` with `ignoreWhitespace: true`. It's confusing to
|
|
760
|
+
// have two ways to do exactly the same thing in the API, so we no longer
|
|
761
|
+
// document this one (library users should explicitly use `diffLines` with
|
|
762
|
+
// `ignoreWhitespace: true` instead) but we keep it around to maintain
|
|
763
|
+
// compatibility with code that used old versions.
|
|
764
|
+
function diffTrimmedLines(oldStr, newStr, callback) {
|
|
765
|
+
var options = generateOptions(callback, {
|
|
766
|
+
ignoreWhitespace: true
|
|
767
|
+
});
|
|
768
|
+
return lineDiff.diff(oldStr, newStr, options);
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
var sentenceDiff = new Diff();
|
|
772
|
+
sentenceDiff.tokenize = function (value) {
|
|
773
|
+
return value.split(/(\S.+?[.!?])(?=\s+|$)/);
|
|
774
|
+
};
|
|
775
|
+
function diffSentences(oldStr, newStr, callback) {
|
|
776
|
+
return sentenceDiff.diff(oldStr, newStr, callback);
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
var cssDiff = new Diff();
|
|
780
|
+
cssDiff.tokenize = function (value) {
|
|
781
|
+
return value.split(/([{}:;,]|\s+)/);
|
|
782
|
+
};
|
|
783
|
+
function diffCss(oldStr, newStr, callback) {
|
|
784
|
+
return cssDiff.diff(oldStr, newStr, callback);
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
function ownKeys(e, r) {
|
|
788
|
+
var t = Object.keys(e);
|
|
789
|
+
if (Object.getOwnPropertySymbols) {
|
|
790
|
+
var o = Object.getOwnPropertySymbols(e);
|
|
791
|
+
r && (o = o.filter(function (r) {
|
|
792
|
+
return Object.getOwnPropertyDescriptor(e, r).enumerable;
|
|
793
|
+
})), t.push.apply(t, o);
|
|
794
|
+
}
|
|
795
|
+
return t;
|
|
796
|
+
}
|
|
797
|
+
function _objectSpread2(e) {
|
|
798
|
+
for (var r = 1; r < arguments.length; r++) {
|
|
799
|
+
var t = null != arguments[r] ? arguments[r] : {};
|
|
800
|
+
r % 2 ? ownKeys(Object(t), !0).forEach(function (r) {
|
|
801
|
+
_defineProperty(e, r, t[r]);
|
|
802
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) {
|
|
803
|
+
Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
|
|
804
|
+
});
|
|
805
|
+
}
|
|
806
|
+
return e;
|
|
807
|
+
}
|
|
808
|
+
function _toPrimitive(t, r) {
|
|
809
|
+
if ("object" != typeof t || !t) return t;
|
|
810
|
+
var e = t[Symbol.toPrimitive];
|
|
811
|
+
if (void 0 !== e) {
|
|
812
|
+
var i = e.call(t, r || "default");
|
|
813
|
+
if ("object" != typeof i) return i;
|
|
814
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
815
|
+
}
|
|
816
|
+
return ("string" === r ? String : Number)(t);
|
|
817
|
+
}
|
|
818
|
+
function _toPropertyKey(t) {
|
|
819
|
+
var i = _toPrimitive(t, "string");
|
|
820
|
+
return "symbol" == typeof i ? i : i + "";
|
|
821
|
+
}
|
|
822
|
+
function _typeof(o) {
|
|
823
|
+
"@babel/helpers - typeof";
|
|
824
|
+
|
|
825
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
|
|
826
|
+
return typeof o;
|
|
827
|
+
} : function (o) {
|
|
828
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
829
|
+
}, _typeof(o);
|
|
830
|
+
}
|
|
831
|
+
function _defineProperty(obj, key, value) {
|
|
832
|
+
key = _toPropertyKey(key);
|
|
833
|
+
if (key in obj) {
|
|
834
|
+
Object.defineProperty(obj, key, {
|
|
835
|
+
value: value,
|
|
836
|
+
enumerable: true,
|
|
837
|
+
configurable: true,
|
|
838
|
+
writable: true
|
|
839
|
+
});
|
|
840
|
+
} else {
|
|
841
|
+
obj[key] = value;
|
|
842
|
+
}
|
|
843
|
+
return obj;
|
|
844
|
+
}
|
|
845
|
+
function _toConsumableArray(arr) {
|
|
846
|
+
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
|
|
847
|
+
}
|
|
848
|
+
function _arrayWithoutHoles(arr) {
|
|
849
|
+
if (Array.isArray(arr)) return _arrayLikeToArray(arr);
|
|
850
|
+
}
|
|
851
|
+
function _iterableToArray(iter) {
|
|
852
|
+
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
853
|
+
}
|
|
854
|
+
function _unsupportedIterableToArray(o, minLen) {
|
|
855
|
+
if (!o) return;
|
|
856
|
+
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
|
|
857
|
+
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
858
|
+
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
859
|
+
if (n === "Map" || n === "Set") return Array.from(o);
|
|
860
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
|
|
861
|
+
}
|
|
862
|
+
function _arrayLikeToArray(arr, len) {
|
|
863
|
+
if (len == null || len > arr.length) len = arr.length;
|
|
864
|
+
for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];
|
|
865
|
+
return arr2;
|
|
866
|
+
}
|
|
867
|
+
function _nonIterableSpread() {
|
|
868
|
+
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
var jsonDiff = new Diff();
|
|
872
|
+
// Discriminate between two lines of pretty-printed, serialized JSON where one of them has a
|
|
873
|
+
// dangling comma and the other doesn't. Turns out including the dangling comma yields the nicest output:
|
|
874
|
+
jsonDiff.useLongestToken = true;
|
|
875
|
+
jsonDiff.tokenize = lineDiff.tokenize;
|
|
876
|
+
jsonDiff.castInput = function (value, options) {
|
|
877
|
+
var undefinedReplacement = options.undefinedReplacement,
|
|
878
|
+
_options$stringifyRep = options.stringifyReplacer,
|
|
879
|
+
stringifyReplacer = _options$stringifyRep === void 0 ? function (k, v) {
|
|
880
|
+
return typeof v === 'undefined' ? undefinedReplacement : v;
|
|
881
|
+
} : _options$stringifyRep;
|
|
882
|
+
return typeof value === 'string' ? value : JSON.stringify(canonicalize(value, null, null, stringifyReplacer), stringifyReplacer, ' ');
|
|
883
|
+
};
|
|
884
|
+
jsonDiff.equals = function (left, right, options) {
|
|
885
|
+
return Diff.prototype.equals.call(jsonDiff, left.replace(/,([\r\n])/g, '$1'), right.replace(/,([\r\n])/g, '$1'), options);
|
|
886
|
+
};
|
|
887
|
+
function diffJson(oldObj, newObj, options) {
|
|
888
|
+
return jsonDiff.diff(oldObj, newObj, options);
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
// This function handles the presence of circular references by bailing out when encountering an
|
|
892
|
+
// object that is already on the "stack" of items being processed. Accepts an optional replacer
|
|
893
|
+
function canonicalize(obj, stack, replacementStack, replacer, key) {
|
|
894
|
+
stack = stack || [];
|
|
895
|
+
replacementStack = replacementStack || [];
|
|
896
|
+
if (replacer) {
|
|
897
|
+
obj = replacer(key, obj);
|
|
898
|
+
}
|
|
899
|
+
var i;
|
|
900
|
+
for (i = 0; i < stack.length; i += 1) {
|
|
901
|
+
if (stack[i] === obj) {
|
|
902
|
+
return replacementStack[i];
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
var canonicalizedObj;
|
|
906
|
+
if ('[object Array]' === Object.prototype.toString.call(obj)) {
|
|
907
|
+
stack.push(obj);
|
|
908
|
+
canonicalizedObj = new Array(obj.length);
|
|
909
|
+
replacementStack.push(canonicalizedObj);
|
|
910
|
+
for (i = 0; i < obj.length; i += 1) {
|
|
911
|
+
canonicalizedObj[i] = canonicalize(obj[i], stack, replacementStack, replacer, key);
|
|
912
|
+
}
|
|
913
|
+
stack.pop();
|
|
914
|
+
replacementStack.pop();
|
|
915
|
+
return canonicalizedObj;
|
|
916
|
+
}
|
|
917
|
+
if (obj && obj.toJSON) {
|
|
918
|
+
obj = obj.toJSON();
|
|
919
|
+
}
|
|
920
|
+
if (_typeof(obj) === 'object' && obj !== null) {
|
|
921
|
+
stack.push(obj);
|
|
922
|
+
canonicalizedObj = {};
|
|
923
|
+
replacementStack.push(canonicalizedObj);
|
|
924
|
+
var sortedKeys = [],
|
|
925
|
+
_key;
|
|
926
|
+
for (_key in obj) {
|
|
927
|
+
/* istanbul ignore else */
|
|
928
|
+
if (Object.prototype.hasOwnProperty.call(obj, _key)) {
|
|
929
|
+
sortedKeys.push(_key);
|
|
930
|
+
}
|
|
931
|
+
}
|
|
932
|
+
sortedKeys.sort();
|
|
933
|
+
for (i = 0; i < sortedKeys.length; i += 1) {
|
|
934
|
+
_key = sortedKeys[i];
|
|
935
|
+
canonicalizedObj[_key] = canonicalize(obj[_key], stack, replacementStack, replacer, _key);
|
|
936
|
+
}
|
|
937
|
+
stack.pop();
|
|
938
|
+
replacementStack.pop();
|
|
939
|
+
} else {
|
|
940
|
+
canonicalizedObj = obj;
|
|
941
|
+
}
|
|
942
|
+
return canonicalizedObj;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
var arrayDiff = new Diff();
|
|
946
|
+
arrayDiff.tokenize = function (value) {
|
|
947
|
+
return value.slice();
|
|
948
|
+
};
|
|
949
|
+
arrayDiff.join = arrayDiff.removeEmpty = function (value) {
|
|
950
|
+
return value;
|
|
951
|
+
};
|
|
952
|
+
function diffArrays(oldArr, newArr, callback) {
|
|
953
|
+
return arrayDiff.diff(oldArr, newArr, callback);
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
function unixToWin(patch) {
|
|
957
|
+
if (Array.isArray(patch)) {
|
|
958
|
+
return patch.map(unixToWin);
|
|
959
|
+
}
|
|
960
|
+
return _objectSpread2(_objectSpread2({}, patch), {}, {
|
|
961
|
+
hunks: patch.hunks.map(function (hunk) {
|
|
962
|
+
return _objectSpread2(_objectSpread2({}, hunk), {}, {
|
|
963
|
+
lines: hunk.lines.map(function (line, i) {
|
|
964
|
+
var _hunk$lines;
|
|
965
|
+
return line.startsWith('\\') || line.endsWith('\r') || (_hunk$lines = hunk.lines[i + 1]) !== null && _hunk$lines !== void 0 && _hunk$lines.startsWith('\\') ? line : line + '\r';
|
|
966
|
+
})
|
|
967
|
+
});
|
|
968
|
+
})
|
|
969
|
+
});
|
|
970
|
+
}
|
|
971
|
+
function winToUnix(patch) {
|
|
972
|
+
if (Array.isArray(patch)) {
|
|
973
|
+
return patch.map(winToUnix);
|
|
974
|
+
}
|
|
975
|
+
return _objectSpread2(_objectSpread2({}, patch), {}, {
|
|
976
|
+
hunks: patch.hunks.map(function (hunk) {
|
|
977
|
+
return _objectSpread2(_objectSpread2({}, hunk), {}, {
|
|
978
|
+
lines: hunk.lines.map(function (line) {
|
|
979
|
+
return line.endsWith('\r') ? line.substring(0, line.length - 1) : line;
|
|
980
|
+
})
|
|
981
|
+
});
|
|
982
|
+
})
|
|
983
|
+
});
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
/**
|
|
987
|
+
* Returns true if the patch consistently uses Unix line endings (or only involves one line and has
|
|
988
|
+
* no line endings).
|
|
989
|
+
*/
|
|
990
|
+
function isUnix(patch) {
|
|
991
|
+
if (!Array.isArray(patch)) {
|
|
992
|
+
patch = [patch];
|
|
993
|
+
}
|
|
994
|
+
return !patch.some(function (index) {
|
|
995
|
+
return index.hunks.some(function (hunk) {
|
|
996
|
+
return hunk.lines.some(function (line) {
|
|
997
|
+
return !line.startsWith('\\') && line.endsWith('\r');
|
|
998
|
+
});
|
|
999
|
+
});
|
|
1000
|
+
});
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
/**
|
|
1004
|
+
* Returns true if the patch uses Windows line endings and only Windows line endings.
|
|
1005
|
+
*/
|
|
1006
|
+
function isWin(patch) {
|
|
1007
|
+
if (!Array.isArray(patch)) {
|
|
1008
|
+
patch = [patch];
|
|
1009
|
+
}
|
|
1010
|
+
return patch.some(function (index) {
|
|
1011
|
+
return index.hunks.some(function (hunk) {
|
|
1012
|
+
return hunk.lines.some(function (line) {
|
|
1013
|
+
return line.endsWith('\r');
|
|
1014
|
+
});
|
|
1015
|
+
});
|
|
1016
|
+
}) && patch.every(function (index) {
|
|
1017
|
+
return index.hunks.every(function (hunk) {
|
|
1018
|
+
return hunk.lines.every(function (line, i) {
|
|
1019
|
+
var _hunk$lines2;
|
|
1020
|
+
return line.startsWith('\\') || line.endsWith('\r') || ((_hunk$lines2 = hunk.lines[i + 1]) === null || _hunk$lines2 === void 0 ? void 0 : _hunk$lines2.startsWith('\\'));
|
|
1021
|
+
});
|
|
1022
|
+
});
|
|
1023
|
+
});
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
function parsePatch(uniDiff) {
|
|
1027
|
+
var diffstr = uniDiff.split(/\n/),
|
|
1028
|
+
list = [],
|
|
1029
|
+
i = 0;
|
|
1030
|
+
function parseIndex() {
|
|
1031
|
+
var index = {};
|
|
1032
|
+
list.push(index);
|
|
1033
|
+
|
|
1034
|
+
// Parse diff metadata
|
|
1035
|
+
while (i < diffstr.length) {
|
|
1036
|
+
var line = diffstr[i];
|
|
1037
|
+
|
|
1038
|
+
// File header found, end parsing diff metadata
|
|
1039
|
+
if (/^(\-\-\-|\+\+\+|@@)\s/.test(line)) {
|
|
1040
|
+
break;
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
// Diff index
|
|
1044
|
+
var header = /^(?:Index:|diff(?: -r \w+)+)\s+(.+?)\s*$/.exec(line);
|
|
1045
|
+
if (header) {
|
|
1046
|
+
index.index = header[1];
|
|
1047
|
+
}
|
|
1048
|
+
i++;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
// Parse file headers if they are defined. Unified diff requires them, but
|
|
1052
|
+
// there's no technical issues to have an isolated hunk without file header
|
|
1053
|
+
parseFileHeader(index);
|
|
1054
|
+
parseFileHeader(index);
|
|
1055
|
+
|
|
1056
|
+
// Parse hunks
|
|
1057
|
+
index.hunks = [];
|
|
1058
|
+
while (i < diffstr.length) {
|
|
1059
|
+
var _line = diffstr[i];
|
|
1060
|
+
if (/^(Index:\s|diff\s|\-\-\-\s|\+\+\+\s|===================================================================)/.test(_line)) {
|
|
1061
|
+
break;
|
|
1062
|
+
} else if (/^@@/.test(_line)) {
|
|
1063
|
+
index.hunks.push(parseHunk());
|
|
1064
|
+
} else if (_line) {
|
|
1065
|
+
throw new Error('Unknown line ' + (i + 1) + ' ' + JSON.stringify(_line));
|
|
1066
|
+
} else {
|
|
1067
|
+
i++;
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
// Parses the --- and +++ headers, if none are found, no lines
|
|
1073
|
+
// are consumed.
|
|
1074
|
+
function parseFileHeader(index) {
|
|
1075
|
+
var fileHeader = /^(---|\+\+\+)\s+(.*)\r?$/.exec(diffstr[i]);
|
|
1076
|
+
if (fileHeader) {
|
|
1077
|
+
var keyPrefix = fileHeader[1] === '---' ? 'old' : 'new';
|
|
1078
|
+
var data = fileHeader[2].split('\t', 2);
|
|
1079
|
+
var fileName = data[0].replace(/\\\\/g, '\\');
|
|
1080
|
+
if (/^".*"$/.test(fileName)) {
|
|
1081
|
+
fileName = fileName.substr(1, fileName.length - 2);
|
|
1082
|
+
}
|
|
1083
|
+
index[keyPrefix + 'FileName'] = fileName;
|
|
1084
|
+
index[keyPrefix + 'Header'] = (data[1] || '').trim();
|
|
1085
|
+
i++;
|
|
1086
|
+
}
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
// Parses a hunk
|
|
1090
|
+
// This assumes that we are at the start of a hunk.
|
|
1091
|
+
function parseHunk() {
|
|
1092
|
+
var chunkHeaderIndex = i,
|
|
1093
|
+
chunkHeaderLine = diffstr[i++],
|
|
1094
|
+
chunkHeader = chunkHeaderLine.split(/@@ -(\d+)(?:,(\d+))? \+(\d+)(?:,(\d+))? @@/);
|
|
1095
|
+
var hunk = {
|
|
1096
|
+
oldStart: +chunkHeader[1],
|
|
1097
|
+
oldLines: typeof chunkHeader[2] === 'undefined' ? 1 : +chunkHeader[2],
|
|
1098
|
+
newStart: +chunkHeader[3],
|
|
1099
|
+
newLines: typeof chunkHeader[4] === 'undefined' ? 1 : +chunkHeader[4],
|
|
1100
|
+
lines: []
|
|
1101
|
+
};
|
|
1102
|
+
|
|
1103
|
+
// Unified Diff Format quirk: If the chunk size is 0,
|
|
1104
|
+
// the first number is one lower than one would expect.
|
|
1105
|
+
// https://www.artima.com/weblogs/viewpost.jsp?thread=164293
|
|
1106
|
+
if (hunk.oldLines === 0) {
|
|
1107
|
+
hunk.oldStart += 1;
|
|
1108
|
+
}
|
|
1109
|
+
if (hunk.newLines === 0) {
|
|
1110
|
+
hunk.newStart += 1;
|
|
1111
|
+
}
|
|
1112
|
+
var addCount = 0,
|
|
1113
|
+
removeCount = 0;
|
|
1114
|
+
for (; i < diffstr.length && (removeCount < hunk.oldLines || addCount < hunk.newLines || (_diffstr$i = diffstr[i]) !== null && _diffstr$i !== void 0 && _diffstr$i.startsWith('\\')); i++) {
|
|
1115
|
+
var _diffstr$i;
|
|
1116
|
+
var operation = diffstr[i].length == 0 && i != diffstr.length - 1 ? ' ' : diffstr[i][0];
|
|
1117
|
+
if (operation === '+' || operation === '-' || operation === ' ' || operation === '\\') {
|
|
1118
|
+
hunk.lines.push(diffstr[i]);
|
|
1119
|
+
if (operation === '+') {
|
|
1120
|
+
addCount++;
|
|
1121
|
+
} else if (operation === '-') {
|
|
1122
|
+
removeCount++;
|
|
1123
|
+
} else if (operation === ' ') {
|
|
1124
|
+
addCount++;
|
|
1125
|
+
removeCount++;
|
|
1126
|
+
}
|
|
1127
|
+
} else {
|
|
1128
|
+
throw new Error("Hunk at line ".concat(chunkHeaderIndex + 1, " contained invalid line ").concat(diffstr[i]));
|
|
1129
|
+
}
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
// Handle the empty block count case
|
|
1133
|
+
if (!addCount && hunk.newLines === 1) {
|
|
1134
|
+
hunk.newLines = 0;
|
|
1135
|
+
}
|
|
1136
|
+
if (!removeCount && hunk.oldLines === 1) {
|
|
1137
|
+
hunk.oldLines = 0;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
// Perform sanity checking
|
|
1141
|
+
if (addCount !== hunk.newLines) {
|
|
1142
|
+
throw new Error('Added line count did not match for hunk at line ' + (chunkHeaderIndex + 1));
|
|
1143
|
+
}
|
|
1144
|
+
if (removeCount !== hunk.oldLines) {
|
|
1145
|
+
throw new Error('Removed line count did not match for hunk at line ' + (chunkHeaderIndex + 1));
|
|
1146
|
+
}
|
|
1147
|
+
return hunk;
|
|
1148
|
+
}
|
|
1149
|
+
while (i < diffstr.length) {
|
|
1150
|
+
parseIndex();
|
|
1151
|
+
}
|
|
1152
|
+
return list;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
// Iterator that traverses in the range of [min, max], stepping
|
|
1156
|
+
// by distance from a given start position. I.e. for [0, 4], with
|
|
1157
|
+
// start of 2, this will iterate 2, 3, 1, 4, 0.
|
|
1158
|
+
function distanceIterator (start, minLine, maxLine) {
|
|
1159
|
+
var wantForward = true,
|
|
1160
|
+
backwardExhausted = false,
|
|
1161
|
+
forwardExhausted = false,
|
|
1162
|
+
localOffset = 1;
|
|
1163
|
+
return function iterator() {
|
|
1164
|
+
if (wantForward && !forwardExhausted) {
|
|
1165
|
+
if (backwardExhausted) {
|
|
1166
|
+
localOffset++;
|
|
1167
|
+
} else {
|
|
1168
|
+
wantForward = false;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
// Check if trying to fit beyond text length, and if not, check it fits
|
|
1172
|
+
// after offset location (or desired location on first iteration)
|
|
1173
|
+
if (start + localOffset <= maxLine) {
|
|
1174
|
+
return start + localOffset;
|
|
1175
|
+
}
|
|
1176
|
+
forwardExhausted = true;
|
|
1177
|
+
}
|
|
1178
|
+
if (!backwardExhausted) {
|
|
1179
|
+
if (!forwardExhausted) {
|
|
1180
|
+
wantForward = true;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
// Check if trying to fit before text beginning, and if not, check it fits
|
|
1184
|
+
// before offset location
|
|
1185
|
+
if (minLine <= start - localOffset) {
|
|
1186
|
+
return start - localOffset++;
|
|
1187
|
+
}
|
|
1188
|
+
backwardExhausted = true;
|
|
1189
|
+
return iterator();
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
// We tried to fit hunk before text beginning and beyond text length, then
|
|
1193
|
+
// hunk can't fit on the text. Return undefined
|
|
1194
|
+
};
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
function applyPatch(source, uniDiff) {
|
|
1198
|
+
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
1199
|
+
if (typeof uniDiff === 'string') {
|
|
1200
|
+
uniDiff = parsePatch(uniDiff);
|
|
1201
|
+
}
|
|
1202
|
+
if (Array.isArray(uniDiff)) {
|
|
1203
|
+
if (uniDiff.length > 1) {
|
|
1204
|
+
throw new Error('applyPatch only works with a single input.');
|
|
1205
|
+
}
|
|
1206
|
+
uniDiff = uniDiff[0];
|
|
1207
|
+
}
|
|
1208
|
+
if (options.autoConvertLineEndings || options.autoConvertLineEndings == null) {
|
|
1209
|
+
if (hasOnlyWinLineEndings(source) && isUnix(uniDiff)) {
|
|
1210
|
+
uniDiff = unixToWin(uniDiff);
|
|
1211
|
+
} else if (hasOnlyUnixLineEndings(source) && isWin(uniDiff)) {
|
|
1212
|
+
uniDiff = winToUnix(uniDiff);
|
|
1213
|
+
}
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
// Apply the diff to the input
|
|
1217
|
+
var lines = source.split('\n'),
|
|
1218
|
+
hunks = uniDiff.hunks,
|
|
1219
|
+
compareLine = options.compareLine || function (lineNumber, line, operation, patchContent) {
|
|
1220
|
+
return line === patchContent;
|
|
1221
|
+
},
|
|
1222
|
+
fuzzFactor = options.fuzzFactor || 0,
|
|
1223
|
+
minLine = 0;
|
|
1224
|
+
if (fuzzFactor < 0 || !Number.isInteger(fuzzFactor)) {
|
|
1225
|
+
throw new Error('fuzzFactor must be a non-negative integer');
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
// Special case for empty patch.
|
|
1229
|
+
if (!hunks.length) {
|
|
1230
|
+
return source;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
// Before anything else, handle EOFNL insertion/removal. If the patch tells us to make a change
|
|
1234
|
+
// to the EOFNL that is redundant/impossible - i.e. to remove a newline that's not there, or add a
|
|
1235
|
+
// newline that already exists - then we either return false and fail to apply the patch (if
|
|
1236
|
+
// fuzzFactor is 0) or simply ignore the problem and do nothing (if fuzzFactor is >0).
|
|
1237
|
+
// If we do need to remove/add a newline at EOF, this will always be in the final hunk:
|
|
1238
|
+
var prevLine = '',
|
|
1239
|
+
removeEOFNL = false,
|
|
1240
|
+
addEOFNL = false;
|
|
1241
|
+
for (var i = 0; i < hunks[hunks.length - 1].lines.length; i++) {
|
|
1242
|
+
var line = hunks[hunks.length - 1].lines[i];
|
|
1243
|
+
if (line[0] == '\\') {
|
|
1244
|
+
if (prevLine[0] == '+') {
|
|
1245
|
+
removeEOFNL = true;
|
|
1246
|
+
} else if (prevLine[0] == '-') {
|
|
1247
|
+
addEOFNL = true;
|
|
1248
|
+
}
|
|
1249
|
+
}
|
|
1250
|
+
prevLine = line;
|
|
1251
|
+
}
|
|
1252
|
+
if (removeEOFNL) {
|
|
1253
|
+
if (addEOFNL) {
|
|
1254
|
+
// This means the final line gets changed but doesn't have a trailing newline in either the
|
|
1255
|
+
// original or patched version. In that case, we do nothing if fuzzFactor > 0, and if
|
|
1256
|
+
// fuzzFactor is 0, we simply validate that the source file has no trailing newline.
|
|
1257
|
+
if (!fuzzFactor && lines[lines.length - 1] == '') {
|
|
1258
|
+
return false;
|
|
1259
|
+
}
|
|
1260
|
+
} else if (lines[lines.length - 1] == '') {
|
|
1261
|
+
lines.pop();
|
|
1262
|
+
} else if (!fuzzFactor) {
|
|
1263
|
+
return false;
|
|
1264
|
+
}
|
|
1265
|
+
} else if (addEOFNL) {
|
|
1266
|
+
if (lines[lines.length - 1] != '') {
|
|
1267
|
+
lines.push('');
|
|
1268
|
+
} else if (!fuzzFactor) {
|
|
1269
|
+
return false;
|
|
1270
|
+
}
|
|
1271
|
+
}
|
|
1272
|
+
|
|
1273
|
+
/**
|
|
1274
|
+
* Checks if the hunk can be made to fit at the provided location with at most `maxErrors`
|
|
1275
|
+
* insertions, substitutions, or deletions, while ensuring also that:
|
|
1276
|
+
* - lines deleted in the hunk match exactly, and
|
|
1277
|
+
* - wherever an insertion operation or block of insertion operations appears in the hunk, the
|
|
1278
|
+
* immediately preceding and following lines of context match exactly
|
|
1279
|
+
*
|
|
1280
|
+
* `toPos` should be set such that lines[toPos] is meant to match hunkLines[0].
|
|
1281
|
+
*
|
|
1282
|
+
* If the hunk can be applied, returns an object with properties `oldLineLastI` and
|
|
1283
|
+
* `replacementLines`. Otherwise, returns null.
|
|
1284
|
+
*/
|
|
1285
|
+
function applyHunk(hunkLines, toPos, maxErrors) {
|
|
1286
|
+
var hunkLinesI = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0;
|
|
1287
|
+
var lastContextLineMatched = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true;
|
|
1288
|
+
var patchedLines = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : [];
|
|
1289
|
+
var patchedLinesLength = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : 0;
|
|
1290
|
+
var nConsecutiveOldContextLines = 0;
|
|
1291
|
+
var nextContextLineMustMatch = false;
|
|
1292
|
+
for (; hunkLinesI < hunkLines.length; hunkLinesI++) {
|
|
1293
|
+
var hunkLine = hunkLines[hunkLinesI],
|
|
1294
|
+
operation = hunkLine.length > 0 ? hunkLine[0] : ' ',
|
|
1295
|
+
content = hunkLine.length > 0 ? hunkLine.substr(1) : hunkLine;
|
|
1296
|
+
if (operation === '-') {
|
|
1297
|
+
if (compareLine(toPos + 1, lines[toPos], operation, content)) {
|
|
1298
|
+
toPos++;
|
|
1299
|
+
nConsecutiveOldContextLines = 0;
|
|
1300
|
+
} else {
|
|
1301
|
+
if (!maxErrors || lines[toPos] == null) {
|
|
1302
|
+
return null;
|
|
1303
|
+
}
|
|
1304
|
+
patchedLines[patchedLinesLength] = lines[toPos];
|
|
1305
|
+
return applyHunk(hunkLines, toPos + 1, maxErrors - 1, hunkLinesI, false, patchedLines, patchedLinesLength + 1);
|
|
1306
|
+
}
|
|
1307
|
+
}
|
|
1308
|
+
if (operation === '+') {
|
|
1309
|
+
if (!lastContextLineMatched) {
|
|
1310
|
+
return null;
|
|
1311
|
+
}
|
|
1312
|
+
patchedLines[patchedLinesLength] = content;
|
|
1313
|
+
patchedLinesLength++;
|
|
1314
|
+
nConsecutiveOldContextLines = 0;
|
|
1315
|
+
nextContextLineMustMatch = true;
|
|
1316
|
+
}
|
|
1317
|
+
if (operation === ' ') {
|
|
1318
|
+
nConsecutiveOldContextLines++;
|
|
1319
|
+
patchedLines[patchedLinesLength] = lines[toPos];
|
|
1320
|
+
if (compareLine(toPos + 1, lines[toPos], operation, content)) {
|
|
1321
|
+
patchedLinesLength++;
|
|
1322
|
+
lastContextLineMatched = true;
|
|
1323
|
+
nextContextLineMustMatch = false;
|
|
1324
|
+
toPos++;
|
|
1325
|
+
} else {
|
|
1326
|
+
if (nextContextLineMustMatch || !maxErrors) {
|
|
1327
|
+
return null;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
// Consider 3 possibilities in sequence:
|
|
1331
|
+
// 1. lines contains a *substitution* not included in the patch context, or
|
|
1332
|
+
// 2. lines contains an *insertion* not included in the patch context, or
|
|
1333
|
+
// 3. lines contains a *deletion* not included in the patch context
|
|
1334
|
+
// The first two options are of course only possible if the line from lines is non-null -
|
|
1335
|
+
// i.e. only option 3 is possible if we've overrun the end of the old file.
|
|
1336
|
+
return lines[toPos] && (applyHunk(hunkLines, toPos + 1, maxErrors - 1, hunkLinesI + 1, false, patchedLines, patchedLinesLength + 1) || applyHunk(hunkLines, toPos + 1, maxErrors - 1, hunkLinesI, false, patchedLines, patchedLinesLength + 1)) || applyHunk(hunkLines, toPos, maxErrors - 1, hunkLinesI + 1, false, patchedLines, patchedLinesLength);
|
|
1337
|
+
}
|
|
1338
|
+
}
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
// Before returning, trim any unmodified context lines off the end of patchedLines and reduce
|
|
1342
|
+
// toPos (and thus oldLineLastI) accordingly. This allows later hunks to be applied to a region
|
|
1343
|
+
// that starts in this hunk's trailing context.
|
|
1344
|
+
patchedLinesLength -= nConsecutiveOldContextLines;
|
|
1345
|
+
toPos -= nConsecutiveOldContextLines;
|
|
1346
|
+
patchedLines.length = patchedLinesLength;
|
|
1347
|
+
return {
|
|
1348
|
+
patchedLines: patchedLines,
|
|
1349
|
+
oldLineLastI: toPos - 1
|
|
1350
|
+
};
|
|
1351
|
+
}
|
|
1352
|
+
var resultLines = [];
|
|
1353
|
+
|
|
1354
|
+
// Search best fit offsets for each hunk based on the previous ones
|
|
1355
|
+
var prevHunkOffset = 0;
|
|
1356
|
+
for (var _i = 0; _i < hunks.length; _i++) {
|
|
1357
|
+
var hunk = hunks[_i];
|
|
1358
|
+
var hunkResult = void 0;
|
|
1359
|
+
var maxLine = lines.length - hunk.oldLines + fuzzFactor;
|
|
1360
|
+
var toPos = void 0;
|
|
1361
|
+
for (var maxErrors = 0; maxErrors <= fuzzFactor; maxErrors++) {
|
|
1362
|
+
toPos = hunk.oldStart + prevHunkOffset - 1;
|
|
1363
|
+
var iterator = distanceIterator(toPos, minLine, maxLine);
|
|
1364
|
+
for (; toPos !== undefined; toPos = iterator()) {
|
|
1365
|
+
hunkResult = applyHunk(hunk.lines, toPos, maxErrors);
|
|
1366
|
+
if (hunkResult) {
|
|
1367
|
+
break;
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
if (hunkResult) {
|
|
1371
|
+
break;
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
if (!hunkResult) {
|
|
1375
|
+
return false;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
// Copy everything from the end of where we applied the last hunk to the start of this hunk
|
|
1379
|
+
for (var _i2 = minLine; _i2 < toPos; _i2++) {
|
|
1380
|
+
resultLines.push(lines[_i2]);
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
// Add the lines produced by applying the hunk:
|
|
1384
|
+
for (var _i3 = 0; _i3 < hunkResult.patchedLines.length; _i3++) {
|
|
1385
|
+
var _line = hunkResult.patchedLines[_i3];
|
|
1386
|
+
resultLines.push(_line);
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
// Set lower text limit to end of the current hunk, so next ones don't try
|
|
1390
|
+
// to fit over already patched text
|
|
1391
|
+
minLine = hunkResult.oldLineLastI + 1;
|
|
1392
|
+
|
|
1393
|
+
// Note the offset between where the patch said the hunk should've applied and where we
|
|
1394
|
+
// applied it, so we can adjust future hunks accordingly:
|
|
1395
|
+
prevHunkOffset = toPos + 1 - hunk.oldStart;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
// Copy over the rest of the lines from the old text
|
|
1399
|
+
for (var _i4 = minLine; _i4 < lines.length; _i4++) {
|
|
1400
|
+
resultLines.push(lines[_i4]);
|
|
1401
|
+
}
|
|
1402
|
+
return resultLines.join('\n');
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
// Wrapper that supports multiple file patches via callbacks.
|
|
1406
|
+
function applyPatches(uniDiff, options) {
|
|
1407
|
+
if (typeof uniDiff === 'string') {
|
|
1408
|
+
uniDiff = parsePatch(uniDiff);
|
|
1409
|
+
}
|
|
1410
|
+
var currentIndex = 0;
|
|
1411
|
+
function processIndex() {
|
|
1412
|
+
var index = uniDiff[currentIndex++];
|
|
1413
|
+
if (!index) {
|
|
1414
|
+
return options.complete();
|
|
1415
|
+
}
|
|
1416
|
+
options.loadFile(index, function (err, data) {
|
|
1417
|
+
if (err) {
|
|
1418
|
+
return options.complete(err);
|
|
1419
|
+
}
|
|
1420
|
+
var updatedContent = applyPatch(data, index, options);
|
|
1421
|
+
options.patched(index, updatedContent, function (err) {
|
|
1422
|
+
if (err) {
|
|
1423
|
+
return options.complete(err);
|
|
1424
|
+
}
|
|
1425
|
+
processIndex();
|
|
1426
|
+
});
|
|
1427
|
+
});
|
|
1428
|
+
}
|
|
1429
|
+
processIndex();
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
function structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader, options) {
|
|
1433
|
+
if (!options) {
|
|
1434
|
+
options = {};
|
|
1435
|
+
}
|
|
1436
|
+
if (typeof options === 'function') {
|
|
1437
|
+
options = {
|
|
1438
|
+
callback: options
|
|
1439
|
+
};
|
|
1440
|
+
}
|
|
1441
|
+
if (typeof options.context === 'undefined') {
|
|
1442
|
+
options.context = 4;
|
|
1443
|
+
}
|
|
1444
|
+
if (options.newlineIsToken) {
|
|
1445
|
+
throw new Error('newlineIsToken may not be used with patch-generation functions, only with diffing functions');
|
|
1446
|
+
}
|
|
1447
|
+
if (!options.callback) {
|
|
1448
|
+
return diffLinesResultToPatch(diffLines(oldStr, newStr, options));
|
|
1449
|
+
} else {
|
|
1450
|
+
var _options = options,
|
|
1451
|
+
_callback = _options.callback;
|
|
1452
|
+
diffLines(oldStr, newStr, _objectSpread2(_objectSpread2({}, options), {}, {
|
|
1453
|
+
callback: function callback(diff) {
|
|
1454
|
+
var patch = diffLinesResultToPatch(diff);
|
|
1455
|
+
_callback(patch);
|
|
1456
|
+
}
|
|
1457
|
+
}));
|
|
1458
|
+
}
|
|
1459
|
+
function diffLinesResultToPatch(diff) {
|
|
1460
|
+
// STEP 1: Build up the patch with no "" lines and with the arrays
|
|
1461
|
+
// of lines containing trailing newline characters. We'll tidy up later...
|
|
1462
|
+
|
|
1463
|
+
if (!diff) {
|
|
1464
|
+
return;
|
|
1465
|
+
}
|
|
1466
|
+
diff.push({
|
|
1467
|
+
value: '',
|
|
1468
|
+
lines: []
|
|
1469
|
+
}); // Append an empty value to make cleanup easier
|
|
1470
|
+
|
|
1471
|
+
function contextLines(lines) {
|
|
1472
|
+
return lines.map(function (entry) {
|
|
1473
|
+
return ' ' + entry;
|
|
1474
|
+
});
|
|
1475
|
+
}
|
|
1476
|
+
var hunks = [];
|
|
1477
|
+
var oldRangeStart = 0,
|
|
1478
|
+
newRangeStart = 0,
|
|
1479
|
+
curRange = [],
|
|
1480
|
+
oldLine = 1,
|
|
1481
|
+
newLine = 1;
|
|
1482
|
+
var _loop = function _loop() {
|
|
1483
|
+
var current = diff[i],
|
|
1484
|
+
lines = current.lines || splitLines(current.value);
|
|
1485
|
+
current.lines = lines;
|
|
1486
|
+
if (current.added || current.removed) {
|
|
1487
|
+
var _curRange;
|
|
1488
|
+
// If we have previous context, start with that
|
|
1489
|
+
if (!oldRangeStart) {
|
|
1490
|
+
var prev = diff[i - 1];
|
|
1491
|
+
oldRangeStart = oldLine;
|
|
1492
|
+
newRangeStart = newLine;
|
|
1493
|
+
if (prev) {
|
|
1494
|
+
curRange = options.context > 0 ? contextLines(prev.lines.slice(-options.context)) : [];
|
|
1495
|
+
oldRangeStart -= curRange.length;
|
|
1496
|
+
newRangeStart -= curRange.length;
|
|
1497
|
+
}
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
// Output our changes
|
|
1501
|
+
(_curRange = curRange).push.apply(_curRange, _toConsumableArray(lines.map(function (entry) {
|
|
1502
|
+
return (current.added ? '+' : '-') + entry;
|
|
1503
|
+
})));
|
|
1504
|
+
|
|
1505
|
+
// Track the updated file position
|
|
1506
|
+
if (current.added) {
|
|
1507
|
+
newLine += lines.length;
|
|
1508
|
+
} else {
|
|
1509
|
+
oldLine += lines.length;
|
|
1510
|
+
}
|
|
1511
|
+
} else {
|
|
1512
|
+
// Identical context lines. Track line changes
|
|
1513
|
+
if (oldRangeStart) {
|
|
1514
|
+
// Close out any changes that have been output (or join overlapping)
|
|
1515
|
+
if (lines.length <= options.context * 2 && i < diff.length - 2) {
|
|
1516
|
+
var _curRange2;
|
|
1517
|
+
// Overlapping
|
|
1518
|
+
(_curRange2 = curRange).push.apply(_curRange2, _toConsumableArray(contextLines(lines)));
|
|
1519
|
+
} else {
|
|
1520
|
+
var _curRange3;
|
|
1521
|
+
// end the range and output
|
|
1522
|
+
var contextSize = Math.min(lines.length, options.context);
|
|
1523
|
+
(_curRange3 = curRange).push.apply(_curRange3, _toConsumableArray(contextLines(lines.slice(0, contextSize))));
|
|
1524
|
+
var _hunk = {
|
|
1525
|
+
oldStart: oldRangeStart,
|
|
1526
|
+
oldLines: oldLine - oldRangeStart + contextSize,
|
|
1527
|
+
newStart: newRangeStart,
|
|
1528
|
+
newLines: newLine - newRangeStart + contextSize,
|
|
1529
|
+
lines: curRange
|
|
1530
|
+
};
|
|
1531
|
+
hunks.push(_hunk);
|
|
1532
|
+
oldRangeStart = 0;
|
|
1533
|
+
newRangeStart = 0;
|
|
1534
|
+
curRange = [];
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
oldLine += lines.length;
|
|
1538
|
+
newLine += lines.length;
|
|
1539
|
+
}
|
|
1540
|
+
};
|
|
1541
|
+
for (var i = 0; i < diff.length; i++) {
|
|
1542
|
+
_loop();
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
// Step 2: eliminate the trailing `\n` from each line of each hunk, and, where needed, add
|
|
1546
|
+
// "".
|
|
1547
|
+
for (var _i = 0, _hunks = hunks; _i < _hunks.length; _i++) {
|
|
1548
|
+
var hunk = _hunks[_i];
|
|
1549
|
+
for (var _i2 = 0; _i2 < hunk.lines.length; _i2++) {
|
|
1550
|
+
if (hunk.lines[_i2].endsWith('\n')) {
|
|
1551
|
+
hunk.lines[_i2] = hunk.lines[_i2].slice(0, -1);
|
|
1552
|
+
} else {
|
|
1553
|
+
hunk.lines.splice(_i2 + 1, 0, '\');
|
|
1554
|
+
_i2++; // Skip the line we just added, then continue iterating
|
|
1555
|
+
}
|
|
1556
|
+
}
|
|
1557
|
+
}
|
|
1558
|
+
return {
|
|
1559
|
+
oldFileName: oldFileName,
|
|
1560
|
+
newFileName: newFileName,
|
|
1561
|
+
oldHeader: oldHeader,
|
|
1562
|
+
newHeader: newHeader,
|
|
1563
|
+
hunks: hunks
|
|
1564
|
+
};
|
|
1565
|
+
}
|
|
1566
|
+
}
|
|
1567
|
+
function formatPatch(diff) {
|
|
1568
|
+
if (Array.isArray(diff)) {
|
|
1569
|
+
return diff.map(formatPatch).join('\n');
|
|
1570
|
+
}
|
|
1571
|
+
var ret = [];
|
|
1572
|
+
if (diff.oldFileName == diff.newFileName) {
|
|
1573
|
+
ret.push('Index: ' + diff.oldFileName);
|
|
1574
|
+
}
|
|
1575
|
+
ret.push('===================================================================');
|
|
1576
|
+
ret.push('--- ' + diff.oldFileName + (typeof diff.oldHeader === 'undefined' ? '' : '\t' + diff.oldHeader));
|
|
1577
|
+
ret.push('+++ ' + diff.newFileName + (typeof diff.newHeader === 'undefined' ? '' : '\t' + diff.newHeader));
|
|
1578
|
+
for (var i = 0; i < diff.hunks.length; i++) {
|
|
1579
|
+
var hunk = diff.hunks[i];
|
|
1580
|
+
// Unified Diff Format quirk: If the chunk size is 0,
|
|
1581
|
+
// the first number is one lower than one would expect.
|
|
1582
|
+
// https://www.artima.com/weblogs/viewpost.jsp?thread=164293
|
|
1583
|
+
if (hunk.oldLines === 0) {
|
|
1584
|
+
hunk.oldStart -= 1;
|
|
1585
|
+
}
|
|
1586
|
+
if (hunk.newLines === 0) {
|
|
1587
|
+
hunk.newStart -= 1;
|
|
1588
|
+
}
|
|
1589
|
+
ret.push('@@ -' + hunk.oldStart + ',' + hunk.oldLines + ' +' + hunk.newStart + ',' + hunk.newLines + ' @@');
|
|
1590
|
+
ret.push.apply(ret, hunk.lines);
|
|
1591
|
+
}
|
|
1592
|
+
return ret.join('\n') + '\n';
|
|
1593
|
+
}
|
|
1594
|
+
function createTwoFilesPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader, options) {
|
|
1595
|
+
var _options2;
|
|
1596
|
+
if (typeof options === 'function') {
|
|
1597
|
+
options = {
|
|
1598
|
+
callback: options
|
|
1599
|
+
};
|
|
1600
|
+
}
|
|
1601
|
+
if (!((_options2 = options) !== null && _options2 !== void 0 && _options2.callback)) {
|
|
1602
|
+
var patchObj = structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader, options);
|
|
1603
|
+
if (!patchObj) {
|
|
1604
|
+
return;
|
|
1605
|
+
}
|
|
1606
|
+
return formatPatch(patchObj);
|
|
1607
|
+
} else {
|
|
1608
|
+
var _options3 = options,
|
|
1609
|
+
_callback2 = _options3.callback;
|
|
1610
|
+
structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, newHeader, _objectSpread2(_objectSpread2({}, options), {}, {
|
|
1611
|
+
callback: function callback(patchObj) {
|
|
1612
|
+
if (!patchObj) {
|
|
1613
|
+
_callback2();
|
|
1614
|
+
} else {
|
|
1615
|
+
_callback2(formatPatch(patchObj));
|
|
1616
|
+
}
|
|
1617
|
+
}
|
|
1618
|
+
}));
|
|
1619
|
+
}
|
|
1620
|
+
}
|
|
1621
|
+
function createPatch(fileName, oldStr, newStr, oldHeader, newHeader, options) {
|
|
1622
|
+
return createTwoFilesPatch(fileName, fileName, oldStr, newStr, oldHeader, newHeader, options);
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
/**
|
|
1626
|
+
* Split `text` into an array of lines, including the trailing newline character (where present)
|
|
1627
|
+
*/
|
|
1628
|
+
function splitLines(text) {
|
|
1629
|
+
var hasTrailingNl = text.endsWith('\n');
|
|
1630
|
+
var result = text.split('\n').map(function (line) {
|
|
1631
|
+
return line + '\n';
|
|
1632
|
+
});
|
|
1633
|
+
if (hasTrailingNl) {
|
|
1634
|
+
result.pop();
|
|
1635
|
+
} else {
|
|
1636
|
+
result.push(result.pop().slice(0, -1));
|
|
1637
|
+
}
|
|
1638
|
+
return result;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
function arrayEqual(a, b) {
|
|
1642
|
+
if (a.length !== b.length) {
|
|
1643
|
+
return false;
|
|
1644
|
+
}
|
|
1645
|
+
return arrayStartsWith(a, b);
|
|
1646
|
+
}
|
|
1647
|
+
function arrayStartsWith(array, start) {
|
|
1648
|
+
if (start.length > array.length) {
|
|
1649
|
+
return false;
|
|
1650
|
+
}
|
|
1651
|
+
for (var i = 0; i < start.length; i++) {
|
|
1652
|
+
if (start[i] !== array[i]) {
|
|
1653
|
+
return false;
|
|
1654
|
+
}
|
|
1655
|
+
}
|
|
1656
|
+
return true;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
function calcLineCount(hunk) {
|
|
1660
|
+
var _calcOldNewLineCount = calcOldNewLineCount(hunk.lines),
|
|
1661
|
+
oldLines = _calcOldNewLineCount.oldLines,
|
|
1662
|
+
newLines = _calcOldNewLineCount.newLines;
|
|
1663
|
+
if (oldLines !== undefined) {
|
|
1664
|
+
hunk.oldLines = oldLines;
|
|
1665
|
+
} else {
|
|
1666
|
+
delete hunk.oldLines;
|
|
1667
|
+
}
|
|
1668
|
+
if (newLines !== undefined) {
|
|
1669
|
+
hunk.newLines = newLines;
|
|
1670
|
+
} else {
|
|
1671
|
+
delete hunk.newLines;
|
|
1672
|
+
}
|
|
1673
|
+
}
|
|
1674
|
+
function merge(mine, theirs, base) {
|
|
1675
|
+
mine = loadPatch(mine, base);
|
|
1676
|
+
theirs = loadPatch(theirs, base);
|
|
1677
|
+
var ret = {};
|
|
1678
|
+
|
|
1679
|
+
// For index we just let it pass through as it doesn't have any necessary meaning.
|
|
1680
|
+
// Leaving sanity checks on this to the API consumer that may know more about the
|
|
1681
|
+
// meaning in their own context.
|
|
1682
|
+
if (mine.index || theirs.index) {
|
|
1683
|
+
ret.index = mine.index || theirs.index;
|
|
1684
|
+
}
|
|
1685
|
+
if (mine.newFileName || theirs.newFileName) {
|
|
1686
|
+
if (!fileNameChanged(mine)) {
|
|
1687
|
+
// No header or no change in ours, use theirs (and ours if theirs does not exist)
|
|
1688
|
+
ret.oldFileName = theirs.oldFileName || mine.oldFileName;
|
|
1689
|
+
ret.newFileName = theirs.newFileName || mine.newFileName;
|
|
1690
|
+
ret.oldHeader = theirs.oldHeader || mine.oldHeader;
|
|
1691
|
+
ret.newHeader = theirs.newHeader || mine.newHeader;
|
|
1692
|
+
} else if (!fileNameChanged(theirs)) {
|
|
1693
|
+
// No header or no change in theirs, use ours
|
|
1694
|
+
ret.oldFileName = mine.oldFileName;
|
|
1695
|
+
ret.newFileName = mine.newFileName;
|
|
1696
|
+
ret.oldHeader = mine.oldHeader;
|
|
1697
|
+
ret.newHeader = mine.newHeader;
|
|
1698
|
+
} else {
|
|
1699
|
+
// Both changed... figure it out
|
|
1700
|
+
ret.oldFileName = selectField(ret, mine.oldFileName, theirs.oldFileName);
|
|
1701
|
+
ret.newFileName = selectField(ret, mine.newFileName, theirs.newFileName);
|
|
1702
|
+
ret.oldHeader = selectField(ret, mine.oldHeader, theirs.oldHeader);
|
|
1703
|
+
ret.newHeader = selectField(ret, mine.newHeader, theirs.newHeader);
|
|
1704
|
+
}
|
|
1705
|
+
}
|
|
1706
|
+
ret.hunks = [];
|
|
1707
|
+
var mineIndex = 0,
|
|
1708
|
+
theirsIndex = 0,
|
|
1709
|
+
mineOffset = 0,
|
|
1710
|
+
theirsOffset = 0;
|
|
1711
|
+
while (mineIndex < mine.hunks.length || theirsIndex < theirs.hunks.length) {
|
|
1712
|
+
var mineCurrent = mine.hunks[mineIndex] || {
|
|
1713
|
+
oldStart: Infinity
|
|
1714
|
+
},
|
|
1715
|
+
theirsCurrent = theirs.hunks[theirsIndex] || {
|
|
1716
|
+
oldStart: Infinity
|
|
1717
|
+
};
|
|
1718
|
+
if (hunkBefore(mineCurrent, theirsCurrent)) {
|
|
1719
|
+
// This patch does not overlap with any of the others, yay.
|
|
1720
|
+
ret.hunks.push(cloneHunk(mineCurrent, mineOffset));
|
|
1721
|
+
mineIndex++;
|
|
1722
|
+
theirsOffset += mineCurrent.newLines - mineCurrent.oldLines;
|
|
1723
|
+
} else if (hunkBefore(theirsCurrent, mineCurrent)) {
|
|
1724
|
+
// This patch does not overlap with any of the others, yay.
|
|
1725
|
+
ret.hunks.push(cloneHunk(theirsCurrent, theirsOffset));
|
|
1726
|
+
theirsIndex++;
|
|
1727
|
+
mineOffset += theirsCurrent.newLines - theirsCurrent.oldLines;
|
|
1728
|
+
} else {
|
|
1729
|
+
// Overlap, merge as best we can
|
|
1730
|
+
var mergedHunk = {
|
|
1731
|
+
oldStart: Math.min(mineCurrent.oldStart, theirsCurrent.oldStart),
|
|
1732
|
+
oldLines: 0,
|
|
1733
|
+
newStart: Math.min(mineCurrent.newStart + mineOffset, theirsCurrent.oldStart + theirsOffset),
|
|
1734
|
+
newLines: 0,
|
|
1735
|
+
lines: []
|
|
1736
|
+
};
|
|
1737
|
+
mergeLines(mergedHunk, mineCurrent.oldStart, mineCurrent.lines, theirsCurrent.oldStart, theirsCurrent.lines);
|
|
1738
|
+
theirsIndex++;
|
|
1739
|
+
mineIndex++;
|
|
1740
|
+
ret.hunks.push(mergedHunk);
|
|
1741
|
+
}
|
|
1742
|
+
}
|
|
1743
|
+
return ret;
|
|
1744
|
+
}
|
|
1745
|
+
function loadPatch(param, base) {
|
|
1746
|
+
if (typeof param === 'string') {
|
|
1747
|
+
if (/^@@/m.test(param) || /^Index:/m.test(param)) {
|
|
1748
|
+
return parsePatch(param)[0];
|
|
1749
|
+
}
|
|
1750
|
+
if (!base) {
|
|
1751
|
+
throw new Error('Must provide a base reference or pass in a patch');
|
|
1752
|
+
}
|
|
1753
|
+
return structuredPatch(undefined, undefined, base, param);
|
|
1754
|
+
}
|
|
1755
|
+
return param;
|
|
1756
|
+
}
|
|
1757
|
+
function fileNameChanged(patch) {
|
|
1758
|
+
return patch.newFileName && patch.newFileName !== patch.oldFileName;
|
|
1759
|
+
}
|
|
1760
|
+
function selectField(index, mine, theirs) {
|
|
1761
|
+
if (mine === theirs) {
|
|
1762
|
+
return mine;
|
|
1763
|
+
} else {
|
|
1764
|
+
index.conflict = true;
|
|
1765
|
+
return {
|
|
1766
|
+
mine: mine,
|
|
1767
|
+
theirs: theirs
|
|
1768
|
+
};
|
|
1769
|
+
}
|
|
1770
|
+
}
|
|
1771
|
+
function hunkBefore(test, check) {
|
|
1772
|
+
return test.oldStart < check.oldStart && test.oldStart + test.oldLines < check.oldStart;
|
|
1773
|
+
}
|
|
1774
|
+
function cloneHunk(hunk, offset) {
|
|
1775
|
+
return {
|
|
1776
|
+
oldStart: hunk.oldStart,
|
|
1777
|
+
oldLines: hunk.oldLines,
|
|
1778
|
+
newStart: hunk.newStart + offset,
|
|
1779
|
+
newLines: hunk.newLines,
|
|
1780
|
+
lines: hunk.lines
|
|
1781
|
+
};
|
|
1782
|
+
}
|
|
1783
|
+
function mergeLines(hunk, mineOffset, mineLines, theirOffset, theirLines) {
|
|
1784
|
+
// This will generally result in a conflicted hunk, but there are cases where the context
|
|
1785
|
+
// is the only overlap where we can successfully merge the content here.
|
|
1786
|
+
var mine = {
|
|
1787
|
+
offset: mineOffset,
|
|
1788
|
+
lines: mineLines,
|
|
1789
|
+
index: 0
|
|
1790
|
+
},
|
|
1791
|
+
their = {
|
|
1792
|
+
offset: theirOffset,
|
|
1793
|
+
lines: theirLines,
|
|
1794
|
+
index: 0
|
|
1795
|
+
};
|
|
1796
|
+
|
|
1797
|
+
// Handle any leading content
|
|
1798
|
+
insertLeading(hunk, mine, their);
|
|
1799
|
+
insertLeading(hunk, their, mine);
|
|
1800
|
+
|
|
1801
|
+
// Now in the overlap content. Scan through and select the best changes from each.
|
|
1802
|
+
while (mine.index < mine.lines.length && their.index < their.lines.length) {
|
|
1803
|
+
var mineCurrent = mine.lines[mine.index],
|
|
1804
|
+
theirCurrent = their.lines[their.index];
|
|
1805
|
+
if ((mineCurrent[0] === '-' || mineCurrent[0] === '+') && (theirCurrent[0] === '-' || theirCurrent[0] === '+')) {
|
|
1806
|
+
// Both modified ...
|
|
1807
|
+
mutualChange(hunk, mine, their);
|
|
1808
|
+
} else if (mineCurrent[0] === '+' && theirCurrent[0] === ' ') {
|
|
1809
|
+
var _hunk$lines;
|
|
1810
|
+
// Mine inserted
|
|
1811
|
+
(_hunk$lines = hunk.lines).push.apply(_hunk$lines, _toConsumableArray(collectChange(mine)));
|
|
1812
|
+
} else if (theirCurrent[0] === '+' && mineCurrent[0] === ' ') {
|
|
1813
|
+
var _hunk$lines2;
|
|
1814
|
+
// Theirs inserted
|
|
1815
|
+
(_hunk$lines2 = hunk.lines).push.apply(_hunk$lines2, _toConsumableArray(collectChange(their)));
|
|
1816
|
+
} else if (mineCurrent[0] === '-' && theirCurrent[0] === ' ') {
|
|
1817
|
+
// Mine removed or edited
|
|
1818
|
+
removal(hunk, mine, their);
|
|
1819
|
+
} else if (theirCurrent[0] === '-' && mineCurrent[0] === ' ') {
|
|
1820
|
+
// Their removed or edited
|
|
1821
|
+
removal(hunk, their, mine, true);
|
|
1822
|
+
} else if (mineCurrent === theirCurrent) {
|
|
1823
|
+
// Context identity
|
|
1824
|
+
hunk.lines.push(mineCurrent);
|
|
1825
|
+
mine.index++;
|
|
1826
|
+
their.index++;
|
|
1827
|
+
} else {
|
|
1828
|
+
// Context mismatch
|
|
1829
|
+
conflict(hunk, collectChange(mine), collectChange(their));
|
|
1830
|
+
}
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
// Now push anything that may be remaining
|
|
1834
|
+
insertTrailing(hunk, mine);
|
|
1835
|
+
insertTrailing(hunk, their);
|
|
1836
|
+
calcLineCount(hunk);
|
|
1837
|
+
}
|
|
1838
|
+
function mutualChange(hunk, mine, their) {
|
|
1839
|
+
var myChanges = collectChange(mine),
|
|
1840
|
+
theirChanges = collectChange(their);
|
|
1841
|
+
if (allRemoves(myChanges) && allRemoves(theirChanges)) {
|
|
1842
|
+
// Special case for remove changes that are supersets of one another
|
|
1843
|
+
if (arrayStartsWith(myChanges, theirChanges) && skipRemoveSuperset(their, myChanges, myChanges.length - theirChanges.length)) {
|
|
1844
|
+
var _hunk$lines3;
|
|
1845
|
+
(_hunk$lines3 = hunk.lines).push.apply(_hunk$lines3, _toConsumableArray(myChanges));
|
|
1846
|
+
return;
|
|
1847
|
+
} else if (arrayStartsWith(theirChanges, myChanges) && skipRemoveSuperset(mine, theirChanges, theirChanges.length - myChanges.length)) {
|
|
1848
|
+
var _hunk$lines4;
|
|
1849
|
+
(_hunk$lines4 = hunk.lines).push.apply(_hunk$lines4, _toConsumableArray(theirChanges));
|
|
1850
|
+
return;
|
|
1851
|
+
}
|
|
1852
|
+
} else if (arrayEqual(myChanges, theirChanges)) {
|
|
1853
|
+
var _hunk$lines5;
|
|
1854
|
+
(_hunk$lines5 = hunk.lines).push.apply(_hunk$lines5, _toConsumableArray(myChanges));
|
|
1855
|
+
return;
|
|
1856
|
+
}
|
|
1857
|
+
conflict(hunk, myChanges, theirChanges);
|
|
1858
|
+
}
|
|
1859
|
+
function removal(hunk, mine, their, swap) {
|
|
1860
|
+
var myChanges = collectChange(mine),
|
|
1861
|
+
theirChanges = collectContext(their, myChanges);
|
|
1862
|
+
if (theirChanges.merged) {
|
|
1863
|
+
var _hunk$lines6;
|
|
1864
|
+
(_hunk$lines6 = hunk.lines).push.apply(_hunk$lines6, _toConsumableArray(theirChanges.merged));
|
|
1865
|
+
} else {
|
|
1866
|
+
conflict(hunk, swap ? theirChanges : myChanges, swap ? myChanges : theirChanges);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
function conflict(hunk, mine, their) {
|
|
1870
|
+
hunk.conflict = true;
|
|
1871
|
+
hunk.lines.push({
|
|
1872
|
+
conflict: true,
|
|
1873
|
+
mine: mine,
|
|
1874
|
+
theirs: their
|
|
1875
|
+
});
|
|
1876
|
+
}
|
|
1877
|
+
function insertLeading(hunk, insert, their) {
|
|
1878
|
+
while (insert.offset < their.offset && insert.index < insert.lines.length) {
|
|
1879
|
+
var line = insert.lines[insert.index++];
|
|
1880
|
+
hunk.lines.push(line);
|
|
1881
|
+
insert.offset++;
|
|
1882
|
+
}
|
|
1883
|
+
}
|
|
1884
|
+
function insertTrailing(hunk, insert) {
|
|
1885
|
+
while (insert.index < insert.lines.length) {
|
|
1886
|
+
var line = insert.lines[insert.index++];
|
|
1887
|
+
hunk.lines.push(line);
|
|
1888
|
+
}
|
|
1889
|
+
}
|
|
1890
|
+
function collectChange(state) {
|
|
1891
|
+
var ret = [],
|
|
1892
|
+
operation = state.lines[state.index][0];
|
|
1893
|
+
while (state.index < state.lines.length) {
|
|
1894
|
+
var line = state.lines[state.index];
|
|
1895
|
+
|
|
1896
|
+
// Group additions that are immediately after subtractions and treat them as one "atomic" modify change.
|
|
1897
|
+
if (operation === '-' && line[0] === '+') {
|
|
1898
|
+
operation = '+';
|
|
1899
|
+
}
|
|
1900
|
+
if (operation === line[0]) {
|
|
1901
|
+
ret.push(line);
|
|
1902
|
+
state.index++;
|
|
1903
|
+
} else {
|
|
1904
|
+
break;
|
|
1905
|
+
}
|
|
1906
|
+
}
|
|
1907
|
+
return ret;
|
|
1908
|
+
}
|
|
1909
|
+
function collectContext(state, matchChanges) {
|
|
1910
|
+
var changes = [],
|
|
1911
|
+
merged = [],
|
|
1912
|
+
matchIndex = 0,
|
|
1913
|
+
contextChanges = false,
|
|
1914
|
+
conflicted = false;
|
|
1915
|
+
while (matchIndex < matchChanges.length && state.index < state.lines.length) {
|
|
1916
|
+
var change = state.lines[state.index],
|
|
1917
|
+
match = matchChanges[matchIndex];
|
|
1918
|
+
|
|
1919
|
+
// Once we've hit our add, then we are done
|
|
1920
|
+
if (match[0] === '+') {
|
|
1921
|
+
break;
|
|
1922
|
+
}
|
|
1923
|
+
contextChanges = contextChanges || change[0] !== ' ';
|
|
1924
|
+
merged.push(match);
|
|
1925
|
+
matchIndex++;
|
|
1926
|
+
|
|
1927
|
+
// Consume any additions in the other block as a conflict to attempt
|
|
1928
|
+
// to pull in the remaining context after this
|
|
1929
|
+
if (change[0] === '+') {
|
|
1930
|
+
conflicted = true;
|
|
1931
|
+
while (change[0] === '+') {
|
|
1932
|
+
changes.push(change);
|
|
1933
|
+
change = state.lines[++state.index];
|
|
1934
|
+
}
|
|
1935
|
+
}
|
|
1936
|
+
if (match.substr(1) === change.substr(1)) {
|
|
1937
|
+
changes.push(change);
|
|
1938
|
+
state.index++;
|
|
1939
|
+
} else {
|
|
1940
|
+
conflicted = true;
|
|
1941
|
+
}
|
|
1942
|
+
}
|
|
1943
|
+
if ((matchChanges[matchIndex] || '')[0] === '+' && contextChanges) {
|
|
1944
|
+
conflicted = true;
|
|
1945
|
+
}
|
|
1946
|
+
if (conflicted) {
|
|
1947
|
+
return changes;
|
|
1948
|
+
}
|
|
1949
|
+
while (matchIndex < matchChanges.length) {
|
|
1950
|
+
merged.push(matchChanges[matchIndex++]);
|
|
1951
|
+
}
|
|
1952
|
+
return {
|
|
1953
|
+
merged: merged,
|
|
1954
|
+
changes: changes
|
|
1955
|
+
};
|
|
1956
|
+
}
|
|
1957
|
+
function allRemoves(changes) {
|
|
1958
|
+
return changes.reduce(function (prev, change) {
|
|
1959
|
+
return prev && change[0] === '-';
|
|
1960
|
+
}, true);
|
|
1961
|
+
}
|
|
1962
|
+
function skipRemoveSuperset(state, removeChanges, delta) {
|
|
1963
|
+
for (var i = 0; i < delta; i++) {
|
|
1964
|
+
var changeContent = removeChanges[removeChanges.length - delta + i].substr(1);
|
|
1965
|
+
if (state.lines[state.index + i] !== ' ' + changeContent) {
|
|
1966
|
+
return false;
|
|
1967
|
+
}
|
|
1968
|
+
}
|
|
1969
|
+
state.index += delta;
|
|
1970
|
+
return true;
|
|
1971
|
+
}
|
|
1972
|
+
function calcOldNewLineCount(lines) {
|
|
1973
|
+
var oldLines = 0;
|
|
1974
|
+
var newLines = 0;
|
|
1975
|
+
lines.forEach(function (line) {
|
|
1976
|
+
if (typeof line !== 'string') {
|
|
1977
|
+
var myCount = calcOldNewLineCount(line.mine);
|
|
1978
|
+
var theirCount = calcOldNewLineCount(line.theirs);
|
|
1979
|
+
if (oldLines !== undefined) {
|
|
1980
|
+
if (myCount.oldLines === theirCount.oldLines) {
|
|
1981
|
+
oldLines += myCount.oldLines;
|
|
1982
|
+
} else {
|
|
1983
|
+
oldLines = undefined;
|
|
1984
|
+
}
|
|
1985
|
+
}
|
|
1986
|
+
if (newLines !== undefined) {
|
|
1987
|
+
if (myCount.newLines === theirCount.newLines) {
|
|
1988
|
+
newLines += myCount.newLines;
|
|
1989
|
+
} else {
|
|
1990
|
+
newLines = undefined;
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1993
|
+
} else {
|
|
1994
|
+
if (newLines !== undefined && (line[0] === '+' || line[0] === ' ')) {
|
|
1995
|
+
newLines++;
|
|
1996
|
+
}
|
|
1997
|
+
if (oldLines !== undefined && (line[0] === '-' || line[0] === ' ')) {
|
|
1998
|
+
oldLines++;
|
|
1999
|
+
}
|
|
2000
|
+
}
|
|
2001
|
+
});
|
|
2002
|
+
return {
|
|
2003
|
+
oldLines: oldLines,
|
|
2004
|
+
newLines: newLines
|
|
2005
|
+
};
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
function reversePatch(structuredPatch) {
|
|
2009
|
+
if (Array.isArray(structuredPatch)) {
|
|
2010
|
+
return structuredPatch.map(reversePatch).reverse();
|
|
2011
|
+
}
|
|
2012
|
+
return _objectSpread2(_objectSpread2({}, structuredPatch), {}, {
|
|
2013
|
+
oldFileName: structuredPatch.newFileName,
|
|
2014
|
+
oldHeader: structuredPatch.newHeader,
|
|
2015
|
+
newFileName: structuredPatch.oldFileName,
|
|
2016
|
+
newHeader: structuredPatch.oldHeader,
|
|
2017
|
+
hunks: structuredPatch.hunks.map(function (hunk) {
|
|
2018
|
+
return {
|
|
2019
|
+
oldLines: hunk.newLines,
|
|
2020
|
+
oldStart: hunk.newStart,
|
|
2021
|
+
newLines: hunk.oldLines,
|
|
2022
|
+
newStart: hunk.oldStart,
|
|
2023
|
+
lines: hunk.lines.map(function (l) {
|
|
2024
|
+
if (l.startsWith('-')) {
|
|
2025
|
+
return "+".concat(l.slice(1));
|
|
2026
|
+
}
|
|
2027
|
+
if (l.startsWith('+')) {
|
|
2028
|
+
return "-".concat(l.slice(1));
|
|
2029
|
+
}
|
|
2030
|
+
return l;
|
|
2031
|
+
})
|
|
2032
|
+
};
|
|
2033
|
+
})
|
|
2034
|
+
});
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
// See: http://code.google.com/p/google-diff-match-patch/wiki/API
|
|
2038
|
+
function convertChangesToDMP(changes) {
|
|
2039
|
+
var ret = [],
|
|
2040
|
+
change,
|
|
2041
|
+
operation;
|
|
2042
|
+
for (var i = 0; i < changes.length; i++) {
|
|
2043
|
+
change = changes[i];
|
|
2044
|
+
if (change.added) {
|
|
2045
|
+
operation = 1;
|
|
2046
|
+
} else if (change.removed) {
|
|
2047
|
+
operation = -1;
|
|
2048
|
+
} else {
|
|
2049
|
+
operation = 0;
|
|
2050
|
+
}
|
|
2051
|
+
ret.push([operation, change.value]);
|
|
2052
|
+
}
|
|
2053
|
+
return ret;
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
function convertChangesToXML(changes) {
|
|
2057
|
+
var ret = [];
|
|
2058
|
+
for (var i = 0; i < changes.length; i++) {
|
|
2059
|
+
var change = changes[i];
|
|
2060
|
+
if (change.added) {
|
|
2061
|
+
ret.push('<ins>');
|
|
2062
|
+
} else if (change.removed) {
|
|
2063
|
+
ret.push('<del>');
|
|
2064
|
+
}
|
|
2065
|
+
ret.push(escapeHTML(change.value));
|
|
2066
|
+
if (change.added) {
|
|
2067
|
+
ret.push('</ins>');
|
|
2068
|
+
} else if (change.removed) {
|
|
2069
|
+
ret.push('</del>');
|
|
2070
|
+
}
|
|
2071
|
+
}
|
|
2072
|
+
return ret.join('');
|
|
2073
|
+
}
|
|
2074
|
+
function escapeHTML(s) {
|
|
2075
|
+
var n = s;
|
|
2076
|
+
n = n.replace(/&/g, '&');
|
|
2077
|
+
n = n.replace(/</g, '<');
|
|
2078
|
+
n = n.replace(/>/g, '>');
|
|
2079
|
+
n = n.replace(/"/g, '"');
|
|
2080
|
+
return n;
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
exports.Diff = Diff;
|
|
2084
|
+
exports.applyPatch = applyPatch;
|
|
2085
|
+
exports.applyPatches = applyPatches;
|
|
2086
|
+
exports.canonicalize = canonicalize;
|
|
2087
|
+
exports.convertChangesToDMP = convertChangesToDMP;
|
|
2088
|
+
exports.convertChangesToXML = convertChangesToXML;
|
|
2089
|
+
exports.createPatch = createPatch;
|
|
2090
|
+
exports.createTwoFilesPatch = createTwoFilesPatch;
|
|
2091
|
+
exports.diffArrays = diffArrays;
|
|
2092
|
+
exports.diffChars = diffChars;
|
|
2093
|
+
exports.diffCss = diffCss;
|
|
2094
|
+
exports.diffJson = diffJson;
|
|
2095
|
+
exports.diffLines = diffLines;
|
|
2096
|
+
exports.diffSentences = diffSentences;
|
|
2097
|
+
exports.diffTrimmedLines = diffTrimmedLines;
|
|
2098
|
+
exports.diffWords = diffWords;
|
|
2099
|
+
exports.diffWordsWithSpace = diffWordsWithSpace;
|
|
2100
|
+
exports.formatPatch = formatPatch;
|
|
2101
|
+
exports.merge = merge;
|
|
2102
|
+
exports.parsePatch = parsePatch;
|
|
2103
|
+
exports.reversePatch = reversePatch;
|
|
2104
|
+
exports.structuredPatch = structuredPatch;
|
|
2105
|
+
|
|
2106
|
+
}));
|