@kubb/agent 4.33.0 → 4.33.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.output/nitro.json +1 -1
- package/.output/server/chunks/nitro/nitro.mjs +3554 -2113
- package/.output/server/chunks/nitro/nitro.mjs.map +1 -1
- package/.output/server/chunks/routes/api/health.get.mjs +5 -5
- package/.output/server/index.mjs +5 -5
- 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/@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/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 +54 -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 +682 -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 +25 -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 +14 -0
- package/.output/server/node_modules/@redocly/openapi-core/lib/decorators/common/filters/filter-out.js +14 -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-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/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 +9 -1
- package/package.json +18 -17
- /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,292 @@
|
|
|
1
|
+
import { listOf, mapOf } from './index.js';
|
|
2
|
+
import { Oas3Types } from './oas3.js';
|
|
3
|
+
const Root = {
|
|
4
|
+
properties: {
|
|
5
|
+
openapi: null,
|
|
6
|
+
info: 'Info',
|
|
7
|
+
servers: 'ServerList',
|
|
8
|
+
security: 'SecurityRequirementList',
|
|
9
|
+
tags: 'TagList',
|
|
10
|
+
externalDocs: 'ExternalDocs',
|
|
11
|
+
paths: 'Paths',
|
|
12
|
+
webhooks: 'WebhooksMap',
|
|
13
|
+
components: 'Components',
|
|
14
|
+
jsonSchemaDialect: {
|
|
15
|
+
type: 'string',
|
|
16
|
+
description: 'The default value for the $schema keyword within Schema Objects contained within this OAS document. This MUST be in the form of a URI.',
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
required: ['openapi', 'info'],
|
|
20
|
+
requiredOneOf: ['paths', 'components', 'webhooks'],
|
|
21
|
+
extensionsPrefix: 'x-',
|
|
22
|
+
documentationLink: 'https://redocly.com/learn/openapi/openapi-visual-reference/openapi#openapi',
|
|
23
|
+
description: 'REQUIRED. This string MUST be the semantic version number of the OpenAPI Specification version that the OpenAPI document uses. The openapi field SHOULD be used by tooling specifications and clients to interpret the OpenAPI document. This is not related to the API info.version string.',
|
|
24
|
+
};
|
|
25
|
+
const License = {
|
|
26
|
+
...Oas3Types.License,
|
|
27
|
+
properties: {
|
|
28
|
+
...Oas3Types.License.properties,
|
|
29
|
+
identifier: {
|
|
30
|
+
type: 'string',
|
|
31
|
+
description: 'An [SPDX-Licenses] expression for the API. The identifier field is mutually exclusive of the url field.',
|
|
32
|
+
},
|
|
33
|
+
},
|
|
34
|
+
};
|
|
35
|
+
const Info = {
|
|
36
|
+
...Oas3Types.Info,
|
|
37
|
+
properties: {
|
|
38
|
+
...Oas3Types.Info.properties,
|
|
39
|
+
summary: {
|
|
40
|
+
type: 'string',
|
|
41
|
+
description: 'A short summary of the API. This field MAY be used by tooling as required.',
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
const Components = {
|
|
46
|
+
...Oas3Types.Components,
|
|
47
|
+
properties: {
|
|
48
|
+
...Oas3Types.Components.properties,
|
|
49
|
+
pathItems: 'NamedPathItems',
|
|
50
|
+
},
|
|
51
|
+
};
|
|
52
|
+
const Operation = {
|
|
53
|
+
properties: {
|
|
54
|
+
tags: {
|
|
55
|
+
type: 'array',
|
|
56
|
+
items: { type: 'string' },
|
|
57
|
+
description: 'A list of tags for API documentation control. Tags can be used for logical grouping of operations by resources or any other qualifier.',
|
|
58
|
+
},
|
|
59
|
+
summary: {
|
|
60
|
+
type: 'string',
|
|
61
|
+
description: 'A short summary of what the operation does.',
|
|
62
|
+
documentationLink: 'https://redocly.com/learn/openapi/openapi-visual-reference/operation#summary',
|
|
63
|
+
},
|
|
64
|
+
description: {
|
|
65
|
+
type: 'string',
|
|
66
|
+
description: 'A verbose explanation of the operation behavior.',
|
|
67
|
+
documentationLink: 'https://redocly.com/learn/openapi/openapi-visual-reference/operation#description',
|
|
68
|
+
},
|
|
69
|
+
externalDocs: 'ExternalDocs',
|
|
70
|
+
operationId: {
|
|
71
|
+
type: 'string',
|
|
72
|
+
description: 'The operationId is path segment or path fragment in deep links to a specific operation.',
|
|
73
|
+
documentationLink: 'https://redocly.com/learn/openapi/openapi-visual-reference/operation#operationid',
|
|
74
|
+
},
|
|
75
|
+
parameters: 'ParameterList',
|
|
76
|
+
security: 'SecurityRequirementList',
|
|
77
|
+
servers: 'ServerList',
|
|
78
|
+
requestBody: 'RequestBody',
|
|
79
|
+
responses: 'Responses',
|
|
80
|
+
deprecated: { type: 'boolean' },
|
|
81
|
+
callbacks: 'CallbacksMap',
|
|
82
|
+
'x-codeSamples': 'XCodeSampleList',
|
|
83
|
+
'x-code-samples': 'XCodeSampleList', // deprecated
|
|
84
|
+
'x-hideTryItPanel': { type: 'boolean' },
|
|
85
|
+
},
|
|
86
|
+
extensionsPrefix: 'x-',
|
|
87
|
+
description: `The Operation Object describes a single API operation on a path, including its parameters, responses, and request body (if applicable). Each path can support more than one operation, but those operations must be unique. A unique operation is a combination of a path and an HTTP method, so two GET or two POST methods for the same path are not allowed.`,
|
|
88
|
+
};
|
|
89
|
+
// draft-2020-12
|
|
90
|
+
const Schema = {
|
|
91
|
+
properties: {
|
|
92
|
+
$id: { type: 'string' },
|
|
93
|
+
$anchor: { type: 'string' },
|
|
94
|
+
id: { type: 'string' },
|
|
95
|
+
$schema: { type: 'string' },
|
|
96
|
+
definitions: 'NamedSchemas',
|
|
97
|
+
$defs: 'NamedSchemas',
|
|
98
|
+
$vocabulary: { type: 'string' },
|
|
99
|
+
externalDocs: 'ExternalDocs',
|
|
100
|
+
discriminator: 'Discriminator',
|
|
101
|
+
title: { type: 'string' },
|
|
102
|
+
multipleOf: { type: 'number', minimum: 0 },
|
|
103
|
+
maximum: { type: 'number' },
|
|
104
|
+
minimum: { type: 'number' },
|
|
105
|
+
exclusiveMaximum: { type: 'number' },
|
|
106
|
+
exclusiveMinimum: { type: 'number' },
|
|
107
|
+
maxLength: { type: 'integer', minimum: 0 },
|
|
108
|
+
minLength: { type: 'integer', minimum: 0 },
|
|
109
|
+
pattern: { type: 'string' },
|
|
110
|
+
maxItems: { type: 'integer', minimum: 0 },
|
|
111
|
+
minItems: { type: 'integer', minimum: 0 },
|
|
112
|
+
uniqueItems: { type: 'boolean' },
|
|
113
|
+
maxProperties: { type: 'integer', minimum: 0 },
|
|
114
|
+
minProperties: { type: 'integer', minimum: 0 },
|
|
115
|
+
required: { type: 'array', items: { type: 'string' } },
|
|
116
|
+
enum: { type: 'array' },
|
|
117
|
+
type: (value) => {
|
|
118
|
+
if (Array.isArray(value)) {
|
|
119
|
+
return {
|
|
120
|
+
type: 'array',
|
|
121
|
+
items: { enum: ['object', 'array', 'string', 'number', 'integer', 'boolean', 'null'] },
|
|
122
|
+
};
|
|
123
|
+
}
|
|
124
|
+
else {
|
|
125
|
+
return {
|
|
126
|
+
enum: ['object', 'array', 'string', 'number', 'integer', 'boolean', 'null'],
|
|
127
|
+
};
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
allOf: listOf('Schema'),
|
|
131
|
+
anyOf: listOf('Schema'),
|
|
132
|
+
oneOf: listOf('Schema'),
|
|
133
|
+
not: 'Schema',
|
|
134
|
+
if: 'Schema',
|
|
135
|
+
then: 'Schema',
|
|
136
|
+
else: 'Schema',
|
|
137
|
+
dependentSchemas: mapOf('Schema'),
|
|
138
|
+
dependentRequired: 'DependentRequired',
|
|
139
|
+
prefixItems: listOf('Schema'),
|
|
140
|
+
contains: 'Schema',
|
|
141
|
+
minContains: { type: 'integer', minimum: 0 },
|
|
142
|
+
maxContains: { type: 'integer', minimum: 0 },
|
|
143
|
+
patternProperties: 'PatternProperties',
|
|
144
|
+
propertyNames: 'Schema',
|
|
145
|
+
unevaluatedItems: (value) => {
|
|
146
|
+
if (typeof value === 'boolean') {
|
|
147
|
+
return { type: 'boolean' };
|
|
148
|
+
}
|
|
149
|
+
else {
|
|
150
|
+
return 'Schema';
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
unevaluatedProperties: (value) => {
|
|
154
|
+
if (typeof value === 'boolean') {
|
|
155
|
+
return { type: 'boolean' };
|
|
156
|
+
}
|
|
157
|
+
else {
|
|
158
|
+
return 'Schema';
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
summary: { type: 'string' },
|
|
162
|
+
properties: 'SchemaProperties',
|
|
163
|
+
items: (value) => {
|
|
164
|
+
if (typeof value === 'boolean') {
|
|
165
|
+
return { type: 'boolean' };
|
|
166
|
+
}
|
|
167
|
+
else {
|
|
168
|
+
return 'Schema';
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
additionalProperties: (value) => {
|
|
172
|
+
return typeof value === 'boolean' ? { type: 'boolean' } : 'Schema';
|
|
173
|
+
},
|
|
174
|
+
description: { type: 'string' },
|
|
175
|
+
format: { type: 'string' },
|
|
176
|
+
contentEncoding: { type: 'string' },
|
|
177
|
+
contentMediaType: { type: 'string' },
|
|
178
|
+
contentSchema: 'Schema',
|
|
179
|
+
default: null,
|
|
180
|
+
readOnly: { type: 'boolean' },
|
|
181
|
+
writeOnly: { type: 'boolean' },
|
|
182
|
+
xml: 'Xml',
|
|
183
|
+
examples: { type: 'array' },
|
|
184
|
+
example: { isExample: true },
|
|
185
|
+
deprecated: { type: 'boolean' },
|
|
186
|
+
const: null,
|
|
187
|
+
$comment: { type: 'string' },
|
|
188
|
+
'x-tags': { type: 'array', items: { type: 'string' } },
|
|
189
|
+
$dynamicAnchor: { type: 'string' },
|
|
190
|
+
$dynamicRef: { type: 'string' },
|
|
191
|
+
},
|
|
192
|
+
extensionsPrefix: 'x-',
|
|
193
|
+
};
|
|
194
|
+
const SchemaProperties = {
|
|
195
|
+
properties: {},
|
|
196
|
+
additionalProperties: (value) => {
|
|
197
|
+
if (typeof value === 'boolean') {
|
|
198
|
+
return { type: 'boolean' };
|
|
199
|
+
}
|
|
200
|
+
else {
|
|
201
|
+
return 'Schema';
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
};
|
|
205
|
+
const SecurityScheme = {
|
|
206
|
+
properties: {
|
|
207
|
+
type: { enum: ['apiKey', 'http', 'oauth2', 'openIdConnect', 'mutualTLS'] },
|
|
208
|
+
description: { type: 'string' },
|
|
209
|
+
name: { type: 'string' },
|
|
210
|
+
in: { type: 'string', enum: ['query', 'header', 'cookie'] },
|
|
211
|
+
scheme: { type: 'string' },
|
|
212
|
+
bearerFormat: { type: 'string' },
|
|
213
|
+
flows: 'OAuth2Flows',
|
|
214
|
+
openIdConnectUrl: { type: 'string' },
|
|
215
|
+
},
|
|
216
|
+
required(value) {
|
|
217
|
+
switch (value?.type) {
|
|
218
|
+
case 'apiKey':
|
|
219
|
+
return ['type', 'name', 'in'];
|
|
220
|
+
case 'http':
|
|
221
|
+
return ['type', 'scheme'];
|
|
222
|
+
case 'oauth2':
|
|
223
|
+
return ['type', 'flows'];
|
|
224
|
+
case 'openIdConnect':
|
|
225
|
+
return ['type', 'openIdConnectUrl'];
|
|
226
|
+
default:
|
|
227
|
+
return ['type'];
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
allowed(value) {
|
|
231
|
+
switch (value?.type) {
|
|
232
|
+
case 'apiKey':
|
|
233
|
+
return ['type', 'name', 'in', 'description'];
|
|
234
|
+
case 'http':
|
|
235
|
+
return ['type', 'scheme', 'bearerFormat', 'description'];
|
|
236
|
+
case 'oauth2':
|
|
237
|
+
switch (value?.flows) {
|
|
238
|
+
case 'implicit':
|
|
239
|
+
return ['type', 'flows', 'authorizationUrl', 'refreshUrl', 'description', 'scopes'];
|
|
240
|
+
case 'password':
|
|
241
|
+
case 'clientCredentials':
|
|
242
|
+
return ['type', 'flows', 'tokenUrl', 'refreshUrl', 'description', 'scopes'];
|
|
243
|
+
case 'authorizationCode':
|
|
244
|
+
return [
|
|
245
|
+
'type',
|
|
246
|
+
'flows',
|
|
247
|
+
'authorizationUrl',
|
|
248
|
+
'refreshUrl',
|
|
249
|
+
'tokenUrl',
|
|
250
|
+
'description',
|
|
251
|
+
'scopes',
|
|
252
|
+
];
|
|
253
|
+
default:
|
|
254
|
+
return [
|
|
255
|
+
'type',
|
|
256
|
+
'flows',
|
|
257
|
+
'authorizationUrl',
|
|
258
|
+
'refreshUrl',
|
|
259
|
+
'tokenUrl',
|
|
260
|
+
'description',
|
|
261
|
+
'scopes',
|
|
262
|
+
];
|
|
263
|
+
}
|
|
264
|
+
case 'openIdConnect':
|
|
265
|
+
return ['type', 'openIdConnectUrl', 'description'];
|
|
266
|
+
case 'mutualTLS':
|
|
267
|
+
return ['type', 'description'];
|
|
268
|
+
default:
|
|
269
|
+
return ['type', 'description'];
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
extensionsPrefix: 'x-',
|
|
273
|
+
};
|
|
274
|
+
const DependentRequired = {
|
|
275
|
+
properties: {},
|
|
276
|
+
additionalProperties: { type: 'array', items: { type: 'string' } },
|
|
277
|
+
};
|
|
278
|
+
export const Oas3_1Types = {
|
|
279
|
+
...Oas3Types,
|
|
280
|
+
Info,
|
|
281
|
+
Root,
|
|
282
|
+
Schema,
|
|
283
|
+
SchemaProperties,
|
|
284
|
+
PatternProperties: SchemaProperties,
|
|
285
|
+
License,
|
|
286
|
+
Components,
|
|
287
|
+
NamedPathItems: mapOf('PathItem'),
|
|
288
|
+
SecurityScheme,
|
|
289
|
+
Operation,
|
|
290
|
+
DependentRequired,
|
|
291
|
+
};
|
|
292
|
+
//# sourceMappingURL=oas3_1.js.map
|
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
import { listOf, mapOf } from './index.js';
|
|
2
|
+
import { Oas3Types } from './oas3.js';
|
|
3
|
+
import { Oas3_1Types } from './oas3_1.js';
|
|
4
|
+
const Root = {
|
|
5
|
+
...Oas3_1Types.Root,
|
|
6
|
+
properties: {
|
|
7
|
+
...Oas3_1Types.Root.properties,
|
|
8
|
+
$self: {
|
|
9
|
+
type: 'string',
|
|
10
|
+
description: 'This string MUST be in the form of a URI reference as defined by [RFC3986] Section 4.1. The $self field provides the self-assigned URI of this document, which also serves as its base URI in accordance with [RFC3986] Section 5.1.1. Implementations MUST support identifying the targets of API description URIs using the URI defined by this field when it is present. See Establishing the Base URI for the base URI behavior when $self is absent or relative, and see Appendix F for examples of using $self to resolve references.',
|
|
11
|
+
},
|
|
12
|
+
},
|
|
13
|
+
};
|
|
14
|
+
const Tag = {
|
|
15
|
+
...Oas3_1Types.Tag,
|
|
16
|
+
properties: {
|
|
17
|
+
...Oas3_1Types.Tag.properties,
|
|
18
|
+
kind: {
|
|
19
|
+
type: 'string',
|
|
20
|
+
description: 'A machine-readable string to categorize what sort of tag it is. Any string value can be used; common uses are nav for Navigation, badge for visible badges, audience for APIs used by different groups. A registry of the most commonly used values is available.',
|
|
21
|
+
},
|
|
22
|
+
parent: {
|
|
23
|
+
type: 'string',
|
|
24
|
+
description: 'The name of a tag that this tag is nested under. The named tag MUST exist in the API description, and circular references between parent and child tags MUST NOT be used.',
|
|
25
|
+
},
|
|
26
|
+
summary: {
|
|
27
|
+
type: 'string',
|
|
28
|
+
description: 'A short summary of the tag, used for display purposes.',
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
description: 'Adds metadata to a single tag that is used by the Operation Object. It is not mandatory to have a Tag Object per tag defined in the Operation Object instances.',
|
|
32
|
+
};
|
|
33
|
+
const Server = {
|
|
34
|
+
...Oas3_1Types.Server,
|
|
35
|
+
properties: {
|
|
36
|
+
...Oas3_1Types.Server.properties,
|
|
37
|
+
name: {
|
|
38
|
+
type: 'string',
|
|
39
|
+
description: 'An optional unique string to refer to the host designated by the URL.',
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
description: 'An object representing a Server.',
|
|
43
|
+
};
|
|
44
|
+
const SecurityScheme = {
|
|
45
|
+
...Oas3_1Types.SecurityScheme,
|
|
46
|
+
properties: {
|
|
47
|
+
...Oas3_1Types.SecurityScheme.properties,
|
|
48
|
+
deprecated: {
|
|
49
|
+
type: 'boolean',
|
|
50
|
+
description: 'Declares this security scheme to be deprecated. Consumers SHOULD refrain from usage of the declared scheme. Default value is false.',
|
|
51
|
+
}, // added in OAS 3.2
|
|
52
|
+
oauth2MetadataUrl: {
|
|
53
|
+
type: 'string',
|
|
54
|
+
description: 'URL to the OAuth2 authorization server metadata [RFC8414]. TLS is required.',
|
|
55
|
+
}, // added in OAS 3.2
|
|
56
|
+
},
|
|
57
|
+
allowed(value) {
|
|
58
|
+
switch (value?.type) {
|
|
59
|
+
case 'apiKey':
|
|
60
|
+
return [
|
|
61
|
+
'type',
|
|
62
|
+
'name',
|
|
63
|
+
'in',
|
|
64
|
+
'description',
|
|
65
|
+
'deprecated', // added in OAS 3.2
|
|
66
|
+
];
|
|
67
|
+
case 'http':
|
|
68
|
+
return [
|
|
69
|
+
'type',
|
|
70
|
+
'scheme',
|
|
71
|
+
'bearerFormat',
|
|
72
|
+
'description',
|
|
73
|
+
'deprecated', // added in OAS 3.2
|
|
74
|
+
];
|
|
75
|
+
case 'oauth2':
|
|
76
|
+
switch (value?.flows) {
|
|
77
|
+
case 'implicit':
|
|
78
|
+
return [
|
|
79
|
+
'type',
|
|
80
|
+
'flows',
|
|
81
|
+
'authorizationUrl',
|
|
82
|
+
'refreshUrl',
|
|
83
|
+
'description',
|
|
84
|
+
'scopes',
|
|
85
|
+
'oauth2MetadataUrl', // added in OAS 3.2
|
|
86
|
+
'deprecated', // added in OAS 3.2
|
|
87
|
+
];
|
|
88
|
+
case 'password':
|
|
89
|
+
case 'clientCredentials':
|
|
90
|
+
return [
|
|
91
|
+
'type',
|
|
92
|
+
'flows',
|
|
93
|
+
'tokenUrl',
|
|
94
|
+
'refreshUrl',
|
|
95
|
+
'description',
|
|
96
|
+
'scopes',
|
|
97
|
+
'oauth2MetadataUrl', // added in OAS 3.2
|
|
98
|
+
'deprecated', // added in OAS 3.2
|
|
99
|
+
];
|
|
100
|
+
case 'authorizationCode':
|
|
101
|
+
return [
|
|
102
|
+
'type',
|
|
103
|
+
'flows',
|
|
104
|
+
'authorizationUrl',
|
|
105
|
+
'refreshUrl',
|
|
106
|
+
'tokenUrl',
|
|
107
|
+
'description',
|
|
108
|
+
'scopes',
|
|
109
|
+
'oauth2MetadataUrl', // added in OAS 3.2
|
|
110
|
+
'deprecated', // added in OAS 3.2
|
|
111
|
+
];
|
|
112
|
+
case 'deviceAuthorization': // added in OAS 3.2
|
|
113
|
+
return ['type', 'flows', 'deviceAuthorizationUrl', 'tokenUrl'];
|
|
114
|
+
default:
|
|
115
|
+
return [
|
|
116
|
+
'type',
|
|
117
|
+
'flows',
|
|
118
|
+
'authorizationUrl',
|
|
119
|
+
'refreshUrl',
|
|
120
|
+
'tokenUrl',
|
|
121
|
+
'description',
|
|
122
|
+
'scopes',
|
|
123
|
+
'oauth2MetadataUrl', // added in OAS 3.2
|
|
124
|
+
'deprecated', // added in OAS 3.2
|
|
125
|
+
];
|
|
126
|
+
}
|
|
127
|
+
case 'openIdConnect':
|
|
128
|
+
return [
|
|
129
|
+
'type',
|
|
130
|
+
'openIdConnectUrl',
|
|
131
|
+
'description',
|
|
132
|
+
'deprecated', // added in OAS 3.2
|
|
133
|
+
];
|
|
134
|
+
case 'mutualTLS':
|
|
135
|
+
return [
|
|
136
|
+
'type',
|
|
137
|
+
'description',
|
|
138
|
+
'deprecated', // added in OAS 3.2
|
|
139
|
+
];
|
|
140
|
+
default:
|
|
141
|
+
return [
|
|
142
|
+
'type',
|
|
143
|
+
'description',
|
|
144
|
+
'deprecated', // added in OAS 3.2
|
|
145
|
+
];
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
description: 'Defines a security scheme that can be used by the operations.',
|
|
149
|
+
};
|
|
150
|
+
const OAuth2Flows = {
|
|
151
|
+
...Oas3_1Types.OAuth2Flows,
|
|
152
|
+
properties: {
|
|
153
|
+
...Oas3_1Types.OAuth2Flows.properties,
|
|
154
|
+
deviceAuthorization: 'DeviceAuthorization',
|
|
155
|
+
},
|
|
156
|
+
};
|
|
157
|
+
const DeviceAuthorization = {
|
|
158
|
+
properties: {
|
|
159
|
+
deviceAuthorizationUrl: {
|
|
160
|
+
type: 'string',
|
|
161
|
+
description: 'REQUIRED. The device authorization URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.',
|
|
162
|
+
},
|
|
163
|
+
tokenUrl: {
|
|
164
|
+
type: 'string',
|
|
165
|
+
description: 'REQUIRED. The token URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.',
|
|
166
|
+
},
|
|
167
|
+
refreshUrl: {
|
|
168
|
+
type: 'string',
|
|
169
|
+
description: 'The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.',
|
|
170
|
+
},
|
|
171
|
+
scopes: mapOf('string', {
|
|
172
|
+
description: 'REQUIRED. The available scopes for the OAuth2 security scheme. A map between the scope name and a short description for it. The map MAY be empty.',
|
|
173
|
+
}),
|
|
174
|
+
},
|
|
175
|
+
required: ['deviceAuthorizationUrl', 'tokenUrl', 'scopes'],
|
|
176
|
+
extensionsPrefix: 'x-',
|
|
177
|
+
description: 'Configuration for the OAuth Device Authorization flow.',
|
|
178
|
+
};
|
|
179
|
+
const PathItem = {
|
|
180
|
+
...Oas3Types.PathItem,
|
|
181
|
+
properties: {
|
|
182
|
+
...Oas3Types.PathItem.properties,
|
|
183
|
+
query: 'Operation',
|
|
184
|
+
additionalOperations: mapOf('Operation'),
|
|
185
|
+
},
|
|
186
|
+
};
|
|
187
|
+
const Parameter = {
|
|
188
|
+
...Oas3_1Types.Parameter,
|
|
189
|
+
properties: {
|
|
190
|
+
...Oas3_1Types.Parameter.properties,
|
|
191
|
+
in: {
|
|
192
|
+
description: 'REQUIRED. The location of the parameter. Possible values are "query", "querystring", "header", "path" or "cookie".',
|
|
193
|
+
enum: ['query', 'header', 'path', 'cookie', 'querystring'],
|
|
194
|
+
},
|
|
195
|
+
},
|
|
196
|
+
};
|
|
197
|
+
const Response = {
|
|
198
|
+
...Oas3_1Types.Response,
|
|
199
|
+
properties: {
|
|
200
|
+
...Oas3_1Types.Response.properties,
|
|
201
|
+
summary: {
|
|
202
|
+
type: 'string',
|
|
203
|
+
description: 'A short summary of the meaning of the response.',
|
|
204
|
+
},
|
|
205
|
+
},
|
|
206
|
+
};
|
|
207
|
+
const MediaType = {
|
|
208
|
+
...Oas3_1Types.MediaType,
|
|
209
|
+
properties: {
|
|
210
|
+
...Oas3_1Types.MediaType.properties,
|
|
211
|
+
itemSchema: 'Schema',
|
|
212
|
+
prefixEncoding: listOf('Encoding', {
|
|
213
|
+
description: 'A map between a property name and its encoding information, as defined under Encoding By Name. The encoding field SHALL only apply when the media type is multipart or application/x-www-form-urlencoded. If no Encoding Object is provided for a property, the behavior is determined by the default values documented for the Encoding Object. This field MUST NOT be present if prefixEncoding or itemEncoding are present.',
|
|
214
|
+
}),
|
|
215
|
+
itemEncoding: 'Encoding',
|
|
216
|
+
},
|
|
217
|
+
};
|
|
218
|
+
const Discriminator = {
|
|
219
|
+
...Oas3_1Types.Discriminator,
|
|
220
|
+
properties: {
|
|
221
|
+
...Oas3_1Types.Discriminator.properties,
|
|
222
|
+
defaultMapping: {
|
|
223
|
+
type: 'string',
|
|
224
|
+
description: 'The schema name or URI reference to a schema that is expected to validate the structure of the model when the discriminating property is not present in the payload or contains a value for which there is no explicit or implicit mapping.',
|
|
225
|
+
},
|
|
226
|
+
},
|
|
227
|
+
};
|
|
228
|
+
const Components = {
|
|
229
|
+
properties: {
|
|
230
|
+
...Oas3_1Types.Components.properties,
|
|
231
|
+
mediaTypes: 'NamedMediaTypes',
|
|
232
|
+
},
|
|
233
|
+
};
|
|
234
|
+
const Example = {
|
|
235
|
+
...Oas3_1Types.Example,
|
|
236
|
+
properties: {
|
|
237
|
+
...Oas3_1Types.Example.properties,
|
|
238
|
+
dataValue: {
|
|
239
|
+
resolvable: false,
|
|
240
|
+
description: 'An example of the data structure that MUST be valid according to the relevant Schema Object. If this field is present, value MUST be absent.',
|
|
241
|
+
},
|
|
242
|
+
serializedValue: {
|
|
243
|
+
type: 'string',
|
|
244
|
+
description: 'An example of the serialized form of the value, including encoding and escaping as described under Validating Examples. If dataValue is present, then this field SHOULD contain the serialization of the given data. Otherwise, it SHOULD be the valid serialization of a data value that itself MUST be valid as described for dataValue. This field SHOULD NOT be used if the serialization format is JSON, as the data form is easier to work with. If this field is present, value, and externalValue MUST be absent.',
|
|
245
|
+
},
|
|
246
|
+
},
|
|
247
|
+
};
|
|
248
|
+
const Xml = {
|
|
249
|
+
properties: {
|
|
250
|
+
nodeType: {
|
|
251
|
+
type: 'string',
|
|
252
|
+
enum: ['element', 'attribute', 'text', 'cdata', 'none'],
|
|
253
|
+
description: 'One of element, attribute, text, cdata, or none, as explained under XML Node Types. The default value is none if $ref, $dynamicRef, or type: "array" is present in the Schema Object containing the XML Object, and element otherwise.',
|
|
254
|
+
},
|
|
255
|
+
name: {
|
|
256
|
+
type: 'string',
|
|
257
|
+
description: 'Sets the name of the element/attribute corresponding to the schema, replacing the name that was inferred as described under XML Node Names. This field SHALL be ignored if the nodeType is text, cdata, or none.',
|
|
258
|
+
},
|
|
259
|
+
namespace: {
|
|
260
|
+
type: 'string',
|
|
261
|
+
description: 'The IRI ([RFC3987]) of the namespace definition. Value MUST be in the form of a non-relative IRI.',
|
|
262
|
+
},
|
|
263
|
+
prefix: {
|
|
264
|
+
type: 'string',
|
|
265
|
+
description: 'The prefix to be used for the name.',
|
|
266
|
+
},
|
|
267
|
+
attribute: {
|
|
268
|
+
type: 'boolean',
|
|
269
|
+
description: 'Declares whether the property definition translates to an attribute instead of an element. Default value is false. If nodeType is present, this field MUST NOT be present.Deprecated: Use nodeType: "attribute" instead of attribute: true.',
|
|
270
|
+
},
|
|
271
|
+
wrapped: {
|
|
272
|
+
type: 'boolean',
|
|
273
|
+
description: 'MAY be used only for an array definition. Signifies whether the array is wrapped (for example, <books><book/><book/></books>) or unwrapped (<book/><book/>). Default value is false. The definition takes effect only when defined alongside type being "array" (outside the items). If nodeType is present, this field MUST NOT be present. Deprecated: Use nodeType: "element" instead of wrapped: true.',
|
|
274
|
+
}, // Deprecated in OAS 3.2: Use nodeType: "element" instead
|
|
275
|
+
},
|
|
276
|
+
extensionsPrefix: 'x-',
|
|
277
|
+
description: 'A metadata object that allows for more fine-tuned XML model definitions. When using a Schema Object with XML, if no XML Object is present, the behavior is determined by the XML Object’s default field values.',
|
|
278
|
+
};
|
|
279
|
+
// based on draft-2020-12
|
|
280
|
+
const Schema = {
|
|
281
|
+
...Oas3_1Types.Schema,
|
|
282
|
+
properties: {
|
|
283
|
+
...Oas3_1Types.Schema.properties,
|
|
284
|
+
xml: 'Xml',
|
|
285
|
+
},
|
|
286
|
+
};
|
|
287
|
+
export const Oas3_2Types = {
|
|
288
|
+
...Oas3_1Types,
|
|
289
|
+
Root,
|
|
290
|
+
Tag,
|
|
291
|
+
Server,
|
|
292
|
+
SecurityScheme,
|
|
293
|
+
OAuth2Flows,
|
|
294
|
+
DeviceAuthorization,
|
|
295
|
+
PathItem,
|
|
296
|
+
Parameter,
|
|
297
|
+
Response,
|
|
298
|
+
MediaType,
|
|
299
|
+
Discriminator,
|
|
300
|
+
Example,
|
|
301
|
+
Xml,
|
|
302
|
+
Schema,
|
|
303
|
+
Components,
|
|
304
|
+
NamedMediaTypes: mapOf('MediaTypesMap'),
|
|
305
|
+
};
|
|
306
|
+
//# sourceMappingURL=oas3_2.js.map
|