@kubb/agent 4.33.1 → 4.33.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.output/nitro.json +1 -1
- package/.output/server/chunks/nitro/nitro.mjs +29 -92
- package/.output/server/chunks/nitro/nitro.mjs.map +1 -1
- package/.output/server/chunks/routes/api/health.get.mjs +1 -1
- package/.output/server/index.mjs +1 -1
- package/.output/server/node_modules/.nitro/picomatch@4.0.3/index.js +17 -0
- package/.output/server/node_modules/.nitro/picomatch@4.0.3/lib/constants.js +180 -0
- package/.output/server/node_modules/.nitro/picomatch@4.0.3/lib/parse.js +1085 -0
- package/.output/server/node_modules/.nitro/picomatch@4.0.3/lib/picomatch.js +341 -0
- package/.output/server/node_modules/.nitro/picomatch@4.0.3/lib/scan.js +391 -0
- package/.output/server/node_modules/.nitro/picomatch@4.0.3/lib/utils.js +72 -0
- package/.output/server/node_modules/.nitro/picomatch@4.0.3/package.json +83 -0
- package/.output/server/node_modules/@babel/runtime/package.json +1 -1
- package/.output/server/node_modules/@readme/openapi-parser/package.json +3 -3
- package/.output/server/node_modules/@redocly/ajv/dist/2020.js +55 -0
- package/.output/server/node_modules/@redocly/ajv/dist/ajv.js +50 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/codegen/code.js +156 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/codegen/index.js +697 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/codegen/scope.js +143 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/errors.js +123 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/index.js +249 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/names.js +29 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/ref_error.js +12 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/resolve.js +155 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/rules.js +26 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/util.js +178 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/applicability.js +19 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/dataType.js +203 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/defaults.js +35 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/index.js +534 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/keyword.js +124 -0
- package/.output/server/node_modules/@redocly/ajv/dist/compile/validate/subschema.js +81 -0
- package/.output/server/node_modules/@redocly/ajv/dist/core.js +632 -0
- package/.output/server/node_modules/@redocly/ajv/dist/draft4.js +56 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/data.json +13 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-draft-04.json +138 -0
- package/.output/server/node_modules/@redocly/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/.output/server/node_modules/@redocly/ajv/dist/runtime/equal.js +7 -0
- package/.output/server/node_modules/@redocly/ajv/dist/runtime/ucs2length.js +24 -0
- package/.output/server/node_modules/@redocly/ajv/dist/runtime/uri.js +6 -0
- package/.output/server/node_modules/@redocly/ajv/dist/runtime/validation_error.js +11 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/additionalProperties.js +107 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/properties.js +55 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/code.js +138 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/core/id.js +10 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/core/index.js +16 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/core/ref.js +132 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/discriminator/index.js +139 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/draft2020.js +23 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/draft4.js +29 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/draft7.js +17 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/format/format.js +92 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/format/index.js +6 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/metadata.js +26 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/next.js +8 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/oasContext.js +26 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +84 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/const.js +25 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/draft04/limitNumber.js +43 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/draft04/limitNumberExclusive.js +19 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/index.js +37 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/pattern.js +33 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/readOnly.js +20 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/required.js +86 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/.output/server/node_modules/@redocly/ajv/dist/vocabularies/validation/writeOnly.js +20 -0
- package/.output/server/node_modules/@redocly/ajv/package.json +130 -0
- package/.output/server/node_modules/@redocly/config/lib/asyncapi-config-schema.js +53 -0
- package/.output/server/node_modules/@redocly/config/lib/common.js +103 -0
- package/.output/server/node_modules/@redocly/config/lib/constants/config.js +17 -0
- package/.output/server/node_modules/@redocly/config/lib/constants/entities.js +58 -0
- package/.output/server/node_modules/@redocly/config/lib/constants/enum.js +6 -0
- package/.output/server/node_modules/@redocly/config/lib/constants/shared.js +22 -0
- package/.output/server/node_modules/@redocly/config/lib/default-theme-config-schema.js +56 -0
- package/.output/server/node_modules/@redocly/config/lib/entities-catalog-config-schema.js +186 -0
- package/.output/server/node_modules/@redocly/config/lib/entities-catalog-entity-file-schema.js +283 -0
- package/.output/server/node_modules/@redocly/config/lib/ex-theme-config-schemas.js +683 -0
- package/.output/server/node_modules/@redocly/config/lib/feedback-config-schema.js +88 -0
- package/.output/server/node_modules/@redocly/config/lib/graphql-config-schema.js +157 -0
- package/.output/server/node_modules/@redocly/config/lib/index.js +41 -0
- package/.output/server/node_modules/@redocly/config/lib/product-override-schema.js +43 -0
- package/.output/server/node_modules/@redocly/config/lib/redoc-config-schema.js +120 -0
- package/.output/server/node_modules/@redocly/config/lib/reference-docs-config-schema.js +518 -0
- package/.output/server/node_modules/@redocly/config/lib/remove-property-recursively.js +28 -0
- package/.output/server/node_modules/@redocly/config/lib/reunite-config-schema.js +103 -0
- package/.output/server/node_modules/@redocly/config/lib/root-config-schema.js +558 -0
- package/.output/server/node_modules/@redocly/config/lib/scorecards-config-schema.js +242 -0
- package/.output/server/node_modules/@redocly/config/lib/types/api-functions-types.js +3 -0
- package/.output/server/node_modules/@redocly/config/lib/types/catalog-entity-types.js +3 -0
- package/.output/server/node_modules/@redocly/config/lib/types/code-walkthrough-types.js +3 -0
- package/.output/server/node_modules/@redocly/config/lib/types/config-types.js +3 -0
- package/.output/server/node_modules/@redocly/config/lib/types/index.js +21 -0
- package/.output/server/node_modules/@redocly/config/lib/types/portal-shared-types.js +18 -0
- package/.output/server/node_modules/@redocly/config/package.json +28 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/bundle/bundle-document.js +85 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/bundle/bundle-visitor.js +257 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/bundle/bundle.js +74 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/all.js +310 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/builtIn.js +58 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/bundle-extends.js +27 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/config-resolvers.js +335 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/config.js +338 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/constants.js +13 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/get-resolve-config.js +9 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/group-assertion-rules.js +51 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/index.js +8 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/load.js +98 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/minimal.js +289 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/recommended-strict.js +289 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/recommended.js +289 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/rules.js +35 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/spec.js +289 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/types.js +2 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/utils.js +129 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/config/visitors.js +99 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/arazzo/index.js +2 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/async2/index.js +2 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/async3/index.js +2 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/filters/filter-helper.js +65 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/filters/filter-in.js +67 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/filters/filter-out.js +67 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/info-description-override.js +21 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/info-override.js +14 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/media-type-examples-override.js +58 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/operation-description-override.js +27 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/remove-x-internal.js +68 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/tag-description-override.js +23 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/oas2/index.js +19 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/oas2/remove-unused-components.js +88 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/oas3/index.js +21 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/oas3/remove-unused-components.js +116 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/openrpc/index.js +2 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/overlay1/index.js +2 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/detect-spec.js +79 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/env.js +5 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/errors/yaml-parse-error.js +14 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/format/codeframes.js +177 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/format/format.js +365 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/index.js +49 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/js-yaml/index.js +11 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/lint-entity.js +171 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/lint.js +123 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/logger.js +56 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/oas-types.js +35 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/ref-utils.js +109 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/resolve.js +326 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/ajv.js +106 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/criteria-unique.js +68 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/index.js +52 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/outputs-defined.js +139 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/parameters-unique.js +27 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/requestBody-replacements-unique.js +30 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/sourceDescription-type.js +19 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/sourceDescriptions-name-unique.js +21 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/sourceDescriptions-not-empty.js +15 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/step-onFailure-unique.js +27 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/step-onSuccess-unique.js +27 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/stepId-unique.js +23 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/workflow-dependsOn.js +53 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/arazzo/workflowId-unique.js +19 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async2/channels-kebab-case.js +16 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async2/index.js +32 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async2/no-channel-trailing-slash.js +13 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async3/channels-kebab-case.js +16 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async3/index.js +32 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/async3/no-channel-trailing-slash.js +13 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/catalog-entity/entity-key-valid.js +39 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/assertions/asserts.js +269 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/assertions/index.js +22 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/assertions/utils.js +215 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/info-contact.js +14 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/info-license-strict.js +23 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/info-license.js +14 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-ambiguous-paths.js +42 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-duplicated-tag-names.js +21 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-enum-type-mismatch.js +38 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-http-verbs-in-paths.js +31 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-identical-paths.js +21 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-invalid-parameter-examples.js +32 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-invalid-schema-examples.js +34 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-path-trailing-slash.js +13 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-required-schema-properties-undefined.js +78 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-schema-type-mismatch.js +19 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/no-unresolved-refs.js +42 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-2xx-response.js +20 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-4xx-response.js +20 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-description.js +9 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-operationId-unique.js +17 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-operationId-url-safe.js +15 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-operationId.js +13 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-parameters-unique.js +37 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-singular-tag.js +13 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-summary.js +9 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/operation-tag-defined.js +27 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/parameter-description.js +19 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/path-declaration-must-exist.js +13 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/path-http-verbs-order.js +23 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/path-not-include-query.js +15 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/path-params-defined.js +145 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/path-segment-plural.js +30 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/paths-kebab-case.js +17 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/required-string-property-missing-min-length.js +34 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/response-contains-header.js +26 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/scalar-property-missing-example.js +39 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/security-defined.js +62 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/spec-strict-refs.js +27 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/struct.js +150 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/tag-description.js +9 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/common/tags-alphabetical.js +18 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas2/boolean-parameter-prefixes.js +19 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas2/index.js +93 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas2/request-mime-type.js +14 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas2/response-contains-property.js +34 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas2/response-mime-type.js +14 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/array-parameter-serialization.js +26 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/boolean-parameter-prefixes.js +21 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/component-name-unique.js +130 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/index.js +129 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-empty-servers.js +20 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-example-value-and-externalValue.js +13 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-invalid-media-type-examples.js +59 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-server-example.com.js +15 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-server-trailing-slash.js +15 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-server-variables-empty-enum.js +58 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-undefined-server-variable.js +28 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/no-unused-components.js +83 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/nullable-type-sibling.js +15 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/operation-4xx-problem-details-rfc7807.js +33 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/request-mime-type.js +28 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/response-contains-property.js +36 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/response-mime-type.js +28 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-components-invalid-map-name.js +59 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-discriminator-defaultMapping.js +32 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-example-values.js +31 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-no-invalid-encoding-combinations.js +16 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-no-invalid-tag-parents.js +38 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/oas3/spec-querystring-parameters.js +65 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/openrpc/index.js +20 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/openrpc/no-unused-components.js +82 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/openrpc/spec-no-duplicated-method-params.js +28 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/openrpc/spec-no-required-params-after-optional.js +31 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/other/stats.js +190 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/overlay1/index.js +12 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/no-criteria-xpath.js +20 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/no-x-security-both-scheme-and-scheme-name.js +30 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/no-x-security-scheme-name-without-openapi.js +25 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/respect-supported-versions.js +18 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/x-security-scheme-name-reference.js +35 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/respect/x-security-scheme-required-values.js +60 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/rules/utils.js +172 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/arazzo.js +482 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/asyncapi2.js +1157 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/asyncapi3.js +511 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/entity.js +32 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/index.js +90 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/json-schema-adapter.js +181 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/json-schema-draft7.shared.js +101 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/oas2.js +454 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/oas3.js +828 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/oas3_1.js +292 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/oas3_2.js +306 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/openrpc.js +360 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/overlay.js +61 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/types/redocly-yaml.js +573 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/typings/arazzo.js +3 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/assign-config.js +28 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/dequal.js +36 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/does-yaml-file-exist.js +7 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/error.js +3 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/get-intersection-length.js +11 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/get-matching-status-code-range.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/get-own.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/identity.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-custom-rule-id.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-defined.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-empty-array.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-empty-object.js +5 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-not-empty-array.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-not-empty-object.js +6 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-not-string.js +5 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-ordered.js +27 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-path-parameter.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-plain-object.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-string.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/is-truthy.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/keys-of.js +6 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/make-ref-id.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/next-tick.js +6 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/oas-has-component.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/omit.js +8 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/pause.js +4 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/pluralize.js +8 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/read-file-from-url.js +26 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/regex-from-string.js +5 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/scorecards.js +99 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/slash.js +11 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/split-camel-case-into-words.js +13 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/stack.js +7 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/validate-mime-type.js +31 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/utils/yaml-fs-helper.js +23 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/visitors.js +177 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/walk.js +303 -0
- package/.output/server/node_modules/@redocly/openapi-core/package.json +74 -0
- package/.output/server/node_modules/ajv/.runkit_example.js +23 -0
- package/.output/server/node_modules/ajv/LICENSE +22 -0
- package/.output/server/node_modules/ajv/README.md +207 -0
- package/.output/server/node_modules/ajv/dist/2019.d.ts +19 -0
- package/.output/server/node_modules/ajv/dist/2019.js +61 -0
- package/.output/server/node_modules/ajv/dist/2019.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/2020.d.ts +19 -0
- package/.output/server/node_modules/ajv/dist/2020.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/.output/server/node_modules/ajv/dist/ajv.js +50 -0
- package/.output/server/node_modules/ajv/dist/ajv.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/.output/server/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/.output/server/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/.output/server/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/.output/server/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/.output/server/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/.output/server/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/.output/server/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/.output/server/node_modules/ajv/dist/compile/jtd/serialize.js +229 -0
- package/.output/server/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/.output/server/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/.output/server/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/.output/server/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/.output/server/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/.output/server/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/.output/server/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/core.d.ts +173 -0
- package/.output/server/node_modules/ajv/dist/core.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/.output/server/node_modules/ajv/dist/jtd.js +72 -0
- package/.output/server/node_modules/ajv/dist/jtd.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/.output/server/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/.output/server/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/.output/server/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/.output/server/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/.output/server/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/.output/server/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/.output/server/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/.output/server/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/.output/server/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/standalone/index.js +90 -0
- package/.output/server/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/.output/server/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/.output/server/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/.output/server/node_modules/ajv/dist/types/index.js +3 -0
- package/.output/server/node_modules/ajv/dist/types/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/.output/server/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/.output/server/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/.output/server/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/.output/server/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/.output/server/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/.output/server/node_modules/ajv/lib/2019.ts +81 -0
- package/.output/server/node_modules/ajv/lib/2020.ts +75 -0
- package/.output/server/node_modules/ajv/lib/ajv.ts +70 -0
- package/.output/server/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
- package/.output/server/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/.output/server/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/.output/server/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/.output/server/node_modules/ajv/lib/compile/index.ts +324 -0
- package/.output/server/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/.output/server/node_modules/ajv/lib/compile/jtd/serialize.ts +266 -0
- package/.output/server/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/.output/server/node_modules/ajv/lib/compile/names.ts +27 -0
- package/.output/server/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/.output/server/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/.output/server/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/.output/server/node_modules/ajv/lib/compile/util.ts +213 -0
- package/.output/server/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/.output/server/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/.output/server/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/.output/server/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/.output/server/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/.output/server/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/.output/server/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/.output/server/node_modules/ajv/lib/core.ts +891 -0
- package/.output/server/node_modules/ajv/lib/jtd.ts +132 -0
- package/.output/server/node_modules/ajv/lib/refs/data.json +13 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/.output/server/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/.output/server/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/.output/server/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/.output/server/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/.output/server/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/.output/server/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/.output/server/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/.output/server/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/.output/server/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/.output/server/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/.output/server/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/.output/server/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/.output/server/node_modules/ajv/lib/types/index.ts +244 -0
- package/.output/server/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/.output/server/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/.output/server/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/.output/server/node_modules/ajv/package.json +1 -1
- package/.output/server/node_modules/ajv-formats/dist/formats.js +208 -0
- package/.output/server/node_modules/ajv-formats/dist/index.js +37 -0
- package/.output/server/node_modules/ajv-formats/dist/limit.js +69 -0
- package/.output/server/node_modules/ajv-formats/package.json +74 -0
- package/.output/server/node_modules/colorette/index.js +82 -0
- package/.output/server/node_modules/colorette/package.json +39 -0
- package/.output/server/node_modules/js-levenshtein/index.js +105 -0
- package/.output/server/node_modules/js-levenshtein/package.json +49 -0
- package/.output/server/node_modules/oas/dist/{chunk-SH63AK3O.js → chunk-5EP6HY2E.js} +159 -70
- package/.output/server/node_modules/oas/dist/{chunk-L3V5TF63.js → chunk-7MARUOFZ.js} +1 -9
- package/.output/server/node_modules/oas/dist/{chunk-BOVZLW7Q.js → chunk-HGVFNEKW.js} +517 -126
- package/.output/server/node_modules/oas/dist/{chunk-JMLIY2LK.js → chunk-LSH3X5NA.js} +124 -191
- package/.output/server/node_modules/oas/dist/{chunk-TTCGKV5E.js → chunk-S27IGTVG.js} +4 -1
- package/.output/server/node_modules/oas/dist/chunk-VA3NKXX7.js +9 -0
- package/.output/server/node_modules/oas/dist/index.js +6 -6
- package/.output/server/node_modules/oas/dist/types.js +1 -5
- package/.output/server/node_modules/oas/dist/utils.js +6 -6
- package/.output/server/node_modules/oas/package.json +8 -6
- package/.output/server/node_modules/oas-normalize/package.json +5 -5
- package/.output/server/node_modules/pluralize/package.json +40 -0
- package/.output/server/node_modules/pluralize/pluralize.js +503 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/common.js +45 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/dumper.js +644 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/exception.js +40 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/index.js +22 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/loader.js +1416 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/mark.js +62 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/scalarInference.js +82 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/schema/core.js +8 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/schema/default_full.js +14 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/schema/default_safe.js +19 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/schema/failsafe.js +10 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/schema/json.js +14 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/schema.js +78 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/binary.js +92 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/bool.js +32 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/float.js +95 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/int.js +155 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/js/regexp.js +64 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/js/undefined.js +22 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/map.js +7 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/merge.js +10 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/null.js +30 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/omap.js +46 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/pairs.js +55 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/seq.js +7 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/set.js +22 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/str.js +7 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type/timestamp.js +70 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/type.js +54 -0
- package/.output/server/node_modules/yaml-ast-parser/dist/src/yamlAST.js +82 -0
- package/.output/server/node_modules/yaml-ast-parser/package.json +39 -0
- package/.output/server/package.json +13 -5
- package/package.json +16 -16
- package/.output/server/node_modules/oas/dist/chunk-LV26LN7C.js +0 -27
- /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/index.js +0 -0
- /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/lib/constants.js +0 -0
- /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/lib/parse.js +0 -0
- /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/lib/picomatch.js +0 -0
- /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/lib/scan.js +0 -0
- /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/lib/utils.js +0 -0
- /package/.output/server/node_modules/{picomatch → .nitro/picomatch@2.3.1}/package.json +0 -0
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import { URIComponent } from "fast-uri";
|
|
2
|
+
import type { CodeGen, Code, Name, ScopeValueSets, ValueScopeName } from "../compile/codegen";
|
|
3
|
+
import type { SchemaEnv, SchemaCxt, SchemaObjCxt } from "../compile";
|
|
4
|
+
import type { JSONType } from "../compile/rules";
|
|
5
|
+
import type { KeywordCxt } from "../compile/validate";
|
|
6
|
+
import type Ajv from "../core";
|
|
7
|
+
interface _SchemaObject {
|
|
8
|
+
id?: string;
|
|
9
|
+
$id?: string;
|
|
10
|
+
$schema?: string;
|
|
11
|
+
[x: string]: any;
|
|
12
|
+
}
|
|
13
|
+
export interface SchemaObject extends _SchemaObject {
|
|
14
|
+
id?: string;
|
|
15
|
+
$id?: string;
|
|
16
|
+
$schema?: string;
|
|
17
|
+
$async?: false;
|
|
18
|
+
[x: string]: any;
|
|
19
|
+
}
|
|
20
|
+
export interface AsyncSchema extends _SchemaObject {
|
|
21
|
+
$async: true;
|
|
22
|
+
}
|
|
23
|
+
export type AnySchemaObject = SchemaObject | AsyncSchema;
|
|
24
|
+
export type Schema = SchemaObject | boolean;
|
|
25
|
+
export type AnySchema = Schema | AsyncSchema;
|
|
26
|
+
export type SchemaMap = {
|
|
27
|
+
[Key in string]?: AnySchema;
|
|
28
|
+
};
|
|
29
|
+
export interface SourceCode {
|
|
30
|
+
validateName: ValueScopeName;
|
|
31
|
+
validateCode: string;
|
|
32
|
+
scopeValues: ScopeValueSets;
|
|
33
|
+
evaluated?: Code;
|
|
34
|
+
}
|
|
35
|
+
export interface DataValidationCxt<T extends string | number = string | number> {
|
|
36
|
+
instancePath: string;
|
|
37
|
+
parentData: {
|
|
38
|
+
[K in T]: any;
|
|
39
|
+
};
|
|
40
|
+
parentDataProperty: T;
|
|
41
|
+
rootData: Record<string, any> | any[];
|
|
42
|
+
dynamicAnchors: {
|
|
43
|
+
[Ref in string]?: ValidateFunction;
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
export interface ValidateFunction<T = unknown> {
|
|
47
|
+
(this: Ajv | any, data: any, dataCxt?: DataValidationCxt): data is T;
|
|
48
|
+
errors?: null | ErrorObject[];
|
|
49
|
+
evaluated?: Evaluated;
|
|
50
|
+
schema: AnySchema;
|
|
51
|
+
schemaEnv: SchemaEnv;
|
|
52
|
+
source?: SourceCode;
|
|
53
|
+
}
|
|
54
|
+
export interface JTDParser<T = unknown> {
|
|
55
|
+
(json: string): T | undefined;
|
|
56
|
+
message?: string;
|
|
57
|
+
position?: number;
|
|
58
|
+
}
|
|
59
|
+
export type EvaluatedProperties = {
|
|
60
|
+
[K in string]?: true;
|
|
61
|
+
} | true;
|
|
62
|
+
export type EvaluatedItems = number | true;
|
|
63
|
+
export interface Evaluated {
|
|
64
|
+
props?: EvaluatedProperties;
|
|
65
|
+
items?: EvaluatedItems;
|
|
66
|
+
dynamicProps: boolean;
|
|
67
|
+
dynamicItems: boolean;
|
|
68
|
+
}
|
|
69
|
+
export interface AsyncValidateFunction<T = unknown> extends ValidateFunction<T> {
|
|
70
|
+
(...args: Parameters<ValidateFunction<T>>): Promise<T>;
|
|
71
|
+
$async: true;
|
|
72
|
+
}
|
|
73
|
+
export type AnyValidateFunction<T = any> = ValidateFunction<T> | AsyncValidateFunction<T>;
|
|
74
|
+
export interface ErrorObject<K extends string = string, P = Record<string, any>, S = unknown> {
|
|
75
|
+
keyword: K;
|
|
76
|
+
instancePath: string;
|
|
77
|
+
schemaPath: string;
|
|
78
|
+
params: P;
|
|
79
|
+
propertyName?: string;
|
|
80
|
+
message?: string;
|
|
81
|
+
schema?: S;
|
|
82
|
+
parentSchema?: AnySchemaObject;
|
|
83
|
+
data?: unknown;
|
|
84
|
+
}
|
|
85
|
+
export type ErrorNoParams<K extends string, S = unknown> = ErrorObject<K, Record<string, never>, S>;
|
|
86
|
+
interface _KeywordDef {
|
|
87
|
+
keyword: string | string[];
|
|
88
|
+
type?: JSONType | JSONType[];
|
|
89
|
+
schemaType?: JSONType | JSONType[];
|
|
90
|
+
allowUndefined?: boolean;
|
|
91
|
+
$data?: boolean;
|
|
92
|
+
implements?: string[];
|
|
93
|
+
before?: string;
|
|
94
|
+
post?: boolean;
|
|
95
|
+
metaSchema?: AnySchemaObject;
|
|
96
|
+
validateSchema?: AnyValidateFunction;
|
|
97
|
+
dependencies?: string[];
|
|
98
|
+
error?: KeywordErrorDefinition;
|
|
99
|
+
$dataError?: KeywordErrorDefinition;
|
|
100
|
+
}
|
|
101
|
+
export interface CodeKeywordDefinition extends _KeywordDef {
|
|
102
|
+
code: (cxt: KeywordCxt, ruleType?: string) => void;
|
|
103
|
+
trackErrors?: boolean;
|
|
104
|
+
}
|
|
105
|
+
export type MacroKeywordFunc = (schema: any, parentSchema: AnySchemaObject, it: SchemaCxt) => AnySchema;
|
|
106
|
+
export type CompileKeywordFunc = (schema: any, parentSchema: AnySchemaObject, it: SchemaObjCxt) => DataValidateFunction;
|
|
107
|
+
export interface DataValidateFunction {
|
|
108
|
+
(...args: Parameters<ValidateFunction>): boolean | Promise<any>;
|
|
109
|
+
errors?: Partial<ErrorObject>[];
|
|
110
|
+
}
|
|
111
|
+
export interface SchemaValidateFunction {
|
|
112
|
+
(schema: any, data: any, parentSchema?: AnySchemaObject, dataCxt?: DataValidationCxt): boolean | Promise<any>;
|
|
113
|
+
errors?: Partial<ErrorObject>[];
|
|
114
|
+
}
|
|
115
|
+
export interface FuncKeywordDefinition extends _KeywordDef {
|
|
116
|
+
validate?: SchemaValidateFunction | DataValidateFunction;
|
|
117
|
+
compile?: CompileKeywordFunc;
|
|
118
|
+
schema?: boolean;
|
|
119
|
+
modifying?: boolean;
|
|
120
|
+
async?: boolean;
|
|
121
|
+
valid?: boolean;
|
|
122
|
+
errors?: boolean | "full";
|
|
123
|
+
}
|
|
124
|
+
export interface MacroKeywordDefinition extends FuncKeywordDefinition {
|
|
125
|
+
macro: MacroKeywordFunc;
|
|
126
|
+
}
|
|
127
|
+
export type KeywordDefinition = CodeKeywordDefinition | FuncKeywordDefinition | MacroKeywordDefinition;
|
|
128
|
+
export type AddedKeywordDefinition = KeywordDefinition & {
|
|
129
|
+
type: JSONType[];
|
|
130
|
+
schemaType: JSONType[];
|
|
131
|
+
};
|
|
132
|
+
export interface KeywordErrorDefinition {
|
|
133
|
+
message: string | Code | ((cxt: KeywordErrorCxt) => string | Code);
|
|
134
|
+
params?: Code | ((cxt: KeywordErrorCxt) => Code);
|
|
135
|
+
}
|
|
136
|
+
export type Vocabulary = (KeywordDefinition | string)[];
|
|
137
|
+
export interface KeywordErrorCxt {
|
|
138
|
+
gen: CodeGen;
|
|
139
|
+
keyword: string;
|
|
140
|
+
data: Name;
|
|
141
|
+
$data?: string | false;
|
|
142
|
+
schema: any;
|
|
143
|
+
parentSchema?: AnySchemaObject;
|
|
144
|
+
schemaCode: Code | number | boolean;
|
|
145
|
+
schemaValue: Code | number | boolean;
|
|
146
|
+
schemaType?: JSONType[];
|
|
147
|
+
errsCount?: Name;
|
|
148
|
+
params: KeywordCxtParams;
|
|
149
|
+
it: SchemaCxt;
|
|
150
|
+
}
|
|
151
|
+
export type KeywordCxtParams = {
|
|
152
|
+
[P in string]?: Code | string | number;
|
|
153
|
+
};
|
|
154
|
+
export type FormatValidator<T extends string | number> = (data: T) => boolean;
|
|
155
|
+
export type FormatCompare<T extends string | number> = (data1: T, data2: T) => number | undefined;
|
|
156
|
+
export type AsyncFormatValidator<T extends string | number> = (data: T) => Promise<boolean>;
|
|
157
|
+
export interface FormatDefinition<T extends string | number> {
|
|
158
|
+
type?: T extends string ? "string" | undefined : "number";
|
|
159
|
+
validate: FormatValidator<T> | (T extends string ? string | RegExp : never);
|
|
160
|
+
async?: false | undefined;
|
|
161
|
+
compare?: FormatCompare<T>;
|
|
162
|
+
}
|
|
163
|
+
export interface AsyncFormatDefinition<T extends string | number> {
|
|
164
|
+
type?: T extends string ? "string" | undefined : "number";
|
|
165
|
+
validate: AsyncFormatValidator<T>;
|
|
166
|
+
async: true;
|
|
167
|
+
compare?: FormatCompare<T>;
|
|
168
|
+
}
|
|
169
|
+
export type AddedFormat = true | RegExp | FormatValidator<string> | FormatDefinition<string> | FormatDefinition<number> | AsyncFormatDefinition<string> | AsyncFormatDefinition<number>;
|
|
170
|
+
export type Format = AddedFormat | string;
|
|
171
|
+
export interface RegExpEngine {
|
|
172
|
+
(pattern: string, u: string): RegExpLike;
|
|
173
|
+
code: string;
|
|
174
|
+
}
|
|
175
|
+
export interface RegExpLike {
|
|
176
|
+
test: (s: string) => boolean;
|
|
177
|
+
}
|
|
178
|
+
export interface UriResolver {
|
|
179
|
+
parse(uri: string): URIComponent;
|
|
180
|
+
resolve(base: string, path: string): string;
|
|
181
|
+
serialize(component: URIComponent): string;
|
|
182
|
+
}
|
|
183
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/types/index.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
type StrictNullChecksWrapper<Name extends string, Type> = undefined extends null ? `strictNullChecks must be true in tsconfig to use ${Name}` : Type;
|
|
2
|
+
type UnionToIntersection<U> = (U extends any ? (_: U) => void : never) extends (_: infer I) => void ? I : never;
|
|
3
|
+
export type SomeJSONSchema = UncheckedJSONSchemaType<Known, true>;
|
|
4
|
+
type UncheckedPartialSchema<T> = Partial<UncheckedJSONSchemaType<T, true>>;
|
|
5
|
+
export type PartialSchema<T> = StrictNullChecksWrapper<"PartialSchema", UncheckedPartialSchema<T>>;
|
|
6
|
+
type JSONType<T extends string, IsPartial extends boolean> = IsPartial extends true ? T | undefined : T;
|
|
7
|
+
interface NumberKeywords {
|
|
8
|
+
minimum?: number;
|
|
9
|
+
maximum?: number;
|
|
10
|
+
exclusiveMinimum?: number;
|
|
11
|
+
exclusiveMaximum?: number;
|
|
12
|
+
multipleOf?: number;
|
|
13
|
+
format?: string;
|
|
14
|
+
}
|
|
15
|
+
interface StringKeywords {
|
|
16
|
+
minLength?: number;
|
|
17
|
+
maxLength?: number;
|
|
18
|
+
pattern?: string;
|
|
19
|
+
format?: string;
|
|
20
|
+
}
|
|
21
|
+
type UncheckedJSONSchemaType<T, IsPartial extends boolean> = (// these two unions allow arbitrary unions of types
|
|
22
|
+
{
|
|
23
|
+
anyOf: readonly UncheckedJSONSchemaType<T, IsPartial>[];
|
|
24
|
+
} | {
|
|
25
|
+
oneOf: readonly UncheckedJSONSchemaType<T, IsPartial>[];
|
|
26
|
+
} | ({
|
|
27
|
+
type: readonly (T extends number ? JSONType<"number" | "integer", IsPartial> : T extends string ? JSONType<"string", IsPartial> : T extends boolean ? JSONType<"boolean", IsPartial> : never)[];
|
|
28
|
+
} & UnionToIntersection<T extends number ? NumberKeywords : T extends string ? StringKeywords : T extends boolean ? {} : never>) | ((T extends number ? {
|
|
29
|
+
type: JSONType<"number" | "integer", IsPartial>;
|
|
30
|
+
} & NumberKeywords : T extends string ? {
|
|
31
|
+
type: JSONType<"string", IsPartial>;
|
|
32
|
+
} & StringKeywords : T extends boolean ? {
|
|
33
|
+
type: JSONType<"boolean", IsPartial>;
|
|
34
|
+
} : T extends readonly [any, ...any[]] ? {
|
|
35
|
+
type: JSONType<"array", IsPartial>;
|
|
36
|
+
items: {
|
|
37
|
+
readonly [K in keyof T]-?: UncheckedJSONSchemaType<T[K], false> & Nullable<T[K]>;
|
|
38
|
+
} & {
|
|
39
|
+
length: T["length"];
|
|
40
|
+
};
|
|
41
|
+
minItems: T["length"];
|
|
42
|
+
} & ({
|
|
43
|
+
maxItems: T["length"];
|
|
44
|
+
} | {
|
|
45
|
+
additionalItems: false;
|
|
46
|
+
}) : T extends readonly any[] ? {
|
|
47
|
+
type: JSONType<"array", IsPartial>;
|
|
48
|
+
items: UncheckedJSONSchemaType<T[0], false>;
|
|
49
|
+
contains?: UncheckedPartialSchema<T[0]>;
|
|
50
|
+
minItems?: number;
|
|
51
|
+
maxItems?: number;
|
|
52
|
+
minContains?: number;
|
|
53
|
+
maxContains?: number;
|
|
54
|
+
uniqueItems?: true;
|
|
55
|
+
additionalItems?: never;
|
|
56
|
+
} : T extends Record<string, any> ? {
|
|
57
|
+
type: JSONType<"object", IsPartial>;
|
|
58
|
+
additionalProperties?: boolean | UncheckedJSONSchemaType<T[string], false>;
|
|
59
|
+
unevaluatedProperties?: boolean | UncheckedJSONSchemaType<T[string], false>;
|
|
60
|
+
properties?: IsPartial extends true ? Partial<UncheckedPropertiesSchema<T>> : UncheckedPropertiesSchema<T>;
|
|
61
|
+
patternProperties?: Record<string, UncheckedJSONSchemaType<T[string], false>>;
|
|
62
|
+
propertyNames?: Omit<UncheckedJSONSchemaType<string, false>, "type"> & {
|
|
63
|
+
type?: "string";
|
|
64
|
+
};
|
|
65
|
+
dependencies?: {
|
|
66
|
+
[K in keyof T]?: readonly (keyof T)[] | UncheckedPartialSchema<T>;
|
|
67
|
+
};
|
|
68
|
+
dependentRequired?: {
|
|
69
|
+
[K in keyof T]?: readonly (keyof T)[];
|
|
70
|
+
};
|
|
71
|
+
dependentSchemas?: {
|
|
72
|
+
[K in keyof T]?: UncheckedPartialSchema<T>;
|
|
73
|
+
};
|
|
74
|
+
minProperties?: number;
|
|
75
|
+
maxProperties?: number;
|
|
76
|
+
} & (IsPartial extends true ? {
|
|
77
|
+
required: readonly (keyof T)[];
|
|
78
|
+
} : [UncheckedRequiredMembers<T>] extends [never] ? {
|
|
79
|
+
required?: readonly UncheckedRequiredMembers<T>[];
|
|
80
|
+
} : {
|
|
81
|
+
required: readonly UncheckedRequiredMembers<T>[];
|
|
82
|
+
}) : T extends null ? {
|
|
83
|
+
type: JSONType<"null", IsPartial>;
|
|
84
|
+
nullable: true;
|
|
85
|
+
} : never) & {
|
|
86
|
+
allOf?: readonly UncheckedPartialSchema<T>[];
|
|
87
|
+
anyOf?: readonly UncheckedPartialSchema<T>[];
|
|
88
|
+
oneOf?: readonly UncheckedPartialSchema<T>[];
|
|
89
|
+
if?: UncheckedPartialSchema<T>;
|
|
90
|
+
then?: UncheckedPartialSchema<T>;
|
|
91
|
+
else?: UncheckedPartialSchema<T>;
|
|
92
|
+
not?: UncheckedPartialSchema<T>;
|
|
93
|
+
})) & {
|
|
94
|
+
[keyword: string]: any;
|
|
95
|
+
$id?: string;
|
|
96
|
+
$ref?: string;
|
|
97
|
+
$defs?: Record<string, UncheckedJSONSchemaType<Known, true>>;
|
|
98
|
+
definitions?: Record<string, UncheckedJSONSchemaType<Known, true>>;
|
|
99
|
+
};
|
|
100
|
+
export type JSONSchemaType<T> = StrictNullChecksWrapper<"JSONSchemaType", UncheckedJSONSchemaType<T, false>>;
|
|
101
|
+
type Known = {
|
|
102
|
+
[key: string]: Known;
|
|
103
|
+
} | [Known, ...Known[]] | Known[] | number | string | boolean | null;
|
|
104
|
+
type UncheckedPropertiesSchema<T> = {
|
|
105
|
+
[K in keyof T]-?: (UncheckedJSONSchemaType<T[K], false> & Nullable<T[K]>) | {
|
|
106
|
+
$ref: string;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
export type PropertiesSchema<T> = StrictNullChecksWrapper<"PropertiesSchema", UncheckedPropertiesSchema<T>>;
|
|
110
|
+
type UncheckedRequiredMembers<T> = {
|
|
111
|
+
[K in keyof T]-?: undefined extends T[K] ? never : K;
|
|
112
|
+
}[keyof T];
|
|
113
|
+
export type RequiredMembers<T> = StrictNullChecksWrapper<"RequiredMembers", UncheckedRequiredMembers<T>>;
|
|
114
|
+
type Nullable<T> = undefined extends T ? {
|
|
115
|
+
nullable: true;
|
|
116
|
+
const?: null;
|
|
117
|
+
enum?: readonly (T | null)[];
|
|
118
|
+
default?: T | null;
|
|
119
|
+
} : {
|
|
120
|
+
nullable?: false;
|
|
121
|
+
const?: T;
|
|
122
|
+
enum?: readonly T[];
|
|
123
|
+
default?: T;
|
|
124
|
+
};
|
|
125
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"json-schema.js","sourceRoot":"","sources":["../../lib/types/json-schema.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
/** numeric strings */
|
|
2
|
+
type NumberType = "float32" | "float64" | "int8" | "uint8" | "int16" | "uint16" | "int32" | "uint32";
|
|
3
|
+
/** string strings */
|
|
4
|
+
type StringType = "string" | "timestamp";
|
|
5
|
+
/** Generic JTD Schema without inference of the represented type */
|
|
6
|
+
export type SomeJTDSchemaType = (// ref
|
|
7
|
+
{
|
|
8
|
+
ref: string;
|
|
9
|
+
} | {
|
|
10
|
+
type: NumberType | StringType | "boolean";
|
|
11
|
+
} | {
|
|
12
|
+
enum: string[];
|
|
13
|
+
} | {
|
|
14
|
+
elements: SomeJTDSchemaType;
|
|
15
|
+
} | {
|
|
16
|
+
values: SomeJTDSchemaType;
|
|
17
|
+
} | {
|
|
18
|
+
properties: Record<string, SomeJTDSchemaType>;
|
|
19
|
+
optionalProperties?: Record<string, SomeJTDSchemaType>;
|
|
20
|
+
additionalProperties?: boolean;
|
|
21
|
+
} | {
|
|
22
|
+
properties?: Record<string, SomeJTDSchemaType>;
|
|
23
|
+
optionalProperties: Record<string, SomeJTDSchemaType>;
|
|
24
|
+
additionalProperties?: boolean;
|
|
25
|
+
} | {
|
|
26
|
+
discriminator: string;
|
|
27
|
+
mapping: Record<string, SomeJTDSchemaType>;
|
|
28
|
+
} | {}) & {
|
|
29
|
+
nullable?: boolean;
|
|
30
|
+
metadata?: Record<string, unknown>;
|
|
31
|
+
definitions?: Record<string, SomeJTDSchemaType>;
|
|
32
|
+
};
|
|
33
|
+
/** required keys of an object, not undefined */
|
|
34
|
+
type RequiredKeys<T> = {
|
|
35
|
+
[K in keyof T]-?: undefined extends T[K] ? never : K;
|
|
36
|
+
}[keyof T];
|
|
37
|
+
/** optional or undifined-able keys of an object */
|
|
38
|
+
type OptionalKeys<T> = {
|
|
39
|
+
[K in keyof T]-?: undefined extends T[K] ? K : never;
|
|
40
|
+
}[keyof T];
|
|
41
|
+
/** type is true if T is a union type */
|
|
42
|
+
type IsUnion_<T, U extends T = T> = false extends (T extends unknown ? ([U] extends [T] ? false : true) : never) ? false : true;
|
|
43
|
+
type IsUnion<T> = IsUnion_<T>;
|
|
44
|
+
/** type is true if T is identically E */
|
|
45
|
+
type TypeEquality<T, E> = [T] extends [E] ? ([E] extends [T] ? true : false) : false;
|
|
46
|
+
/** type is true if T or null is identically E or null*/
|
|
47
|
+
type NullTypeEquality<T, E> = TypeEquality<T | null, E | null>;
|
|
48
|
+
/** gets only the string literals of a type or null if a type isn't a string literal */
|
|
49
|
+
type EnumString<T> = [T] extends [never] ? null : T extends string ? string extends T ? null : T : null;
|
|
50
|
+
/** true if type is a union of string literals */
|
|
51
|
+
type IsEnum<T> = null extends EnumString<T> ? false : true;
|
|
52
|
+
/** true only if all types are array types (not tuples) */
|
|
53
|
+
type IsElements<T> = false extends IsUnion<T> ? [T] extends [readonly unknown[]] ? undefined extends T[0.5] ? false : true : false : false;
|
|
54
|
+
/** true if the the type is a values type */
|
|
55
|
+
type IsValues<T> = false extends IsUnion<T> ? TypeEquality<keyof T, string> : false;
|
|
56
|
+
/** true if type is a properties type and Union is false, or type is a discriminator type and Union is true */
|
|
57
|
+
type IsRecord<T, Union extends boolean> = Union extends IsUnion<T> ? null extends EnumString<keyof T> ? false : true : false;
|
|
58
|
+
/** true if type represents an empty record */
|
|
59
|
+
type IsEmptyRecord<T> = [T] extends [Record<string, never>] ? [T] extends [never] ? false : true : false;
|
|
60
|
+
/** actual schema */
|
|
61
|
+
export type JTDSchemaType<T, D extends Record<string, unknown> = Record<string, never>> = (// refs - where null wasn't specified, must match exactly
|
|
62
|
+
(null extends EnumString<keyof D> ? never : ({
|
|
63
|
+
[K in keyof D]: [T] extends [D[K]] ? {
|
|
64
|
+
ref: K;
|
|
65
|
+
} : never;
|
|
66
|
+
}[keyof D] & {
|
|
67
|
+
nullable?: false;
|
|
68
|
+
}) | (null extends T ? {
|
|
69
|
+
[K in keyof D]: [Exclude<T, null>] extends [Exclude<D[K], null>] ? {
|
|
70
|
+
ref: K;
|
|
71
|
+
} : never;
|
|
72
|
+
}[keyof D] & {
|
|
73
|
+
nullable: true;
|
|
74
|
+
} : never)) | (unknown extends T ? {
|
|
75
|
+
nullable?: boolean;
|
|
76
|
+
} : never) | ((true extends NullTypeEquality<T, number> ? {
|
|
77
|
+
type: NumberType;
|
|
78
|
+
} : true extends NullTypeEquality<T, boolean> ? {
|
|
79
|
+
type: "boolean";
|
|
80
|
+
} : true extends NullTypeEquality<T, string> ? {
|
|
81
|
+
type: StringType;
|
|
82
|
+
} : true extends NullTypeEquality<T, Date> ? {
|
|
83
|
+
type: "timestamp";
|
|
84
|
+
} : true extends IsEnum<Exclude<T, null>> ? {
|
|
85
|
+
enum: EnumString<Exclude<T, null>>[];
|
|
86
|
+
} : true extends IsElements<Exclude<T, null>> ? T extends readonly (infer E)[] ? {
|
|
87
|
+
elements: JTDSchemaType<E, D>;
|
|
88
|
+
} : never : true extends IsEmptyRecord<Exclude<T, null>> ? {
|
|
89
|
+
properties: Record<string, never>;
|
|
90
|
+
optionalProperties?: Record<string, never>;
|
|
91
|
+
} | {
|
|
92
|
+
optionalProperties: Record<string, never>;
|
|
93
|
+
} : true extends IsValues<Exclude<T, null>> ? T extends Record<string, infer V> ? {
|
|
94
|
+
values: JTDSchemaType<V, D>;
|
|
95
|
+
} : never : true extends IsRecord<Exclude<T, null>, false> ? ([RequiredKeys<Exclude<T, null>>] extends [never] ? {
|
|
96
|
+
properties?: Record<string, never>;
|
|
97
|
+
} : {
|
|
98
|
+
properties: {
|
|
99
|
+
[K in RequiredKeys<T>]: JTDSchemaType<T[K], D>;
|
|
100
|
+
};
|
|
101
|
+
}) & ([OptionalKeys<Exclude<T, null>>] extends [never] ? {
|
|
102
|
+
optionalProperties?: Record<string, never>;
|
|
103
|
+
} : {
|
|
104
|
+
optionalProperties: {
|
|
105
|
+
[K in OptionalKeys<T>]: JTDSchemaType<Exclude<T[K], undefined>, D>;
|
|
106
|
+
};
|
|
107
|
+
}) & {
|
|
108
|
+
additionalProperties?: boolean;
|
|
109
|
+
} : true extends IsRecord<Exclude<T, null>, true> ? {
|
|
110
|
+
[K in keyof Exclude<T, null>]-?: Exclude<T, null>[K] extends string ? {
|
|
111
|
+
discriminator: K;
|
|
112
|
+
mapping: {
|
|
113
|
+
[M in Exclude<T, null>[K]]: JTDSchemaType<Omit<T extends Record<K, M> ? T : never, K>, D>;
|
|
114
|
+
};
|
|
115
|
+
} : never;
|
|
116
|
+
}[keyof Exclude<T, null>] : never) & (null extends T ? {
|
|
117
|
+
nullable: true;
|
|
118
|
+
} : {
|
|
119
|
+
nullable?: false;
|
|
120
|
+
}))) & {
|
|
121
|
+
metadata?: Record<string, unknown>;
|
|
122
|
+
definitions?: {
|
|
123
|
+
[K in keyof D]: JTDSchemaType<D[K], D>;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
type JTDDataDef<S, D extends Record<string, unknown>> = // ref
|
|
127
|
+
(S extends {
|
|
128
|
+
ref: string;
|
|
129
|
+
} ? D extends {
|
|
130
|
+
[K in S["ref"]]: infer V;
|
|
131
|
+
} ? JTDDataDef<V, D> : never : S extends {
|
|
132
|
+
type: NumberType;
|
|
133
|
+
} ? number : S extends {
|
|
134
|
+
type: "boolean";
|
|
135
|
+
} ? boolean : S extends {
|
|
136
|
+
type: "string";
|
|
137
|
+
} ? string : S extends {
|
|
138
|
+
type: "timestamp";
|
|
139
|
+
} ? string | Date : S extends {
|
|
140
|
+
enum: readonly (infer E)[];
|
|
141
|
+
} ? string extends E ? never : [E] extends [string] ? E : never : S extends {
|
|
142
|
+
elements: infer E;
|
|
143
|
+
} ? JTDDataDef<E, D>[] : S extends {
|
|
144
|
+
properties: Record<string, unknown>;
|
|
145
|
+
optionalProperties?: Record<string, unknown>;
|
|
146
|
+
additionalProperties?: boolean;
|
|
147
|
+
} ? {
|
|
148
|
+
-readonly [K in keyof S["properties"]]-?: JTDDataDef<S["properties"][K], D>;
|
|
149
|
+
} & {
|
|
150
|
+
-readonly [K in keyof S["optionalProperties"]]+?: JTDDataDef<S["optionalProperties"][K], D>;
|
|
151
|
+
} & ([S["additionalProperties"]] extends [true] ? Record<string, unknown> : unknown) : S extends {
|
|
152
|
+
properties?: Record<string, unknown>;
|
|
153
|
+
optionalProperties: Record<string, unknown>;
|
|
154
|
+
additionalProperties?: boolean;
|
|
155
|
+
} ? {
|
|
156
|
+
-readonly [K in keyof S["properties"]]-?: JTDDataDef<S["properties"][K], D>;
|
|
157
|
+
} & {
|
|
158
|
+
-readonly [K in keyof S["optionalProperties"]]+?: JTDDataDef<S["optionalProperties"][K], D>;
|
|
159
|
+
} & ([S["additionalProperties"]] extends [true] ? Record<string, unknown> : unknown) : S extends {
|
|
160
|
+
values: infer V;
|
|
161
|
+
} ? Record<string, JTDDataDef<V, D>> : S extends {
|
|
162
|
+
discriminator: infer M;
|
|
163
|
+
mapping: Record<string, unknown>;
|
|
164
|
+
} ? [M] extends [string] ? {
|
|
165
|
+
[K in keyof S["mapping"]]: JTDDataDef<S["mapping"][K], D> & {
|
|
166
|
+
[KM in M]: K;
|
|
167
|
+
};
|
|
168
|
+
}[keyof S["mapping"]] : never : unknown) | (S extends {
|
|
169
|
+
nullable: true;
|
|
170
|
+
} ? null : never);
|
|
171
|
+
export type JTDDataType<S> = S extends {
|
|
172
|
+
definitions: Record<string, unknown>;
|
|
173
|
+
} ? JTDDataDef<S, S["definitions"]> : JTDDataDef<S, Record<string, never>>;
|
|
174
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"jtd-schema.js","sourceRoot":"","sources":["../../lib/types/jtd-schema.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types";
|
|
2
|
+
import type { KeywordCxt } from "../../compile/validate";
|
|
3
|
+
export type AdditionalItemsError = ErrorObject<"additionalItems", {
|
|
4
|
+
limit: number;
|
|
5
|
+
}, AnySchema>;
|
|
6
|
+
declare const def: CodeKeywordDefinition;
|
|
7
|
+
export declare function validateAdditionalItems(cxt: KeywordCxt, items: AnySchema[]): void;
|
|
8
|
+
export default def;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"additionalItems.js","sourceRoot":"","sources":["../../../lib/vocabularies/applicator/additionalItems.ts"],"names":[],"mappings":";;;AAOA,mDAAuD;AACvD,6CAA2E;AAI3E,MAAM,KAAK,GAA2B;IACpC,OAAO,EAAE,CAAC,EAAC,MAAM,EAAE,EAAC,GAAG,EAAC,EAAC,EAAE,EAAE,CAAC,IAAA,aAAG,EAAA,2BAA2B,GAAG,QAAQ;IACvE,MAAM,EAAE,CAAC,EAAC,MAAM,EAAE,EAAC,GAAG,EAAC,EAAC,EAAE,EAAE,CAAC,IAAA,WAAC,EAAA,WAAW,GAAG,GAAG;CAChD,CAAA;AAED,MAAM,GAAG,GAA0B;IACjC,OAAO,EAAE,iBAA0B;IACnC,IAAI,EAAE,OAAO;IACb,UAAU,EAAE,CAAC,SAAS,EAAE,QAAQ,CAAC;IACjC,MAAM,EAAE,aAAa;IACrB,KAAK;IACL,IAAI,CAAC,GAAe;QAClB,MAAM,EAAC,YAAY,EAAE,EAAE,EAAC,GAAG,GAAG,CAAA;QAC9B,MAAM,EAAC,KAAK,EAAC,GAAG,YAAY,CAAA;QAC5B,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;YAC1B,IAAA,sBAAe,EAAC,EAAE,EAAE,sEAAsE,CAAC,CAAA;YAC3F,OAAM;QACR,CAAC;QACD,uBAAuB,CAAC,GAAG,EAAE,KAAK,CAAC,CAAA;IACrC,CAAC;CACF,CAAA;AAED,SAAgB,uBAAuB,CAAC,GAAe,EAAE,KAAkB;IACzE,MAAM,EAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE,EAAC,GAAG,GAAG,CAAA;IAC5C,EAAE,CAAC,KAAK,GAAG,IAAI,CAAA;IACf,MAAM,GAAG,GAAG,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,IAAA,WAAC,EAAA,GAAG,IAAI,SAAS,CAAC,CAAA;IAC/C,IAAI,MAAM,KAAK,KAAK,EAAE,CAAC;QACrB,GAAG,CAAC,SAAS,CAAC,EAAC,GAAG,EAAE,KAAK,CAAC,MAAM,EAAC,CAAC,CAAA;QAClC,GAAG,CAAC,IAAI,CAAC,IAAA,WAAC,EAAA,GAAG,GAAG,OAAO,KAAK,CAAC,MAAM,EAAE,CAAC,CAAA;IACxC,CAAC;SAAM,IAAI,OAAO,MAAM,IAAI,QAAQ,IAAI,CAAC,IAAA,wBAAiB,EAAC,EAAE,EAAE,MAAM,CAAC,EAAE,CAAC;QACvE,MAAM,KAAK,GAAG,GAAG,CAAC,GAAG,CAAC,OAAO,EAAE,IAAA,WAAC,EAAA,GAAG,GAAG,OAAO,KAAK,CAAC,MAAM,EAAE,CAAC,CAAA,CAAC,WAAW;QACxE,GAAG,CAAC,EAAE,CAAC,IAAA,aAAG,EAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAA;QAC9C,GAAG,CAAC,EAAE,CAAC,KAAK,CAAC,CAAA;IACf,CAAC;IAED,SAAS,aAAa,CAAC,KAAW;QAChC,GAAG,CAAC,QAAQ,CAAC,GAAG,EAAE,KAAK,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,EAAE;YACzC,GAAG,CAAC,SAAS,CAAC,EAAC,OAAO,EAAE,QAAQ,EAAE,CAAC,EAAE,YAAY,EAAE,WAAI,CAAC,GAAG,EAAC,EAAE,KAAK,CAAC,CAAA;YACpE,IAAI,CAAC,EAAE,CAAC,SAAS;gBAAE,GAAG,CAAC,EAAE,CAAC,IAAA,aAAG,EAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,KAAK,EAAE,CAAC,CAAA;QAC1D,CAAC,CAAC,CAAA;IACJ,CAAC;AACH,CAAC;AAnBD,0DAmBC;AAED,kBAAe,GAAG,CAAA"}
|
package/.output/server/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { CodeKeywordDefinition, AddedKeywordDefinition, ErrorObject, AnySchema } from "../../types";
|
|
2
|
+
export type AdditionalPropertiesError = ErrorObject<"additionalProperties", {
|
|
3
|
+
additionalProperty: string;
|
|
4
|
+
}, AnySchema>;
|
|
5
|
+
declare const def: CodeKeywordDefinition & AddedKeywordDefinition;
|
|
6
|
+
export default def;
|
package/.output/server/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"additionalProperties.js","sourceRoot":"","sources":["../../../lib/vocabularies/applicator/additionalProperties.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"allOf.js","sourceRoot":"","sources":["../../../lib/vocabularies/applicator/allOf.ts"],"names":[],"mappings":";;AAEA,6CAAoD;AAEpD,MAAM,GAAG,GAA0B;IACjC,OAAO,EAAE,OAAO;IAChB,UAAU,EAAE,OAAO;IACnB,IAAI,CAAC,GAAe;QAClB,MAAM,EAAC,GAAG,EAAE,MAAM,EAAE,EAAE,EAAC,GAAG,GAAG,CAAA;QAC7B,wBAAwB;QACxB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC;YAAE,MAAM,IAAI,KAAK,CAAC,0BAA0B,CAAC,CAAA;QACvE,MAAM,KAAK,GAAG,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;QAC/B,MAAM,CAAC,OAAO,CAAC,CAAC,GAAc,EAAE,CAAS,EAAE,EAAE;YAC3C,IAAI,IAAA,wBAAiB,EAAC,EAAE,EAAE,GAAG,CAAC;gBAAE,OAAM;YACtC,MAAM,MAAM,GAAG,GAAG,CAAC,SAAS,CAAC,EAAC,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,CAAC,EAAC,EAAE,KAAK,CAAC,CAAA;YACtE,GAAG,CAAC,EAAE,CAAC,KAAK,CAAC,CAAA;YACb,GAAG,CAAC,cAAc,CAAC,MAAM,CAAC,CAAA;QAC5B,CAAC,CAAC,CAAA;IACJ,CAAC;CACF,CAAA;AAED,kBAAe,GAAG,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"anyOf.js","sourceRoot":"","sources":["../../../lib/vocabularies/applicator/anyOf.ts"],"names":[],"mappings":";;AACA,kCAAqC;AAIrC,MAAM,GAAG,GAA0B;IACjC,OAAO,EAAE,OAAO;IAChB,UAAU,EAAE,OAAO;IACnB,WAAW,EAAE,IAAI;IACjB,IAAI,EAAE,oBAAa;IACnB,KAAK,EAAE,EAAC,OAAO,EAAE,8BAA8B,EAAC;CACjD,CAAA;AAED,kBAAe,GAAG,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contains.js","sourceRoot":"","sources":["../../../lib/vocabularies/applicator/contains.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { CodeKeywordDefinition, ErrorObject, KeywordErrorDefinition, SchemaMap, AnySchema } from "../../types";
|
|
2
|
+
import type { KeywordCxt } from "../../compile/validate";
|
|
3
|
+
export type PropertyDependencies = {
|
|
4
|
+
[K in string]?: string[];
|
|
5
|
+
};
|
|
6
|
+
export interface DependenciesErrorParams {
|
|
7
|
+
property: string;
|
|
8
|
+
missingProperty: string;
|
|
9
|
+
depsCount: number;
|
|
10
|
+
deps: string;
|
|
11
|
+
}
|
|
12
|
+
export type DependenciesError = ErrorObject<"dependencies", DependenciesErrorParams, {
|
|
13
|
+
[K in string]?: string[] | AnySchema;
|
|
14
|
+
}>;
|
|
15
|
+
export declare const error: KeywordErrorDefinition;
|
|
16
|
+
declare const def: CodeKeywordDefinition;
|
|
17
|
+
export declare function validatePropertyDeps(cxt: KeywordCxt, propertyDeps?: {
|
|
18
|
+
[K in string]?: string[];
|
|
19
|
+
}): void;
|
|
20
|
+
export declare function validateSchemaDeps(cxt: KeywordCxt, schemaDeps?: SchemaMap): void;
|
|
21
|
+
export default def;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dependencies.js","sourceRoot":"","sources":["../../../lib/vocabularies/applicator/dependencies.ts"],"names":[],"mappings":";;;AAQA,mDAA4C;AAC5C,6CAAoD;AACpD,kCAAmG;AAmBtF,QAAA,KAAK,GAA2B;IAC3C,OAAO,EAAE,CAAC,EAAC,MAAM,EAAE,EAAC,QAAQ,EAAE,SAAS,EAAE,IAAI,EAAC,EAAC,EAAE,EAAE;QACjD,MAAM,YAAY,GAAG,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,YAAY,CAAA;QAChE,OAAO,IAAA,aAAG,EAAA,aAAa,YAAY,IAAI,IAAI,kBAAkB,QAAQ,aAAa,CAAA;IACpF,CAAC;IACD,MAAM,EAAE,CAAC,EAAC,MAAM,EAAE,EAAC,QAAQ,EAAE,SAAS,EAAE,IAAI,EAAE,eAAe,EAAC,EAAC,EAAE,EAAE,CACjE,IAAA,WAAC,EAAA,cAAc,QAAQ;uBACJ,eAAe;iBACrB,SAAS;YACd,IAAI,GAAG,EAAE,2BAA2B;CAC/C,CAAA;AAED,MAAM,GAAG,GAA0B;IACjC,OAAO,EAAE,cAAc;IACvB,IAAI,EAAE,QAAQ;IACd,UAAU,EAAE,QAAQ;IACpB,KAAK,EAAL,aAAK;IACL,IAAI,CAAC,GAAe;QAClB,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC,GAAG,iBAAiB,CAAC,GAAG,CAAC,CAAA;QAClD,oBAAoB,CAAC,GAAG,EAAE,QAAQ,CAAC,CAAA;QACnC,kBAAkB,CAAC,GAAG,EAAE,OAAO,CAAC,CAAA;IAClC,CAAC;CACF,CAAA;AAED,SAAS,iBAAiB,CAAC,EAAC,MAAM,EAAa;IAC7C,MAAM,YAAY,GAAyB,EAAE,CAAA;IAC7C,MAAM,UAAU,GAAuB,EAAE,CAAA;IACzC,KAAK,MAAM,GAAG,IAAI,MAAM,EAAE,CAAC;QACzB,IAAI,GAAG,KAAK,WAAW;YAAE,SAAQ;QACjC,MAAM,IAAI,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,UAAU,CAAA;QACnE,IAAI,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC,CAAA;IACzB,CAAC;IACD,OAAO,CAAC,YAAY,EAAE,UAAU,CAAC,CAAA;AACnC,CAAC;AAED,SAAgB,oBAAoB,CAClC,GAAe,EACf,eAA2C,GAAG,CAAC,MAAM;IAErD,MAAM,EAAC,GAAG,EAAE,IAAI,EAAE,EAAE,EAAC,GAAG,GAAG,CAAA;IAC3B,IAAI,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,MAAM,KAAK,CAAC;QAAE,OAAM;IAClD,MAAM,OAAO,GAAG,GAAG,CAAC,GAAG,CAAC,SAAS,CAAC,CAAA;IAClC,KAAK,MAAM,IAAI,IAAI,YAAY,EAAE,CAAC;QAChC,MAAM,IAAI,GAAG,YAAY,CAAC,IAAI,CAAa,CAAA;QAC3C,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;YAAE,SAAQ;QAC/B,MAAM,WAAW,GAAG,IAAA,qBAAc,EAAC,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,aAAa,CAAC,CAAA;QAC1E,GAAG,CAAC,SAAS,CAAC;YACZ,QAAQ,EAAE,IAAI;YACd,SAAS,EAAE,IAAI,CAAC,MAAM;YACtB,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC;SACtB,CAAC,CAAA;QACF,IAAI,EAAE,CAAC,SAAS,EAAE,CAAC;YACjB,GAAG,CAAC,EAAE,CAAC,WAAW,EAAE,GAAG,EAAE;gBACvB,KAAK,MAAM,OAAO,IAAI,IAAI,EAAE,CAAC;oBAC3B,IAAA,6BAAsB,EAAC,GAAG,EAAE,OAAO,CAAC,CAAA;gBACtC,CAAC;YACH,CAAC,CAAC,CAAA;QACJ,CAAC;aAAM,CAAC;YACN,GAAG,CAAC,EAAE,CAAC,IAAA,WAAC,EAAA,GAAG,WAAW,QAAQ,IAAA,uBAAgB,EAAC,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC,GAAG,CAAC,CAAA;YACtE,IAAA,wBAAiB,EAAC,GAAG,EAAE,OAAO,CAAC,CAAA;YAC/B,GAAG,CAAC,IAAI,EAAE,CAAA;QACZ,CAAC;IACH,CAAC;AACH,CAAC;AA5BD,oDA4BC;AAED,SAAgB,kBAAkB,CAAC,GAAe,EAAE,aAAwB,GAAG,CAAC,MAAM;IACpF,MAAM,EAAC,GAAG,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE,EAAC,GAAG,GAAG,CAAA;IACpC,MAAM,KAAK,GAAG,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;IAC/B,KAAK,MAAM,IAAI,IAAI,UAAU,EAAE,CAAC;QAC9B,IAAI,IAAA,wBAAiB,EAAC,EAAE,EAAE,UAAU,CAAC,IAAI,CAAc,CAAC;YAAE,SAAQ;QAClE,GAAG,CAAC,EAAE,CACJ,IAAA,qBAAc,EAAC,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,aAAa,CAAC,EACtD,GAAG,EAAE;YACH,MAAM,MAAM,GAAG,GAAG,CAAC,SAAS,CAAC,EAAC,OAAO,EAAE,UAAU,EAAE,IAAI,EAAC,EAAE,KAAK,CAAC,CAAA;YAChE,GAAG,CAAC,mBAAmB,CAAC,MAAM,EAAE,KAAK,CAAC,CAAA;QACxC,CAAC,EACD,GAAG,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,WAAW;SACvC,CAAA;QACD,GAAG,CAAC,EAAE,CAAC,KAAK,CAAC,CAAA;IACf,CAAC;AACH,CAAC;AAfD,gDAeC;AAED,kBAAe,GAAG,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dependentSchemas.js","sourceRoot":"","sources":["../../../lib/vocabularies/applicator/dependentSchemas.ts"],"names":[],"mappings":";;AACA,iDAAiD;AAEjD,MAAM,GAAG,GAA0B;IACjC,OAAO,EAAE,kBAAkB;IAC3B,IAAI,EAAE,QAAQ;IACd,UAAU,EAAE,QAAQ;IACpB,IAAI,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,IAAA,iCAAkB,EAAC,GAAG,CAAC;CACvC,CAAA;AAED,kBAAe,GAAG,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"if.js","sourceRoot":"","sources":["../../../lib/vocabularies/applicator/if.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ErrorNoParams, Vocabulary } from "../../types";
|
|
2
|
+
import { AdditionalItemsError } from "./additionalItems";
|
|
3
|
+
import { ItemsError } from "./items2020";
|
|
4
|
+
import { ContainsError } from "./contains";
|
|
5
|
+
import { DependenciesError } from "./dependencies";
|
|
6
|
+
import { PropertyNamesError } from "./propertyNames";
|
|
7
|
+
import { AdditionalPropertiesError } from "./additionalProperties";
|
|
8
|
+
import { NotKeywordError } from "./not";
|
|
9
|
+
import { AnyOfError } from "./anyOf";
|
|
10
|
+
import { OneOfError } from "./oneOf";
|
|
11
|
+
import { IfKeywordError } from "./if";
|
|
12
|
+
export default function getApplicator(draft2020?: boolean): Vocabulary;
|
|
13
|
+
export type ApplicatorKeywordError = ErrorNoParams<"false schema"> | AdditionalItemsError | ItemsError | ContainsError | AdditionalPropertiesError | DependenciesError | IfKeywordError | AnyOfError | OneOfError | NotKeywordError | PropertyNamesError;
|