@nocobase/plugin-mcp-server 2.1.0-alpha.16 → 2.1.0-alpha.18
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/dist/externalVersion.js +6 -6
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/README.md +11 -15
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/bundle.js +21 -11
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/dereference.js +101 -28
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/index.d.ts +31 -30
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/index.js +23 -11
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/options.d.ts +16 -292
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parse.d.ts +1 -1
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parse.js +20 -11
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/pointer.d.ts +1 -0
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/pointer.js +36 -12
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/ref.js +42 -5
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/refs.d.ts +5 -5
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/refs.js +23 -14
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolve-external.js +17 -7
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/file.js +23 -10
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/http.js +34 -13
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/types/index.d.ts +7 -3
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/errors.d.ts +18 -2
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/errors.js +53 -6
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/plugins.d.ts +2 -2
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/url.d.ts +7 -0
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/url.js +190 -18
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/vite.config.js +1 -0
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/bundle.ts +10 -4
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/dereference.ts +94 -21
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/index.ts +34 -43
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/options.ts +17 -0
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/parse.ts +3 -4
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/pointer.ts +25 -6
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/ref.ts +10 -2
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/refs.ts +7 -8
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/resolvers/file.ts +6 -3
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/resolvers/http.ts +20 -11
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/types/index.ts +8 -3
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/util/errors.ts +67 -10
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/util/plugins.ts +6 -7
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/util/url.ts +195 -10
- package/dist/node_modules/@apidevtools/json-schema-ref-parser/package.json +34 -35
- package/dist/node_modules/@apidevtools/swagger-parser/README.md +39 -63
- package/dist/node_modules/@apidevtools/swagger-parser/lib/index.d.ts +171 -247
- package/dist/node_modules/@apidevtools/swagger-parser/lib/index.js +32 -52
- package/dist/node_modules/@apidevtools/swagger-parser/lib/options.js +4 -7
- package/dist/node_modules/@apidevtools/swagger-parser/lib/util.js +11 -13
- package/dist/node_modules/@apidevtools/swagger-parser/lib/validators/schema.js +9 -10
- package/dist/node_modules/@apidevtools/swagger-parser/lib/validators/spec.js +51 -51
- package/dist/node_modules/@apidevtools/swagger-parser/package.json +36 -35
- package/dist/node_modules/light-my-request/package.json +1 -1
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/LICENSE +21 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/README.md +168 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/bundle.d.ts +27 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/bundle.js +283 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/dereference.d.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/dereference.js +216 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/index.d.ts +162 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/index.js +206 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/normalize-args.d.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/normalize-args.js +55 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/options.d.ts +387 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/options.js +122 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parse.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parse.js +169 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/binary.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/binary.js +35 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/json.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/json.js +62 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/text.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/text.js +42 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/yaml.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/yaml.js +52 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/pointer.d.ts +88 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/pointer.js +283 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/ref.d.ts +181 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/ref.js +243 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/refs.d.ts +127 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/refs.js +222 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolve-external.d.ts +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolve-external.js +133 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/file.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/file.js +64 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/http.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/http.js +137 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/types/index.d.ts +114 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/types/index.js +2 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/convert-path-to-posix.d.ts +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/convert-path-to-posix.js +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/errors.d.ts +57 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/errors.js +112 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/is-windows.d.ts +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/is-windows.js +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/maybe.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/maybe.js +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/next.d.ts +2 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/next.js +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/plugins.d.ts +34 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/plugins.js +132 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/url.d.ts +94 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/url.js +319 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/vite.config.d.ts +2 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/vite.config.js +18 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/bundle.ts +299 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/dereference.ts +288 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/index.ts +453 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/normalize-args.ts +68 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/options.ts +232 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/parse.ts +170 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/parsers/binary.ts +39 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/parsers/json.ts +64 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/parsers/text.ts +46 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/parsers/yaml.ts +52 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/pointer.ts +327 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/ref.ts +298 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/refs.ts +239 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/resolve-external.ts +136 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/resolvers/file.ts +39 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/resolvers/http.ts +131 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/types/index.ts +151 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/convert-path-to-posix.ts +11 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/errors.ts +157 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/is-windows.ts +2 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/maybe.ts +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/next.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/plugins.ts +160 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/url.ts +308 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/package.json +111 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/LICENSE +21 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/README.md +146 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/index.d.ts +439 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/index.js +206 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/options.js +74 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/util.js +79 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/validators/schema.js +93 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/validators/spec.js +352 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/package.json +87 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/.runkit_example.js +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/LICENSE +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/README.md +207 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2019.d.ts +19 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2019.js +61 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2019.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2020.d.ts +19 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2020.js +55 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2020.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/ajv.js +50 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/ajv.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/code.js +156 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/errors.js +123 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/index.js +242 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/serialize.js +236 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/names.js +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/rules.js +26 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/util.js +178 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/core.d.ts +174 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/core.js +618 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/core.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/jtd.js +72 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/jtd.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/data.json +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/index.js +90 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/index.js +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/pattern.js +33 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/2019.ts +81 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/2020.ts +75 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/ajv.ts +70 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/index.ts +324 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/jtd/serialize.ts +277 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/names.ts +27 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/util.ts +213 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/core.ts +892 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/jtd.ts +132 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/data.json +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/types/index.ts +244 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/pattern.ts +39 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/package.json +127 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/LICENSE +21 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/README.md +40 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/index.d.ts +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/index.js +50 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/refs/json-schema-draft-04.json +138 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/core.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/core.js +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/core.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/draft4.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/draft4.js +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/draft4.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/index.d.ts +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/index.js +35 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumber.d.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumber.js +44 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumber.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumberExclusive.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumberExclusive.js +19 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumberExclusive.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/.runkit_example.js +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/LICENSE +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/README.md +207 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2019.d.ts +19 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2019.js +61 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2019.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2020.d.ts +19 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2020.js +55 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2020.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/ajv.js +50 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/ajv.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/code.js +155 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/errors.js +123 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/index.js +242 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/serialize.js +229 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/names.js +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/rules.js +26 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/util.js +178 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/core.d.ts +173 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/core.js +618 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/core.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/jtd.js +72 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/jtd.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/data.json +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/index.js +90 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/index.js +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/index.js +100 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/2019.ts +81 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/2020.ts +75 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/ajv.ts +70 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/codegen/code.ts +168 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/index.ts +324 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/jtd/serialize.ts +266 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/names.ts +27 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/util.ts +213 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/core.ts +891 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/jtd.ts +132 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/data.json +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/types/index.ts +244 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/discriminator/index.ts +110 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/package.json +126 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/package.json +74 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/index.ts +81 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/refs/json-schema-draft-04.json +138 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/vocabulary/core.ts +13 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/vocabulary/draft4.ts +17 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/vocabulary/validation/index.ts +51 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/vocabulary/validation/limitNumber.ts +76 -0
- package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/vocabulary/validation/limitNumberExclusive.ts +26 -0
- package/dist/node_modules/openapi-types/package.json +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,453 @@
|
|
|
1
|
+
import $Refs from "./refs.js";
|
|
2
|
+
import _parse from "./parse.js";
|
|
3
|
+
import normalizeArgs from "./normalize-args.js";
|
|
4
|
+
import resolveExternal from "./resolve-external.js";
|
|
5
|
+
import _bundle from "./bundle.js";
|
|
6
|
+
import _dereference from "./dereference.js";
|
|
7
|
+
import * as url from "./util/url.js";
|
|
8
|
+
import {
|
|
9
|
+
JSONParserError,
|
|
10
|
+
InvalidPointerError,
|
|
11
|
+
MissingPointerError,
|
|
12
|
+
ResolverError,
|
|
13
|
+
ParserError,
|
|
14
|
+
UnmatchedParserError,
|
|
15
|
+
UnmatchedResolverError,
|
|
16
|
+
isHandledError,
|
|
17
|
+
JSONParserErrorGroup,
|
|
18
|
+
} from "./util/errors.js";
|
|
19
|
+
import { ono } from "@jsdevtools/ono";
|
|
20
|
+
import maybe from "./util/maybe.js";
|
|
21
|
+
import type { ParserOptions } from "./options.js";
|
|
22
|
+
import { getJsonSchemaRefParserDefaultOptions } from "./options.js";
|
|
23
|
+
import type {
|
|
24
|
+
$RefsCallback,
|
|
25
|
+
JSONSchema,
|
|
26
|
+
SchemaCallback,
|
|
27
|
+
FileInfo,
|
|
28
|
+
Plugin,
|
|
29
|
+
ResolverOptions,
|
|
30
|
+
HTTPResolverOptions,
|
|
31
|
+
} from "./types/index.js";
|
|
32
|
+
|
|
33
|
+
export type RefParserSchema = string | JSONSchema;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* This class parses a JSON schema, builds a map of its JSON references and their resolved values,
|
|
37
|
+
* and provides methods for traversing, manipulating, and dereferencing those references.
|
|
38
|
+
*
|
|
39
|
+
* @class
|
|
40
|
+
*/
|
|
41
|
+
export class $RefParser<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>> {
|
|
42
|
+
/**
|
|
43
|
+
* The parsed (and possibly dereferenced) JSON schema object
|
|
44
|
+
*
|
|
45
|
+
* @type {object}
|
|
46
|
+
* @readonly
|
|
47
|
+
*/
|
|
48
|
+
public schema: S | null = null;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* The resolved JSON references
|
|
52
|
+
*
|
|
53
|
+
* @type {$Refs}
|
|
54
|
+
* @readonly
|
|
55
|
+
*/
|
|
56
|
+
$refs = new $Refs<S, O>();
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Parses the given JSON schema.
|
|
60
|
+
* This method does not resolve any JSON references.
|
|
61
|
+
* It just reads a single file in JSON or YAML format, and parse it as a JavaScript object.
|
|
62
|
+
*
|
|
63
|
+
* @param [path] - The file path or URL of the JSON schema
|
|
64
|
+
* @param [schema] - A JSON schema object. This object will be used instead of reading from `path`.
|
|
65
|
+
* @param [options] - Options that determine how the schema is parsed
|
|
66
|
+
* @param [callback] - An error-first callback. The second parameter is the parsed JSON schema object.
|
|
67
|
+
* @returns - The returned promise resolves with the parsed JSON schema object.
|
|
68
|
+
*/
|
|
69
|
+
public parse(schema: S | string | unknown): Promise<S>;
|
|
70
|
+
public parse(schema: S | string | unknown, callback: SchemaCallback<S>): Promise<void>;
|
|
71
|
+
public parse(schema: S | string | unknown, options: O): Promise<S>;
|
|
72
|
+
public parse(schema: S | string | unknown, options: O, callback: SchemaCallback<S>): Promise<void>;
|
|
73
|
+
public parse(baseUrl: string, schema: S | string | unknown, options: O): Promise<S>;
|
|
74
|
+
public parse(baseUrl: string, schema: S | string | unknown, options: O, callback: SchemaCallback<S>): Promise<void>;
|
|
75
|
+
async parse() {
|
|
76
|
+
const args = normalizeArgs<S, O>(arguments as any);
|
|
77
|
+
let promise;
|
|
78
|
+
|
|
79
|
+
if (!args.path && !args.schema) {
|
|
80
|
+
const err = ono(`Expected a file path, URL, or object. Got ${args.path || args.schema}`);
|
|
81
|
+
return maybe(args.callback, Promise.reject(err));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// Reset everything
|
|
85
|
+
this.schema = null;
|
|
86
|
+
this.$refs = new $Refs();
|
|
87
|
+
|
|
88
|
+
// If the path is a filesystem path, then convert it to a URL.
|
|
89
|
+
// NOTE: According to the JSON Reference spec, these should already be URLs,
|
|
90
|
+
// but, in practice, many people use local filesystem paths instead.
|
|
91
|
+
// So we're being generous here and doing the conversion automatically.
|
|
92
|
+
// This is not intended to be a 100% bulletproof solution.
|
|
93
|
+
// If it doesn't work for your use-case, then use a URL instead.
|
|
94
|
+
let pathType = "http";
|
|
95
|
+
if (url.isFileSystemPath(args.path)) {
|
|
96
|
+
args.path = url.fromFileSystemPath(args.path);
|
|
97
|
+
pathType = "file";
|
|
98
|
+
} else if (!args.path && args.schema && "$id" in args.schema && args.schema.$id) {
|
|
99
|
+
// when schema id has defined an URL should use that hostname to request the references,
|
|
100
|
+
// instead of using the current page URL
|
|
101
|
+
const params = url.parse(args.schema.$id as string);
|
|
102
|
+
const port = params.protocol === "https:" ? 443 : 80;
|
|
103
|
+
|
|
104
|
+
args.path = `${params.protocol}//${params.hostname}:${port}`;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// Resolve the absolute path of the schema
|
|
108
|
+
args.path = url.resolve(url.cwd(), args.path);
|
|
109
|
+
|
|
110
|
+
if (args.schema && typeof args.schema === "object") {
|
|
111
|
+
// A schema object was passed-in.
|
|
112
|
+
// So immediately add a new $Ref with the schema object as its value
|
|
113
|
+
const $ref = this.$refs._add(args.path);
|
|
114
|
+
$ref.value = args.schema;
|
|
115
|
+
$ref.pathType = pathType;
|
|
116
|
+
promise = Promise.resolve(args.schema);
|
|
117
|
+
} else {
|
|
118
|
+
// Parse the schema file/url
|
|
119
|
+
promise = _parse<S, typeof args.options>(args.path, this.$refs, args.options);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
try {
|
|
123
|
+
const result = await promise;
|
|
124
|
+
|
|
125
|
+
if (result !== null && typeof result === "object" && !Buffer.isBuffer(result)) {
|
|
126
|
+
this.schema = result;
|
|
127
|
+
return maybe(args.callback, Promise.resolve(this.schema!));
|
|
128
|
+
} else if (args.options.continueOnError) {
|
|
129
|
+
this.schema = null; // it's already set to null at line 79, but let's set it again for the sake of readability
|
|
130
|
+
return maybe(args.callback, Promise.resolve(this.schema!));
|
|
131
|
+
} else {
|
|
132
|
+
throw ono.syntax(`"${this.$refs._root$Ref.path || result}" is not a valid JSON Schema`);
|
|
133
|
+
}
|
|
134
|
+
} catch (err) {
|
|
135
|
+
if (!args.options.continueOnError || !isHandledError(err)) {
|
|
136
|
+
return maybe(args.callback, Promise.reject(err));
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
if (this.$refs._$refs[url.stripHash(args.path)]) {
|
|
140
|
+
this.$refs._$refs[url.stripHash(args.path)].addError(err);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
return maybe(args.callback, Promise.resolve(null));
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
public static parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
148
|
+
schema: S | string | unknown,
|
|
149
|
+
): Promise<S>;
|
|
150
|
+
public static parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
151
|
+
schema: S | string | unknown,
|
|
152
|
+
callback: SchemaCallback<S>,
|
|
153
|
+
): Promise<void>;
|
|
154
|
+
public static parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
155
|
+
schema: S | string | unknown,
|
|
156
|
+
options: O,
|
|
157
|
+
): Promise<S>;
|
|
158
|
+
public static parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
159
|
+
schema: S | string | unknown,
|
|
160
|
+
options: O,
|
|
161
|
+
callback: SchemaCallback<S>,
|
|
162
|
+
): Promise<void>;
|
|
163
|
+
public static parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
164
|
+
baseUrl: string,
|
|
165
|
+
schema: S | string | unknown,
|
|
166
|
+
options: O,
|
|
167
|
+
): Promise<S>;
|
|
168
|
+
public static parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
169
|
+
baseUrl: string,
|
|
170
|
+
schema: S | string | unknown,
|
|
171
|
+
options: O,
|
|
172
|
+
callback: SchemaCallback<S>,
|
|
173
|
+
): Promise<void>;
|
|
174
|
+
public static parse<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>():
|
|
175
|
+
| Promise<S>
|
|
176
|
+
| Promise<void> {
|
|
177
|
+
const parser = new $RefParser<S, O>();
|
|
178
|
+
return parser.parse.apply(parser, arguments as any);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* *This method is used internally by other methods, such as `bundle` and `dereference`. You probably won't need to call this method yourself.*
|
|
183
|
+
*
|
|
184
|
+
* Resolves all JSON references (`$ref` pointers) in the given JSON Schema file. If it references any other files/URLs, then they will be downloaded and resolved as well. This method **does not** dereference anything. It simply gives you a `$Refs` object, which is a map of all the resolved references and their values.
|
|
185
|
+
*
|
|
186
|
+
* See https://apitools.dev/json-schema-ref-parser/docs/ref-parser.html#resolveschema-options-callback
|
|
187
|
+
*
|
|
188
|
+
* @param schema A JSON Schema object, or the file path or URL of a JSON Schema file. See the `parse` method for more info.
|
|
189
|
+
* @param options (optional)
|
|
190
|
+
* @param callback (optional) A callback that will receive a `$Refs` object
|
|
191
|
+
*/
|
|
192
|
+
public resolve(schema: S | string | unknown): Promise<$Refs<S, O>>;
|
|
193
|
+
public resolve(schema: S | string | unknown, callback: $RefsCallback<S, O>): Promise<void>;
|
|
194
|
+
public resolve(schema: S | string | unknown, options: O): Promise<$Refs<S, O>>;
|
|
195
|
+
public resolve(schema: S | string | unknown, options: O, callback: $RefsCallback<S, O>): Promise<void>;
|
|
196
|
+
public resolve(baseUrl: string, schema: S | string | unknown, options: O): Promise<$Refs<S, O>>;
|
|
197
|
+
public resolve(
|
|
198
|
+
baseUrl: string,
|
|
199
|
+
schema: S | string | unknown,
|
|
200
|
+
options: O,
|
|
201
|
+
callback: $RefsCallback<S, O>,
|
|
202
|
+
): Promise<void>;
|
|
203
|
+
async resolve() {
|
|
204
|
+
const args = normalizeArgs<S, O>(arguments);
|
|
205
|
+
|
|
206
|
+
try {
|
|
207
|
+
await this.parse(args.path, args.schema, args.options);
|
|
208
|
+
await resolveExternal(this, args.options);
|
|
209
|
+
finalize(this);
|
|
210
|
+
return maybe(args.callback, Promise.resolve(this.$refs));
|
|
211
|
+
} catch (err) {
|
|
212
|
+
return maybe(args.callback, Promise.reject(err));
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* *This method is used internally by other methods, such as `bundle` and `dereference`. You probably won't need to call this method yourself.*
|
|
218
|
+
*
|
|
219
|
+
* Resolves all JSON references (`$ref` pointers) in the given JSON Schema file. If it references any other files/URLs, then they will be downloaded and resolved as well. This method **does not** dereference anything. It simply gives you a `$Refs` object, which is a map of all the resolved references and their values.
|
|
220
|
+
*
|
|
221
|
+
* See https://apitools.dev/json-schema-ref-parser/docs/ref-parser.html#resolveschema-options-callback
|
|
222
|
+
*
|
|
223
|
+
* @param schema A JSON Schema object, or the file path or URL of a JSON Schema file. See the `parse` method for more info.
|
|
224
|
+
* @param options (optional)
|
|
225
|
+
* @param callback (optional) A callback that will receive a `$Refs` object
|
|
226
|
+
*/
|
|
227
|
+
public static resolve<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
228
|
+
schema: S | string | unknown,
|
|
229
|
+
): Promise<$Refs<S, O>>;
|
|
230
|
+
public static resolve<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
231
|
+
schema: S | string | unknown,
|
|
232
|
+
callback: $RefsCallback<S, O>,
|
|
233
|
+
): Promise<void>;
|
|
234
|
+
public static resolve<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
235
|
+
schema: S | string | unknown,
|
|
236
|
+
options: O,
|
|
237
|
+
): Promise<$Refs<S, O>>;
|
|
238
|
+
public static resolve<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
239
|
+
schema: S | string | unknown,
|
|
240
|
+
options: O,
|
|
241
|
+
callback: $RefsCallback<S, O>,
|
|
242
|
+
): Promise<void>;
|
|
243
|
+
public static resolve<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
244
|
+
baseUrl: string,
|
|
245
|
+
schema: S | string | unknown,
|
|
246
|
+
options: O,
|
|
247
|
+
): Promise<$Refs<S, O>>;
|
|
248
|
+
public static resolve<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
249
|
+
baseUrl: string,
|
|
250
|
+
schema: S | string | unknown,
|
|
251
|
+
options: O,
|
|
252
|
+
callback: $RefsCallback<S, O>,
|
|
253
|
+
): Promise<void>;
|
|
254
|
+
static resolve<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>():
|
|
255
|
+
| Promise<S>
|
|
256
|
+
| Promise<void> {
|
|
257
|
+
const instance = new $RefParser<S, O>();
|
|
258
|
+
return instance.resolve.apply(instance, arguments as any);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Bundles all referenced files/URLs into a single schema that only has internal `$ref` pointers. This lets you split-up your schema however you want while you're building it, but easily combine all those files together when it's time to package or distribute the schema to other people. The resulting schema size will be small, since it will still contain internal JSON references rather than being fully-dereferenced.
|
|
263
|
+
*
|
|
264
|
+
* This also eliminates the risk of circular references, so the schema can be safely serialized using `JSON.stringify()`.
|
|
265
|
+
*
|
|
266
|
+
* See https://apitools.dev/json-schema-ref-parser/docs/ref-parser.html#bundleschema-options-callback
|
|
267
|
+
*
|
|
268
|
+
* @param schema A JSON Schema object, or the file path or URL of a JSON Schema file. See the `parse` method for more info.
|
|
269
|
+
* @param options (optional)
|
|
270
|
+
* @param callback (optional) A callback that will receive the bundled schema object
|
|
271
|
+
*/
|
|
272
|
+
public static bundle<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
273
|
+
schema: S | string | unknown,
|
|
274
|
+
): Promise<S>;
|
|
275
|
+
public static bundle<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
276
|
+
schema: S | string | unknown,
|
|
277
|
+
callback: SchemaCallback<S>,
|
|
278
|
+
): Promise<void>;
|
|
279
|
+
public static bundle<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
280
|
+
schema: S | string | unknown,
|
|
281
|
+
options: O,
|
|
282
|
+
): Promise<S>;
|
|
283
|
+
public static bundle<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
284
|
+
schema: S | string | unknown,
|
|
285
|
+
options: O,
|
|
286
|
+
callback: SchemaCallback<S>,
|
|
287
|
+
): Promise<void>;
|
|
288
|
+
public static bundle<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
289
|
+
baseUrl: string,
|
|
290
|
+
schema: S | string | unknown,
|
|
291
|
+
options: O,
|
|
292
|
+
): Promise<S>;
|
|
293
|
+
public static bundle<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
294
|
+
baseUrl: string,
|
|
295
|
+
schema: S | string | unknown,
|
|
296
|
+
options: O,
|
|
297
|
+
callback: SchemaCallback<S>,
|
|
298
|
+
): Promise<S>;
|
|
299
|
+
static bundle<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>():
|
|
300
|
+
| Promise<S>
|
|
301
|
+
| Promise<void> {
|
|
302
|
+
const instance = new $RefParser<S, O>();
|
|
303
|
+
return instance.bundle.apply(instance, arguments as any);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* Bundles all referenced files/URLs into a single schema that only has internal `$ref` pointers. This lets you split-up your schema however you want while you're building it, but easily combine all those files together when it's time to package or distribute the schema to other people. The resulting schema size will be small, since it will still contain internal JSON references rather than being fully-dereferenced.
|
|
308
|
+
*
|
|
309
|
+
* This also eliminates the risk of circular references, so the schema can be safely serialized using `JSON.stringify()`.
|
|
310
|
+
*
|
|
311
|
+
* See https://apitools.dev/json-schema-ref-parser/docs/ref-parser.html#bundleschema-options-callback
|
|
312
|
+
*
|
|
313
|
+
* @param schema A JSON Schema object, or the file path or URL of a JSON Schema file. See the `parse` method for more info.
|
|
314
|
+
* @param options (optional)
|
|
315
|
+
* @param callback (optional) A callback that will receive the bundled schema object
|
|
316
|
+
*/
|
|
317
|
+
public bundle(schema: S | string | unknown): Promise<S>;
|
|
318
|
+
public bundle(schema: S | string | unknown, callback: SchemaCallback<S>): Promise<void>;
|
|
319
|
+
public bundle(schema: S | string | unknown, options: O): Promise<S>;
|
|
320
|
+
public bundle(schema: S | string | unknown, options: O, callback: SchemaCallback<S>): Promise<void>;
|
|
321
|
+
public bundle(baseUrl: string, schema: S | string | unknown, options: O): Promise<S>;
|
|
322
|
+
public bundle(baseUrl: string, schema: S | string | unknown, options: O, callback: SchemaCallback<S>): Promise<void>;
|
|
323
|
+
async bundle() {
|
|
324
|
+
const args = normalizeArgs<S, O>(arguments);
|
|
325
|
+
try {
|
|
326
|
+
await this.resolve(args.path, args.schema, args.options);
|
|
327
|
+
_bundle<S, O>(this, args.options);
|
|
328
|
+
finalize(this);
|
|
329
|
+
return maybe(args.callback, Promise.resolve(this.schema!));
|
|
330
|
+
} catch (err) {
|
|
331
|
+
return maybe(args.callback, Promise.reject(err));
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
/**
|
|
336
|
+
* Dereferences all `$ref` pointers in the JSON Schema, replacing each reference with its resolved value. This results in a schema object that does not contain any `$ref` pointers. Instead, it's a normal JavaScript object tree that can easily be crawled and used just like any other JavaScript object. This is great for programmatic usage, especially when using tools that don't understand JSON references.
|
|
337
|
+
*
|
|
338
|
+
* The dereference method maintains object reference equality, meaning that all `$ref` pointers that point to the same object will be replaced with references to the same object. Again, this is great for programmatic usage, but it does introduce the risk of circular references, so be careful if you intend to serialize the schema using `JSON.stringify()`. Consider using the bundle method instead, which does not create circular references.
|
|
339
|
+
*
|
|
340
|
+
* See https://apitools.dev/json-schema-ref-parser/docs/ref-parser.html#dereferenceschema-options-callback
|
|
341
|
+
*
|
|
342
|
+
* @param schema A JSON Schema object, or the file path or URL of a JSON Schema file. See the `parse` method for more info.
|
|
343
|
+
* @param options (optional)
|
|
344
|
+
* @param callback (optional) A callback that will receive the dereferenced schema object
|
|
345
|
+
*/
|
|
346
|
+
public static dereference<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
347
|
+
schema: S | string | unknown,
|
|
348
|
+
): Promise<S>;
|
|
349
|
+
public static dereference<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
350
|
+
schema: S | string | unknown,
|
|
351
|
+
callback: SchemaCallback<S>,
|
|
352
|
+
): Promise<void>;
|
|
353
|
+
public static dereference<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
354
|
+
schema: S | string | unknown,
|
|
355
|
+
options: O,
|
|
356
|
+
): Promise<S>;
|
|
357
|
+
public static dereference<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
358
|
+
schema: S | string | unknown,
|
|
359
|
+
options: O,
|
|
360
|
+
callback: SchemaCallback<S>,
|
|
361
|
+
): Promise<void>;
|
|
362
|
+
public static dereference<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
363
|
+
baseUrl: string,
|
|
364
|
+
schema: S | string | unknown,
|
|
365
|
+
options: O,
|
|
366
|
+
): Promise<S>;
|
|
367
|
+
public static dereference<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
368
|
+
baseUrl: string,
|
|
369
|
+
schema: S | string | unknown,
|
|
370
|
+
options: O,
|
|
371
|
+
callback: SchemaCallback<S>,
|
|
372
|
+
): Promise<void>;
|
|
373
|
+
static dereference<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>():
|
|
374
|
+
| Promise<S>
|
|
375
|
+
| Promise<void> {
|
|
376
|
+
const instance = new $RefParser<S, O>();
|
|
377
|
+
return instance.dereference.apply(instance, arguments as any);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* Dereferences all `$ref` pointers in the JSON Schema, replacing each reference with its resolved value. This results in a schema object that does not contain any `$ref` pointers. Instead, it's a normal JavaScript object tree that can easily be crawled and used just like any other JavaScript object. This is great for programmatic usage, especially when using tools that don't understand JSON references.
|
|
382
|
+
*
|
|
383
|
+
* The dereference method maintains object reference equality, meaning that all `$ref` pointers that point to the same object will be replaced with references to the same object. Again, this is great for programmatic usage, but it does introduce the risk of circular references, so be careful if you intend to serialize the schema using `JSON.stringify()`. Consider using the bundle method instead, which does not create circular references.
|
|
384
|
+
*
|
|
385
|
+
* See https://apitools.dev/json-schema-ref-parser/docs/ref-parser.html#dereferenceschema-options-callback
|
|
386
|
+
*
|
|
387
|
+
* @param baseUrl
|
|
388
|
+
* @param schema A JSON Schema object, or the file path or URL of a JSON Schema file. See the `parse` method for more info.
|
|
389
|
+
* @param options (optional)
|
|
390
|
+
* @param callback (optional) A callback that will receive the dereferenced schema object
|
|
391
|
+
*/
|
|
392
|
+
public dereference(
|
|
393
|
+
baseUrl: string,
|
|
394
|
+
schema: S | string | unknown,
|
|
395
|
+
options: O,
|
|
396
|
+
callback: SchemaCallback<S>,
|
|
397
|
+
): Promise<void>;
|
|
398
|
+
public dereference(schema: S | string | unknown, options: O, callback: SchemaCallback<S>): Promise<void>;
|
|
399
|
+
public dereference(schema: S | string | unknown, callback: SchemaCallback<S>): Promise<void>;
|
|
400
|
+
public dereference(baseUrl: string, schema: S | string | unknown, options: O): Promise<S>;
|
|
401
|
+
public dereference(schema: S | string | unknown, options: O): Promise<S>;
|
|
402
|
+
public dereference(schema: S | string | unknown): Promise<S>;
|
|
403
|
+
async dereference() {
|
|
404
|
+
const args = normalizeArgs<S, O>(arguments);
|
|
405
|
+
|
|
406
|
+
try {
|
|
407
|
+
await this.resolve(args.path, args.schema, args.options);
|
|
408
|
+
_dereference(this, args.options);
|
|
409
|
+
finalize(this);
|
|
410
|
+
return maybe<S>(args.callback, Promise.resolve(this.schema!) as Promise<S>);
|
|
411
|
+
} catch (err) {
|
|
412
|
+
return maybe<S>(args.callback, Promise.reject(err));
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
export default $RefParser;
|
|
417
|
+
|
|
418
|
+
function finalize<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
419
|
+
parser: $RefParser<S, O>,
|
|
420
|
+
) {
|
|
421
|
+
const errors = JSONParserErrorGroup.getParserErrors(parser);
|
|
422
|
+
if (errors.length > 0) {
|
|
423
|
+
throw new JSONParserErrorGroup(parser);
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
export const parse = $RefParser.parse;
|
|
428
|
+
export const resolve = $RefParser.resolve;
|
|
429
|
+
export const bundle = $RefParser.bundle;
|
|
430
|
+
export const dereference = $RefParser.dereference;
|
|
431
|
+
|
|
432
|
+
export {
|
|
433
|
+
UnmatchedResolverError,
|
|
434
|
+
JSONParserError,
|
|
435
|
+
JSONSchema,
|
|
436
|
+
InvalidPointerError,
|
|
437
|
+
MissingPointerError,
|
|
438
|
+
ResolverError,
|
|
439
|
+
ParserError,
|
|
440
|
+
UnmatchedParserError,
|
|
441
|
+
ParserOptions,
|
|
442
|
+
$RefsCallback,
|
|
443
|
+
isHandledError,
|
|
444
|
+
JSONParserErrorGroup,
|
|
445
|
+
SchemaCallback,
|
|
446
|
+
FileInfo,
|
|
447
|
+
Plugin,
|
|
448
|
+
ResolverOptions,
|
|
449
|
+
HTTPResolverOptions,
|
|
450
|
+
_dereference as dereferenceInternal,
|
|
451
|
+
normalizeArgs as jsonSchemaParserNormalizeArgs,
|
|
452
|
+
getJsonSchemaRefParserDefaultOptions,
|
|
453
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import type { Options, ParserOptions } from "./options.js";
|
|
2
|
+
import { getNewOptions } from "./options.js";
|
|
3
|
+
import type { JSONSchema, SchemaCallback } from "./types";
|
|
4
|
+
|
|
5
|
+
// I really dislike this function and the way it's written. It's not clear what it's doing, and it's way too flexible
|
|
6
|
+
// In the future, I'd like to deprecate the api and accept only named parameters in index.ts
|
|
7
|
+
export interface NormalizedArguments<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>> {
|
|
8
|
+
path: string;
|
|
9
|
+
schema: S;
|
|
10
|
+
options: O & Options<S>;
|
|
11
|
+
callback: SchemaCallback<S>;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Normalizes the given arguments, accounting for optional args.
|
|
15
|
+
*/
|
|
16
|
+
export function normalizeArgs<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
17
|
+
_args: Partial<IArguments>,
|
|
18
|
+
): NormalizedArguments<S, O> {
|
|
19
|
+
let path;
|
|
20
|
+
let schema;
|
|
21
|
+
let options: Options<S> & O;
|
|
22
|
+
let callback;
|
|
23
|
+
const args = Array.prototype.slice.call(_args) as any[];
|
|
24
|
+
|
|
25
|
+
if (typeof args[args.length - 1] === "function") {
|
|
26
|
+
// The last parameter is a callback function
|
|
27
|
+
callback = args.pop();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
if (typeof args[0] === "string") {
|
|
31
|
+
// The first parameter is the path
|
|
32
|
+
path = args[0];
|
|
33
|
+
if (typeof args[2] === "object") {
|
|
34
|
+
// The second parameter is the schema, and the third parameter is the options
|
|
35
|
+
schema = args[1];
|
|
36
|
+
options = args[2];
|
|
37
|
+
} else {
|
|
38
|
+
// The second parameter is the options
|
|
39
|
+
schema = undefined;
|
|
40
|
+
options = args[1];
|
|
41
|
+
}
|
|
42
|
+
} else {
|
|
43
|
+
// The first parameter is the schema
|
|
44
|
+
path = "";
|
|
45
|
+
schema = args[0];
|
|
46
|
+
options = args[1];
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
try {
|
|
50
|
+
options = getNewOptions<S, O>(options);
|
|
51
|
+
} catch (e) {
|
|
52
|
+
console.error(`JSON Schema Ref Parser: Error normalizing options: ${e}`);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
if (!options.mutateInputSchema && typeof schema === "object") {
|
|
56
|
+
// Make a deep clone of the schema, so that we don't alter the original object
|
|
57
|
+
schema = JSON.parse(JSON.stringify(schema));
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return {
|
|
61
|
+
path,
|
|
62
|
+
schema,
|
|
63
|
+
options,
|
|
64
|
+
callback,
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export default normalizeArgs;
|