@nocobase/plugin-mcp-server 2.1.0-alpha.16 → 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.
Files changed (1097) hide show
  1. package/dist/externalVersion.js +6 -6
  2. package/dist/node_modules/@apidevtools/json-schema-ref-parser/README.md +11 -15
  3. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/bundle.js +21 -11
  4. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/dereference.js +101 -28
  5. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/index.d.ts +31 -30
  6. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/index.js +23 -11
  7. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/options.d.ts +16 -292
  8. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parse.d.ts +1 -1
  9. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parse.js +20 -11
  10. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/pointer.d.ts +1 -0
  11. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/pointer.js +36 -12
  12. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/ref.js +42 -5
  13. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/refs.d.ts +5 -5
  14. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/refs.js +23 -14
  15. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolve-external.js +17 -7
  16. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/file.js +23 -10
  17. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/http.js +34 -13
  18. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/types/index.d.ts +7 -3
  19. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/errors.d.ts +18 -2
  20. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/errors.js +53 -6
  21. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/plugins.d.ts +2 -2
  22. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/url.d.ts +7 -0
  23. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/url.js +190 -18
  24. package/dist/node_modules/@apidevtools/json-schema-ref-parser/dist/vite.config.js +1 -0
  25. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/bundle.ts +10 -4
  26. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/dereference.ts +94 -21
  27. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/index.ts +34 -43
  28. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/options.ts +17 -0
  29. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/parse.ts +3 -4
  30. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/pointer.ts +25 -6
  31. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/ref.ts +10 -2
  32. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/refs.ts +7 -8
  33. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/resolvers/file.ts +6 -3
  34. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/resolvers/http.ts +20 -11
  35. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/types/index.ts +8 -3
  36. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/util/errors.ts +67 -10
  37. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/util/plugins.ts +6 -7
  38. package/dist/node_modules/@apidevtools/json-schema-ref-parser/lib/util/url.ts +195 -10
  39. package/dist/node_modules/@apidevtools/json-schema-ref-parser/package.json +34 -35
  40. package/dist/node_modules/@apidevtools/swagger-parser/README.md +39 -63
  41. package/dist/node_modules/@apidevtools/swagger-parser/lib/index.d.ts +171 -247
  42. package/dist/node_modules/@apidevtools/swagger-parser/lib/index.js +32 -52
  43. package/dist/node_modules/@apidevtools/swagger-parser/lib/options.js +4 -7
  44. package/dist/node_modules/@apidevtools/swagger-parser/lib/util.js +11 -13
  45. package/dist/node_modules/@apidevtools/swagger-parser/lib/validators/schema.js +9 -10
  46. package/dist/node_modules/@apidevtools/swagger-parser/lib/validators/spec.js +51 -51
  47. package/dist/node_modules/@apidevtools/swagger-parser/package.json +36 -35
  48. package/dist/node_modules/light-my-request/package.json +1 -1
  49. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/LICENSE +21 -0
  50. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/README.md +168 -0
  51. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/bundle.d.ts +27 -0
  52. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/bundle.js +283 -0
  53. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/dereference.d.ts +12 -0
  54. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/dereference.js +216 -0
  55. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/index.d.ts +162 -0
  56. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/index.js +206 -0
  57. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/normalize-args.d.ts +13 -0
  58. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/normalize-args.js +55 -0
  59. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/options.d.ts +387 -0
  60. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/options.js +122 -0
  61. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parse.d.ts +8 -0
  62. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parse.js +169 -0
  63. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/binary.d.ts +3 -0
  64. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/binary.js +35 -0
  65. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/json.d.ts +3 -0
  66. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/json.js +62 -0
  67. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/text.d.ts +3 -0
  68. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/text.js +42 -0
  69. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/yaml.d.ts +3 -0
  70. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/parsers/yaml.js +52 -0
  71. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/pointer.d.ts +88 -0
  72. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/pointer.js +283 -0
  73. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/ref.d.ts +181 -0
  74. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/ref.js +243 -0
  75. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/refs.d.ts +127 -0
  76. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/refs.js +222 -0
  77. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolve-external.d.ts +15 -0
  78. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolve-external.js +133 -0
  79. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/file.d.ts +3 -0
  80. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/file.js +64 -0
  81. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/http.d.ts +3 -0
  82. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/resolvers/http.js +137 -0
  83. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/types/index.d.ts +114 -0
  84. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/types/index.js +2 -0
  85. 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
  86. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/convert-path-to-posix.js +14 -0
  87. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/errors.d.ts +57 -0
  88. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/errors.js +112 -0
  89. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/is-windows.d.ts +1 -0
  90. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/is-windows.js +6 -0
  91. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/maybe.d.ts +3 -0
  92. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/maybe.js +24 -0
  93. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/next.d.ts +2 -0
  94. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/next.js +16 -0
  95. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/plugins.d.ts +34 -0
  96. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/plugins.js +132 -0
  97. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/url.d.ts +94 -0
  98. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/lib/util/url.js +319 -0
  99. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/vite.config.d.ts +2 -0
  100. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/dist/vite.config.js +18 -0
  101. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/bundle.ts +299 -0
  102. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/dereference.ts +288 -0
  103. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/index.ts +453 -0
  104. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/normalize-args.ts +68 -0
  105. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/options.ts +232 -0
  106. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/parse.ts +170 -0
  107. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/parsers/binary.ts +39 -0
  108. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/parsers/json.ts +64 -0
  109. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/parsers/text.ts +46 -0
  110. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/parsers/yaml.ts +52 -0
  111. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/pointer.ts +327 -0
  112. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/ref.ts +298 -0
  113. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/refs.ts +239 -0
  114. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/resolve-external.ts +136 -0
  115. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/resolvers/file.ts +39 -0
  116. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/resolvers/http.ts +131 -0
  117. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/types/index.ts +151 -0
  118. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/convert-path-to-posix.ts +11 -0
  119. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/errors.ts +157 -0
  120. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/is-windows.ts +2 -0
  121. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/maybe.ts +22 -0
  122. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/next.ts +13 -0
  123. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/plugins.ts +160 -0
  124. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/lib/util/url.ts +308 -0
  125. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/json-schema-ref-parser/package.json +111 -0
  126. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/LICENSE +21 -0
  127. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/README.md +146 -0
  128. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/index.d.ts +439 -0
  129. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/index.js +206 -0
  130. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/options.js +74 -0
  131. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/util.js +79 -0
  132. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/validators/schema.js +93 -0
  133. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/lib/validators/spec.js +352 -0
  134. package/dist/node_modules/openapi-mcp-generator/node_modules/@apidevtools/swagger-parser/package.json +87 -0
  135. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/.runkit_example.js +23 -0
  136. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/LICENSE +22 -0
  137. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/README.md +207 -0
  138. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2019.d.ts +19 -0
  139. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2019.js +61 -0
  140. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2019.js.map +1 -0
  141. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2020.d.ts +19 -0
  142. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2020.js +55 -0
  143. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/2020.js.map +1 -0
  144. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/ajv.d.ts +18 -0
  145. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/ajv.js +50 -0
  146. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/ajv.js.map +1 -0
  147. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
  148. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/code.js +156 -0
  149. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
  150. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
  151. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/index.js +697 -0
  152. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
  153. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
  154. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
  155. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
  156. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/errors.d.ts +13 -0
  157. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/errors.js +123 -0
  158. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/errors.js.map +1 -0
  159. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/index.d.ts +80 -0
  160. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/index.js +242 -0
  161. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/index.js.map +1 -0
  162. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
  163. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
  164. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
  165. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
  166. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/serialize.js +236 -0
  167. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
  168. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
  169. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/types.js +14 -0
  170. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
  171. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/names.d.ts +20 -0
  172. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/names.js +28 -0
  173. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/names.js.map +1 -0
  174. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
  175. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/ref_error.js +12 -0
  176. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
  177. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
  178. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/resolve.js +155 -0
  179. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/resolve.js.map +1 -0
  180. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/rules.d.ts +28 -0
  181. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/rules.js +26 -0
  182. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/rules.js.map +1 -0
  183. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/util.d.ts +40 -0
  184. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/util.js +178 -0
  185. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/util.js.map +1 -0
  186. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
  187. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
  188. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
  189. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
  190. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
  191. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
  192. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
  193. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
  194. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
  195. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
  196. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
  197. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
  198. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
  199. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/index.js +520 -0
  200. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
  201. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
  202. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
  203. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
  204. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
  205. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
  206. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
  207. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/core.d.ts +174 -0
  208. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/core.js +618 -0
  209. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/core.js.map +1 -0
  210. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/jtd.d.ts +47 -0
  211. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/jtd.js +72 -0
  212. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/jtd.js.map +1 -0
  213. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/data.json +13 -0
  214. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
  215. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
  216. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
  217. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
  218. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
  219. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
  220. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
  221. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  222. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
  223. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
  224. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
  225. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
  226. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
  227. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
  228. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
  229. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
  230. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  231. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  232. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  233. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
  234. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
  235. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
  236. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
  237. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
  238. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
  239. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
  240. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
  241. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
  242. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/equal.js +7 -0
  243. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/equal.js.map +1 -0
  244. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
  245. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/parseJson.js +185 -0
  246. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
  247. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
  248. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/quote.js +30 -0
  249. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/quote.js.map +1 -0
  250. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
  251. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/re2.js +6 -0
  252. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/re2.js.map +1 -0
  253. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
  254. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/timestamp.js +42 -0
  255. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
  256. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
  257. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
  258. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
  259. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
  260. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/uri.js +6 -0
  261. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/uri.js.map +1 -0
  262. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
  263. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/validation_error.js +11 -0
  264. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
  265. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/index.d.ts +6 -0
  266. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/index.js +90 -0
  267. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/index.js.map +1 -0
  268. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
  269. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/instance.js +35 -0
  270. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/standalone/instance.js.map +1 -0
  271. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/index.d.ts +183 -0
  272. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/index.js +3 -0
  273. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/index.js.map +1 -0
  274. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
  275. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/json-schema.js +3 -0
  276. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/json-schema.js.map +1 -0
  277. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
  278. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/jtd-schema.js +3 -0
  279. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
  280. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
  281. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
  282. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
  283. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
  284. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
  285. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
  286. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
  287. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
  288. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
  289. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
  290. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
  291. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
  292. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
  293. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
  294. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
  295. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
  296. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
  297. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
  298. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
  299. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
  300. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
  301. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
  302. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
  303. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
  304. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
  305. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
  306. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
  307. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
  308. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
  309. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
  310. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
  311. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
  312. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
  313. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
  314. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
  315. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
  316. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
  317. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
  318. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
  319. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
  320. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
  321. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
  322. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
  323. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
  324. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
  325. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
  326. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
  327. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
  328. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
  329. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
  330. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
  331. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
  332. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
  333. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
  334. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
  335. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/code.js +131 -0
  336. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
  337. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
  338. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
  339. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
  340. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
  341. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
  342. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
  343. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
  344. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
  345. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
  346. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
  347. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
  348. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
  349. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
  350. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
  351. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
  352. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
  353. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
  354. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
  355. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
  356. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
  357. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
  358. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
  359. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
  360. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
  361. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
  362. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
  363. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
  364. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
  365. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
  366. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
  367. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
  368. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
  369. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
  370. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
  371. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
  372. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
  373. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
  374. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/errors.js +3 -0
  375. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
  376. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
  377. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
  378. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
  379. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
  380. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
  381. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
  382. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
  383. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
  384. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
  385. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
  386. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
  387. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
  388. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
  389. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
  390. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
  391. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
  392. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
  393. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
  394. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
  395. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
  396. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
  397. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
  398. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
  399. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
  400. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
  401. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
  402. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
  403. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
  404. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
  405. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
  406. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
  407. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
  408. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
  409. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
  410. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
  411. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
  412. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
  413. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
  414. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
  415. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
  416. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
  417. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
  418. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
  419. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
  420. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
  421. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
  422. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
  423. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
  424. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
  425. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/next.js +8 -0
  426. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
  427. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
  428. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
  429. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
  430. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
  431. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
  432. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
  433. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
  434. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
  435. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
  436. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
  437. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
  438. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
  439. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
  440. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
  441. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
  442. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
  443. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
  444. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
  445. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
  446. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
  447. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
  448. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
  449. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
  450. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
  451. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
  452. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
  453. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
  454. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
  455. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
  456. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
  457. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
  458. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
  459. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
  460. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
  461. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
  462. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
  463. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
  464. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
  465. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
  466. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
  467. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/pattern.js +33 -0
  468. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
  469. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
  470. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
  471. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
  472. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
  473. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
  474. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
  475. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/2019.ts +81 -0
  476. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/2020.ts +75 -0
  477. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/ajv.ts +70 -0
  478. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
  479. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
  480. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
  481. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/errors.ts +184 -0
  482. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/index.ts +324 -0
  483. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
  484. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/jtd/serialize.ts +277 -0
  485. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
  486. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/names.ts +27 -0
  487. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/ref_error.ts +13 -0
  488. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/resolve.ts +149 -0
  489. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/rules.ts +50 -0
  490. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/util.ts +213 -0
  491. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
  492. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
  493. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
  494. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
  495. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/index.ts +582 -0
  496. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
  497. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
  498. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/core.ts +892 -0
  499. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/jtd.ts +132 -0
  500. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/data.json +13 -0
  501. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
  502. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
  503. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
  504. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
  505. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
  506. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
  507. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
  508. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
  509. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
  510. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
  511. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
  512. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
  513. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  514. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  515. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  516. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
  517. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
  518. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
  519. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
  520. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
  521. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
  522. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/equal.ts +7 -0
  523. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
  524. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/quote.ts +31 -0
  525. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/re2.ts +6 -0
  526. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
  527. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
  528. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/uri.ts +6 -0
  529. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
  530. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/standalone/index.ts +100 -0
  531. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/standalone/instance.ts +36 -0
  532. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/types/index.ts +244 -0
  533. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/types/json-schema.ts +187 -0
  534. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
  535. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
  536. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
  537. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
  538. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
  539. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
  540. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
  541. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
  542. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
  543. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
  544. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
  545. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
  546. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
  547. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
  548. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
  549. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
  550. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
  551. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
  552. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
  553. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/code.ts +168 -0
  554. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
  555. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
  556. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
  557. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
  558. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
  559. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
  560. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
  561. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
  562. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
  563. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
  564. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
  565. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
  566. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
  567. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
  568. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
  569. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
  570. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
  571. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
  572. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
  573. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
  574. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
  575. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
  576. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
  577. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
  578. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
  579. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
  580. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
  581. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
  582. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
  583. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/next.ts +8 -0
  584. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
  585. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
  586. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
  587. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
  588. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
  589. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
  590. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
  591. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
  592. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
  593. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
  594. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
  595. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
  596. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
  597. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/pattern.ts +39 -0
  598. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
  599. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
  600. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv/package.json +127 -0
  601. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/LICENSE +21 -0
  602. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/README.md +40 -0
  603. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/index.d.ts +17 -0
  604. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/index.js +50 -0
  605. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/index.js.map +1 -0
  606. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/refs/json-schema-draft-04.json +138 -0
  607. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/core.d.ts +3 -0
  608. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/core.js +13 -0
  609. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/core.js.map +1 -0
  610. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/draft4.d.ts +3 -0
  611. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/draft4.js +16 -0
  612. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/draft4.js.map +1 -0
  613. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/index.d.ts +16 -0
  614. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/index.js +35 -0
  615. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/index.js.map +1 -0
  616. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumber.d.ts +12 -0
  617. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumber.js +44 -0
  618. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumber.js.map +1 -0
  619. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumberExclusive.d.ts +3 -0
  620. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumberExclusive.js +19 -0
  621. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/dist/vocabulary/validation/limitNumberExclusive.js.map +1 -0
  622. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/.runkit_example.js +23 -0
  623. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/LICENSE +22 -0
  624. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/README.md +207 -0
  625. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2019.d.ts +19 -0
  626. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2019.js +61 -0
  627. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2019.js.map +1 -0
  628. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2020.d.ts +19 -0
  629. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2020.js +55 -0
  630. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/2020.js.map +1 -0
  631. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/ajv.d.ts +18 -0
  632. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/ajv.js +50 -0
  633. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/ajv.js.map +1 -0
  634. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
  635. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/code.js +155 -0
  636. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
  637. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
  638. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/index.js +697 -0
  639. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
  640. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
  641. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
  642. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
  643. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/errors.d.ts +13 -0
  644. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/errors.js +123 -0
  645. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/errors.js.map +1 -0
  646. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/index.d.ts +80 -0
  647. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/index.js +242 -0
  648. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/index.js.map +1 -0
  649. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
  650. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
  651. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
  652. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
  653. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/serialize.js +229 -0
  654. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
  655. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
  656. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/types.js +14 -0
  657. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
  658. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/names.d.ts +20 -0
  659. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/names.js +28 -0
  660. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/names.js.map +1 -0
  661. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
  662. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/ref_error.js +12 -0
  663. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
  664. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
  665. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/resolve.js +155 -0
  666. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/resolve.js.map +1 -0
  667. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/rules.d.ts +28 -0
  668. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/rules.js +26 -0
  669. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/rules.js.map +1 -0
  670. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/util.d.ts +40 -0
  671. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/util.js +178 -0
  672. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/util.js.map +1 -0
  673. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
  674. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
  675. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
  676. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
  677. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
  678. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
  679. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
  680. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
  681. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
  682. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
  683. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
  684. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
  685. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
  686. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/index.js +520 -0
  687. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
  688. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
  689. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
  690. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
  691. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
  692. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
  693. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
  694. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/core.d.ts +173 -0
  695. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/core.js +618 -0
  696. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/core.js.map +1 -0
  697. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/jtd.d.ts +47 -0
  698. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/jtd.js +72 -0
  699. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/jtd.js.map +1 -0
  700. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/data.json +13 -0
  701. 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
  702. 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
  703. 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
  704. 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
  705. 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
  706. 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
  707. 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
  708. 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
  709. 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
  710. 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
  711. 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
  712. 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
  713. 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
  714. 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
  715. 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
  716. 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
  717. 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
  718. 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
  719. 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
  720. 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
  721. 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
  722. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
  723. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
  724. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
  725. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
  726. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
  727. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
  728. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
  729. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/equal.js +7 -0
  730. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/equal.js.map +1 -0
  731. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
  732. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/parseJson.js +185 -0
  733. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
  734. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
  735. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/quote.js +30 -0
  736. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/quote.js.map +1 -0
  737. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
  738. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/re2.js +6 -0
  739. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/re2.js.map +1 -0
  740. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
  741. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/timestamp.js +42 -0
  742. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
  743. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
  744. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
  745. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
  746. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
  747. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/uri.js +6 -0
  748. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/uri.js.map +1 -0
  749. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
  750. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/validation_error.js +11 -0
  751. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
  752. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/index.d.ts +6 -0
  753. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/index.js +90 -0
  754. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/index.js.map +1 -0
  755. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
  756. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/instance.js +35 -0
  757. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/standalone/instance.js.map +1 -0
  758. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/index.d.ts +183 -0
  759. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/index.js +3 -0
  760. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/index.js.map +1 -0
  761. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
  762. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/json-schema.js +3 -0
  763. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/json-schema.js.map +1 -0
  764. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
  765. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/jtd-schema.js +3 -0
  766. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
  767. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
  768. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
  769. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
  770. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
  771. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
  772. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
  773. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
  774. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
  775. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
  776. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
  777. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
  778. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
  779. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
  780. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
  781. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
  782. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
  783. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
  784. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
  785. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
  786. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
  787. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
  788. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
  789. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
  790. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
  791. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
  792. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
  793. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
  794. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
  795. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
  796. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
  797. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
  798. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
  799. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
  800. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
  801. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
  802. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
  803. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
  804. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
  805. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
  806. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
  807. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
  808. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
  809. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
  810. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
  811. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
  812. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
  813. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
  814. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
  815. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
  816. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
  817. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
  818. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
  819. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
  820. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
  821. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
  822. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/code.js +131 -0
  823. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
  824. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
  825. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
  826. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
  827. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
  828. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
  829. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
  830. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
  831. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
  832. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
  833. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
  834. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/index.js +100 -0
  835. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
  836. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
  837. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
  838. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
  839. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
  840. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
  841. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
  842. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
  843. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
  844. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
  845. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
  846. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
  847. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
  848. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
  849. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
  850. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
  851. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
  852. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
  853. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
  854. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
  855. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
  856. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
  857. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
  858. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
  859. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
  860. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
  861. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/errors.js +3 -0
  862. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
  863. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
  864. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
  865. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
  866. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
  867. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
  868. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
  869. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
  870. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
  871. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
  872. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
  873. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
  874. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
  875. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
  876. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
  877. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
  878. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
  879. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
  880. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
  881. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
  882. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
  883. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
  884. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
  885. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
  886. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
  887. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
  888. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
  889. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
  890. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
  891. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
  892. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
  893. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
  894. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
  895. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
  896. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
  897. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
  898. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
  899. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
  900. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
  901. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
  902. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
  903. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
  904. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
  905. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
  906. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
  907. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
  908. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
  909. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
  910. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
  911. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
  912. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/next.js +8 -0
  913. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
  914. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
  915. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
  916. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
  917. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
  918. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
  919. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
  920. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
  921. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
  922. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
  923. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
  924. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
  925. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
  926. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
  927. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
  928. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
  929. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
  930. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
  931. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
  932. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
  933. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
  934. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
  935. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
  936. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
  937. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
  938. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
  939. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
  940. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
  941. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
  942. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
  943. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
  944. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
  945. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
  946. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
  947. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
  948. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
  949. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
  950. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
  951. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
  952. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
  953. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
  954. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
  955. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
  956. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
  957. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
  958. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
  959. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
  960. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
  961. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
  962. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/2019.ts +81 -0
  963. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/2020.ts +75 -0
  964. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/ajv.ts +70 -0
  965. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/codegen/code.ts +168 -0
  966. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
  967. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
  968. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/errors.ts +184 -0
  969. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/index.ts +324 -0
  970. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
  971. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/jtd/serialize.ts +266 -0
  972. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
  973. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/names.ts +27 -0
  974. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/ref_error.ts +13 -0
  975. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/resolve.ts +149 -0
  976. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/rules.ts +50 -0
  977. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/util.ts +213 -0
  978. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
  979. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
  980. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
  981. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
  982. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/index.ts +582 -0
  983. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
  984. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
  985. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/core.ts +891 -0
  986. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/jtd.ts +132 -0
  987. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/data.json +13 -0
  988. 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
  989. 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
  990. 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
  991. 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
  992. 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
  993. 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
  994. 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
  995. 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
  996. 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
  997. 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
  998. 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
  999. 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
  1000. 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
  1001. 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
  1002. 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
  1003. 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
  1004. 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
  1005. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
  1006. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
  1007. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
  1008. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
  1009. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/equal.ts +7 -0
  1010. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
  1011. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/quote.ts +31 -0
  1012. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/re2.ts +6 -0
  1013. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
  1014. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
  1015. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/uri.ts +6 -0
  1016. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
  1017. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/standalone/index.ts +100 -0
  1018. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/standalone/instance.ts +36 -0
  1019. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/types/index.ts +244 -0
  1020. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/types/json-schema.ts +187 -0
  1021. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
  1022. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
  1023. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
  1024. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
  1025. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
  1026. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
  1027. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
  1028. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
  1029. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
  1030. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
  1031. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
  1032. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
  1033. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
  1034. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
  1035. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
  1036. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
  1037. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
  1038. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
  1039. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
  1040. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/code.ts +168 -0
  1041. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
  1042. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
  1043. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
  1044. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/discriminator/index.ts +110 -0
  1045. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
  1046. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
  1047. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
  1048. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
  1049. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
  1050. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
  1051. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
  1052. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
  1053. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
  1054. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
  1055. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
  1056. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
  1057. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
  1058. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
  1059. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
  1060. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
  1061. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
  1062. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
  1063. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
  1064. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
  1065. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
  1066. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
  1067. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
  1068. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
  1069. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
  1070. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/next.ts +8 -0
  1071. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
  1072. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
  1073. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
  1074. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
  1075. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
  1076. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
  1077. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
  1078. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
  1079. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
  1080. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
  1081. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
  1082. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
  1083. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
  1084. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
  1085. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
  1086. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
  1087. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/node_modules/ajv/package.json +126 -0
  1088. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/package.json +74 -0
  1089. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/index.ts +81 -0
  1090. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/refs/json-schema-draft-04.json +138 -0
  1091. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/vocabulary/core.ts +13 -0
  1092. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/vocabulary/draft4.ts +17 -0
  1093. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/vocabulary/validation/index.ts +51 -0
  1094. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/vocabulary/validation/limitNumber.ts +76 -0
  1095. package/dist/node_modules/openapi-mcp-generator/node_modules/ajv-draft-04/src/vocabulary/validation/limitNumberExclusive.ts +26 -0
  1096. package/dist/node_modules/openapi-types/package.json +1 -1
  1097. package/package.json +2 -2
