@kubb/agent 4.33.0 → 4.33.2

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 (392) hide show
  1. package/.output/nitro.json +1 -1
  2. package/.output/server/chunks/nitro/nitro.mjs +3554 -2113
  3. package/.output/server/chunks/nitro/nitro.mjs.map +1 -1
  4. package/.output/server/chunks/routes/api/health.get.mjs +5 -5
  5. package/.output/server/index.mjs +5 -5
  6. package/.output/server/node_modules/.nitro/picomatch@4.0.3/index.js +17 -0
  7. package/.output/server/node_modules/.nitro/picomatch@4.0.3/lib/constants.js +180 -0
  8. package/.output/server/node_modules/.nitro/picomatch@4.0.3/lib/parse.js +1085 -0
  9. package/.output/server/node_modules/.nitro/picomatch@4.0.3/lib/picomatch.js +341 -0
  10. package/.output/server/node_modules/.nitro/picomatch@4.0.3/lib/scan.js +391 -0
  11. package/.output/server/node_modules/.nitro/picomatch@4.0.3/lib/utils.js +72 -0
  12. package/.output/server/node_modules/.nitro/picomatch@4.0.3/package.json +83 -0
  13. package/.output/server/node_modules/@redocly/ajv/dist/2020.js +55 -0
  14. package/.output/server/node_modules/@redocly/ajv/dist/ajv.js +50 -0
  15. package/.output/server/node_modules/@redocly/ajv/dist/compile/codegen/code.js +156 -0
  16. package/.output/server/node_modules/@redocly/ajv/dist/compile/codegen/index.js +697 -0
  17. package/.output/server/node_modules/@redocly/ajv/dist/compile/codegen/scope.js +143 -0
  18. package/.output/server/node_modules/@redocly/ajv/dist/compile/errors.js +123 -0
  19. package/.output/server/node_modules/@redocly/ajv/dist/compile/index.js +249 -0
  20. package/.output/server/node_modules/@redocly/ajv/dist/compile/names.js +29 -0
  21. package/.output/server/node_modules/@redocly/ajv/dist/compile/ref_error.js +12 -0
  22. package/.output/server/node_modules/@redocly/ajv/dist/compile/resolve.js +155 -0
  23. package/.output/server/node_modules/@redocly/ajv/dist/compile/rules.js +26 -0
  24. package/.output/server/node_modules/@redocly/ajv/dist/compile/util.js +178 -0
  25. package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/applicability.js +19 -0
  26. package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/boolSchema.js +50 -0
  27. package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/dataType.js +203 -0
  28. package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/defaults.js +35 -0
  29. package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/index.js +534 -0
  30. package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/keyword.js +124 -0
  31. package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/subschema.js +81 -0
  32. package/.output/server/node_modules/@redocly/ajv/dist/core.js +632 -0
  33. package/.output/server/node_modules/@redocly/ajv/dist/draft4.js +56 -0
  34. package/.output/server/node_modules/@redocly/ajv/dist/refs/data.json +13 -0
  35. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
  36. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
  37. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
  38. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
  39. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
  40. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
  41. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
  42. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
  43. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
  44. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-draft-04.json +138 -0
  45. package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-draft-07.json +151 -0
  46. package/.output/server/node_modules/@redocly/ajv/dist/runtime/equal.js +7 -0
  47. package/.output/server/node_modules/@redocly/ajv/dist/runtime/ucs2length.js +24 -0
  48. package/.output/server/node_modules/@redocly/ajv/dist/runtime/uri.js +6 -0
  49. package/.output/server/node_modules/@redocly/ajv/dist/runtime/validation_error.js +11 -0
  50. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
  51. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/additionalProperties.js +107 -0
  52. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/allOf.js +23 -0
  53. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
  54. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/contains.js +95 -0
  55. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
  56. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
  57. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/if.js +66 -0
  58. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/index.js +44 -0
  59. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/items.js +52 -0
  60. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/items2020.js +30 -0
  61. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/not.js +26 -0
  62. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
  63. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
  64. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
  65. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/properties.js +55 -0
  66. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
  67. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
  68. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/code.js +138 -0
  69. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/core/id.js +10 -0
  70. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/core/index.js +16 -0
  71. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/core/ref.js +132 -0
  72. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/discriminator/index.js +139 -0
  73. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/discriminator/types.js +9 -0
  74. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/draft2020.js +23 -0
  75. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/draft4.js +29 -0
  76. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/draft7.js +17 -0
  77. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
  78. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
  79. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/dynamic/index.js +9 -0
  80. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
  81. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
  82. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/format/format.js +92 -0
  83. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/format/index.js +6 -0
  84. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/metadata.js +26 -0
  85. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/next.js +8 -0
  86. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/oasContext.js +26 -0
  87. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/unevaluated/index.js +7 -0
  88. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
  89. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +84 -0
  90. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/const.js +25 -0
  91. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
  92. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/draft04/limitNumber.js +43 -0
  93. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/draft04/limitNumberExclusive.js +19 -0
  94. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/enum.js +48 -0
  95. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/index.js +37 -0
  96. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/limitContains.js +15 -0
  97. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/limitItems.js +24 -0
  98. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/limitLength.js +27 -0
  99. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
  100. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
  101. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
  102. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/pattern.js +33 -0
  103. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/readOnly.js +20 -0
  104. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/required.js +86 -0
  105. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
  106. package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/writeOnly.js +20 -0
  107. package/.output/server/node_modules/@redocly/ajv/package.json +130 -0
  108. package/.output/server/node_modules/@redocly/config/lib/common.js +103 -0
  109. package/.output/server/node_modules/@redocly/config/lib/constants/config.js +17 -0
  110. package/.output/server/node_modules/@redocly/config/lib/constants/entities.js +58 -0
  111. package/.output/server/node_modules/@redocly/config/lib/constants/enum.js +6 -0
  112. package/.output/server/node_modules/@redocly/config/lib/constants/shared.js +22 -0
  113. package/.output/server/node_modules/@redocly/config/lib/default-theme-config-schema.js +54 -0
  114. package/.output/server/node_modules/@redocly/config/lib/entities-catalog-config-schema.js +186 -0
  115. package/.output/server/node_modules/@redocly/config/lib/entities-catalog-entity-file-schema.js +283 -0
  116. package/.output/server/node_modules/@redocly/config/lib/ex-theme-config-schemas.js +682 -0
  117. package/.output/server/node_modules/@redocly/config/lib/feedback-config-schema.js +88 -0
  118. package/.output/server/node_modules/@redocly/config/lib/graphql-config-schema.js +157 -0
  119. package/.output/server/node_modules/@redocly/config/lib/index.js +41 -0
  120. package/.output/server/node_modules/@redocly/config/lib/product-override-schema.js +43 -0
  121. package/.output/server/node_modules/@redocly/config/lib/redoc-config-schema.js +120 -0
  122. package/.output/server/node_modules/@redocly/config/lib/reference-docs-config-schema.js +518 -0
  123. package/.output/server/node_modules/@redocly/config/lib/remove-property-recursively.js +25 -0
  124. package/.output/server/node_modules/@redocly/config/lib/reunite-config-schema.js +103 -0
  125. package/.output/server/node_modules/@redocly/config/lib/root-config-schema.js +558 -0
  126. package/.output/server/node_modules/@redocly/config/lib/scorecards-config-schema.js +242 -0
  127. package/.output/server/node_modules/@redocly/config/lib/types/api-functions-types.js +3 -0
  128. package/.output/server/node_modules/@redocly/config/lib/types/catalog-entity-types.js +3 -0
  129. package/.output/server/node_modules/@redocly/config/lib/types/code-walkthrough-types.js +3 -0
  130. package/.output/server/node_modules/@redocly/config/lib/types/config-types.js +3 -0
  131. package/.output/server/node_modules/@redocly/config/lib/types/index.js +21 -0
  132. package/.output/server/node_modules/@redocly/config/lib/types/portal-shared-types.js +18 -0
  133. package/.output/server/node_modules/@redocly/config/package.json +28 -0
  134. package/.output/server/node_modules/@redocly/openapi-core/lib/bundle/bundle-document.js +85 -0
  135. package/.output/server/node_modules/@redocly/openapi-core/lib/bundle/bundle-visitor.js +257 -0
  136. package/.output/server/node_modules/@redocly/openapi-core/lib/bundle/bundle.js +74 -0
  137. package/.output/server/node_modules/@redocly/openapi-core/lib/config/all.js +310 -0
  138. package/.output/server/node_modules/@redocly/openapi-core/lib/config/builtIn.js +58 -0
  139. package/.output/server/node_modules/@redocly/openapi-core/lib/config/bundle-extends.js +27 -0
  140. package/.output/server/node_modules/@redocly/openapi-core/lib/config/config-resolvers.js +335 -0
  141. package/.output/server/node_modules/@redocly/openapi-core/lib/config/config.js +338 -0
  142. package/.output/server/node_modules/@redocly/openapi-core/lib/config/constants.js +13 -0
  143. package/.output/server/node_modules/@redocly/openapi-core/lib/config/get-resolve-config.js +9 -0
  144. package/.output/server/node_modules/@redocly/openapi-core/lib/config/group-assertion-rules.js +51 -0
  145. package/.output/server/node_modules/@redocly/openapi-core/lib/config/index.js +8 -0
  146. package/.output/server/node_modules/@redocly/openapi-core/lib/config/load.js +98 -0
  147. package/.output/server/node_modules/@redocly/openapi-core/lib/config/minimal.js +289 -0
  148. package/.output/server/node_modules/@redocly/openapi-core/lib/config/recommended-strict.js +289 -0
  149. package/.output/server/node_modules/@redocly/openapi-core/lib/config/recommended.js +289 -0
  150. package/.output/server/node_modules/@redocly/openapi-core/lib/config/rules.js +35 -0
  151. package/.output/server/node_modules/@redocly/openapi-core/lib/config/spec.js +289 -0
  152. package/.output/server/node_modules/@redocly/openapi-core/lib/config/types.js +2 -0
  153. package/.output/server/node_modules/@redocly/openapi-core/lib/config/utils.js +129 -0
  154. package/.output/server/node_modules/@redocly/openapi-core/lib/config/visitors.js +99 -0
  155. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/arazzo/index.js +2 -0
  156. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/async2/index.js +2 -0
  157. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/async3/index.js +2 -0
  158. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/filters/filter-helper.js +65 -0
  159. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/filters/filter-in.js +14 -0
  160. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/filters/filter-out.js +14 -0
  161. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/info-description-override.js +21 -0
  162. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/info-override.js +14 -0
  163. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/media-type-examples-override.js +58 -0
  164. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/operation-description-override.js +27 -0
  165. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/remove-x-internal.js +68 -0
  166. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/tag-description-override.js +23 -0
  167. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/oas2/index.js +19 -0
  168. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/oas2/remove-unused-components.js +88 -0
  169. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/oas3/index.js +21 -0
  170. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/oas3/remove-unused-components.js +116 -0
  171. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/openrpc/index.js +2 -0
  172. package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/overlay1/index.js +2 -0
  173. package/.output/server/node_modules/@redocly/openapi-core/lib/detect-spec.js +79 -0
  174. package/.output/server/node_modules/@redocly/openapi-core/lib/env.js +5 -0
  175. package/.output/server/node_modules/@redocly/openapi-core/lib/errors/yaml-parse-error.js +14 -0
  176. package/.output/server/node_modules/@redocly/openapi-core/lib/format/codeframes.js +177 -0
  177. package/.output/server/node_modules/@redocly/openapi-core/lib/format/format.js +365 -0
  178. package/.output/server/node_modules/@redocly/openapi-core/lib/index.js +49 -0
  179. package/.output/server/node_modules/@redocly/openapi-core/lib/js-yaml/index.js +11 -0
  180. package/.output/server/node_modules/@redocly/openapi-core/lib/lint-entity.js +171 -0
  181. package/.output/server/node_modules/@redocly/openapi-core/lib/lint.js +123 -0
  182. package/.output/server/node_modules/@redocly/openapi-core/lib/logger.js +56 -0
  183. package/.output/server/node_modules/@redocly/openapi-core/lib/oas-types.js +35 -0
  184. package/.output/server/node_modules/@redocly/openapi-core/lib/ref-utils.js +109 -0
  185. package/.output/server/node_modules/@redocly/openapi-core/lib/resolve.js +326 -0
  186. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/ajv.js +106 -0
  187. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/criteria-unique.js +68 -0
  188. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/index.js +52 -0
  189. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/outputs-defined.js +139 -0
  190. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/parameters-unique.js +27 -0
  191. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/requestBody-replacements-unique.js +30 -0
  192. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/sourceDescription-type.js +19 -0
  193. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/sourceDescriptions-name-unique.js +21 -0
  194. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/sourceDescriptions-not-empty.js +15 -0
  195. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/step-onFailure-unique.js +27 -0
  196. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/step-onSuccess-unique.js +27 -0
  197. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/stepId-unique.js +23 -0
  198. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/workflow-dependsOn.js +53 -0
  199. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/workflowId-unique.js +19 -0
  200. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async2/channels-kebab-case.js +16 -0
  201. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async2/index.js +32 -0
  202. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async2/no-channel-trailing-slash.js +13 -0
  203. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async3/channels-kebab-case.js +16 -0
  204. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async3/index.js +32 -0
  205. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async3/no-channel-trailing-slash.js +13 -0
  206. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/catalog-entity/entity-key-valid.js +39 -0
  207. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/assertions/asserts.js +269 -0
  208. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/assertions/index.js +22 -0
  209. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/assertions/utils.js +215 -0
  210. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/info-contact.js +14 -0
  211. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/info-license-strict.js +23 -0
  212. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/info-license.js +14 -0
  213. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-ambiguous-paths.js +42 -0
  214. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-duplicated-tag-names.js +21 -0
  215. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-enum-type-mismatch.js +38 -0
  216. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-http-verbs-in-paths.js +31 -0
  217. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-identical-paths.js +21 -0
  218. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-invalid-parameter-examples.js +32 -0
  219. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-invalid-schema-examples.js +34 -0
  220. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-path-trailing-slash.js +13 -0
  221. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-required-schema-properties-undefined.js +78 -0
  222. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-schema-type-mismatch.js +19 -0
  223. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-unresolved-refs.js +42 -0
  224. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-2xx-response.js +20 -0
  225. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-4xx-response.js +20 -0
  226. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-description.js +9 -0
  227. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-operationId-unique.js +17 -0
  228. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-operationId-url-safe.js +15 -0
  229. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-operationId.js +13 -0
  230. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-parameters-unique.js +37 -0
  231. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-singular-tag.js +13 -0
  232. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-summary.js +9 -0
  233. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-tag-defined.js +27 -0
  234. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/parameter-description.js +19 -0
  235. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/path-declaration-must-exist.js +13 -0
  236. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/path-http-verbs-order.js +23 -0
  237. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/path-not-include-query.js +15 -0
  238. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/path-params-defined.js +145 -0
  239. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/path-segment-plural.js +30 -0
  240. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/paths-kebab-case.js +17 -0
  241. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/required-string-property-missing-min-length.js +34 -0
  242. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/response-contains-header.js +26 -0
  243. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/scalar-property-missing-example.js +39 -0
  244. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/security-defined.js +62 -0
  245. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/spec-strict-refs.js +27 -0
  246. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/struct.js +150 -0
  247. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/tag-description.js +9 -0
  248. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/tags-alphabetical.js +18 -0
  249. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas2/boolean-parameter-prefixes.js +19 -0
  250. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas2/index.js +93 -0
  251. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas2/request-mime-type.js +14 -0
  252. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas2/response-contains-property.js +34 -0
  253. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas2/response-mime-type.js +14 -0
  254. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/array-parameter-serialization.js +26 -0
  255. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/boolean-parameter-prefixes.js +21 -0
  256. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/component-name-unique.js +130 -0
  257. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/index.js +129 -0
  258. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-empty-servers.js +20 -0
  259. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-example-value-and-externalValue.js +13 -0
  260. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-invalid-media-type-examples.js +59 -0
  261. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-server-example.com.js +15 -0
  262. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-server-trailing-slash.js +15 -0
  263. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-server-variables-empty-enum.js +58 -0
  264. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-undefined-server-variable.js +28 -0
  265. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-unused-components.js +83 -0
  266. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/nullable-type-sibling.js +15 -0
  267. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/operation-4xx-problem-details-rfc7807.js +33 -0
  268. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/request-mime-type.js +28 -0
  269. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/response-contains-property.js +36 -0
  270. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/response-mime-type.js +28 -0
  271. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-components-invalid-map-name.js +59 -0
  272. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-discriminator-defaultMapping.js +32 -0
  273. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-example-values.js +31 -0
  274. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-no-invalid-encoding-combinations.js +16 -0
  275. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-no-invalid-tag-parents.js +38 -0
  276. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-querystring-parameters.js +65 -0
  277. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/openrpc/index.js +20 -0
  278. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/openrpc/no-unused-components.js +82 -0
  279. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/openrpc/spec-no-duplicated-method-params.js +28 -0
  280. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/openrpc/spec-no-required-params-after-optional.js +31 -0
  281. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/other/stats.js +190 -0
  282. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/overlay1/index.js +12 -0
  283. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/no-criteria-xpath.js +20 -0
  284. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/no-x-security-both-scheme-and-scheme-name.js +30 -0
  285. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/no-x-security-scheme-name-without-openapi.js +25 -0
  286. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/respect-supported-versions.js +18 -0
  287. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/x-security-scheme-name-reference.js +35 -0
  288. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/x-security-scheme-required-values.js +60 -0
  289. package/.output/server/node_modules/@redocly/openapi-core/lib/rules/utils.js +172 -0
  290. package/.output/server/node_modules/@redocly/openapi-core/lib/types/arazzo.js +482 -0
  291. package/.output/server/node_modules/@redocly/openapi-core/lib/types/asyncapi2.js +1157 -0
  292. package/.output/server/node_modules/@redocly/openapi-core/lib/types/asyncapi3.js +511 -0
  293. package/.output/server/node_modules/@redocly/openapi-core/lib/types/entity.js +32 -0
  294. package/.output/server/node_modules/@redocly/openapi-core/lib/types/index.js +90 -0
  295. package/.output/server/node_modules/@redocly/openapi-core/lib/types/json-schema-adapter.js +181 -0
  296. package/.output/server/node_modules/@redocly/openapi-core/lib/types/json-schema-draft7.shared.js +101 -0
  297. package/.output/server/node_modules/@redocly/openapi-core/lib/types/oas2.js +454 -0
  298. package/.output/server/node_modules/@redocly/openapi-core/lib/types/oas3.js +828 -0
  299. package/.output/server/node_modules/@redocly/openapi-core/lib/types/oas3_1.js +292 -0
  300. package/.output/server/node_modules/@redocly/openapi-core/lib/types/oas3_2.js +306 -0
  301. package/.output/server/node_modules/@redocly/openapi-core/lib/types/openrpc.js +360 -0
  302. package/.output/server/node_modules/@redocly/openapi-core/lib/types/overlay.js +61 -0
  303. package/.output/server/node_modules/@redocly/openapi-core/lib/types/redocly-yaml.js +573 -0
  304. package/.output/server/node_modules/@redocly/openapi-core/lib/typings/arazzo.js +3 -0
  305. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/assign-config.js +28 -0
  306. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/dequal.js +36 -0
  307. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/does-yaml-file-exist.js +7 -0
  308. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/error.js +3 -0
  309. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/get-intersection-length.js +11 -0
  310. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/get-matching-status-code-range.js +4 -0
  311. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/get-own.js +4 -0
  312. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/identity.js +4 -0
  313. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-custom-rule-id.js +4 -0
  314. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-defined.js +4 -0
  315. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-empty-array.js +4 -0
  316. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-empty-object.js +5 -0
  317. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-not-empty-array.js +4 -0
  318. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-not-empty-object.js +6 -0
  319. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-not-string.js +5 -0
  320. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-ordered.js +27 -0
  321. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-path-parameter.js +4 -0
  322. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-plain-object.js +4 -0
  323. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-string.js +4 -0
  324. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-truthy.js +4 -0
  325. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/keys-of.js +6 -0
  326. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/make-ref-id.js +4 -0
  327. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/next-tick.js +6 -0
  328. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/oas-has-component.js +4 -0
  329. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/omit.js +8 -0
  330. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/pause.js +4 -0
  331. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/pluralize.js +8 -0
  332. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/read-file-from-url.js +26 -0
  333. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/regex-from-string.js +5 -0
  334. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/scorecards.js +99 -0
  335. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/slash.js +11 -0
  336. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/split-camel-case-into-words.js +13 -0
  337. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/stack.js +7 -0
  338. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/validate-mime-type.js +31 -0
  339. package/.output/server/node_modules/@redocly/openapi-core/lib/utils/yaml-fs-helper.js +23 -0
  340. package/.output/server/node_modules/@redocly/openapi-core/lib/visitors.js +177 -0
  341. package/.output/server/node_modules/@redocly/openapi-core/lib/walk.js +303 -0
  342. package/.output/server/node_modules/@redocly/openapi-core/package.json +74 -0
  343. package/.output/server/node_modules/ajv-formats/dist/formats.js +208 -0
  344. package/.output/server/node_modules/ajv-formats/dist/index.js +37 -0
  345. package/.output/server/node_modules/ajv-formats/dist/limit.js +69 -0
  346. package/.output/server/node_modules/ajv-formats/package.json +74 -0
  347. package/.output/server/node_modules/colorette/index.js +82 -0
  348. package/.output/server/node_modules/colorette/package.json +39 -0
  349. package/.output/server/node_modules/js-levenshtein/index.js +105 -0
  350. package/.output/server/node_modules/js-levenshtein/package.json +49 -0
  351. package/.output/server/node_modules/pluralize/package.json +40 -0
  352. package/.output/server/node_modules/pluralize/pluralize.js +503 -0
  353. package/.output/server/node_modules/yaml-ast-parser/dist/src/common.js +45 -0
  354. package/.output/server/node_modules/yaml-ast-parser/dist/src/dumper.js +644 -0
  355. package/.output/server/node_modules/yaml-ast-parser/dist/src/exception.js +40 -0
  356. package/.output/server/node_modules/yaml-ast-parser/dist/src/index.js +22 -0
  357. package/.output/server/node_modules/yaml-ast-parser/dist/src/loader.js +1416 -0
  358. package/.output/server/node_modules/yaml-ast-parser/dist/src/mark.js +62 -0
  359. package/.output/server/node_modules/yaml-ast-parser/dist/src/scalarInference.js +82 -0
  360. package/.output/server/node_modules/yaml-ast-parser/dist/src/schema/core.js +8 -0
  361. package/.output/server/node_modules/yaml-ast-parser/dist/src/schema/default_full.js +14 -0
  362. package/.output/server/node_modules/yaml-ast-parser/dist/src/schema/default_safe.js +19 -0
  363. package/.output/server/node_modules/yaml-ast-parser/dist/src/schema/failsafe.js +10 -0
  364. package/.output/server/node_modules/yaml-ast-parser/dist/src/schema/json.js +14 -0
  365. package/.output/server/node_modules/yaml-ast-parser/dist/src/schema.js +78 -0
  366. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/binary.js +92 -0
  367. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/bool.js +32 -0
  368. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/float.js +95 -0
  369. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/int.js +155 -0
  370. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/js/regexp.js +64 -0
  371. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/js/undefined.js +22 -0
  372. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/map.js +7 -0
  373. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/merge.js +10 -0
  374. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/null.js +30 -0
  375. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/omap.js +46 -0
  376. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/pairs.js +55 -0
  377. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/seq.js +7 -0
  378. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/set.js +22 -0
  379. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/str.js +7 -0
  380. package/.output/server/node_modules/yaml-ast-parser/dist/src/type/timestamp.js +70 -0
  381. package/.output/server/node_modules/yaml-ast-parser/dist/src/type.js +54 -0
  382. package/.output/server/node_modules/yaml-ast-parser/dist/src/yamlAST.js +82 -0
  383. package/.output/server/node_modules/yaml-ast-parser/package.json +39 -0
  384. package/.output/server/package.json +9 -1
  385. package/package.json +18 -17
  386. /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/index.js +0 -0
  387. /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/lib/constants.js +0 -0
  388. /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/lib/parse.js +0 -0
  389. /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/lib/picomatch.js +0 -0
  390. /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/lib/scan.js +0 -0
  391. /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/lib/utils.js +0 -0
  392. /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/package.json +0 -0
