@nocobase/plugin-mcp-server 2.1.0-alpha.15 → 2.1.0-alpha.17
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,11 @@
|
|
|
1
|
+
import path from "path";
|
|
2
|
+
|
|
3
|
+
export default function convertPathToPosix(filePath: string) {
|
|
4
|
+
const isExtendedLengthPath = filePath.startsWith("\\\\?\\");
|
|
5
|
+
|
|
6
|
+
if (isExtendedLengthPath) {
|
|
7
|
+
return filePath;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
return filePath.split(path?.win32?.sep).join(path?.posix?.sep ?? "/");
|
|
11
|
+
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import { Ono } from "@jsdevtools/ono";
|
|
2
|
+
import { stripHash, toFileSystemPath } from "./url.js";
|
|
3
|
+
import type $RefParser from "../index.js";
|
|
4
|
+
import type { ParserOptions } from "../index.js";
|
|
5
|
+
import type { JSONSchema } from "../index.js";
|
|
6
|
+
import type $Ref from "../ref";
|
|
7
|
+
|
|
8
|
+
export type JSONParserErrorType =
|
|
9
|
+
| "EUNKNOWN"
|
|
10
|
+
| "EPARSER"
|
|
11
|
+
| "EUNMATCHEDPARSER"
|
|
12
|
+
| "ETIMEOUT"
|
|
13
|
+
| "ERESOLVER"
|
|
14
|
+
| "EUNMATCHEDRESOLVER"
|
|
15
|
+
| "EMISSINGPOINTER"
|
|
16
|
+
| "EINVALIDPOINTER";
|
|
17
|
+
|
|
18
|
+
export class JSONParserError extends Error {
|
|
19
|
+
public readonly name: string;
|
|
20
|
+
public readonly message: string;
|
|
21
|
+
public source: string | undefined;
|
|
22
|
+
public path: Array<string | number> | null;
|
|
23
|
+
public readonly code: JSONParserErrorType;
|
|
24
|
+
public constructor(message: string, source?: string) {
|
|
25
|
+
super();
|
|
26
|
+
|
|
27
|
+
this.code = "EUNKNOWN";
|
|
28
|
+
this.name = "JSONParserError";
|
|
29
|
+
this.message = message;
|
|
30
|
+
this.source = source;
|
|
31
|
+
this.path = null;
|
|
32
|
+
|
|
33
|
+
Ono.extend(this);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
get footprint() {
|
|
37
|
+
return `${this.path}+${this.source}+${this.code}+${this.message}`;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export class JSONParserErrorGroup<
|
|
42
|
+
S extends object = JSONSchema,
|
|
43
|
+
O extends ParserOptions<S> = ParserOptions<S>,
|
|
44
|
+
> extends Error {
|
|
45
|
+
files: $RefParser<S, O>;
|
|
46
|
+
|
|
47
|
+
constructor(parser: $RefParser<S, O>) {
|
|
48
|
+
super();
|
|
49
|
+
|
|
50
|
+
this.files = parser;
|
|
51
|
+
this.name = "JSONParserErrorGroup";
|
|
52
|
+
this.message = `${this.errors.length} error${
|
|
53
|
+
this.errors.length > 1 ? "s" : ""
|
|
54
|
+
} occurred while reading '${toFileSystemPath(parser.$refs._root$Ref!.path)}'`;
|
|
55
|
+
|
|
56
|
+
Ono.extend(this);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
static getParserErrors<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
60
|
+
parser: $RefParser<S, O>,
|
|
61
|
+
) {
|
|
62
|
+
const errors = [];
|
|
63
|
+
|
|
64
|
+
for (const $ref of Object.values(parser.$refs._$refs) as $Ref<S, O>[]) {
|
|
65
|
+
if ($ref.errors) {
|
|
66
|
+
errors.push(...$ref.errors);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
return errors;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
get errors(): Array<
|
|
74
|
+
| JSONParserError
|
|
75
|
+
| InvalidPointerError
|
|
76
|
+
| ResolverError
|
|
77
|
+
| ParserError
|
|
78
|
+
| MissingPointerError
|
|
79
|
+
| UnmatchedParserError
|
|
80
|
+
| UnmatchedResolverError
|
|
81
|
+
> {
|
|
82
|
+
return JSONParserErrorGroup.getParserErrors<S, O>(this.files);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export class ParserError extends JSONParserError {
|
|
87
|
+
code = "EPARSER" as JSONParserErrorType;
|
|
88
|
+
name = "ParserError";
|
|
89
|
+
constructor(message: any, source: any) {
|
|
90
|
+
super(`Error parsing ${source}: ${message}`, source);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export class UnmatchedParserError extends JSONParserError {
|
|
95
|
+
code = "EUNMATCHEDPARSER" as JSONParserErrorType;
|
|
96
|
+
name = "UnmatchedParserError";
|
|
97
|
+
|
|
98
|
+
constructor(source: string) {
|
|
99
|
+
super(`Could not find parser for "${source}"`, source);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export class ResolverError extends JSONParserError {
|
|
104
|
+
code = "ERESOLVER" as JSONParserErrorType;
|
|
105
|
+
name = "ResolverError";
|
|
106
|
+
ioErrorCode?: string;
|
|
107
|
+
constructor(ex: Error | any, source?: string) {
|
|
108
|
+
super(ex.message || `Error reading file "${source}"`, source);
|
|
109
|
+
if ("code" in ex) {
|
|
110
|
+
this.ioErrorCode = String(ex.code);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export class UnmatchedResolverError extends JSONParserError {
|
|
116
|
+
code = "EUNMATCHEDRESOLVER" as JSONParserErrorType;
|
|
117
|
+
name = "UnmatchedResolverError";
|
|
118
|
+
constructor(source: any) {
|
|
119
|
+
super(`Could not find resolver for "${source}"`, source);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export class MissingPointerError extends JSONParserError {
|
|
124
|
+
code = "EUNMATCHEDRESOLVER" as JSONParserErrorType;
|
|
125
|
+
name = "MissingPointerError";
|
|
126
|
+
constructor(token: any, path: any) {
|
|
127
|
+
super(`Token "${token}" does not exist.`, stripHash(path));
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export class TimeoutError extends JSONParserError {
|
|
132
|
+
code = "ETIMEOUT" as JSONParserErrorType;
|
|
133
|
+
name = "TimeoutError";
|
|
134
|
+
constructor(timeout: number) {
|
|
135
|
+
super(`Dereferencing timeout reached: ${timeout}ms`);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export class InvalidPointerError extends JSONParserError {
|
|
140
|
+
code = "EUNMATCHEDRESOLVER" as JSONParserErrorType;
|
|
141
|
+
name = "InvalidPointerError";
|
|
142
|
+
constructor(pointer: any, path: any) {
|
|
143
|
+
super(`Invalid $ref pointer "${pointer}". Pointers must begin with "#/"`, stripHash(path));
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export function isHandledError(err: any): err is JSONParserError {
|
|
148
|
+
return err instanceof JSONParserError || err instanceof JSONParserErrorGroup;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
export function normalizeError(err: any) {
|
|
152
|
+
if (err.path === null) {
|
|
153
|
+
err.path = [];
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
return err;
|
|
157
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import next from "./next.js";
|
|
2
|
+
|
|
3
|
+
type MaybeParams<T> = (err: Error | any | null, result?: T) => void;
|
|
4
|
+
export default function maybe<T>(cb: MaybeParams<T> | undefined, promise: Promise<T>): Promise<T> | void {
|
|
5
|
+
if (cb) {
|
|
6
|
+
promise.then(
|
|
7
|
+
function (result) {
|
|
8
|
+
next(function () {
|
|
9
|
+
cb(null, result);
|
|
10
|
+
});
|
|
11
|
+
},
|
|
12
|
+
function (err) {
|
|
13
|
+
next(function () {
|
|
14
|
+
cb(err);
|
|
15
|
+
});
|
|
16
|
+
},
|
|
17
|
+
);
|
|
18
|
+
return undefined;
|
|
19
|
+
} else {
|
|
20
|
+
return promise;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
function makeNext() {
|
|
2
|
+
if (typeof process === "object" && typeof process.nextTick === "function") {
|
|
3
|
+
return process.nextTick;
|
|
4
|
+
} else if (typeof setImmediate === "function") {
|
|
5
|
+
return setImmediate;
|
|
6
|
+
} else {
|
|
7
|
+
return function next(f: () => void) {
|
|
8
|
+
setTimeout(f, 0);
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export default makeNext();
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import type { FileInfo, JSONSchema } from "../types/index.js";
|
|
2
|
+
import type { ParserOptions } from "../options.js";
|
|
3
|
+
import type { ResolverOptions } from "../types/index.js";
|
|
4
|
+
import type $Refs from "../refs.js";
|
|
5
|
+
import type { Plugin } from "../types/index.js";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Returns the given plugins as an array, rather than an object map.
|
|
9
|
+
* All other methods in this module expect an array of plugins rather than an object map.
|
|
10
|
+
*
|
|
11
|
+
* @returns
|
|
12
|
+
*/
|
|
13
|
+
export function all<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
14
|
+
plugins: O["resolve"],
|
|
15
|
+
): Plugin[] {
|
|
16
|
+
return (Object.keys(plugins || {}) as (keyof ResolverOptions<S>)[])
|
|
17
|
+
.filter((key) => {
|
|
18
|
+
return typeof plugins![key] === "object";
|
|
19
|
+
})
|
|
20
|
+
.map((key) => {
|
|
21
|
+
(plugins![key] as ResolverOptions<S>)!.name = key;
|
|
22
|
+
return plugins![key] as Plugin;
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Filters the given plugins, returning only the ones return `true` for the given method.
|
|
28
|
+
*/
|
|
29
|
+
export function filter(plugins: Plugin[], method: any, file: any) {
|
|
30
|
+
return plugins.filter((plugin: Plugin) => {
|
|
31
|
+
return !!getResult(plugin, method, file);
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Sorts the given plugins, in place, by their `order` property.
|
|
37
|
+
*/
|
|
38
|
+
export function sort(plugins: Plugin[]) {
|
|
39
|
+
for (const plugin of plugins) {
|
|
40
|
+
plugin.order = plugin.order || Number.MAX_SAFE_INTEGER;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
return plugins.sort((a: any, b: any) => {
|
|
44
|
+
return a.order - b.order;
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
// @ts-ignore
|
|
49
|
+
export interface PluginResult<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>> {
|
|
50
|
+
plugin: Plugin;
|
|
51
|
+
result?: string | Buffer | S;
|
|
52
|
+
error?: any;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Runs the specified method of the given plugins, in order, until one of them returns a successful result.
|
|
57
|
+
* Each method can return a synchronous value, a Promise, or call an error-first callback.
|
|
58
|
+
* If the promise resolves successfully, or the callback is called without an error, then the result
|
|
59
|
+
* is immediately returned and no further plugins are called.
|
|
60
|
+
* If the promise rejects, or the callback is called with an error, then the next plugin is called.
|
|
61
|
+
* If ALL plugins fail, then the last error is thrown.
|
|
62
|
+
*/
|
|
63
|
+
export async function run<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
64
|
+
plugins: Plugin[],
|
|
65
|
+
method: keyof Plugin | keyof ResolverOptions<S>,
|
|
66
|
+
file: FileInfo,
|
|
67
|
+
$refs: $Refs<S, O>,
|
|
68
|
+
) {
|
|
69
|
+
let plugin: Plugin;
|
|
70
|
+
let lastError: PluginResult<S, O>;
|
|
71
|
+
let index = 0;
|
|
72
|
+
|
|
73
|
+
return new Promise<PluginResult<S, O>>((resolve, reject) => {
|
|
74
|
+
runNextPlugin();
|
|
75
|
+
|
|
76
|
+
function runNextPlugin() {
|
|
77
|
+
plugin = plugins[index++];
|
|
78
|
+
if (!plugin) {
|
|
79
|
+
// There are no more functions, so re-throw the last error
|
|
80
|
+
return reject(lastError);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
try {
|
|
84
|
+
// console.log(' %s', plugin.name);
|
|
85
|
+
const result = getResult(plugin, method, file, callback, $refs);
|
|
86
|
+
if (result && typeof result.then === "function") {
|
|
87
|
+
// A promise was returned
|
|
88
|
+
result.then(onSuccess, onError);
|
|
89
|
+
} else if (result !== undefined) {
|
|
90
|
+
// A synchronous result was returned
|
|
91
|
+
onSuccess(result);
|
|
92
|
+
} else if (index === plugins.length) {
|
|
93
|
+
throw new Error("No promise has been returned or callback has been called.");
|
|
94
|
+
}
|
|
95
|
+
} catch (e) {
|
|
96
|
+
onError(e);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function callback(err: PluginResult<S, O>["error"], result: PluginResult<S, O>["result"]) {
|
|
101
|
+
if (err) {
|
|
102
|
+
onError(err);
|
|
103
|
+
} else {
|
|
104
|
+
onSuccess(result);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
function onSuccess(result: PluginResult<S, O>["result"]) {
|
|
109
|
+
// console.log(' success');
|
|
110
|
+
resolve({
|
|
111
|
+
plugin,
|
|
112
|
+
result,
|
|
113
|
+
});
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
function onError(error: PluginResult<S, O>["error"]) {
|
|
117
|
+
// console.log(' %s', err.message || err);
|
|
118
|
+
lastError = {
|
|
119
|
+
plugin,
|
|
120
|
+
error,
|
|
121
|
+
};
|
|
122
|
+
runNextPlugin();
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Returns the value of the given property.
|
|
129
|
+
* If the property is a function, then the result of the function is returned.
|
|
130
|
+
* If the value is a RegExp, then it will be tested against the file URL.
|
|
131
|
+
* If the value is an array, then it will be compared against the file extension.
|
|
132
|
+
*/
|
|
133
|
+
function getResult<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(
|
|
134
|
+
obj: Plugin,
|
|
135
|
+
prop: keyof Plugin | keyof ResolverOptions<S>,
|
|
136
|
+
file: FileInfo,
|
|
137
|
+
callback?: (err?: Error, result?: any) => void,
|
|
138
|
+
$refs?: $Refs<S, O>,
|
|
139
|
+
) {
|
|
140
|
+
const value = obj[prop as keyof typeof obj] as unknown;
|
|
141
|
+
|
|
142
|
+
if (typeof value === "function") {
|
|
143
|
+
return value.apply(obj, [file, callback, $refs]);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
if (!callback) {
|
|
147
|
+
// The synchronous plugin functions (canParse and canRead)
|
|
148
|
+
// allow a "shorthand" syntax, where the user can match
|
|
149
|
+
// files by RegExp or by file extension.
|
|
150
|
+
if (value instanceof RegExp) {
|
|
151
|
+
return value.test(file.url);
|
|
152
|
+
} else if (typeof value === "string") {
|
|
153
|
+
return value === file.extension;
|
|
154
|
+
} else if (Array.isArray(value)) {
|
|
155
|
+
return value.indexOf(file.extension) !== -1;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
return value;
|
|
160
|
+
}
|
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
import convertPathToPosix from "./convert-path-to-posix";
|
|
2
|
+
import path, { win32 } from "path";
|
|
3
|
+
|
|
4
|
+
const forwardSlashPattern = /\//g;
|
|
5
|
+
const protocolPattern = /^(\w{2,}):\/\//i;
|
|
6
|
+
const jsonPointerSlash = /~1/g;
|
|
7
|
+
const jsonPointerTilde = /~0/g;
|
|
8
|
+
|
|
9
|
+
import { join } from "path";
|
|
10
|
+
import { isWindows } from "./is-windows";
|
|
11
|
+
|
|
12
|
+
// RegExp patterns to URL-encode special characters in local filesystem paths
|
|
13
|
+
const urlEncodePatterns = [
|
|
14
|
+
[/\?/g, "%3F"],
|
|
15
|
+
[/#/g, "%23"],
|
|
16
|
+
] as [RegExp, string][];
|
|
17
|
+
|
|
18
|
+
// RegExp patterns to URL-decode special characters for local filesystem paths
|
|
19
|
+
const urlDecodePatterns = [/%23/g, "#", /%24/g, "$", /%26/g, "&", /%2C/g, ",", /%40/g, "@"];
|
|
20
|
+
|
|
21
|
+
export const parse = (u: string | URL) => new URL(u);
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Returns resolved target URL relative to a base URL in a manner similar to that of a Web browser resolving an anchor tag HREF.
|
|
25
|
+
*
|
|
26
|
+
* @returns
|
|
27
|
+
*/
|
|
28
|
+
export function resolve(from: string, to: string) {
|
|
29
|
+
const fromUrl = new URL(convertPathToPosix(from), "resolve://");
|
|
30
|
+
const resolvedUrl = new URL(convertPathToPosix(to), fromUrl);
|
|
31
|
+
const endSpaces = to.match(/(\s*)$/)?.[1] || "";
|
|
32
|
+
if (resolvedUrl.protocol === "resolve:") {
|
|
33
|
+
// `from` is a relative URL.
|
|
34
|
+
const { pathname, search, hash } = resolvedUrl;
|
|
35
|
+
return pathname + search + hash + endSpaces;
|
|
36
|
+
}
|
|
37
|
+
return resolvedUrl.toString() + endSpaces;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Returns the current working directory (in Node) or the current page URL (in browsers).
|
|
42
|
+
*
|
|
43
|
+
* @returns
|
|
44
|
+
*/
|
|
45
|
+
export function cwd() {
|
|
46
|
+
if (typeof window !== "undefined") {
|
|
47
|
+
return location.href;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const path = process.cwd();
|
|
51
|
+
|
|
52
|
+
const lastChar = path.slice(-1);
|
|
53
|
+
if (lastChar === "/" || lastChar === "\\") {
|
|
54
|
+
return path;
|
|
55
|
+
} else {
|
|
56
|
+
return path + "/";
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Returns the protocol of the given URL, or `undefined` if it has no protocol.
|
|
62
|
+
*
|
|
63
|
+
* @param path
|
|
64
|
+
* @returns
|
|
65
|
+
*/
|
|
66
|
+
export function getProtocol(path: string | undefined) {
|
|
67
|
+
const match = protocolPattern.exec(path || "");
|
|
68
|
+
if (match) {
|
|
69
|
+
return match[1].toLowerCase();
|
|
70
|
+
}
|
|
71
|
+
return undefined;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Returns the lowercased file extension of the given URL,
|
|
76
|
+
* or an empty string if it has no extension.
|
|
77
|
+
*
|
|
78
|
+
* @param path
|
|
79
|
+
* @returns
|
|
80
|
+
*/
|
|
81
|
+
export function getExtension(path: any) {
|
|
82
|
+
const lastDot = path.lastIndexOf(".");
|
|
83
|
+
if (lastDot >= 0) {
|
|
84
|
+
return stripQuery(path.substr(lastDot).toLowerCase());
|
|
85
|
+
}
|
|
86
|
+
return "";
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Removes the query, if any, from the given path.
|
|
91
|
+
*
|
|
92
|
+
* @param path
|
|
93
|
+
* @returns
|
|
94
|
+
*/
|
|
95
|
+
export function stripQuery(path: any) {
|
|
96
|
+
const queryIndex = path.indexOf("?");
|
|
97
|
+
if (queryIndex >= 0) {
|
|
98
|
+
path = path.substr(0, queryIndex);
|
|
99
|
+
}
|
|
100
|
+
return path;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Returns the hash (URL fragment), of the given path.
|
|
105
|
+
* If there is no hash, then the root hash ("#") is returned.
|
|
106
|
+
*
|
|
107
|
+
* @param path
|
|
108
|
+
* @returns
|
|
109
|
+
*/
|
|
110
|
+
export function getHash(path: undefined | string) {
|
|
111
|
+
if (!path) {
|
|
112
|
+
return "#";
|
|
113
|
+
}
|
|
114
|
+
const hashIndex = path.indexOf("#");
|
|
115
|
+
if (hashIndex >= 0) {
|
|
116
|
+
return path.substring(hashIndex);
|
|
117
|
+
}
|
|
118
|
+
return "#";
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* Removes the hash (URL fragment), if any, from the given path.
|
|
123
|
+
*
|
|
124
|
+
* @param path
|
|
125
|
+
* @returns
|
|
126
|
+
*/
|
|
127
|
+
export function stripHash(path?: string | undefined) {
|
|
128
|
+
if (!path) {
|
|
129
|
+
return "";
|
|
130
|
+
}
|
|
131
|
+
const hashIndex = path.indexOf("#");
|
|
132
|
+
if (hashIndex >= 0) {
|
|
133
|
+
path = path.substring(0, hashIndex);
|
|
134
|
+
}
|
|
135
|
+
return path;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Determines whether the given path is an HTTP(S) URL.
|
|
140
|
+
*
|
|
141
|
+
* @param path
|
|
142
|
+
* @returns
|
|
143
|
+
*/
|
|
144
|
+
export function isHttp(path: string) {
|
|
145
|
+
const protocol = getProtocol(path);
|
|
146
|
+
if (protocol === "http" || protocol === "https") {
|
|
147
|
+
return true;
|
|
148
|
+
} else if (protocol === undefined) {
|
|
149
|
+
// There is no protocol. If we're running in a browser, then assume it's HTTP.
|
|
150
|
+
return typeof window !== "undefined";
|
|
151
|
+
} else {
|
|
152
|
+
// It's some other protocol, such as "ftp://", "mongodb://", etc.
|
|
153
|
+
return false;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Determines whether the given path is a filesystem path.
|
|
159
|
+
* This includes "file://" URLs.
|
|
160
|
+
*
|
|
161
|
+
* @param path
|
|
162
|
+
* @returns
|
|
163
|
+
*/
|
|
164
|
+
export function isFileSystemPath(path: string | undefined) {
|
|
165
|
+
// @ts-ignore
|
|
166
|
+
if (typeof window !== "undefined" || (typeof process !== "undefined" && process.browser)) {
|
|
167
|
+
// We're running in a browser, so assume that all paths are URLs.
|
|
168
|
+
// This way, even relative paths will be treated as URLs rather than as filesystem paths
|
|
169
|
+
return false;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
const protocol = getProtocol(path);
|
|
173
|
+
return protocol === undefined || protocol === "file";
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* Converts a filesystem path to a properly-encoded URL.
|
|
178
|
+
*
|
|
179
|
+
* This is intended to handle situations where JSON Schema $Ref Parser is called
|
|
180
|
+
* with a filesystem path that contains characters which are not allowed in URLs.
|
|
181
|
+
*
|
|
182
|
+
* @example
|
|
183
|
+
* The following filesystem paths would be converted to the following URLs:
|
|
184
|
+
*
|
|
185
|
+
* <"!@#$%^&*+=?'>.json ==> %3C%22!@%23$%25%5E&*+=%3F\'%3E.json
|
|
186
|
+
* C:\\My Documents\\File (1).json ==> C:/My%20Documents/File%20(1).json
|
|
187
|
+
* file://Project #42/file.json ==> file://Project%20%2342/file.json
|
|
188
|
+
*
|
|
189
|
+
* @param path
|
|
190
|
+
* @returns
|
|
191
|
+
*/
|
|
192
|
+
export function fromFileSystemPath(path: string) {
|
|
193
|
+
// Step 1: On Windows, replace backslashes with forward slashes,
|
|
194
|
+
// rather than encoding them as "%5C"
|
|
195
|
+
if (isWindows()) {
|
|
196
|
+
const projectDir = cwd();
|
|
197
|
+
const upperPath = path.toUpperCase();
|
|
198
|
+
const projectDirPosixPath = convertPathToPosix(projectDir);
|
|
199
|
+
const posixUpper = projectDirPosixPath.toUpperCase();
|
|
200
|
+
const hasProjectDir = upperPath.includes(posixUpper);
|
|
201
|
+
const hasProjectUri = upperPath.includes(posixUpper);
|
|
202
|
+
const isAbsolutePath =
|
|
203
|
+
win32?.isAbsolute(path) ||
|
|
204
|
+
path.startsWith("http://") ||
|
|
205
|
+
path.startsWith("https://") ||
|
|
206
|
+
path.startsWith("file://");
|
|
207
|
+
|
|
208
|
+
if (!(hasProjectDir || hasProjectUri || isAbsolutePath) && !projectDir.startsWith("http")) {
|
|
209
|
+
path = join(projectDir, path);
|
|
210
|
+
}
|
|
211
|
+
path = convertPathToPosix(path);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
// Step 2: `encodeURI` will take care of MOST characters
|
|
215
|
+
path = encodeURI(path);
|
|
216
|
+
|
|
217
|
+
// Step 3: Manually encode characters that are not encoded by `encodeURI`.
|
|
218
|
+
// This includes characters such as "#" and "?", which have special meaning in URLs,
|
|
219
|
+
// but are just normal characters in a filesystem path.
|
|
220
|
+
for (const pattern of urlEncodePatterns) {
|
|
221
|
+
path = path.replace(pattern[0], pattern[1]);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
return path;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* Converts a URL to a local filesystem path.
|
|
229
|
+
*/
|
|
230
|
+
export function toFileSystemPath(path: string | undefined, keepFileProtocol?: boolean): string {
|
|
231
|
+
// Step 1: `decodeURI` will decode characters such as Cyrillic characters, spaces, etc.
|
|
232
|
+
path = decodeURI(path!);
|
|
233
|
+
|
|
234
|
+
// Step 2: Manually decode characters that are not decoded by `decodeURI`.
|
|
235
|
+
// This includes characters such as "#" and "?", which have special meaning in URLs,
|
|
236
|
+
// but are just normal characters in a filesystem path.
|
|
237
|
+
for (let i = 0; i < urlDecodePatterns.length; i += 2) {
|
|
238
|
+
path = path.replace(urlDecodePatterns[i], urlDecodePatterns[i + 1] as string);
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
// Step 3: If it's a "file://" URL, then format it consistently
|
|
242
|
+
// or convert it to a local filesystem path
|
|
243
|
+
let isFileUrl = path.substr(0, 7).toLowerCase() === "file://";
|
|
244
|
+
if (isFileUrl) {
|
|
245
|
+
// Strip-off the protocol, and the initial "/", if there is one
|
|
246
|
+
path = path[7] === "/" ? path.substr(8) : path.substr(7);
|
|
247
|
+
|
|
248
|
+
// insert a colon (":") after the drive letter on Windows
|
|
249
|
+
if (isWindows() && path[1] === "/") {
|
|
250
|
+
path = path[0] + ":" + path.substr(1);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
if (keepFileProtocol) {
|
|
254
|
+
// Return the consistently-formatted "file://" URL
|
|
255
|
+
path = "file:///" + path;
|
|
256
|
+
} else {
|
|
257
|
+
// Convert the "file://" URL to a local filesystem path.
|
|
258
|
+
// On Windows, it will start with something like "C:/".
|
|
259
|
+
// On Posix, it will start with "/"
|
|
260
|
+
isFileUrl = false;
|
|
261
|
+
path = isWindows() ? path : "/" + path;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
// Step 4: Normalize Windows paths (unless it's a "file://" URL)
|
|
266
|
+
if (isWindows() && !isFileUrl) {
|
|
267
|
+
// Replace forward slashes with backslashes
|
|
268
|
+
path = path.replace(forwardSlashPattern, "\\");
|
|
269
|
+
|
|
270
|
+
// Capitalize the drive letter
|
|
271
|
+
if (path.substr(1, 2) === ":\\") {
|
|
272
|
+
path = path[0].toUpperCase() + path.substr(1);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
return path;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/**
|
|
280
|
+
* Converts a $ref pointer to a valid JSON Path.
|
|
281
|
+
*
|
|
282
|
+
* @param pointer
|
|
283
|
+
* @returns
|
|
284
|
+
*/
|
|
285
|
+
export function safePointerToPath(pointer: any) {
|
|
286
|
+
if (pointer.length <= 1 || pointer[0] !== "#" || pointer[1] !== "/") {
|
|
287
|
+
return [];
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
return pointer
|
|
291
|
+
.slice(2)
|
|
292
|
+
.split("/")
|
|
293
|
+
.map((value: any) => {
|
|
294
|
+
return decodeURIComponent(value).replace(jsonPointerSlash, "/").replace(jsonPointerTilde, "~");
|
|
295
|
+
});
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
export function relative(from: string, to: string) {
|
|
299
|
+
if (!isFileSystemPath(from) || !isFileSystemPath(to)) {
|
|
300
|
+
return resolve(from, to);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
const fromDir = path.dirname(stripHash(from));
|
|
304
|
+
const toPath = stripHash(to);
|
|
305
|
+
|
|
306
|
+
const result = path.relative(fromDir, toPath);
|
|
307
|
+
return result + getHash(to);
|
|
308
|
+
}
|