@sean.holung/minicode 0.3.9 → 0.3.11
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/README.md +9 -0
- package/dist/scripts/run-ts-bench-smoke.js +268 -0
- package/dist/scripts/ts-bench-adapter.js +251 -0
- package/dist/src/agent/config.js +2 -2
- package/dist/src/auto-allow.js +28 -0
- package/dist/src/benchmark/config.js +197 -0
- package/dist/src/benchmark/index.js +2 -0
- package/dist/src/benchmark/workspace-changes.js +125 -0
- package/dist/src/cli/args.js +13 -0
- package/dist/src/cli/benchmark-run.js +432 -0
- package/dist/src/cli/permissions-slash-command.js +50 -0
- package/dist/src/index.js +9 -2
- package/dist/src/indexer/plugin-loader.js +19 -1
- package/dist/src/indexer/project-index.js +35 -21
- package/dist/src/serve/agent-bridge.js +128 -1
- package/dist/src/serve/openai-compat.js +2 -2
- package/dist/src/serve/websocket.js +11 -0
- package/dist/src/tools/registry.js +10 -2
- package/dist/src/ui/app.js +8 -2
- package/dist/src/ui/cli-ink.js +13 -2
- package/dist/src/ui/components/permission-prompt.js +53 -0
- package/dist/src/ui/permission-gate.js +42 -0
- package/dist/src/ui/state/ui-store.js +13 -0
- package/dist/src/web/app.js +77 -5
- package/dist/src/web/index.html +58 -1
- package/dist/src/web/style.css +971 -1738
- package/dist/tests/agent.test.js +110 -0
- package/dist/tests/benchmark-config.test.js +80 -0
- package/dist/tests/benchmark-run.test.js +180 -0
- package/dist/tests/cli-args.test.js +22 -0
- package/dist/tests/cli-oneshot.integration.test.js +5 -0
- package/dist/tests/config.test.js +21 -0
- package/dist/tests/file-tools.test.js +36 -0
- package/dist/tests/harbor-adapter.test.js +57 -0
- package/dist/tests/indexer.test.js +1 -1
- package/dist/tests/permission-gate-cli.test.js +126 -0
- package/dist/tests/permission-gate.test.js +196 -0
- package/dist/tests/python-plugin.test.js +357 -0
- package/dist/tests/system-prompt.test.js +44 -9
- package/dist/tests/ts-bench-adapter.test.js +186 -0
- package/dist/tests/workspace-changes.test.js +82 -0
- package/node_modules/@minicode/agent-sdk/README.md +286 -90
- package/node_modules/@minicode/agent-sdk/dist/src/agent/agent.d.ts +40 -4
- package/node_modules/@minicode/agent-sdk/dist/src/agent/agent.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/agent/agent.js +134 -27
- package/node_modules/@minicode/agent-sdk/dist/src/agent/agent.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/agent/structured-output.d.ts +42 -0
- package/node_modules/@minicode/agent-sdk/dist/src/agent/structured-output.d.ts.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/src/agent/structured-output.js +97 -0
- package/node_modules/@minicode/agent-sdk/dist/src/agent/structured-output.js.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/src/agent/types.d.ts +97 -2
- package/node_modules/@minicode/agent-sdk/dist/src/agent/types.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/agent/types.js +15 -1
- package/node_modules/@minicode/agent-sdk/dist/src/agent/types.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/index.d.ts +10 -8
- package/node_modules/@minicode/agent-sdk/dist/src/index.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/index.js +10 -6
- package/node_modules/@minicode/agent-sdk/dist/src/index.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/indexer/types.d.ts +8 -3
- package/node_modules/@minicode/agent-sdk/dist/src/indexer/types.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/mcp/client-registry.d.ts +109 -0
- package/node_modules/@minicode/agent-sdk/dist/src/mcp/client-registry.d.ts.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/src/mcp/client-registry.js +237 -0
- package/node_modules/@minicode/agent-sdk/dist/src/mcp/client-registry.js.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/src/model/client.d.ts +5 -1
- package/node_modules/@minicode/agent-sdk/dist/src/model/client.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/model/client.js +100 -8
- package/node_modules/@minicode/agent-sdk/dist/src/model/client.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/prompt/system-prompt.d.ts +31 -1
- package/node_modules/@minicode/agent-sdk/dist/src/prompt/system-prompt.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/prompt/system-prompt.js +8 -7
- package/node_modules/@minicode/agent-sdk/dist/src/prompt/system-prompt.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/session/session.d.ts +8 -0
- package/node_modules/@minicode/agent-sdk/dist/src/session/session.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/session/session.js +2 -0
- package/node_modules/@minicode/agent-sdk/dist/src/session/session.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/edit-file.d.ts +10 -3
- package/node_modules/@minicode/agent-sdk/dist/src/tools/edit-file.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/edit-file.js +3 -3
- package/node_modules/@minicode/agent-sdk/dist/src/tools/edit-file.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/list-files.d.ts +9 -2
- package/node_modules/@minicode/agent-sdk/dist/src/tools/list-files.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/list-files.js +2 -2
- package/node_modules/@minicode/agent-sdk/dist/src/tools/list-files.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/read-file.d.ts +12 -2
- package/node_modules/@minicode/agent-sdk/dist/src/tools/read-file.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/read-file.js +3 -3
- package/node_modules/@minicode/agent-sdk/dist/src/tools/read-file.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/run-command.d.ts +12 -2
- package/node_modules/@minicode/agent-sdk/dist/src/tools/run-command.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/run-command.js +5 -5
- package/node_modules/@minicode/agent-sdk/dist/src/tools/run-command.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/search.d.ts +10 -2
- package/node_modules/@minicode/agent-sdk/dist/src/tools/search.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/search.js +5 -5
- package/node_modules/@minicode/agent-sdk/dist/src/tools/search.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/write-file.d.ts +10 -3
- package/node_modules/@minicode/agent-sdk/dist/src/tools/write-file.d.ts.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/src/tools/write-file.js +3 -3
- package/node_modules/@minicode/agent-sdk/dist/src/tools/write-file.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/tests/agent.test.js +342 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/agent.test.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/tests/mcp-client.integration.test.d.ts +2 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/mcp-client.integration.test.d.ts.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/mcp-client.integration.test.js +64 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/mcp-client.integration.test.js.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/mcp-client.test.d.ts +2 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/mcp-client.test.d.ts.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/mcp-client.test.js +350 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/mcp-client.test.js.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/model-client-anthropic-structured-output.test.d.ts +2 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/model-client-anthropic-structured-output.test.d.ts.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/model-client-anthropic-structured-output.test.js +211 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/model-client-anthropic-structured-output.test.js.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/model-client-openai.test.js +88 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/model-client-openai.test.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/tests/model-client-structured-output.test.d.ts +2 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/model-client-structured-output.test.d.ts.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/model-client-structured-output.test.js +171 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/model-client-structured-output.test.js.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/session.test.js +34 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/session.test.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/tests/structured-output.test.d.ts +2 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/structured-output.test.d.ts.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/structured-output.test.js +212 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/structured-output.test.js.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/system-prompt.test.js +7 -7
- package/node_modules/@minicode/agent-sdk/dist/tests/system-prompt.test.js.map +1 -1
- package/node_modules/@minicode/agent-sdk/dist/tests/tool-factory-options.test.d.ts +2 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/tool-factory-options.test.d.ts.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/tool-factory-options.test.js +72 -0
- package/node_modules/@minicode/agent-sdk/dist/tests/tool-factory-options.test.js.map +1 -0
- package/node_modules/@minicode/agent-sdk/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@minicode/agent-sdk/package.json +5 -2
- package/node_modules/ajv/README.md +207 -0
- package/node_modules/ajv/dist/core.js +618 -0
- package/node_modules/ajv/dist/core.js.map +1 -0
- package/node_modules/ajv/lib/core.ts +892 -0
- package/node_modules/ajv/package.json +126 -0
- package/node_modules/minicode-plugin-python/dist/src/index.d.ts +9 -0
- package/node_modules/minicode-plugin-python/dist/src/index.d.ts.map +1 -0
- package/node_modules/minicode-plugin-python/dist/src/index.js +679 -0
- package/node_modules/minicode-plugin-python/dist/src/index.js.map +1 -0
- package/node_modules/minicode-plugin-python/dist/tsconfig.tsbuildinfo +1 -0
- package/node_modules/minicode-plugin-python/package.json +37 -0
- package/node_modules/node-addon-api/LICENSE.md +9 -0
- package/node_modules/node-addon-api/README.md +95 -0
- package/node_modules/node-addon-api/common.gypi +21 -0
- package/node_modules/node-addon-api/except.gypi +25 -0
- package/node_modules/node-addon-api/index.js +14 -0
- package/node_modules/node-addon-api/napi-inl.deprecated.h +186 -0
- package/node_modules/node-addon-api/napi-inl.h +7165 -0
- package/node_modules/node-addon-api/napi.h +3364 -0
- package/node_modules/node-addon-api/node_addon_api.gyp +42 -0
- package/node_modules/node-addon-api/node_api.gyp +9 -0
- package/node_modules/node-addon-api/noexcept.gypi +26 -0
- package/node_modules/node-addon-api/nothing.c +0 -0
- package/node_modules/node-addon-api/package-support.json +21 -0
- package/node_modules/node-addon-api/package.json +480 -0
- package/node_modules/node-addon-api/tools/README.md +73 -0
- package/node_modules/node-addon-api/tools/check-napi.js +99 -0
- package/node_modules/node-addon-api/tools/clang-format.js +71 -0
- package/node_modules/node-addon-api/tools/conversion.js +301 -0
- package/node_modules/node-gyp-build/LICENSE +21 -0
- package/node_modules/node-gyp-build/README.md +58 -0
- package/node_modules/node-gyp-build/SECURITY.md +5 -0
- package/node_modules/node-gyp-build/bin.js +84 -0
- package/node_modules/node-gyp-build/build-test.js +19 -0
- package/node_modules/node-gyp-build/index.js +6 -0
- package/node_modules/node-gyp-build/node-gyp-build.js +207 -0
- package/node_modules/node-gyp-build/optional.js +7 -0
- package/node_modules/node-gyp-build/package.json +43 -0
- package/node_modules/tree-sitter/LICENSE +21 -0
- package/node_modules/tree-sitter/README.md +128 -0
- package/node_modules/tree-sitter/binding.gyp +80 -0
- package/node_modules/tree-sitter/index.js +916 -0
- package/node_modules/tree-sitter/package.json +76 -0
- package/node_modules/tree-sitter/src/addon_data.h +47 -0
- package/node_modules/tree-sitter/src/binding.cc +35 -0
- package/node_modules/tree-sitter/src/conversions.cc +140 -0
- package/node_modules/tree-sitter/src/conversions.h +22 -0
- package/node_modules/tree-sitter/src/language.cc +106 -0
- package/node_modules/tree-sitter/src/language.h +17 -0
- package/node_modules/tree-sitter/src/logger.cc +70 -0
- package/node_modules/tree-sitter/src/logger.h +19 -0
- package/node_modules/tree-sitter/src/lookaheaditerator.cc +122 -0
- package/node_modules/tree-sitter/src/lookaheaditerator.h +33 -0
- package/node_modules/tree-sitter/src/node.cc +1088 -0
- package/node_modules/tree-sitter/src/node.h +30 -0
- package/node_modules/tree-sitter/src/parser.cc +306 -0
- package/node_modules/tree-sitter/src/parser.h +35 -0
- package/node_modules/tree-sitter/src/query.cc +397 -0
- package/node_modules/tree-sitter/src/query.h +40 -0
- package/node_modules/tree-sitter/src/tree.cc +316 -0
- package/node_modules/tree-sitter/src/tree.h +45 -0
- package/node_modules/tree-sitter/src/tree_cursor.cc +213 -0
- package/node_modules/tree-sitter/src/tree_cursor.h +52 -0
- package/node_modules/tree-sitter/tree-sitter.d.ts +1042 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/include/tree_sitter/api.h +1478 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/alloc.c +48 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/alloc.h +41 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/array.h +291 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/atomic.h +68 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/clock.h +146 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/error_costs.h +11 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/get_changed_ranges.c +523 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/get_changed_ranges.h +36 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/host.h +21 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/language.c +293 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/language.h +293 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/length.h +52 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/lexer.c +483 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/lexer.h +54 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/lib.c +12 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/node.c +875 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/parser.c +2293 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/parser.h +286 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/point.h +48 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/portable/endian.h +239 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/query.c +4350 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/reduce_action.h +34 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/reusable_node.h +95 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/stack.c +911 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/stack.h +133 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/subtree.c +1034 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/subtree.h +399 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/tree.c +170 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/tree.h +31 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/tree_cursor.c +717 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/tree_cursor.h +48 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/ts_assert.h +11 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/unicode/ICU_SHA +1 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/unicode/LICENSE +414 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/unicode/README.md +29 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/unicode/ptypes.h +1 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/unicode/umachine.h +448 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/unicode/urename.h +1 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/unicode/utf.h +1 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/unicode/utf16.h +733 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/unicode/utf8.h +881 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/unicode.h +75 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/wasm/stdlib-symbols.txt +24 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/wasm/stdlib.c +113 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/wasm/wasm-stdlib.h +1314 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/wasm_store.c +1935 -0
- package/node_modules/tree-sitter/vendor/tree-sitter/lib/src/wasm_store.h +31 -0
- package/node_modules/tree-sitter-python/LICENSE +21 -0
- package/node_modules/tree-sitter-python/README.md +24 -0
- package/node_modules/tree-sitter-python/binding.gyp +35 -0
- package/node_modules/tree-sitter-python/bindings/node/binding.cc +19 -0
- package/node_modules/tree-sitter-python/bindings/node/binding_test.js +9 -0
- package/node_modules/tree-sitter-python/bindings/node/index.d.ts +27 -0
- package/node_modules/tree-sitter-python/bindings/node/index.js +11 -0
- package/node_modules/tree-sitter-python/grammar.js +1225 -0
- package/node_modules/tree-sitter-python/package.json +60 -0
- package/node_modules/tree-sitter-python/prebuilds/darwin-arm64/tree-sitter-python.node +0 -0
- package/node_modules/tree-sitter-python/prebuilds/darwin-x64/tree-sitter-python.node +0 -0
- package/node_modules/tree-sitter-python/prebuilds/linux-arm64/tree-sitter-python.node +0 -0
- package/node_modules/tree-sitter-python/prebuilds/linux-x64/tree-sitter-python.node +0 -0
- package/node_modules/tree-sitter-python/prebuilds/win32-arm64/tree-sitter-python.node +0 -0
- package/node_modules/tree-sitter-python/prebuilds/win32-x64/tree-sitter-python.node +0 -0
- package/node_modules/tree-sitter-python/queries/highlights.scm +137 -0
- package/node_modules/tree-sitter-python/queries/tags.scm +14 -0
- package/node_modules/tree-sitter-python/src/grammar.json +6435 -0
- package/node_modules/tree-sitter-python/src/node-types.json +3746 -0
- package/node_modules/tree-sitter-python/src/parser.c +129742 -0
- package/node_modules/tree-sitter-python/src/scanner.c +437 -0
- package/node_modules/tree-sitter-python/src/tree_sitter/alloc.h +54 -0
- package/node_modules/tree-sitter-python/src/tree_sitter/array.h +291 -0
- package/node_modules/tree-sitter-python/src/tree_sitter/parser.h +286 -0
- package/node_modules/tree-sitter-python/tree-sitter-python.wasm +0 -0
- package/node_modules/tree-sitter-python/tree-sitter.json +42 -0
- package/package.json +19 -7
- package/node_modules/@modelcontextprotocol/sdk/node_modules/ajv/README.md +0 -207
- package/node_modules/@modelcontextprotocol/sdk/node_modules/ajv/dist/core.js +0 -618
- package/node_modules/@modelcontextprotocol/sdk/node_modules/ajv/dist/core.js.map +0 -1
- package/node_modules/@modelcontextprotocol/sdk/node_modules/ajv/lib/core.ts +0 -892
- package/node_modules/@modelcontextprotocol/sdk/node_modules/ajv/package.json +0 -127
- package/node_modules/ajv-formats/node_modules/ajv/.runkit_example.js +0 -23
- package/node_modules/ajv-formats/node_modules/ajv/LICENSE +0 -22
- package/node_modules/ajv-formats/node_modules/ajv/README.md +0 -207
- package/node_modules/ajv-formats/node_modules/ajv/dist/2019.d.ts +0 -19
- package/node_modules/ajv-formats/node_modules/ajv/dist/2019.js +0 -61
- package/node_modules/ajv-formats/node_modules/ajv/dist/2019.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/2020.d.ts +0 -19
- package/node_modules/ajv-formats/node_modules/ajv/dist/2020.js +0 -55
- package/node_modules/ajv-formats/node_modules/ajv/dist/2020.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/ajv.d.ts +0 -18
- package/node_modules/ajv-formats/node_modules/ajv/dist/ajv.js +0 -50
- package/node_modules/ajv-formats/node_modules/ajv/dist/ajv.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/codegen/code.d.ts +0 -40
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/codegen/code.js +0 -156
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/codegen/code.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/codegen/index.d.ts +0 -79
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/codegen/index.js +0 -697
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/codegen/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/codegen/scope.d.ts +0 -79
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/codegen/scope.js +0 -143
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/codegen/scope.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/errors.d.ts +0 -13
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/errors.js +0 -123
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/errors.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/index.d.ts +0 -80
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/index.js +0 -242
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/jtd/parse.d.ts +0 -4
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/jtd/parse.js +0 -350
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/jtd/parse.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/jtd/serialize.d.ts +0 -4
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/jtd/serialize.js +0 -236
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/jtd/serialize.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/jtd/types.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/jtd/types.js +0 -14
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/jtd/types.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/names.d.ts +0 -20
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/names.js +0 -28
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/names.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/ref_error.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/ref_error.js +0 -12
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/ref_error.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/resolve.d.ts +0 -12
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/resolve.js +0 -155
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/resolve.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/rules.d.ts +0 -28
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/rules.js +0 -26
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/rules.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/util.d.ts +0 -40
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/util.js +0 -178
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/util.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/applicability.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/applicability.js +0 -19
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/applicability.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +0 -4
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/boolSchema.js +0 -50
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/boolSchema.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/dataType.d.ts +0 -17
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/dataType.js +0 -203
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/dataType.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/defaults.d.ts +0 -2
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/defaults.js +0 -35
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/defaults.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/index.d.ts +0 -42
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/index.js +0 -520
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/keyword.d.ts +0 -8
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/keyword.js +0 -124
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/keyword.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/subschema.d.ts +0 -47
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/subschema.js +0 -81
- package/node_modules/ajv-formats/node_modules/ajv/dist/compile/validate/subschema.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/core.d.ts +0 -174
- package/node_modules/ajv-formats/node_modules/ajv/dist/core.js +0 -618
- package/node_modules/ajv-formats/node_modules/ajv/dist/core.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/jtd.d.ts +0 -47
- package/node_modules/ajv-formats/node_modules/ajv/dist/jtd.js +0 -72
- package/node_modules/ajv-formats/node_modules/ajv/dist/jtd.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/data.json +0 -13
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +0 -2
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +0 -28
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +0 -53
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +0 -17
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +0 -57
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +0 -14
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +0 -90
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +0 -39
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +0 -2
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +0 -30
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +0 -48
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +0 -17
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +0 -51
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +0 -90
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +0 -55
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-draft-06.json +0 -137
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-draft-07.json +0 -151
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/json-schema-secure.json +0 -88
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/jtd-schema.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/jtd-schema.js +0 -118
- package/node_modules/ajv-formats/node_modules/ajv/dist/refs/jtd-schema.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/equal.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/equal.js +0 -7
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/equal.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/parseJson.d.ts +0 -18
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/parseJson.js +0 -185
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/parseJson.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/quote.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/quote.js +0 -30
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/quote.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/re2.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/re2.js +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/re2.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/timestamp.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/timestamp.js +0 -42
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/timestamp.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/ucs2length.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/ucs2length.js +0 -24
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/ucs2length.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/uri.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/uri.js +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/uri.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/validation_error.d.ts +0 -7
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/validation_error.js +0 -11
- package/node_modules/ajv-formats/node_modules/ajv/dist/runtime/validation_error.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/standalone/index.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/standalone/index.js +0 -90
- package/node_modules/ajv-formats/node_modules/ajv/dist/standalone/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/standalone/instance.d.ts +0 -12
- package/node_modules/ajv-formats/node_modules/ajv/dist/standalone/instance.js +0 -35
- package/node_modules/ajv-formats/node_modules/ajv/dist/standalone/instance.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/types/index.d.ts +0 -183
- package/node_modules/ajv-formats/node_modules/ajv/dist/types/index.js +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/types/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/types/json-schema.d.ts +0 -125
- package/node_modules/ajv-formats/node_modules/ajv/dist/types/json-schema.js +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/types/json-schema.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/types/jtd-schema.d.ts +0 -174
- package/node_modules/ajv-formats/node_modules/ajv/dist/types/jtd-schema.js +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/types/jtd-schema.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +0 -8
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +0 -49
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +0 -106
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/allOf.js +0 -23
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +0 -4
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +0 -12
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +0 -7
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/contains.js +0 -95
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +0 -21
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +0 -85
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +0 -11
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/if.js +0 -66
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/if.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +0 -13
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/index.js +0 -44
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/items.js +0 -52
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/items.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/items2020.js +0 -30
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +0 -4
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/not.js +0 -26
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/not.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +0 -60
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +0 -75
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +0 -12
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/properties.js +0 -54
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +0 -38
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +0 -13
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/code.d.ts +0 -17
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/code.js +0 -131
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/code.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/core/id.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/core/id.js +0 -10
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/core/id.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/core/index.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/core/index.js +0 -16
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/core/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/core/ref.d.ts +0 -8
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/core/ref.js +0 -122
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/core/ref.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/discriminator/index.js +0 -104
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +0 -10
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/discriminator/types.js +0 -9
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/draft2020.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/draft2020.js +0 -23
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/draft2020.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/draft7.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/draft7.js +0 -17
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/draft7.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +0 -30
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +0 -51
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/index.js +0 -9
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +0 -16
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +0 -10
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/errors.d.ts +0 -9
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/errors.js +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/errors.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/format/format.d.ts +0 -8
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/format/format.js +0 -92
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/format/format.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/format/index.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/format/index.js +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/format/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +0 -71
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/elements.js +0 -24
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/enum.js +0 -43
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +0 -9
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/error.js +0 -20
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/error.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +0 -10
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/index.js +0 -29
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/metadata.js +0 -25
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +0 -4
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/nullable.js +0 -22
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +0 -15
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +0 -22
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/properties.js +0 -149
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +0 -4
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/ref.js +0 -67
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +0 -10
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/type.js +0 -69
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/type.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/union.js +0 -12
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/union.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/values.js +0 -51
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/jtd/values.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/metadata.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/metadata.js +0 -18
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/metadata.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/next.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/next.js +0 -8
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/next.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/unevaluated/index.js +0 -7
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +0 -40
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +0 -65
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/const.d.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/const.js +0 -25
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/const.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +0 -5
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +0 -12
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +0 -8
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/enum.js +0 -48
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/enum.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/index.d.ts +0 -16
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/index.js +0 -33
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/index.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitContains.js +0 -15
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitItems.js +0 -24
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitLength.js +0 -27
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +0 -11
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +0 -27
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +0 -3
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +0 -24
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +0 -8
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +0 -26
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +0 -8
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/pattern.js +0 -33
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/required.d.ts +0 -8
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/required.js +0 -79
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/required.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +0 -9
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +0 -64
- package/node_modules/ajv-formats/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +0 -1
- package/node_modules/ajv-formats/node_modules/ajv/lib/2019.ts +0 -81
- package/node_modules/ajv-formats/node_modules/ajv/lib/2020.ts +0 -75
- package/node_modules/ajv-formats/node_modules/ajv/lib/ajv.ts +0 -70
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/codegen/code.ts +0 -169
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/codegen/index.ts +0 -852
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/codegen/scope.ts +0 -215
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/errors.ts +0 -184
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/index.ts +0 -324
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/jtd/parse.ts +0 -411
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/jtd/serialize.ts +0 -277
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/jtd/types.ts +0 -16
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/names.ts +0 -27
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/ref_error.ts +0 -13
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/resolve.ts +0 -149
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/rules.ts +0 -50
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/util.ts +0 -213
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/validate/applicability.ts +0 -22
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/validate/boolSchema.ts +0 -47
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/validate/dataType.ts +0 -230
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/validate/defaults.ts +0 -32
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/validate/index.ts +0 -582
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/validate/keyword.ts +0 -171
- package/node_modules/ajv-formats/node_modules/ajv/lib/compile/validate/subschema.ts +0 -135
- package/node_modules/ajv-formats/node_modules/ajv/lib/core.ts +0 -892
- package/node_modules/ajv-formats/node_modules/ajv/lib/jtd.ts +0 -132
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/data.json +0 -13
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +0 -28
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +0 -53
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +0 -17
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +0 -57
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +0 -14
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +0 -90
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +0 -39
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +0 -30
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +0 -48
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +0 -17
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +0 -51
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +0 -90
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +0 -55
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-draft-06.json +0 -137
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-draft-07.json +0 -151
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/json-schema-secure.json +0 -88
- package/node_modules/ajv-formats/node_modules/ajv/lib/refs/jtd-schema.ts +0 -130
- package/node_modules/ajv-formats/node_modules/ajv/lib/runtime/equal.ts +0 -7
- package/node_modules/ajv-formats/node_modules/ajv/lib/runtime/parseJson.ts +0 -177
- package/node_modules/ajv-formats/node_modules/ajv/lib/runtime/quote.ts +0 -31
- package/node_modules/ajv-formats/node_modules/ajv/lib/runtime/re2.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/lib/runtime/timestamp.ts +0 -46
- package/node_modules/ajv-formats/node_modules/ajv/lib/runtime/ucs2length.ts +0 -20
- package/node_modules/ajv-formats/node_modules/ajv/lib/runtime/uri.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/lib/runtime/validation_error.ts +0 -13
- package/node_modules/ajv-formats/node_modules/ajv/lib/standalone/index.ts +0 -100
- package/node_modules/ajv-formats/node_modules/ajv/lib/standalone/instance.ts +0 -36
- package/node_modules/ajv-formats/node_modules/ajv/lib/types/index.ts +0 -244
- package/node_modules/ajv-formats/node_modules/ajv/lib/types/json-schema.ts +0 -187
- package/node_modules/ajv-formats/node_modules/ajv/lib/types/jtd-schema.ts +0 -273
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +0 -56
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +0 -118
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +0 -22
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +0 -14
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/contains.ts +0 -109
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +0 -112
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +0 -11
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/if.ts +0 -80
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/index.ts +0 -53
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/items.ts +0 -59
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +0 -36
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/not.ts +0 -38
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +0 -82
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +0 -91
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +0 -12
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/properties.ts +0 -57
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +0 -50
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +0 -13
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/code.ts +0 -168
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/core/id.ts +0 -10
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/core/index.ts +0 -16
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/core/ref.ts +0 -129
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/discriminator/index.ts +0 -113
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/discriminator/types.ts +0 -12
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/draft2020.ts +0 -23
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/draft7.ts +0 -17
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +0 -31
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +0 -51
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/dynamic/index.ts +0 -9
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +0 -14
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +0 -10
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/errors.ts +0 -18
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/format/format.ts +0 -120
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/format/index.ts +0 -6
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +0 -89
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/elements.ts +0 -32
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/enum.ts +0 -45
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/error.ts +0 -23
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/index.ts +0 -37
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +0 -24
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +0 -21
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +0 -15
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/properties.ts +0 -184
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/ref.ts +0 -76
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/type.ts +0 -75
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/union.ts +0 -12
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/jtd/values.ts +0 -58
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/metadata.ts +0 -17
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/next.ts +0 -8
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +0 -7
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +0 -47
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +0 -85
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/const.ts +0 -28
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +0 -23
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/enum.ts +0 -54
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/index.ts +0 -49
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +0 -16
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +0 -26
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +0 -30
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +0 -42
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +0 -26
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +0 -34
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/pattern.ts +0 -39
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/required.ts +0 -98
- package/node_modules/ajv-formats/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +0 -79
- package/node_modules/ajv-formats/node_modules/ajv/package.json +0 -127
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/.github/FUNDING.yml +0 -2
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/.github/workflows/build.yml +0 -28
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/.github/workflows/publish.yml +0 -27
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/LICENSE +0 -21
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/README.md +0 -95
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/index.d.ts +0 -40
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/index.js +0 -93
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/package.json +0 -43
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/spec/fixtures/schema.js +0 -125
- package/node_modules/ajv-formats/node_modules/json-schema-traverse/spec/index.spec.js +0 -171
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/.runkit_example.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/LICENSE +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/2019.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/2019.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/2019.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/2020.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/2020.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/2020.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/ajv.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/ajv.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/ajv.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/codegen/code.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/codegen/code.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/codegen/code.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/codegen/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/codegen/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/codegen/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/codegen/scope.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/codegen/scope.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/codegen/scope.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/errors.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/errors.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/errors.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/jtd/parse.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/jtd/parse.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/jtd/parse.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/jtd/serialize.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/jtd/serialize.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/jtd/serialize.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/jtd/types.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/jtd/types.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/jtd/types.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/names.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/names.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/names.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/ref_error.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/ref_error.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/ref_error.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/resolve.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/resolve.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/resolve.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/rules.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/rules.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/rules.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/util.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/util.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/util.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/applicability.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/applicability.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/applicability.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/boolSchema.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/boolSchema.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/boolSchema.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/dataType.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/dataType.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/dataType.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/defaults.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/defaults.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/defaults.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/keyword.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/keyword.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/keyword.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/subschema.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/subschema.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/compile/validate/subschema.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/core.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/jtd.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/jtd.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/jtd.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/data.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2019-09/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2019-09/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2019-09/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2019-09/meta/applicator.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2019-09/meta/content.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2019-09/meta/core.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2019-09/meta/format.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2019-09/meta/meta-data.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2019-09/meta/validation.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2019-09/schema.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/meta/applicator.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/meta/content.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/meta/core.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/meta/format-annotation.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/meta/meta-data.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/meta/unevaluated.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/meta/validation.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-2020-12/schema.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-draft-06.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-draft-07.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/json-schema-secure.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/jtd-schema.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/jtd-schema.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/refs/jtd-schema.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/equal.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/equal.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/equal.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/parseJson.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/parseJson.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/parseJson.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/quote.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/quote.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/quote.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/re2.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/re2.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/re2.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/timestamp.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/timestamp.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/timestamp.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/ucs2length.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/ucs2length.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/ucs2length.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/uri.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/uri.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/uri.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/validation_error.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/validation_error.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/runtime/validation_error.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/standalone/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/standalone/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/standalone/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/standalone/instance.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/standalone/instance.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/standalone/instance.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/types/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/types/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/types/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/types/json-schema.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/types/json-schema.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/types/json-schema.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/types/jtd-schema.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/types/jtd-schema.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/types/jtd-schema.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/additionalItems.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/additionalItems.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/additionalItems.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/additionalProperties.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/additionalProperties.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/additionalProperties.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/allOf.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/allOf.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/allOf.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/anyOf.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/anyOf.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/anyOf.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/contains.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/contains.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/contains.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/dependencies.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/dependencies.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/dependencies.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/dependentSchemas.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/dependentSchemas.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/dependentSchemas.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/if.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/if.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/if.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/items.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/items.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/items.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/items2020.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/items2020.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/items2020.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/not.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/not.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/not.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/oneOf.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/oneOf.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/oneOf.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/patternProperties.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/patternProperties.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/patternProperties.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/prefixItems.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/prefixItems.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/prefixItems.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/properties.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/properties.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/properties.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/propertyNames.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/propertyNames.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/propertyNames.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/thenElse.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/thenElse.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/applicator/thenElse.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/code.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/code.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/code.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/core/id.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/core/id.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/core/id.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/core/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/core/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/core/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/core/ref.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/core/ref.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/core/ref.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/discriminator/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/discriminator/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/discriminator/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/discriminator/types.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/discriminator/types.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/discriminator/types.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/draft2020.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/draft2020.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/draft2020.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/draft7.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/draft7.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/draft7.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/dynamicAnchor.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/dynamicAnchor.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/dynamicAnchor.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/dynamicRef.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/dynamicRef.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/dynamicRef.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/recursiveAnchor.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/recursiveAnchor.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/recursiveAnchor.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/recursiveRef.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/recursiveRef.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/dynamic/recursiveRef.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/errors.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/errors.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/errors.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/format/format.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/format/format.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/format/format.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/format/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/format/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/format/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/discriminator.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/discriminator.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/discriminator.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/elements.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/elements.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/elements.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/enum.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/enum.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/enum.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/error.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/error.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/error.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/metadata.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/metadata.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/metadata.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/nullable.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/nullable.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/nullable.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/optionalProperties.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/optionalProperties.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/optionalProperties.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/properties.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/properties.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/properties.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/ref.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/ref.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/ref.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/type.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/type.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/type.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/union.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/union.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/union.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/values.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/values.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/jtd/values.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/metadata.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/metadata.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/metadata.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/next.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/next.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/next.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/unevaluated/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/unevaluated/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/unevaluated/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/unevaluated/unevaluatedItems.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/unevaluated/unevaluatedItems.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/unevaluated/unevaluatedProperties.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/const.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/const.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/const.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/dependentRequired.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/dependentRequired.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/dependentRequired.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/enum.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/enum.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/enum.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/index.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitContains.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitContains.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitContains.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitItems.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitItems.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitItems.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitLength.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitLength.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitLength.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitNumber.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitNumber.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitNumber.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitProperties.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitProperties.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/limitProperties.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/multipleOf.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/multipleOf.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/multipleOf.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/pattern.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/pattern.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/pattern.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/required.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/required.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/required.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/uniqueItems.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/uniqueItems.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/dist/vocabularies/validation/uniqueItems.js.map +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/2019.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/2020.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/ajv.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/codegen/code.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/codegen/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/codegen/scope.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/errors.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/jtd/parse.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/jtd/serialize.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/jtd/types.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/names.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/ref_error.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/resolve.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/rules.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/util.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/validate/applicability.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/validate/boolSchema.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/validate/dataType.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/validate/defaults.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/validate/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/validate/keyword.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/compile/validate/subschema.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/jtd.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/data.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2019-09/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2019-09/meta/applicator.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2019-09/meta/content.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2019-09/meta/core.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2019-09/meta/format.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2019-09/meta/meta-data.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2019-09/meta/validation.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2019-09/schema.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2020-12/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2020-12/meta/applicator.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2020-12/meta/content.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2020-12/meta/core.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2020-12/meta/format-annotation.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2020-12/meta/meta-data.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2020-12/meta/unevaluated.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2020-12/meta/validation.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-2020-12/schema.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-draft-06.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-draft-07.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/json-schema-secure.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/refs/jtd-schema.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/runtime/equal.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/runtime/parseJson.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/runtime/quote.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/runtime/re2.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/runtime/timestamp.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/runtime/ucs2length.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/runtime/uri.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/runtime/validation_error.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/standalone/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/standalone/instance.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/types/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/types/json-schema.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/types/jtd-schema.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/additionalItems.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/additionalProperties.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/allOf.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/anyOf.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/contains.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/dependencies.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/dependentSchemas.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/if.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/items.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/items2020.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/not.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/oneOf.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/patternProperties.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/prefixItems.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/properties.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/propertyNames.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/applicator/thenElse.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/code.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/core/id.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/core/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/core/ref.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/discriminator/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/discriminator/types.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/draft2020.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/draft7.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/dynamic/dynamicAnchor.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/dynamic/dynamicRef.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/dynamic/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/dynamic/recursiveAnchor.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/dynamic/recursiveRef.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/errors.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/format/format.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/format/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/discriminator.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/elements.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/enum.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/error.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/metadata.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/nullable.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/optionalProperties.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/properties.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/ref.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/type.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/union.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/jtd/values.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/metadata.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/next.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/unevaluated/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/unevaluated/unevaluatedItems.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/unevaluated/unevaluatedProperties.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/const.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/dependentRequired.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/enum.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/index.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/limitContains.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/limitItems.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/limitLength.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/limitNumber.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/limitProperties.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/multipleOf.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/pattern.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/required.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/ajv → ajv}/lib/vocabularies/validation/uniqueItems.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/.eslintrc.yml +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/.github/FUNDING.yml +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/.github/workflows/build.yml +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/.github/workflows/publish.yml +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/LICENSE +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/README.md +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/index.d.ts +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/index.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/package.json +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/spec/.eslintrc.yml +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/spec/fixtures/schema.js +0 -0
- /package/node_modules/{@modelcontextprotocol/sdk/node_modules/json-schema-traverse → json-schema-traverse}/spec/index.spec.js +0 -0
|
@@ -0,0 +1,875 @@
|
|
|
1
|
+
#include <stdbool.h>
|
|
2
|
+
#include "./point.h"
|
|
3
|
+
#include "./subtree.h"
|
|
4
|
+
#include "./tree.h"
|
|
5
|
+
#include "./language.h"
|
|
6
|
+
|
|
7
|
+
typedef struct {
|
|
8
|
+
Subtree parent;
|
|
9
|
+
const TSTree *tree;
|
|
10
|
+
Length position;
|
|
11
|
+
uint32_t child_index;
|
|
12
|
+
uint32_t structural_child_index;
|
|
13
|
+
const TSSymbol *alias_sequence;
|
|
14
|
+
} NodeChildIterator;
|
|
15
|
+
|
|
16
|
+
static inline bool ts_node__is_relevant(TSNode self, bool include_anonymous);
|
|
17
|
+
|
|
18
|
+
// TSNode - constructors
|
|
19
|
+
|
|
20
|
+
TSNode ts_node_new(
|
|
21
|
+
const TSTree *tree,
|
|
22
|
+
const Subtree *subtree,
|
|
23
|
+
Length position,
|
|
24
|
+
TSSymbol alias
|
|
25
|
+
) {
|
|
26
|
+
return (TSNode) {
|
|
27
|
+
{position.bytes, position.extent.row, position.extent.column, alias},
|
|
28
|
+
subtree,
|
|
29
|
+
tree,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
static inline TSNode ts_node__null(void) {
|
|
34
|
+
return ts_node_new(NULL, NULL, length_zero(), 0);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// TSNode - accessors
|
|
38
|
+
|
|
39
|
+
uint32_t ts_node_start_byte(TSNode self) {
|
|
40
|
+
return self.context[0];
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
TSPoint ts_node_start_point(TSNode self) {
|
|
44
|
+
return (TSPoint) {self.context[1], self.context[2]};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
static inline uint32_t ts_node__alias(const TSNode *self) {
|
|
48
|
+
return self->context[3];
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
static inline Subtree ts_node__subtree(TSNode self) {
|
|
52
|
+
return *(const Subtree *)self.id;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// NodeChildIterator
|
|
56
|
+
|
|
57
|
+
static inline NodeChildIterator ts_node_iterate_children(const TSNode *node) {
|
|
58
|
+
Subtree subtree = ts_node__subtree(*node);
|
|
59
|
+
if (ts_subtree_child_count(subtree) == 0) {
|
|
60
|
+
return (NodeChildIterator) {NULL_SUBTREE, node->tree, length_zero(), 0, 0, NULL};
|
|
61
|
+
}
|
|
62
|
+
const TSSymbol *alias_sequence = ts_language_alias_sequence(
|
|
63
|
+
node->tree->language,
|
|
64
|
+
subtree.ptr->production_id
|
|
65
|
+
);
|
|
66
|
+
return (NodeChildIterator) {
|
|
67
|
+
.tree = node->tree,
|
|
68
|
+
.parent = subtree,
|
|
69
|
+
.position = {ts_node_start_byte(*node), ts_node_start_point(*node)},
|
|
70
|
+
.child_index = 0,
|
|
71
|
+
.structural_child_index = 0,
|
|
72
|
+
.alias_sequence = alias_sequence,
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
static inline bool ts_node_child_iterator_done(NodeChildIterator *self) {
|
|
77
|
+
return self->child_index == self->parent.ptr->child_count;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
static inline bool ts_node_child_iterator_next(
|
|
81
|
+
NodeChildIterator *self,
|
|
82
|
+
TSNode *result
|
|
83
|
+
) {
|
|
84
|
+
if (!self->parent.ptr || ts_node_child_iterator_done(self)) return false;
|
|
85
|
+
const Subtree *child = &ts_subtree_children(self->parent)[self->child_index];
|
|
86
|
+
TSSymbol alias_symbol = 0;
|
|
87
|
+
if (!ts_subtree_extra(*child)) {
|
|
88
|
+
if (self->alias_sequence) {
|
|
89
|
+
alias_symbol = self->alias_sequence[self->structural_child_index];
|
|
90
|
+
}
|
|
91
|
+
self->structural_child_index++;
|
|
92
|
+
}
|
|
93
|
+
if (self->child_index > 0) {
|
|
94
|
+
self->position = length_add(self->position, ts_subtree_padding(*child));
|
|
95
|
+
}
|
|
96
|
+
*result = ts_node_new(
|
|
97
|
+
self->tree,
|
|
98
|
+
child,
|
|
99
|
+
self->position,
|
|
100
|
+
alias_symbol
|
|
101
|
+
);
|
|
102
|
+
self->position = length_add(self->position, ts_subtree_size(*child));
|
|
103
|
+
self->child_index++;
|
|
104
|
+
return true;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// TSNode - private
|
|
108
|
+
|
|
109
|
+
static inline bool ts_node__is_relevant(TSNode self, bool include_anonymous) {
|
|
110
|
+
Subtree tree = ts_node__subtree(self);
|
|
111
|
+
if (include_anonymous) {
|
|
112
|
+
return ts_subtree_visible(tree) || ts_node__alias(&self);
|
|
113
|
+
} else {
|
|
114
|
+
TSSymbol alias = ts_node__alias(&self);
|
|
115
|
+
if (alias) {
|
|
116
|
+
return ts_language_symbol_metadata(self.tree->language, alias).named;
|
|
117
|
+
} else {
|
|
118
|
+
return ts_subtree_visible(tree) && ts_subtree_named(tree);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
static inline uint32_t ts_node__relevant_child_count(
|
|
124
|
+
TSNode self,
|
|
125
|
+
bool include_anonymous
|
|
126
|
+
) {
|
|
127
|
+
Subtree tree = ts_node__subtree(self);
|
|
128
|
+
if (ts_subtree_child_count(tree) > 0) {
|
|
129
|
+
if (include_anonymous) {
|
|
130
|
+
return tree.ptr->visible_child_count;
|
|
131
|
+
} else {
|
|
132
|
+
return tree.ptr->named_child_count;
|
|
133
|
+
}
|
|
134
|
+
} else {
|
|
135
|
+
return 0;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
static inline TSNode ts_node__child(
|
|
140
|
+
TSNode self,
|
|
141
|
+
uint32_t child_index,
|
|
142
|
+
bool include_anonymous
|
|
143
|
+
) {
|
|
144
|
+
TSNode result = self;
|
|
145
|
+
bool did_descend = true;
|
|
146
|
+
|
|
147
|
+
while (did_descend) {
|
|
148
|
+
did_descend = false;
|
|
149
|
+
|
|
150
|
+
TSNode child;
|
|
151
|
+
uint32_t index = 0;
|
|
152
|
+
NodeChildIterator iterator = ts_node_iterate_children(&result);
|
|
153
|
+
while (ts_node_child_iterator_next(&iterator, &child)) {
|
|
154
|
+
if (ts_node__is_relevant(child, include_anonymous)) {
|
|
155
|
+
if (index == child_index) {
|
|
156
|
+
return child;
|
|
157
|
+
}
|
|
158
|
+
index++;
|
|
159
|
+
} else {
|
|
160
|
+
uint32_t grandchild_index = child_index - index;
|
|
161
|
+
uint32_t grandchild_count = ts_node__relevant_child_count(child, include_anonymous);
|
|
162
|
+
if (grandchild_index < grandchild_count) {
|
|
163
|
+
did_descend = true;
|
|
164
|
+
result = child;
|
|
165
|
+
child_index = grandchild_index;
|
|
166
|
+
break;
|
|
167
|
+
}
|
|
168
|
+
index += grandchild_count;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
return ts_node__null();
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
static bool ts_subtree_has_trailing_empty_descendant(
|
|
177
|
+
Subtree self,
|
|
178
|
+
Subtree other
|
|
179
|
+
) {
|
|
180
|
+
for (unsigned i = ts_subtree_child_count(self) - 1; i + 1 > 0; i--) {
|
|
181
|
+
Subtree child = ts_subtree_children(self)[i];
|
|
182
|
+
if (ts_subtree_total_bytes(child) > 0) break;
|
|
183
|
+
if (child.ptr == other.ptr || ts_subtree_has_trailing_empty_descendant(child, other)) {
|
|
184
|
+
return true;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
return false;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
static inline TSNode ts_node__prev_sibling(TSNode self, bool include_anonymous) {
|
|
191
|
+
Subtree self_subtree = ts_node__subtree(self);
|
|
192
|
+
bool self_is_empty = ts_subtree_total_bytes(self_subtree) == 0;
|
|
193
|
+
uint32_t target_end_byte = ts_node_end_byte(self);
|
|
194
|
+
|
|
195
|
+
TSNode node = ts_node_parent(self);
|
|
196
|
+
TSNode earlier_node = ts_node__null();
|
|
197
|
+
bool earlier_node_is_relevant = false;
|
|
198
|
+
|
|
199
|
+
while (!ts_node_is_null(node)) {
|
|
200
|
+
TSNode earlier_child = ts_node__null();
|
|
201
|
+
bool earlier_child_is_relevant = false;
|
|
202
|
+
bool found_child_containing_target = false;
|
|
203
|
+
|
|
204
|
+
TSNode child;
|
|
205
|
+
NodeChildIterator iterator = ts_node_iterate_children(&node);
|
|
206
|
+
while (ts_node_child_iterator_next(&iterator, &child)) {
|
|
207
|
+
if (child.id == self.id) break;
|
|
208
|
+
if (iterator.position.bytes > target_end_byte) {
|
|
209
|
+
found_child_containing_target = true;
|
|
210
|
+
break;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
if (iterator.position.bytes == target_end_byte &&
|
|
214
|
+
(!self_is_empty ||
|
|
215
|
+
ts_subtree_has_trailing_empty_descendant(ts_node__subtree(child), self_subtree))) {
|
|
216
|
+
found_child_containing_target = true;
|
|
217
|
+
break;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
if (ts_node__is_relevant(child, include_anonymous)) {
|
|
221
|
+
earlier_child = child;
|
|
222
|
+
earlier_child_is_relevant = true;
|
|
223
|
+
} else if (ts_node__relevant_child_count(child, include_anonymous) > 0) {
|
|
224
|
+
earlier_child = child;
|
|
225
|
+
earlier_child_is_relevant = false;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
if (found_child_containing_target) {
|
|
230
|
+
if (!ts_node_is_null(earlier_child)) {
|
|
231
|
+
earlier_node = earlier_child;
|
|
232
|
+
earlier_node_is_relevant = earlier_child_is_relevant;
|
|
233
|
+
}
|
|
234
|
+
node = child;
|
|
235
|
+
} else if (earlier_child_is_relevant) {
|
|
236
|
+
return earlier_child;
|
|
237
|
+
} else if (!ts_node_is_null(earlier_child)) {
|
|
238
|
+
node = earlier_child;
|
|
239
|
+
} else if (earlier_node_is_relevant) {
|
|
240
|
+
return earlier_node;
|
|
241
|
+
} else {
|
|
242
|
+
node = earlier_node;
|
|
243
|
+
earlier_node = ts_node__null();
|
|
244
|
+
earlier_node_is_relevant = false;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
return ts_node__null();
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
static inline TSNode ts_node__next_sibling(TSNode self, bool include_anonymous) {
|
|
252
|
+
uint32_t target_end_byte = ts_node_end_byte(self);
|
|
253
|
+
|
|
254
|
+
TSNode node = ts_node_parent(self);
|
|
255
|
+
TSNode later_node = ts_node__null();
|
|
256
|
+
bool later_node_is_relevant = false;
|
|
257
|
+
|
|
258
|
+
while (!ts_node_is_null(node)) {
|
|
259
|
+
TSNode later_child = ts_node__null();
|
|
260
|
+
bool later_child_is_relevant = false;
|
|
261
|
+
TSNode child_containing_target = ts_node__null();
|
|
262
|
+
|
|
263
|
+
TSNode child;
|
|
264
|
+
NodeChildIterator iterator = ts_node_iterate_children(&node);
|
|
265
|
+
while (ts_node_child_iterator_next(&iterator, &child)) {
|
|
266
|
+
if (iterator.position.bytes <= target_end_byte) continue;
|
|
267
|
+
uint32_t start_byte = ts_node_start_byte(self);
|
|
268
|
+
uint32_t child_start_byte = ts_node_start_byte(child);
|
|
269
|
+
|
|
270
|
+
bool is_empty = start_byte == target_end_byte;
|
|
271
|
+
bool contains_target = is_empty ?
|
|
272
|
+
child_start_byte < start_byte :
|
|
273
|
+
child_start_byte <= start_byte;
|
|
274
|
+
|
|
275
|
+
if (contains_target) {
|
|
276
|
+
if (ts_node__subtree(child).ptr != ts_node__subtree(self).ptr) {
|
|
277
|
+
child_containing_target = child;
|
|
278
|
+
}
|
|
279
|
+
} else if (ts_node__is_relevant(child, include_anonymous)) {
|
|
280
|
+
later_child = child;
|
|
281
|
+
later_child_is_relevant = true;
|
|
282
|
+
break;
|
|
283
|
+
} else if (ts_node__relevant_child_count(child, include_anonymous) > 0) {
|
|
284
|
+
later_child = child;
|
|
285
|
+
later_child_is_relevant = false;
|
|
286
|
+
break;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
if (!ts_node_is_null(child_containing_target)) {
|
|
291
|
+
if (!ts_node_is_null(later_child)) {
|
|
292
|
+
later_node = later_child;
|
|
293
|
+
later_node_is_relevant = later_child_is_relevant;
|
|
294
|
+
}
|
|
295
|
+
node = child_containing_target;
|
|
296
|
+
} else if (later_child_is_relevant) {
|
|
297
|
+
return later_child;
|
|
298
|
+
} else if (!ts_node_is_null(later_child)) {
|
|
299
|
+
node = later_child;
|
|
300
|
+
} else if (later_node_is_relevant) {
|
|
301
|
+
return later_node;
|
|
302
|
+
} else {
|
|
303
|
+
node = later_node;
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
return ts_node__null();
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
static inline TSNode ts_node__first_child_for_byte(
|
|
311
|
+
TSNode self,
|
|
312
|
+
uint32_t goal,
|
|
313
|
+
bool include_anonymous
|
|
314
|
+
) {
|
|
315
|
+
TSNode node = self;
|
|
316
|
+
bool did_descend = true;
|
|
317
|
+
|
|
318
|
+
NodeChildIterator last_iterator;
|
|
319
|
+
bool has_last_iterator = false;
|
|
320
|
+
|
|
321
|
+
while (did_descend) {
|
|
322
|
+
did_descend = false;
|
|
323
|
+
|
|
324
|
+
TSNode child;
|
|
325
|
+
NodeChildIterator iterator = ts_node_iterate_children(&node);
|
|
326
|
+
loop:
|
|
327
|
+
while (ts_node_child_iterator_next(&iterator, &child)) {
|
|
328
|
+
if (ts_node_end_byte(child) > goal) {
|
|
329
|
+
if (ts_node__is_relevant(child, include_anonymous)) {
|
|
330
|
+
return child;
|
|
331
|
+
} else if (ts_node_child_count(child) > 0) {
|
|
332
|
+
if (iterator.child_index < ts_subtree_child_count(ts_node__subtree(child))) {
|
|
333
|
+
last_iterator = iterator;
|
|
334
|
+
has_last_iterator = true;
|
|
335
|
+
}
|
|
336
|
+
did_descend = true;
|
|
337
|
+
node = child;
|
|
338
|
+
break;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
if (!did_descend && has_last_iterator) {
|
|
344
|
+
iterator = last_iterator;
|
|
345
|
+
has_last_iterator = false;
|
|
346
|
+
goto loop;
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
return ts_node__null();
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
static inline TSNode ts_node__descendant_for_byte_range(
|
|
354
|
+
TSNode self,
|
|
355
|
+
uint32_t range_start,
|
|
356
|
+
uint32_t range_end,
|
|
357
|
+
bool include_anonymous
|
|
358
|
+
) {
|
|
359
|
+
if (range_start > range_end) {
|
|
360
|
+
return ts_node__null();
|
|
361
|
+
}
|
|
362
|
+
TSNode node = self;
|
|
363
|
+
TSNode last_visible_node = self;
|
|
364
|
+
|
|
365
|
+
bool did_descend = true;
|
|
366
|
+
while (did_descend) {
|
|
367
|
+
did_descend = false;
|
|
368
|
+
|
|
369
|
+
TSNode child;
|
|
370
|
+
NodeChildIterator iterator = ts_node_iterate_children(&node);
|
|
371
|
+
while (ts_node_child_iterator_next(&iterator, &child)) {
|
|
372
|
+
uint32_t node_end = iterator.position.bytes;
|
|
373
|
+
|
|
374
|
+
// The end of this node must extend far enough forward to touch
|
|
375
|
+
// the end of the range
|
|
376
|
+
if (node_end < range_end) continue;
|
|
377
|
+
|
|
378
|
+
// ...and exceed the start of the range, unless the node itself is
|
|
379
|
+
// empty, in which case it must at least be equal to the start of the range.
|
|
380
|
+
bool is_empty = ts_node_start_byte(child) == node_end;
|
|
381
|
+
if (is_empty ? node_end < range_start : node_end <= range_start) continue;
|
|
382
|
+
|
|
383
|
+
// The start of this node must extend far enough backward to
|
|
384
|
+
// touch the start of the range.
|
|
385
|
+
if (range_start < ts_node_start_byte(child)) break;
|
|
386
|
+
|
|
387
|
+
node = child;
|
|
388
|
+
if (ts_node__is_relevant(node, include_anonymous)) {
|
|
389
|
+
last_visible_node = node;
|
|
390
|
+
}
|
|
391
|
+
did_descend = true;
|
|
392
|
+
break;
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
return last_visible_node;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
static inline TSNode ts_node__descendant_for_point_range(
|
|
400
|
+
TSNode self,
|
|
401
|
+
TSPoint range_start,
|
|
402
|
+
TSPoint range_end,
|
|
403
|
+
bool include_anonymous
|
|
404
|
+
) {
|
|
405
|
+
if (point_gt(range_start, range_end)) {
|
|
406
|
+
return ts_node__null();
|
|
407
|
+
}
|
|
408
|
+
TSNode node = self;
|
|
409
|
+
TSNode last_visible_node = self;
|
|
410
|
+
|
|
411
|
+
bool did_descend = true;
|
|
412
|
+
while (did_descend) {
|
|
413
|
+
did_descend = false;
|
|
414
|
+
|
|
415
|
+
TSNode child;
|
|
416
|
+
NodeChildIterator iterator = ts_node_iterate_children(&node);
|
|
417
|
+
while (ts_node_child_iterator_next(&iterator, &child)) {
|
|
418
|
+
TSPoint node_end = iterator.position.extent;
|
|
419
|
+
|
|
420
|
+
// The end of this node must extend far enough forward to touch
|
|
421
|
+
// the end of the range
|
|
422
|
+
if (point_lt(node_end, range_end)) continue;
|
|
423
|
+
|
|
424
|
+
// ...and exceed the start of the range, unless the node itself is
|
|
425
|
+
// empty, in which case it must at least be equal to the start of the range.
|
|
426
|
+
bool is_empty = point_eq(ts_node_start_point(child), node_end);
|
|
427
|
+
if (is_empty ? point_lt(node_end, range_start) : point_lte(node_end, range_start)) {
|
|
428
|
+
continue;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
// The start of this node must extend far enough backward to
|
|
432
|
+
// touch the start of the range.
|
|
433
|
+
if (point_lt(range_start, ts_node_start_point(child))) break;
|
|
434
|
+
|
|
435
|
+
node = child;
|
|
436
|
+
if (ts_node__is_relevant(node, include_anonymous)) {
|
|
437
|
+
last_visible_node = node;
|
|
438
|
+
}
|
|
439
|
+
did_descend = true;
|
|
440
|
+
break;
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
return last_visible_node;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
// TSNode - public
|
|
448
|
+
|
|
449
|
+
uint32_t ts_node_end_byte(TSNode self) {
|
|
450
|
+
return ts_node_start_byte(self) + ts_subtree_size(ts_node__subtree(self)).bytes;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
TSPoint ts_node_end_point(TSNode self) {
|
|
454
|
+
return point_add(ts_node_start_point(self), ts_subtree_size(ts_node__subtree(self)).extent);
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
TSSymbol ts_node_symbol(TSNode self) {
|
|
458
|
+
TSSymbol symbol = ts_node__alias(&self);
|
|
459
|
+
if (!symbol) symbol = ts_subtree_symbol(ts_node__subtree(self));
|
|
460
|
+
return ts_language_public_symbol(self.tree->language, symbol);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
const char *ts_node_type(TSNode self) {
|
|
464
|
+
TSSymbol symbol = ts_node__alias(&self);
|
|
465
|
+
if (!symbol) symbol = ts_subtree_symbol(ts_node__subtree(self));
|
|
466
|
+
return ts_language_symbol_name(self.tree->language, symbol);
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
const TSLanguage *ts_node_language(TSNode self) {
|
|
470
|
+
return self.tree->language;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
TSSymbol ts_node_grammar_symbol(TSNode self) {
|
|
474
|
+
return ts_subtree_symbol(ts_node__subtree(self));
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
const char *ts_node_grammar_type(TSNode self) {
|
|
478
|
+
TSSymbol symbol = ts_subtree_symbol(ts_node__subtree(self));
|
|
479
|
+
return ts_language_symbol_name(self.tree->language, symbol);
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
char *ts_node_string(TSNode self) {
|
|
483
|
+
TSSymbol alias_symbol = ts_node__alias(&self);
|
|
484
|
+
return ts_subtree_string(
|
|
485
|
+
ts_node__subtree(self),
|
|
486
|
+
alias_symbol,
|
|
487
|
+
ts_language_symbol_metadata(self.tree->language, alias_symbol).visible,
|
|
488
|
+
self.tree->language,
|
|
489
|
+
false
|
|
490
|
+
);
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
bool ts_node_eq(TSNode self, TSNode other) {
|
|
494
|
+
return self.tree == other.tree && self.id == other.id;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
bool ts_node_is_null(TSNode self) {
|
|
498
|
+
return self.id == 0;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
bool ts_node_is_extra(TSNode self) {
|
|
502
|
+
return ts_subtree_extra(ts_node__subtree(self));
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
bool ts_node_is_named(TSNode self) {
|
|
506
|
+
TSSymbol alias = ts_node__alias(&self);
|
|
507
|
+
return alias
|
|
508
|
+
? ts_language_symbol_metadata(self.tree->language, alias).named
|
|
509
|
+
: ts_subtree_named(ts_node__subtree(self));
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
bool ts_node_is_missing(TSNode self) {
|
|
513
|
+
return ts_subtree_missing(ts_node__subtree(self));
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
bool ts_node_has_changes(TSNode self) {
|
|
517
|
+
return ts_subtree_has_changes(ts_node__subtree(self));
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
bool ts_node_has_error(TSNode self) {
|
|
521
|
+
return ts_subtree_error_cost(ts_node__subtree(self)) > 0;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
bool ts_node_is_error(TSNode self) {
|
|
525
|
+
TSSymbol symbol = ts_node_symbol(self);
|
|
526
|
+
return symbol == ts_builtin_sym_error;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
uint32_t ts_node_descendant_count(TSNode self) {
|
|
530
|
+
return ts_subtree_visible_descendant_count(ts_node__subtree(self)) + 1;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
TSStateId ts_node_parse_state(TSNode self) {
|
|
534
|
+
return ts_subtree_parse_state(ts_node__subtree(self));
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
TSStateId ts_node_next_parse_state(TSNode self) {
|
|
538
|
+
const TSLanguage *language = self.tree->language;
|
|
539
|
+
uint16_t state = ts_node_parse_state(self);
|
|
540
|
+
if (state == TS_TREE_STATE_NONE) {
|
|
541
|
+
return TS_TREE_STATE_NONE;
|
|
542
|
+
}
|
|
543
|
+
uint16_t symbol = ts_node_grammar_symbol(self);
|
|
544
|
+
return ts_language_next_state(language, state, symbol);
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
TSNode ts_node_parent(TSNode self) {
|
|
548
|
+
TSNode node = ts_tree_root_node(self.tree);
|
|
549
|
+
if (node.id == self.id) return ts_node__null();
|
|
550
|
+
|
|
551
|
+
while (true) {
|
|
552
|
+
TSNode next_node = ts_node_child_with_descendant(node, self);
|
|
553
|
+
if (next_node.id == self.id || ts_node_is_null(next_node)) break;
|
|
554
|
+
node = next_node;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
return node;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
TSNode ts_node_child_with_descendant(TSNode self, TSNode descendant) {
|
|
561
|
+
uint32_t start_byte = ts_node_start_byte(descendant);
|
|
562
|
+
uint32_t end_byte = ts_node_end_byte(descendant);
|
|
563
|
+
bool is_empty = start_byte == end_byte;
|
|
564
|
+
|
|
565
|
+
do {
|
|
566
|
+
NodeChildIterator iter = ts_node_iterate_children(&self);
|
|
567
|
+
do {
|
|
568
|
+
if (
|
|
569
|
+
!ts_node_child_iterator_next(&iter, &self)
|
|
570
|
+
|| ts_node_start_byte(self) > start_byte
|
|
571
|
+
) {
|
|
572
|
+
return ts_node__null();
|
|
573
|
+
}
|
|
574
|
+
if (self.id == descendant.id) {
|
|
575
|
+
return self;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
// If the descendant is empty, and the end byte is within `self`,
|
|
579
|
+
// we check whether `self` contains it or not.
|
|
580
|
+
if (is_empty && iter.position.bytes >= end_byte && ts_node_child_count(self) > 0) {
|
|
581
|
+
TSNode child = ts_node_child_with_descendant(self, descendant);
|
|
582
|
+
// If the child is not null, return self if it's relevant, else return the child
|
|
583
|
+
if (!ts_node_is_null(child)) {
|
|
584
|
+
return ts_node__is_relevant(self, true) ? self : child;
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
} while ((is_empty ? iter.position.bytes <= end_byte : iter.position.bytes < end_byte) || ts_node_child_count(self) == 0);
|
|
588
|
+
} while (!ts_node__is_relevant(self, true));
|
|
589
|
+
|
|
590
|
+
return self;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
TSNode ts_node_child(TSNode self, uint32_t child_index) {
|
|
594
|
+
return ts_node__child(self, child_index, true);
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
TSNode ts_node_named_child(TSNode self, uint32_t child_index) {
|
|
598
|
+
return ts_node__child(self, child_index, false);
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
TSNode ts_node_child_by_field_id(TSNode self, TSFieldId field_id) {
|
|
602
|
+
recur:
|
|
603
|
+
if (!field_id || ts_node_child_count(self) == 0) return ts_node__null();
|
|
604
|
+
|
|
605
|
+
const TSFieldMapEntry *field_map, *field_map_end;
|
|
606
|
+
ts_language_field_map(
|
|
607
|
+
self.tree->language,
|
|
608
|
+
ts_node__subtree(self).ptr->production_id,
|
|
609
|
+
&field_map,
|
|
610
|
+
&field_map_end
|
|
611
|
+
);
|
|
612
|
+
if (field_map == field_map_end) return ts_node__null();
|
|
613
|
+
|
|
614
|
+
// The field mappings are sorted by their field id. Scan all
|
|
615
|
+
// the mappings to find the ones for the given field id.
|
|
616
|
+
while (field_map->field_id < field_id) {
|
|
617
|
+
field_map++;
|
|
618
|
+
if (field_map == field_map_end) return ts_node__null();
|
|
619
|
+
}
|
|
620
|
+
while (field_map_end[-1].field_id > field_id) {
|
|
621
|
+
field_map_end--;
|
|
622
|
+
if (field_map == field_map_end) return ts_node__null();
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
TSNode child;
|
|
626
|
+
NodeChildIterator iterator = ts_node_iterate_children(&self);
|
|
627
|
+
while (ts_node_child_iterator_next(&iterator, &child)) {
|
|
628
|
+
if (!ts_subtree_extra(ts_node__subtree(child))) {
|
|
629
|
+
uint32_t index = iterator.structural_child_index - 1;
|
|
630
|
+
if (index < field_map->child_index) continue;
|
|
631
|
+
|
|
632
|
+
// Hidden nodes' fields are "inherited" by their visible parent.
|
|
633
|
+
if (field_map->inherited) {
|
|
634
|
+
|
|
635
|
+
// If this is the *last* possible child node for this field,
|
|
636
|
+
// then perform a tail call to avoid recursion.
|
|
637
|
+
if (field_map + 1 == field_map_end) {
|
|
638
|
+
self = child;
|
|
639
|
+
goto recur;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
// Otherwise, descend into this child, but if it doesn't contain
|
|
643
|
+
// the field, continue searching subsequent children.
|
|
644
|
+
else {
|
|
645
|
+
TSNode result = ts_node_child_by_field_id(child, field_id);
|
|
646
|
+
if (result.id) return result;
|
|
647
|
+
field_map++;
|
|
648
|
+
if (field_map == field_map_end) return ts_node__null();
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
else if (ts_node__is_relevant(child, true)) {
|
|
653
|
+
return child;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
// If the field refers to a hidden node with visible children,
|
|
657
|
+
// return the first visible child.
|
|
658
|
+
else if (ts_node_child_count(child) > 0 ) {
|
|
659
|
+
return ts_node_child(child, 0);
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
// Otherwise, continue searching subsequent children.
|
|
663
|
+
else {
|
|
664
|
+
field_map++;
|
|
665
|
+
if (field_map == field_map_end) return ts_node__null();
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
return ts_node__null();
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
static inline const char *ts_node__field_name_from_language(TSNode self, uint32_t structural_child_index) {
|
|
674
|
+
const TSFieldMapEntry *field_map, *field_map_end;
|
|
675
|
+
ts_language_field_map(
|
|
676
|
+
self.tree->language,
|
|
677
|
+
ts_node__subtree(self).ptr->production_id,
|
|
678
|
+
&field_map,
|
|
679
|
+
&field_map_end
|
|
680
|
+
);
|
|
681
|
+
for (; field_map != field_map_end; field_map++) {
|
|
682
|
+
if (!field_map->inherited && field_map->child_index == structural_child_index) {
|
|
683
|
+
return self.tree->language->field_names[field_map->field_id];
|
|
684
|
+
}
|
|
685
|
+
}
|
|
686
|
+
return NULL;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
const char *ts_node_field_name_for_child(TSNode self, uint32_t child_index) {
|
|
690
|
+
TSNode result = self;
|
|
691
|
+
bool did_descend = true;
|
|
692
|
+
const char *inherited_field_name = NULL;
|
|
693
|
+
|
|
694
|
+
while (did_descend) {
|
|
695
|
+
did_descend = false;
|
|
696
|
+
|
|
697
|
+
TSNode child;
|
|
698
|
+
uint32_t index = 0;
|
|
699
|
+
NodeChildIterator iterator = ts_node_iterate_children(&result);
|
|
700
|
+
while (ts_node_child_iterator_next(&iterator, &child)) {
|
|
701
|
+
if (ts_node__is_relevant(child, true)) {
|
|
702
|
+
if (index == child_index) {
|
|
703
|
+
if (ts_node_is_extra(child)) {
|
|
704
|
+
return NULL;
|
|
705
|
+
}
|
|
706
|
+
const char *field_name = ts_node__field_name_from_language(result, iterator.structural_child_index - 1);
|
|
707
|
+
if (field_name) return field_name;
|
|
708
|
+
return inherited_field_name;
|
|
709
|
+
}
|
|
710
|
+
index++;
|
|
711
|
+
} else {
|
|
712
|
+
uint32_t grandchild_index = child_index - index;
|
|
713
|
+
uint32_t grandchild_count = ts_node__relevant_child_count(child, true);
|
|
714
|
+
if (grandchild_index < grandchild_count) {
|
|
715
|
+
const char *field_name = ts_node__field_name_from_language(result, iterator.structural_child_index - 1);
|
|
716
|
+
if (field_name) inherited_field_name = field_name;
|
|
717
|
+
|
|
718
|
+
did_descend = true;
|
|
719
|
+
result = child;
|
|
720
|
+
child_index = grandchild_index;
|
|
721
|
+
break;
|
|
722
|
+
}
|
|
723
|
+
index += grandchild_count;
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
return NULL;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
const char *ts_node_field_name_for_named_child(TSNode self, uint32_t named_child_index) {
|
|
732
|
+
TSNode result = self;
|
|
733
|
+
bool did_descend = true;
|
|
734
|
+
const char *inherited_field_name = NULL;
|
|
735
|
+
|
|
736
|
+
while (did_descend) {
|
|
737
|
+
did_descend = false;
|
|
738
|
+
|
|
739
|
+
TSNode child;
|
|
740
|
+
uint32_t index = 0;
|
|
741
|
+
NodeChildIterator iterator = ts_node_iterate_children(&result);
|
|
742
|
+
while (ts_node_child_iterator_next(&iterator, &child)) {
|
|
743
|
+
if (ts_node__is_relevant(child, false)) {
|
|
744
|
+
if (index == named_child_index) {
|
|
745
|
+
if (ts_node_is_extra(child)) {
|
|
746
|
+
return NULL;
|
|
747
|
+
}
|
|
748
|
+
const char *field_name = ts_node__field_name_from_language(result, iterator.structural_child_index - 1);
|
|
749
|
+
if (field_name) return field_name;
|
|
750
|
+
return inherited_field_name;
|
|
751
|
+
}
|
|
752
|
+
index++;
|
|
753
|
+
} else {
|
|
754
|
+
uint32_t named_grandchild_index = named_child_index - index;
|
|
755
|
+
uint32_t grandchild_count = ts_node__relevant_child_count(child, false);
|
|
756
|
+
if (named_grandchild_index < grandchild_count) {
|
|
757
|
+
const char *field_name = ts_node__field_name_from_language(result, iterator.structural_child_index - 1);
|
|
758
|
+
if (field_name) inherited_field_name = field_name;
|
|
759
|
+
|
|
760
|
+
did_descend = true;
|
|
761
|
+
result = child;
|
|
762
|
+
named_child_index = named_grandchild_index;
|
|
763
|
+
break;
|
|
764
|
+
}
|
|
765
|
+
index += grandchild_count;
|
|
766
|
+
}
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
return NULL;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
TSNode ts_node_child_by_field_name(
|
|
774
|
+
TSNode self,
|
|
775
|
+
const char *name,
|
|
776
|
+
uint32_t name_length
|
|
777
|
+
) {
|
|
778
|
+
TSFieldId field_id = ts_language_field_id_for_name(
|
|
779
|
+
self.tree->language,
|
|
780
|
+
name,
|
|
781
|
+
name_length
|
|
782
|
+
);
|
|
783
|
+
return ts_node_child_by_field_id(self, field_id);
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
uint32_t ts_node_child_count(TSNode self) {
|
|
787
|
+
Subtree tree = ts_node__subtree(self);
|
|
788
|
+
if (ts_subtree_child_count(tree) > 0) {
|
|
789
|
+
return tree.ptr->visible_child_count;
|
|
790
|
+
} else {
|
|
791
|
+
return 0;
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
uint32_t ts_node_named_child_count(TSNode self) {
|
|
796
|
+
Subtree tree = ts_node__subtree(self);
|
|
797
|
+
if (ts_subtree_child_count(tree) > 0) {
|
|
798
|
+
return tree.ptr->named_child_count;
|
|
799
|
+
} else {
|
|
800
|
+
return 0;
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
TSNode ts_node_next_sibling(TSNode self) {
|
|
805
|
+
return ts_node__next_sibling(self, true);
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
TSNode ts_node_next_named_sibling(TSNode self) {
|
|
809
|
+
return ts_node__next_sibling(self, false);
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
TSNode ts_node_prev_sibling(TSNode self) {
|
|
813
|
+
return ts_node__prev_sibling(self, true);
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
TSNode ts_node_prev_named_sibling(TSNode self) {
|
|
817
|
+
return ts_node__prev_sibling(self, false);
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
TSNode ts_node_first_child_for_byte(TSNode self, uint32_t byte) {
|
|
821
|
+
return ts_node__first_child_for_byte(self, byte, true);
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
TSNode ts_node_first_named_child_for_byte(TSNode self, uint32_t byte) {
|
|
825
|
+
return ts_node__first_child_for_byte(self, byte, false);
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
TSNode ts_node_descendant_for_byte_range(
|
|
829
|
+
TSNode self,
|
|
830
|
+
uint32_t start,
|
|
831
|
+
uint32_t end
|
|
832
|
+
) {
|
|
833
|
+
return ts_node__descendant_for_byte_range(self, start, end, true);
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
TSNode ts_node_named_descendant_for_byte_range(
|
|
837
|
+
TSNode self,
|
|
838
|
+
uint32_t start,
|
|
839
|
+
uint32_t end
|
|
840
|
+
) {
|
|
841
|
+
return ts_node__descendant_for_byte_range(self, start, end, false);
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
TSNode ts_node_descendant_for_point_range(
|
|
845
|
+
TSNode self,
|
|
846
|
+
TSPoint start,
|
|
847
|
+
TSPoint end
|
|
848
|
+
) {
|
|
849
|
+
return ts_node__descendant_for_point_range(self, start, end, true);
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
TSNode ts_node_named_descendant_for_point_range(
|
|
853
|
+
TSNode self,
|
|
854
|
+
TSPoint start,
|
|
855
|
+
TSPoint end
|
|
856
|
+
) {
|
|
857
|
+
return ts_node__descendant_for_point_range(self, start, end, false);
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
void ts_node_edit(TSNode *self, const TSInputEdit *edit) {
|
|
861
|
+
uint32_t start_byte = ts_node_start_byte(*self);
|
|
862
|
+
TSPoint start_point = ts_node_start_point(*self);
|
|
863
|
+
|
|
864
|
+
if (start_byte >= edit->old_end_byte) {
|
|
865
|
+
start_byte = edit->new_end_byte + (start_byte - edit->old_end_byte);
|
|
866
|
+
start_point = point_add(edit->new_end_point, point_sub(start_point, edit->old_end_point));
|
|
867
|
+
} else if (start_byte > edit->start_byte) {
|
|
868
|
+
start_byte = edit->new_end_byte;
|
|
869
|
+
start_point = edit->new_end_point;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
self->context[0] = start_byte;
|
|
873
|
+
self->context[1] = start_point.row;
|
|
874
|
+
self->context[2] = start_point.column;
|
|
875
|
+
}
|