@@ -0,0 +1,391 @@
1
+ 'use strict';
2
+
3
+ const utils = require('./utils');
4
+ const {
5
+ CHAR_ASTERISK, /* * */
6
+ CHAR_AT, /* @ */
7
+ CHAR_BACKWARD_SLASH, /* \ */
8
+ CHAR_COMMA, /* , */
9
+ CHAR_DOT, /* . */
10
+ CHAR_EXCLAMATION_MARK, /* ! */
11
+ CHAR_FORWARD_SLASH, /* / */
12
+ CHAR_LEFT_CURLY_BRACE, /* { */
13
+ CHAR_LEFT_PARENTHESES, /* ( */
14
+ CHAR_LEFT_SQUARE_BRACKET, /* [ */
15
+ CHAR_PLUS, /* + */
16
+ CHAR_QUESTION_MARK, /* ? */
17
+ CHAR_RIGHT_CURLY_BRACE, /* } */
18
+ CHAR_RIGHT_PARENTHESES, /* ) */
19
+ CHAR_RIGHT_SQUARE_BRACKET /* ] */
20
+ } = require('./constants');
21
+
22
+ const isPathSeparator = code => {
23
+ return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH;
24
+ };
25
+
26
+ const depth = token => {
27
+ if (token.isPrefix !== true) {
28
+ token.depth = token.isGlobstar ? Infinity : 1;
29
+ }
30
+ };
31
+
32
+ /**
33
+ * Quickly scans a glob pattern and returns an object with a handful of
34
+ * useful properties, like `isGlob`, `path` (the leading non-glob, if it exists),
35
+ * `glob` (the actual pattern), `negated` (true if the path starts with `!` but not
36
+ * with `!(`) and `negatedExtglob` (true if the path starts with `!(`).
37
+ *
38
+ * ```js
39
+ * const pm = require('picomatch');
40
+ * console.log(pm.scan('foo/bar/*.js'));
41
+ * { isGlob: true, input: 'foo/bar/*.js', base: 'foo/bar', glob: '*.js' }
42
+ * ```
43
+ * @param {String} `str`
44
+ * @param {Object} `options`
45
+ * @return {Object} Returns an object with tokens and regex source string.
46
+ * @api public
47
+ */
48
+
49
+ const scan = (input, options) => {
50
+ const opts = options || {};
51
+
52
+ const length = input.length - 1;
53
+ const scanToEnd = opts.parts === true || opts.scanToEnd === true;
54
+ const slashes = [];
55
+ const tokens = [];
56
+ const parts = [];
57
+
58
+ let str = input;
59
+ let index = -1;
60
+ let start = 0;
61
+ let lastIndex = 0;
62
+ let isBrace = false;
63
+ let isBracket = false;
64
+ let isGlob = false;
65
+ let isExtglob = false;
66
+ let isGlobstar = false;
67
+ let braceEscaped = false;
68
+ let backslashes = false;
69
+ let negated = false;
70
+ let negatedExtglob = false;
71
+ let finished = false;
72
+ let braces = 0;
73
+ let prev;
74
+ let code;
75
+ let token = { value: '', depth: 0, isGlob: false };
76
+
77
+ const eos = () => index >= length;
78
+ const peek = () => str.charCodeAt(index + 1);
79
+ const advance = () => {
80
+ prev = code;
81
+ return str.charCodeAt(++index);
82
+ };
83
+
84
+ while (index < length) {
85
+ code = advance();
86
+ let next;
87
+
88
+ if (code === CHAR_BACKWARD_SLASH) {
89
+ backslashes = token.backslashes = true;
90
+ code = advance();
91
+
92
+ if (code === CHAR_LEFT_CURLY_BRACE) {
93
+ braceEscaped = true;
94
+ }
95
+ continue;
96
+ }
97
+
98
+ if (braceEscaped === true || code === CHAR_LEFT_CURLY_BRACE) {
99
+ braces++;
100
+
101
+ while (eos() !== true && (code = advance())) {
102
+ if (code === CHAR_BACKWARD_SLASH) {
103
+ backslashes = token.backslashes = true;
104
+ advance();
105
+ continue;
106
+ }
107
+
108
+ if (code === CHAR_LEFT_CURLY_BRACE) {
109
+ braces++;
110
+ continue;
111
+ }
112
+
113
+ if (braceEscaped !== true && code === CHAR_DOT && (code = advance()) === CHAR_DOT) {
114
+ isBrace = token.isBrace = true;
115
+ isGlob = token.isGlob = true;
116
+ finished = true;
117
+
118
+ if (scanToEnd === true) {
119
+ continue;
120
+ }
121
+
122
+ break;
123
+ }
124
+
125
+ if (braceEscaped !== true && code === CHAR_COMMA) {
126
+ isBrace = token.isBrace = true;
127
+ isGlob = token.isGlob = true;
128
+ finished = true;
129
+
130
+ if (scanToEnd === true) {
131
+ continue;
132
+ }
133
+
134
+ break;
135
+ }
136
+
137
+ if (code === CHAR_RIGHT_CURLY_BRACE) {
138
+ braces--;
139
+
140
+ if (braces === 0) {
141
+ braceEscaped = false;
142
+ isBrace = token.isBrace = true;
143
+ finished = true;
144
+ break;
145
+ }
146
+ }
147
+ }
148
+
149
+ if (scanToEnd === true) {
150
+ continue;
151
+ }
152
+
153
+ break;
154
+ }
155
+
156
+ if (code === CHAR_FORWARD_SLASH) {
157
+ slashes.push(index);
158
+ tokens.push(token);
159
+ token = { value: '', depth: 0, isGlob: false };
160
+
161
+ if (finished === true) continue;
162
+ if (prev === CHAR_DOT && index === (start + 1)) {
163
+ start += 2;
164
+ continue;
165
+ }
166
+
167
+ lastIndex = index + 1;
168
+ continue;
169
+ }
170
+
171
+ if (opts.noext !== true) {
172
+ const isExtglobChar = code === CHAR_PLUS
173
+ || code === CHAR_AT
174
+ || code === CHAR_ASTERISK
175
+ || code === CHAR_QUESTION_MARK
176
+ || code === CHAR_EXCLAMATION_MARK;
177
+
178
+ if (isExtglobChar === true && peek() === CHAR_LEFT_PARENTHESES) {
179
+ isGlob = token.isGlob = true;
180
+ isExtglob = token.isExtglob = true;
181
+ finished = true;
182
+ if (code === CHAR_EXCLAMATION_MARK && index === start) {
183
+ negatedExtglob = true;
184
+ }
185
+
186
+ if (scanToEnd === true) {
187
+ while (eos() !== true && (code = advance())) {
188
+ if (code === CHAR_BACKWARD_SLASH) {
189
+ backslashes = token.backslashes = true;
190
+ code = advance();
191
+ continue;
192
+ }
193
+
194
+ if (code === CHAR_RIGHT_PARENTHESES) {
195
+ isGlob = token.isGlob = true;
196
+ finished = true;
197
+ break;
198
+ }
199
+ }
200
+ continue;
201
+ }
202
+ break;
203
+ }
204
+ }
205
+
206
+ if (code === CHAR_ASTERISK) {
207
+ if (prev === CHAR_ASTERISK) isGlobstar = token.isGlobstar = true;
208
+ isGlob = token.isGlob = true;
209
+ finished = true;
210
+
211
+ if (scanToEnd === true) {
212
+ continue;
213
+ }
214
+ break;
215
+ }
216
+
217
+ if (code === CHAR_QUESTION_MARK) {
218
+ isGlob = token.isGlob = true;
219
+ finished = true;
220
+
221
+ if (scanToEnd === true) {
222
+ continue;
223
+ }
224
+ break;
225
+ }
226
+
227
+ if (code === CHAR_LEFT_SQUARE_BRACKET) {
228
+ while (eos() !== true && (next = advance())) {
229
+ if (next === CHAR_BACKWARD_SLASH) {
230
+ backslashes = token.backslashes = true;
231
+ advance();
232
+ continue;
233
+ }
234
+
235
+ if (next === CHAR_RIGHT_SQUARE_BRACKET) {
236
+ isBracket = token.isBracket = true;
237
+ isGlob = token.isGlob = true;
238
+ finished = true;
239
+ break;
240
+ }
241
+ }
242
+
243
+ if (scanToEnd === true) {
244
+ continue;
245
+ }
246
+
247
+ break;
248
+ }
249
+
250
+ if (opts.nonegate !== true && code === CHAR_EXCLAMATION_MARK && index === start) {
251
+ negated = token.negated = true;
252
+ start++;
253
+ continue;
254
+ }
255
+
256
+ if (opts.noparen !== true && code === CHAR_LEFT_PARENTHESES) {
257
+ isGlob = token.isGlob = true;
258
+
259
+ if (scanToEnd === true) {
260
+ while (eos() !== true && (code = advance())) {
261
+ if (code === CHAR_LEFT_PARENTHESES) {
262
+ backslashes = token.backslashes = true;
263
+ code = advance();
264
+ continue;
265
+ }
266
+
267
+ if (code === CHAR_RIGHT_PARENTHESES) {
268
+ finished = true;
269
+ break;
270
+ }
271
+ }
272
+ continue;
273
+ }
274
+ break;
275
+ }
276
+
277
+ if (isGlob === true) {
278
+ finished = true;
279
+
280
+ if (scanToEnd === true) {
281
+ continue;
282
+ }
283
+
284
+ break;
285
+ }
286
+ }
287
+
288
+ if (opts.noext === true) {
289
+ isExtglob = false;
290
+ isGlob = false;
291
+ }
292
+
293
+ let base = str;
294
+ let prefix = '';
295
+ let glob = '';
296
+
297
+ if (start > 0) {
298
+ prefix = str.slice(0, start);
299
+ str = str.slice(start);
300
+ lastIndex -= start;
301
+ }
302
+
303
+ if (base && isGlob === true && lastIndex > 0) {
304
+ base = str.slice(0, lastIndex);
305
+ glob = str.slice(lastIndex);
306
+ } else if (isGlob === true) {
307
+ base = '';
308
+ glob = str;
309
+ } else {
310
+ base = str;
311
+ }
312
+
313
+ if (base && base !== '' && base !== '/' && base !== str) {
314
+ if (isPathSeparator(base.charCodeAt(base.length - 1))) {
315
+ base = base.slice(0, -1);
316
+ }
317
+ }
318
+
319
+ if (opts.unescape === true) {
320
+ if (glob) glob = utils.removeBackslashes(glob);
321
+
322
+ if (base && backslashes === true) {
323
+ base = utils.removeBackslashes(base);
324
+ }
325
+ }
326
+
327
+ const state = {
328
+ prefix,
329
+ input,
330
+ start,
331
+ base,
332
+ glob,
333
+ isBrace,
334
+ isBracket,
335
+ isGlob,
336
+ isExtglob,
337
+ isGlobstar,
338
+ negated,
339
+ negatedExtglob
340
+ };
341
+
342
+ if (opts.tokens === true) {
343
+ state.maxDepth = 0;
344
+ if (!isPathSeparator(code)) {
345
+ tokens.push(token);
346
+ }
347
+ state.tokens = tokens;
348
+ }
349
+
350
+ if (opts.parts === true || opts.tokens === true) {
351
+ let prevIndex;
352
+
353
+ for (let idx = 0; idx < slashes.length; idx++) {
354
+ const n = prevIndex ? prevIndex + 1 : start;
355
+ const i = slashes[idx];
356
+ const value = input.slice(n, i);
357
+ if (opts.tokens) {
358
+ if (idx === 0 && start !== 0) {
359
+ tokens[idx].isPrefix = true;
360
+ tokens[idx].value = prefix;
361
+ } else {
362
+ tokens[idx].value = value;
363
+ }
364
+ depth(tokens[idx]);
365
+ state.maxDepth += tokens[idx].depth;
366
+ }
367
+ if (idx !== 0 || value !== '') {
368
+ parts.push(value);
369
+ }
370
+ prevIndex = i;
371
+ }
372
+
373
+ if (prevIndex && prevIndex + 1 < input.length) {
374
+ const value = input.slice(prevIndex + 1);
375
+ parts.push(value);
376
+
377
+ if (opts.tokens) {
378
+ tokens[tokens.length - 1].value = value;
379
+ depth(tokens[tokens.length - 1]);
380
+ state.maxDepth += tokens[tokens.length - 1].depth;
381
+ }
382
+ }
383
+
384
+ state.slashes = slashes;
385
+ state.parts = parts;
386
+ }
387
+
388
+ return state;
389
+ };
390
+
391
+ module.exports = scan;
@@ -0,0 +1,72 @@
1
+ /*global navigator*/
2
+ 'use strict';
3
+
4
+ const {
5
+ REGEX_BACKSLASH,
6
+ REGEX_REMOVE_BACKSLASH,
7
+ REGEX_SPECIAL_CHARS,
8
+ REGEX_SPECIAL_CHARS_GLOBAL
9
+ } = require('./constants');
10
+
11
+ exports.isObject = val => val !== null && typeof val === 'object' && !Array.isArray(val);
12
+ exports.hasRegexChars = str => REGEX_SPECIAL_CHARS.test(str);
13
+ exports.isRegexChar = str => str.length === 1 && exports.hasRegexChars(str);
14
+ exports.escapeRegex = str => str.replace(REGEX_SPECIAL_CHARS_GLOBAL, '\\$1');
15
+ exports.toPosixSlashes = str => str.replace(REGEX_BACKSLASH, '/');
16
+
17
+ exports.isWindows = () => {
18
+ if (typeof navigator !== 'undefined' && navigator.platform) {
19
+ const platform = navigator.platform.toLowerCase();
20
+ return platform === 'win32' || platform === 'windows';
21
+ }
22
+
23
+ if (typeof process !== 'undefined' && process.platform) {
24
+ return process.platform === 'win32';
25
+ }
26
+
27
+ return false;
28
+ };
29
+
30
+ exports.removeBackslashes = str => {
31
+ return str.replace(REGEX_REMOVE_BACKSLASH, match => {
32
+ return match === '\\' ? '' : match;
33
+ });
34
+ };
35
+
36
+ exports.escapeLast = (input, char, lastIdx) => {
37
+ const idx = input.lastIndexOf(char, lastIdx);
38
+ if (idx === -1) return input;
39
+ if (input[idx - 1] === '\\') return exports.escapeLast(input, char, idx - 1);
40
+ return `${input.slice(0, idx)}\\${input.slice(idx)}`;
41
+ };
42
+
43
+ exports.removePrefix = (input, state = {}) => {
44
+ let output = input;
45
+ if (output.startsWith('./')) {
46
+ output = output.slice(2);
47
+ state.prefix = './';
48
+ }
49
+ return output;
50
+ };
51
+
52
+ exports.wrapOutput = (input, state = {}, options = {}) => {
53
+ const prepend = options.contains ? '' : '^';
54
+ const append = options.contains ? '' : '$';
55
+
56
+ let output = `${prepend}(?:${input})${append}`;
57
+ if (state.negated === true) {
58
+ output = `(?:^(?!${output}).*$)`;
59
+ }
60
+ return output;
61
+ };
62
+
63
+ exports.basename = (path, { windows } = {}) => {
64
+ const segs = path.split(windows ? /[\\/]/ : '/');
65
+ const last = segs[segs.length - 1];
66
+
67
+ if (last === '') {
68
+ return segs[segs.length - 2];
69
+ }
70
+
71
+ return last;
72
+ };
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "picomatch",
3
+ "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.",
4
+ "version": "4.0.3",
5
+ "homepage": "https://github.com/micromatch/picomatch",
6
+ "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7
+ "funding": "https://github.com/sponsors/jonschlinkert",
8
+ "repository": "micromatch/picomatch",
9
+ "bugs": {
10
+ "url": "https://github.com/micromatch/picomatch/issues"
11
+ },
12
+ "license": "MIT",
13
+ "files": [
14
+ "index.js",
15
+ "posix.js",
16
+ "lib"
17
+ ],
18
+ "sideEffects": false,
19
+ "main": "index.js",
20
+ "engines": {
21
+ "node": ">=12"
22
+ },
23
+ "scripts": {
24
+ "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .",
25
+ "mocha": "mocha --reporter dot",
26
+ "test": "npm run lint && npm run mocha",
27
+ "test:ci": "npm run test:cover",
28
+ "test:cover": "nyc npm run mocha"
29
+ },
30
+ "devDependencies": {
31
+ "eslint": "^8.57.0",
32
+ "fill-range": "^7.0.1",
33
+ "gulp-format-md": "^2.0.0",
34
+ "mocha": "^10.4.0",
35
+ "nyc": "^15.1.0",
36
+ "time-require": "github:jonschlinkert/time-require"
37
+ },
38
+ "keywords": [
39
+ "glob",
40
+ "match",
41
+ "picomatch"
42
+ ],
43
+ "nyc": {
44
+ "reporter": [
45
+ "html",
46
+ "lcov",
47
+ "text-summary"
48
+ ]
49
+ },
50
+ "verb": {
51
+ "toc": {
52
+ "render": true,
53
+ "method": "preWrite",
54
+ "maxdepth": 3
55
+ },
56
+ "layout": "empty",
57
+ "tasks": [
58
+ "readme"
59
+ ],
60
+ "plugins": [
61
+ "gulp-format-md"
62
+ ],
63
+ "lint": {
64
+ "reflinks": true
65
+ },
66
+ "related": {
67
+ "list": [
68
+ "braces",
69
+ "micromatch"
70
+ ]
71
+ },
72
+ "reflinks": [
73
+ "braces",
74
+ "expand-brackets",
75
+ "extglob",
76
+ "fill-range",
77
+ "micromatch",
78
+ "minimatch",
79
+ "nanomatch",
80
+ "picomatch"
81
+ ]
82
+ }
83
+ }
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MissingRefError = exports.ValidationError = exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = exports.Ajv2020 = void 0;
4
+ const core_1 = require("./core");
5
+ const draft2020_1 = require("./vocabularies/draft2020");
6
+ const discriminator_1 = require("./vocabularies/discriminator");
7
+ const json_schema_2020_12_1 = require("./refs/json-schema-2020-12");
8
+ const META_SCHEMA_ID = "https://json-schema.org/draft/2020-12/schema";
9
+ class Ajv2020 extends core_1.default {
10
+ constructor(opts = {}) {
11
+ super({
12
+ ...opts,
13
+ dynamicRef: true,
14
+ next: true,
15
+ unevaluated: true,
16
+ });
17
+ }
18
+ _addVocabularies() {
19
+ super._addVocabularies();
20
+ draft2020_1.default.forEach((v) => this.addVocabulary(v));
21
+ if (this.opts.discriminator)
22
+ this.addKeyword(discriminator_1.default);
23
+ }
24
+ _addDefaultMetaSchema() {
25
+ super._addDefaultMetaSchema();
26
+ const { $data, meta } = this.opts;
27
+ if (!meta)
28
+ return;
29
+ json_schema_2020_12_1.default.call(this, $data);
30
+ this.refs["http://json-schema.org/schema"] = META_SCHEMA_ID;
31
+ }
32
+ defaultMeta() {
33
+ return (this.opts.defaultMeta =
34
+ super.defaultMeta() || (this.getSchema(META_SCHEMA_ID) ? META_SCHEMA_ID : undefined));
35
+ }
36
+ }
37
+ exports.Ajv2020 = Ajv2020;
38
+ module.exports = exports = Ajv2020;
39
+ module.exports.Ajv2020 = Ajv2020;
40
+ Object.defineProperty(exports, "__esModule", { value: true });
41
+ exports.default = Ajv2020;
42
+ var validate_1 = require("./compile/validate");
43
+ Object.defineProperty(exports, "KeywordCxt", { enumerable: true, get: function () { return validate_1.KeywordCxt; } });
44
+ var codegen_1 = require("./compile/codegen");
45
+ Object.defineProperty(exports, "_", { enumerable: true, get: function () { return codegen_1._; } });
46
+ Object.defineProperty(exports, "str", { enumerable: true, get: function () { return codegen_1.str; } });
47
+ Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return codegen_1.stringify; } });
48
+ Object.defineProperty(exports, "nil", { enumerable: true, get: function () { return codegen_1.nil; } });
49
+ Object.defineProperty(exports, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
50
+ Object.defineProperty(exports, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
51
+ var validation_error_1 = require("./runtime/validation_error");
52
+ Object.defineProperty(exports, "ValidationError", { enumerable: true, get: function () { return validation_error_1.default; } });
53
+ var ref_error_1 = require("./compile/ref_error");
54
+ Object.defineProperty(exports, "MissingRefError", { enumerable: true, get: function () { return ref_error_1.default; } });
55
+ //# sourceMappingURL=2020.js.map
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MissingRefError = exports.ValidationError = exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = exports.Ajv = void 0;
4
+ const core_1 = require("./core");
5
+ const draft7_1 = require("./vocabularies/draft7");
6
+ const discriminator_1 = require("./vocabularies/discriminator");
7
+ const draft7MetaSchema = require("./refs/json-schema-draft-07.json");
8
+ const META_SUPPORT_DATA = ["/properties"];
9
+ const META_SCHEMA_ID = "http://json-schema.org/draft-07/schema";
10
+ class Ajv extends core_1.default {
11
+ _addVocabularies() {
12
+ super._addVocabularies();
13
+ draft7_1.default.forEach((v) => this.addVocabulary(v));
14
+ if (this.opts.discriminator)
15
+ this.addKeyword(discriminator_1.default);
16
+ }
17
+ _addDefaultMetaSchema() {
18
+ super._addDefaultMetaSchema();
19
+ if (!this.opts.meta)
20
+ return;
21
+ const metaSchema = this.opts.$data
22
+ ? this.$dataMetaSchema(draft7MetaSchema, META_SUPPORT_DATA)
23
+ : draft7MetaSchema;
24
+ this.addMetaSchema(metaSchema, META_SCHEMA_ID, false);
25
+ this.refs["http://json-schema.org/schema"] = META_SCHEMA_ID;
26
+ }
27
+ defaultMeta() {
28
+ return (this.opts.defaultMeta =
29
+ super.defaultMeta() || (this.getSchema(META_SCHEMA_ID) ? META_SCHEMA_ID : undefined));
30
+ }
31
+ }
32
+ exports.Ajv = Ajv;
33
+ module.exports = exports = Ajv;
34
+ module.exports.Ajv = Ajv;
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.default = Ajv;
37
+ var validate_1 = require("./compile/validate");
38
+ Object.defineProperty(exports, "KeywordCxt", { enumerable: true, get: function () { return validate_1.KeywordCxt; } });
39
+ var codegen_1 = require("./compile/codegen");
40
+ Object.defineProperty(exports, "_", { enumerable: true, get: function () { return codegen_1._; } });
41
+ Object.defineProperty(exports, "str", { enumerable: true, get: function () { return codegen_1.str; } });
42
+ Object.defineProperty(exports, "stringify", { enumerable: true, get: function () { return codegen_1.stringify; } });
43
+ Object.defineProperty(exports, "nil", { enumerable: true, get: function () { return codegen_1.nil; } });
44
+ Object.defineProperty(exports, "Name", { enumerable: true, get: function () { return codegen_1.Name; } });
45
+ Object.defineProperty(exports, "CodeGen", { enumerable: true, get: function () { return codegen_1.CodeGen; } });
46
+ var validation_error_1 = require("./runtime/validation_error");
47
+ Object.defineProperty(exports, "ValidationError", { enumerable: true, get: function () { return validation_error_1.default; } });
48
+ var ref_error_1 = require("./compile/ref_error");
49
+ Object.defineProperty(exports, "MissingRefError", { enumerable: true, get: function () { return ref_error_1.default; } });
50
+ //# sourceMappingURL=ajv.js.map