@@ -0,0 +1,222 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ var __importDefault = (this && this.__importDefault) || function (mod) {
26
+ return (mod && mod.__esModule) ? mod : { "default": mod };
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ const ono_1 = require("@jsdevtools/ono");
30
+ const ref_js_1 = __importDefault(require("./ref.js"));
31
+ const url = __importStar(require("./util/url.js"));
32
+ const convert_path_to_posix_1 = __importDefault(require("./util/convert-path-to-posix"));
33
+ /**
34
+ * When you call the resolve method, the value that gets passed to the callback function (or Promise) is a $Refs object. This same object is accessible via the parser.$refs property of $RefParser objects.
35
+ *
36
+ * This object is a map of JSON References and their resolved values. It also has several convenient helper methods that make it easy for you to navigate and manipulate the JSON References.
37
+ *
38
+ * See https://apitools.dev/json-schema-ref-parser/docs/refs.html
39
+ */
40
+ class $Refs {
41
+ /**
42
+ * Returns the paths/URLs of all the files in your schema (including the main schema file).
43
+ *
44
+ * See https://apitools.dev/json-schema-ref-parser/docs/refs.html#pathstypes
45
+ *
46
+ * @param types (optional) Optionally only return certain types of paths ("file", "http", etc.)
47
+ */
48
+ paths(...types) {
49
+ const paths = getPaths(this._$refs, types.flat());
50
+ return paths.map((path) => {
51
+ return (0, convert_path_to_posix_1.default)(path.decoded);
52
+ });
53
+ }
54
+ /**
55
+ * Returns a map of paths/URLs and their correspond values.
56
+ *
57
+ * See https://apitools.dev/json-schema-ref-parser/docs/refs.html#valuestypes
58
+ *
59
+ * @param types (optional) Optionally only return values from certain locations ("file", "http", etc.)
60
+ */
61
+ values(...types) {
62
+ const $refs = this._$refs;
63
+ const paths = getPaths($refs, types.flat());
64
+ return paths.reduce((obj, path) => {
65
+ obj[(0, convert_path_to_posix_1.default)(path.decoded)] = $refs[path.encoded].value;
66
+ return obj;
67
+ }, {});
68
+ }
69
+ /**
70
+ * Returns `true` if the given path exists in the schema; otherwise, returns `false`
71
+ *
72
+ * See https://apitools.dev/json-schema-ref-parser/docs/refs.html#existsref
73
+ *
74
+ * @param $ref The JSON Reference path, optionally with a JSON Pointer in the hash
75
+ */
76
+ /**
77
+ * Determines whether the given JSON reference exists.
78
+ *
79
+ * @param path - The path being resolved, optionally with a JSON pointer in the hash
80
+ * @param [options]
81
+ * @returns
82
+ */
83
+ exists(path, options) {
84
+ try {
85
+ this._resolve(path, "", options);
86
+ return true;
87
+ }
88
+ catch {
89
+ return false;
90
+ }
91
+ }
92
+ /**
93
+ * Resolves the given JSON reference and returns the resolved value.
94
+ *
95
+ * @param path - The path being resolved, with a JSON pointer in the hash
96
+ * @param [options]
97
+ * @returns - Returns the resolved value
98
+ */
99
+ get(path, options) {
100
+ return this._resolve(path, "", options).value;
101
+ }
102
+ /**
103
+ * Sets the value at the given path in the schema. If the property, or any of its parents, don't exist, they will be created.
104
+ *
105
+ * @param path The JSON Reference path, optionally with a JSON Pointer in the hash
106
+ * @param value The value to assign. Can be anything (object, string, number, etc.)
107
+ */
108
+ set(path, value) {
109
+ const absPath = url.resolve(this._root$Ref.path, path);
110
+ const withoutHash = url.stripHash(absPath);
111
+ const $ref = this._$refs[withoutHash];
112
+ if (!$ref) {
113
+ throw (0, ono_1.ono)(`Error resolving $ref pointer "${path}". \n"${withoutHash}" not found.`);
114
+ }
115
+ $ref.set(absPath, value);
116
+ }
117
+ /**
118
+ * Returns the specified {@link $Ref} object, or undefined.
119
+ *
120
+ * @param path - The path being resolved, optionally with a JSON pointer in the hash
121
+ * @returns
122
+ * @protected
123
+ */
124
+ _get$Ref(path) {
125
+ path = url.resolve(this._root$Ref.path, path);
126
+ const withoutHash = url.stripHash(path);
127
+ return this._$refs[withoutHash];
128
+ }
129
+ /**
130
+ * Creates a new {@link $Ref} object and adds it to this {@link $Refs} object.
131
+ *
132
+ * @param path - The file path or URL of the referenced file
133
+ */
134
+ _add(path) {
135
+ const withoutHash = url.stripHash(path);
136
+ const $ref = new ref_js_1.default(this);
137
+ $ref.path = withoutHash;
138
+ this._$refs[withoutHash] = $ref;
139
+ this._root$Ref = this._root$Ref || $ref;
140
+ return $ref;
141
+ }
142
+ /**
143
+ * Resolves the given JSON reference.
144
+ *
145
+ * @param path - The path being resolved, optionally with a JSON pointer in the hash
146
+ * @param pathFromRoot - The path of `obj` from the schema root
147
+ * @param [options]
148
+ * @returns
149
+ * @protected
150
+ */
151
+ _resolve(path, pathFromRoot, options) {
152
+ const absPath = url.resolve(this._root$Ref.path, path);
153
+ const withoutHash = url.stripHash(absPath);
154
+ const $ref = this._$refs[withoutHash];
155
+ if (!$ref) {
156
+ throw (0, ono_1.ono)(`Error resolving $ref pointer "${path}". \n"${withoutHash}" not found.`);
157
+ }
158
+ return $ref.resolve(absPath, options, path, pathFromRoot);
159
+ }
160
+ constructor() {
161
+ /**
162
+ * A map of paths/urls to {@link $Ref} objects
163
+ *
164
+ * @type {object}
165
+ * @protected
166
+ */
167
+ this._$refs = {};
168
+ /**
169
+ * Returns the paths of all the files/URLs that are referenced by the JSON schema,
170
+ * including the schema itself.
171
+ *
172
+ * @param [types] - Only return paths of the given types ("file", "http", etc.)
173
+ * @returns
174
+ */
175
+ /**
176
+ * Returns the map of JSON references and their resolved values.
177
+ *
178
+ * @param [types] - Only return references of the given types ("file", "http", etc.)
179
+ * @returns
180
+ */
181
+ /**
182
+ * Returns a POJO (plain old JavaScript object) for serialization as JSON.
183
+ *
184
+ * @returns {object}
185
+ */
186
+ this.toJSON = this.values;
187
+ /**
188
+ * Indicates whether the schema contains any circular references.
189
+ *
190
+ * @type {boolean}
191
+ */
192
+ this.circular = false;
193
+ this._$refs = {};
194
+ // @ts-ignore
195
+ this._root$Ref = null;
196
+ }
197
+ }
198
+ exports.default = $Refs;
199
+ /**
200
+ * Returns the encoded and decoded paths keys of the given object.
201
+ *
202
+ * @param $refs - The object whose keys are URL-encoded paths
203
+ * @param [types] - Only return paths of the given types ("file", "http", etc.)
204
+ * @returns
205
+ */
206
+ function getPaths($refs, types) {
207
+ let paths = Object.keys($refs);
208
+ // Filter the paths by type
209
+ types = Array.isArray(types[0]) ? types[0] : Array.prototype.slice.call(types);
210
+ if (types.length > 0 && types[0]) {
211
+ paths = paths.filter((key) => {
212
+ return types.includes($refs[key].pathType);
213
+ });
214
+ }
215
+ // Decode local filesystem paths
216
+ return paths.map((path) => {
217
+ return {
218
+ encoded: path,
219
+ decoded: $refs[path].pathType === "file" ? url.toFileSystemPath(path, true) : path,
220
+ };
221
+ });
222
+ }
@@ -0,0 +1,15 @@
1
+ import type { ParserOptions } from "./options.js";
2
+ import type { JSONSchema } from "./types/index.js";
3
+ import type $RefParser from "./index.js";
4
+ /**
5
+ * Crawls the JSON schema, finds all external JSON references, and resolves their values.
6
+ * This method does not mutate the JSON schema. The resolved values are added to {@link $RefParser#$refs}.
7
+ *
8
+ * NOTE: We only care about EXTERNAL references here. INTERNAL references are only relevant when dereferencing.
9
+ *
10
+ * @returns
11
+ * The promise resolves once all JSON references in the schema have been resolved,
12
+ * including nested references that are contained in externally-referenced files.
13
+ */
14
+ declare function resolveExternal<S extends object = JSONSchema, O extends ParserOptions<S> = ParserOptions<S>>(parser: $RefParser<S, O>, options: O): Promise<void> | Promise<any[]>;
15
+ export default resolveExternal;
@@ -0,0 +1,133 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ var __importDefault = (this && this.__importDefault) || function (mod) {
26
+ return (mod && mod.__esModule) ? mod : { "default": mod };
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ const ref_js_1 = __importDefault(require("./ref.js"));
30
+ const pointer_js_1 = __importDefault(require("./pointer.js"));
31
+ const parse_js_1 = __importDefault(require("./parse.js"));
32
+ const url = __importStar(require("./util/url.js"));
33
+ const errors_js_1 = require("./util/errors.js");
34
+ /**
35
+ * Crawls the JSON schema, finds all external JSON references, and resolves their values.
36
+ * This method does not mutate the JSON schema. The resolved values are added to {@link $RefParser#$refs}.
37
+ *
38
+ * NOTE: We only care about EXTERNAL references here. INTERNAL references are only relevant when dereferencing.
39
+ *
40
+ * @returns
41
+ * The promise resolves once all JSON references in the schema have been resolved,
42
+ * including nested references that are contained in externally-referenced files.
43
+ */
44
+ function resolveExternal(parser, options) {
45
+ if (!options.resolve?.external) {
46
+ // Nothing to resolve, so exit early
47
+ return Promise.resolve();
48
+ }
49
+ try {
50
+ // console.log('Resolving $ref pointers in %s', parser.$refs._root$Ref.path);
51
+ const promises = crawl(parser.schema, parser.$refs._root$Ref.path + "#", parser.$refs, options);
52
+ return Promise.all(promises);
53
+ }
54
+ catch (e) {
55
+ return Promise.reject(e);
56
+ }
57
+ }
58
+ /**
59
+ * Recursively crawls the given value, and resolves any external JSON references.
60
+ *
61
+ * @param obj - The value to crawl. If it's not an object or array, it will be ignored.
62
+ * @param path - The full path of `obj`, possibly with a JSON Pointer in the hash
63
+ * @param {boolean} external - Whether `obj` was found in an external document.
64
+ * @param $refs
65
+ * @param options
66
+ * @param seen - Internal.
67
+ *
68
+ * @returns
69
+ * Returns an array of promises. There will be one promise for each JSON reference in `obj`.
70
+ * If `obj` does not contain any JSON references, then the array will be empty.
71
+ * If any of the JSON references point to files that contain additional JSON references,
72
+ * then the corresponding promise will internally reference an array of promises.
73
+ */
74
+ function crawl(obj, path, $refs, options, seen, external) {
75
+ seen || (seen = new Set());
76
+ let promises = [];
77
+ if (obj && typeof obj === "object" && !ArrayBuffer.isView(obj) && !seen.has(obj)) {
78
+ seen.add(obj); // Track previously seen objects to avoid infinite recursion
79
+ if (ref_js_1.default.isExternal$Ref(obj)) {
80
+ promises.push(resolve$Ref(obj, path, $refs, options));
81
+ }
82
+ const keys = Object.keys(obj);
83
+ for (const key of keys) {
84
+ const keyPath = pointer_js_1.default.join(path, key);
85
+ const value = obj[key];
86
+ promises = promises.concat(crawl(value, keyPath, $refs, options, seen, external));
87
+ }
88
+ }
89
+ return promises;
90
+ }
91
+ /**
92
+ * Resolves the given JSON Reference, and then crawls the resulting value.
93
+ *
94
+ * @param $ref - The JSON Reference to resolve
95
+ * @param path - The full path of `$ref`, possibly with a JSON Pointer in the hash
96
+ * @param $refs
97
+ * @param options
98
+ *
99
+ * @returns
100
+ * The promise resolves once all JSON references in the object have been resolved,
101
+ * including nested references that are contained in externally-referenced files.
102
+ */
103
+ async function resolve$Ref($ref, path, $refs, options) {
104
+ const shouldResolveOnCwd = options.dereference?.externalReferenceResolution === "root";
105
+ const resolvedPath = url.resolve(shouldResolveOnCwd ? url.cwd() : path, $ref.$ref);
106
+ const withoutHash = url.stripHash(resolvedPath);
107
+ // $ref.$ref = url.relative($refs._root$Ref.path, resolvedPath);
108
+ // Do we already have this $ref?
109
+ const ref = $refs._$refs[withoutHash];
110
+ if (ref) {
111
+ // We've already parsed this $ref, so use the existing value
112
+ return Promise.resolve(ref.value);
113
+ }
114
+ // Parse the $referenced file/url
115
+ try {
116
+ const result = await (0, parse_js_1.default)(resolvedPath, $refs, options);
117
+ // Crawl the parsed value
118
+ // console.log('Resolving $ref pointers in %s', withoutHash);
119
+ const promises = crawl(result, withoutHash + "#", $refs, options, new Set(), true);
120
+ return Promise.all(promises);
121
+ }
122
+ catch (err) {
123
+ if (!options?.continueOnError || !(0, errors_js_1.isHandledError)(err)) {
124
+ throw err;
125
+ }
126
+ if ($refs._$refs[withoutHash]) {
127
+ err.source = decodeURI(url.stripHash(path));
128
+ err.path = url.safePointerToPath(url.getHash(path));
129
+ }
130
+ return [];
131
+ }
132
+ }
133
+ exports.default = resolveExternal;
@@ -0,0 +1,3 @@
1
+ import type { JSONSchema, ResolverOptions } from "../types/index.js";
2
+ declare const _default: ResolverOptions<JSONSchema>;
3
+ export default _default;
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ var __importDefault = (this && this.__importDefault) || function (mod) {
26
+ return (mod && mod.__esModule) ? mod : { "default": mod };
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ const fs_1 = __importDefault(require("fs"));
30
+ const ono_1 = require("@jsdevtools/ono");
31
+ const url = __importStar(require("../util/url.js"));
32
+ const errors_js_1 = require("../util/errors.js");
33
+ exports.default = {
34
+ /**
35
+ * The order that this resolver will run, in relation to other resolvers.
36
+ */
37
+ order: 100,
38
+ /**
39
+ * Determines whether this resolver can read a given file reference.
40
+ * Resolvers that return true will be tried, in order, until one successfully resolves the file.
41
+ * Resolvers that return false will not be given a chance to resolve the file.
42
+ */
43
+ canRead(file) {
44
+ return url.isFileSystemPath(file.url);
45
+ },
46
+ /**
47
+ * Reads the given file and returns its raw contents as a Buffer.
48
+ */
49
+ async read(file) {
50
+ let path;
51
+ try {
52
+ path = url.toFileSystemPath(file.url);
53
+ }
54
+ catch (err) {
55
+ throw new errors_js_1.ResolverError(ono_1.ono.uri(err, `Malformed URI: ${file.url}`), file.url);
56
+ }
57
+ try {
58
+ return await fs_1.default.promises.readFile(path);
59
+ }
60
+ catch (err) {
61
+ throw new errors_js_1.ResolverError((0, ono_1.ono)(err, `Error opening file "${path}"`), path);
62
+ }
63
+ },
64
+ };
@@ -0,0 +1,3 @@
1
+ import type { HTTPResolverOptions, JSONSchema } from "../types/index.js";
2
+ declare const _default: HTTPResolverOptions<JSONSchema>;
3
+ export default _default;
@@ -0,0 +1,137 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ const ono_1 = require("@jsdevtools/ono");
27
+ const url = __importStar(require("../util/url.js"));
28
+ const errors_js_1 = require("../util/errors.js");
29
+ exports.default = {
30
+ /**
31
+ * The order that this resolver will run, in relation to other resolvers.
32
+ */
33
+ order: 200,
34
+ /**
35
+ * HTTP headers to send when downloading files.
36
+ *
37
+ * @example:
38
+ * {
39
+ * "User-Agent": "JSON Schema $Ref Parser",
40
+ * Accept: "application/json"
41
+ * }
42
+ */
43
+ headers: null,
44
+ /**
45
+ * HTTP request timeout (in milliseconds).
46
+ */
47
+ timeout: 60000, // 60 seconds
48
+ /**
49
+ * The maximum number of HTTP redirects to follow.
50
+ * To disable automatic following of redirects, set this to zero.
51
+ */
52
+ redirects: 5,
53
+ /**
54
+ * The `withCredentials` option of XMLHttpRequest.
55
+ * Set this to `true` if you're downloading files from a CORS-enabled server that requires authentication
56
+ */
57
+ withCredentials: false,
58
+ /**
59
+ * Determines whether this resolver can read a given file reference.
60
+ * Resolvers that return true will be tried in order, until one successfully resolves the file.
61
+ * Resolvers that return false will not be given a chance to resolve the file.
62
+ */
63
+ canRead(file) {
64
+ return url.isHttp(file.url);
65
+ },
66
+ /**
67
+ * Reads the given URL and returns its raw contents as a Buffer.
68
+ */
69
+ read(file) {
70
+ const u = url.parse(file.url);
71
+ if (typeof window !== "undefined" && !u.protocol) {
72
+ // Use the protocol of the current page
73
+ u.protocol = url.parse(location.href).protocol;
74
+ }
75
+ return download(u, this);
76
+ },
77
+ };
78
+ /**
79
+ * Downloads the given file.
80
+ * @returns
81
+ * The promise resolves with the raw downloaded data, or rejects if there is an HTTP error.
82
+ */
83
+ async function download(u, httpOptions, _redirects) {
84
+ u = url.parse(u);
85
+ const redirects = _redirects || [];
86
+ redirects.push(u.href);
87
+ try {
88
+ const res = await get(u, httpOptions);
89
+ if (res.status >= 400) {
90
+ throw (0, ono_1.ono)({ status: res.status }, `HTTP ERROR ${res.status}`);
91
+ }
92
+ else if (res.status >= 300) {
93
+ if (!Number.isNaN(httpOptions.redirects) && redirects.length > httpOptions.redirects) {
94
+ throw new errors_js_1.ResolverError((0, ono_1.ono)({ status: res.status }, `Error downloading ${redirects[0]}. \nToo many redirects: \n ${redirects.join(" \n ")}`));
95
+ }
96
+ else if (!("location" in res.headers) || !res.headers.location) {
97
+ throw (0, ono_1.ono)({ status: res.status }, `HTTP ${res.status} redirect with no location header`);
98
+ }
99
+ else {
100
+ const redirectTo = url.resolve(u.href, res.headers.location);
101
+ return download(redirectTo, httpOptions, redirects);
102
+ }
103
+ }
104
+ else {
105
+ if (res.body) {
106
+ const buf = await res.arrayBuffer();
107
+ return Buffer.from(buf);
108
+ }
109
+ return Buffer.alloc(0);
110
+ }
111
+ }
112
+ catch (err) {
113
+ throw new errors_js_1.ResolverError((0, ono_1.ono)(err, `Error downloading ${u.href}`), u.href);
114
+ }
115
+ }
116
+ /**
117
+ * Sends an HTTP GET request.
118
+ * The promise resolves with the HTTP Response object.
119
+ */
120
+ async function get(u, httpOptions) {
121
+ let controller;
122
+ let timeoutId;
123
+ if (httpOptions.timeout) {
124
+ controller = new AbortController();
125
+ timeoutId = setTimeout(() => controller.abort(), httpOptions.timeout);
126
+ }
127
+ const response = await fetch(u, {
128
+ method: "GET",
129
+ headers: httpOptions.headers || {},
130
+ credentials: httpOptions.withCredentials ? "include" : "same-origin",
131
+ signal: controller ? controller.signal : null,
132
+ });
133
+ if (timeoutId) {
134
+ clearTimeout(timeoutId);
135
+ }
136
+ return response;
137
+ }