@redocly/openapi-core 0.0.0-snapshot.1737554067
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/README.md +268 -0
- package/lib/benchmark/benches/lint-with-many-rules.bench.d.ts +4 -0
- package/lib/benchmark/benches/lint-with-many-rules.bench.js +38 -0
- package/lib/benchmark/benches/lint-with-nested-rule.bench.d.ts +4 -0
- package/lib/benchmark/benches/lint-with-nested-rule.bench.js +44 -0
- package/lib/benchmark/benches/lint-with-no-rules.bench.d.ts +4 -0
- package/lib/benchmark/benches/lint-with-no-rules.bench.js +25 -0
- package/lib/benchmark/benches/lint-with-top-level-rule-report.bench.d.ts +4 -0
- package/lib/benchmark/benches/lint-with-top-level-rule-report.bench.js +37 -0
- package/lib/benchmark/benches/lint-with-top-level-rule.bench.d.ts +4 -0
- package/lib/benchmark/benches/lint-with-top-level-rule.bench.js +36 -0
- package/lib/benchmark/benches/recommended-oas3.bench.d.ts +3 -0
- package/lib/benchmark/benches/recommended-oas3.bench.js +21 -0
- package/lib/benchmark/benches/resolve-with-no-external.bench.d.ts +3 -0
- package/lib/benchmark/benches/resolve-with-no-external.bench.js +22 -0
- package/lib/benchmark/utils.d.ts +6 -0
- package/lib/benchmark/utils.js +34 -0
- package/lib/bundle.d.ts +50 -0
- package/lib/bundle.js +385 -0
- package/lib/config/all.d.ts +3 -0
- package/lib/config/all.js +227 -0
- package/lib/config/builtIn.d.ts +3 -0
- package/lib/config/builtIn.js +53 -0
- package/lib/config/config-resolvers.d.ts +30 -0
- package/lib/config/config-resolvers.js +447 -0
- package/lib/config/config.d.ts +53 -0
- package/lib/config/config.js +320 -0
- package/lib/config/index.d.ts +7 -0
- package/lib/config/index.js +23 -0
- package/lib/config/load.d.ts +38 -0
- package/lib/config/load.js +140 -0
- package/lib/config/minimal.d.ts +3 -0
- package/lib/config/minimal.js +203 -0
- package/lib/config/recommended-strict.d.ts +3 -0
- package/lib/config/recommended-strict.js +203 -0
- package/lib/config/recommended.d.ts +3 -0
- package/lib/config/recommended.js +203 -0
- package/lib/config/rules.d.ts +10 -0
- package/lib/config/rules.js +37 -0
- package/lib/config/spec.d.ts +3 -0
- package/lib/config/spec.js +29 -0
- package/lib/config/types.d.ts +189 -0
- package/lib/config/types.js +2 -0
- package/lib/config/utils.d.ts +19 -0
- package/lib/config/utils.js +308 -0
- package/lib/decorators/arazzo/index.d.ts +1 -0
- package/lib/decorators/arazzo/index.js +4 -0
- package/lib/decorators/async2/index.d.ts +1 -0
- package/lib/decorators/async2/index.js +4 -0
- package/lib/decorators/async3/index.d.ts +1 -0
- package/lib/decorators/async3/index.js +4 -0
- package/lib/decorators/common/filters/filter-helper.d.ts +3 -0
- package/lib/decorators/common/filters/filter-helper.js +66 -0
- package/lib/decorators/common/filters/filter-in.d.ts +2 -0
- package/lib/decorators/common/filters/filter-in.js +17 -0
- package/lib/decorators/common/filters/filter-out.d.ts +2 -0
- package/lib/decorators/common/filters/filter-out.js +17 -0
- package/lib/decorators/common/info-description-override.d.ts +2 -0
- package/lib/decorators/common/info-description-override.js +24 -0
- package/lib/decorators/common/info-override.d.ts +2 -0
- package/lib/decorators/common/info-override.js +17 -0
- package/lib/decorators/common/media-type-examples-override.d.ts +2 -0
- package/lib/decorators/common/media-type-examples-override.js +59 -0
- package/lib/decorators/common/operation-description-override.d.ts +2 -0
- package/lib/decorators/common/operation-description-override.js +29 -0
- package/lib/decorators/common/registry-dependencies.d.ts +2 -0
- package/lib/decorators/common/registry-dependencies.js +24 -0
- package/lib/decorators/common/remove-x-internal.d.ts +2 -0
- package/lib/decorators/common/remove-x-internal.js +69 -0
- package/lib/decorators/common/tag-description-override.d.ts +2 -0
- package/lib/decorators/common/tag-description-override.js +25 -0
- package/lib/decorators/oas2/index.d.ts +11 -0
- package/lib/decorators/oas2/index.js +21 -0
- package/lib/decorators/oas2/remove-unused-components.d.ts +2 -0
- package/lib/decorators/oas2/remove-unused-components.js +89 -0
- package/lib/decorators/oas3/index.d.ts +12 -0
- package/lib/decorators/oas3/index.js +23 -0
- package/lib/decorators/oas3/remove-unused-components.d.ts +2 -0
- package/lib/decorators/oas3/remove-unused-components.js +100 -0
- package/lib/env.d.ts +2 -0
- package/lib/env.js +7 -0
- package/lib/format/codeframes.d.ts +22 -0
- package/lib/format/codeframes.js +185 -0
- package/lib/format/format.d.ts +20 -0
- package/lib/format/format.js +365 -0
- package/lib/index.d.ts +26 -0
- package/lib/index.js +98 -0
- package/lib/js-yaml/index.d.ts +3 -0
- package/lib/js-yaml/index.js +15 -0
- package/lib/lint.d.ts +32 -0
- package/lib/lint.js +118 -0
- package/lib/logger.d.ts +10 -0
- package/lib/logger.js +31 -0
- package/lib/oas-types.d.ts +36 -0
- package/lib/oas-types.js +92 -0
- package/lib/output.d.ts +3 -0
- package/lib/output.js +9 -0
- package/lib/redocly/domains.d.ts +14 -0
- package/lib/redocly/domains.js +41 -0
- package/lib/redocly/index.d.ts +30 -0
- package/lib/redocly/index.js +131 -0
- package/lib/redocly/redocly-client-types.d.ts +8 -0
- package/lib/redocly/redocly-client-types.js +2 -0
- package/lib/redocly/registry-api-types.d.ts +29 -0
- package/lib/redocly/registry-api-types.js +2 -0
- package/lib/redocly/registry-api.d.ts +17 -0
- package/lib/redocly/registry-api.js +96 -0
- package/lib/ref-utils.d.ts +27 -0
- package/lib/ref-utils.js +85 -0
- package/lib/resolve.d.ts +66 -0
- package/lib/resolve.js +342 -0
- package/lib/rules/ajv.d.ts +10 -0
- package/lib/rules/ajv.js +82 -0
- package/lib/rules/arazzo/criteria-unique.d.ts +2 -0
- package/lib/rules/arazzo/criteria-unique.js +71 -0
- package/lib/rules/arazzo/index.d.ts +3 -0
- package/lib/rules/arazzo/index.js +36 -0
- package/lib/rules/arazzo/parameters-unique.d.ts +2 -0
- package/lib/rules/arazzo/parameters-unique.js +32 -0
- package/lib/rules/arazzo/requestBody-replacements-unique.d.ts +2 -0
- package/lib/rules/arazzo/requestBody-replacements-unique.js +28 -0
- package/lib/rules/arazzo/sourceDescription-type.d.ts +2 -0
- package/lib/rules/arazzo/sourceDescription-type.js +22 -0
- package/lib/rules/arazzo/sourceDescriptions-name-unique.d.ts +2 -0
- package/lib/rules/arazzo/sourceDescriptions-name-unique.js +24 -0
- package/lib/rules/arazzo/sourceDescriptions-not-empty.d.ts +2 -0
- package/lib/rules/arazzo/sourceDescriptions-not-empty.js +18 -0
- package/lib/rules/arazzo/step-onFailure-unique.d.ts +2 -0
- package/lib/rules/arazzo/step-onFailure-unique.js +32 -0
- package/lib/rules/arazzo/step-onSuccess-unique.d.ts +2 -0
- package/lib/rules/arazzo/step-onSuccess-unique.js +32 -0
- package/lib/rules/arazzo/stepId-unique.d.ts +2 -0
- package/lib/rules/arazzo/stepId-unique.js +26 -0
- package/lib/rules/arazzo/workflow-dependsOn.d.ts +2 -0
- package/lib/rules/arazzo/workflow-dependsOn.js +56 -0
- package/lib/rules/arazzo/workflowId-unique.d.ts +2 -0
- package/lib/rules/arazzo/workflowId-unique.js +22 -0
- package/lib/rules/async2/channels-kebab-case.d.ts +2 -0
- package/lib/rules/async2/channels-kebab-case.js +19 -0
- package/lib/rules/async2/index.d.ts +3 -0
- package/lib/rules/async2/index.js +27 -0
- package/lib/rules/async2/no-channel-trailing-slash.d.ts +2 -0
- package/lib/rules/async2/no-channel-trailing-slash.js +16 -0
- package/lib/rules/async3/channels-kebab-case.d.ts +2 -0
- package/lib/rules/async3/channels-kebab-case.js +19 -0
- package/lib/rules/async3/index.d.ts +3 -0
- package/lib/rules/async3/index.js +27 -0
- package/lib/rules/async3/no-channel-trailing-slash.d.ts +2 -0
- package/lib/rules/async3/no-channel-trailing-slash.js +16 -0
- package/lib/rules/common/assertions/asserts.d.ts +30 -0
- package/lib/rules/common/assertions/asserts.js +281 -0
- package/lib/rules/common/assertions/index.d.ts +27 -0
- package/lib/rules/common/assertions/index.js +24 -0
- package/lib/rules/common/assertions/utils.d.ts +28 -0
- package/lib/rules/common/assertions/utils.js +226 -0
- package/lib/rules/common/info-contact.d.ts +2 -0
- package/lib/rules/common/info-contact.js +17 -0
- package/lib/rules/common/info-license-strict.d.ts +2 -0
- package/lib/rules/common/info-license-strict.js +26 -0
- package/lib/rules/common/info-license-url.d.ts +2 -0
- package/lib/rules/common/info-license-url.js +12 -0
- package/lib/rules/common/info-license.d.ts +2 -0
- package/lib/rules/common/info-license.js +17 -0
- package/lib/rules/common/no-ambiguous-paths.d.ts +2 -0
- package/lib/rules/common/no-ambiguous-paths.js +45 -0
- package/lib/rules/common/no-enum-type-mismatch.d.ts +2 -0
- package/lib/rules/common/no-enum-type-mismatch.js +41 -0
- package/lib/rules/common/no-http-verbs-in-paths.d.ts +2 -0
- package/lib/rules/common/no-http-verbs-in-paths.js +33 -0
- package/lib/rules/common/no-identical-paths.d.ts +2 -0
- package/lib/rules/common/no-identical-paths.js +24 -0
- package/lib/rules/common/no-invalid-parameter-examples.d.ts +1 -0
- package/lib/rules/common/no-invalid-parameter-examples.js +24 -0
- package/lib/rules/common/no-invalid-schema-examples.d.ts +1 -0
- package/lib/rules/common/no-invalid-schema-examples.js +22 -0
- package/lib/rules/common/no-path-trailing-slash.d.ts +2 -0
- package/lib/rules/common/no-path-trailing-slash.js +16 -0
- package/lib/rules/common/no-required-schema-properties-undefined.d.ts +2 -0
- package/lib/rules/common/no-required-schema-properties-undefined.js +36 -0
- package/lib/rules/common/operation-2xx-response.d.ts +2 -0
- package/lib/rules/common/operation-2xx-response.js +23 -0
- package/lib/rules/common/operation-4xx-response.d.ts +2 -0
- package/lib/rules/common/operation-4xx-response.js +23 -0
- package/lib/rules/common/operation-description.d.ts +2 -0
- package/lib/rules/common/operation-description.js +12 -0
- package/lib/rules/common/operation-operationId-unique.d.ts +2 -0
- package/lib/rules/common/operation-operationId-unique.js +20 -0
- package/lib/rules/common/operation-operationId-url-safe.d.ts +2 -0
- package/lib/rules/common/operation-operationId-url-safe.js +18 -0
- package/lib/rules/common/operation-operationId.d.ts +2 -0
- package/lib/rules/common/operation-operationId.js +16 -0
- package/lib/rules/common/operation-parameters-unique.d.ts +2 -0
- package/lib/rules/common/operation-parameters-unique.js +40 -0
- package/lib/rules/common/operation-singular-tag.d.ts +2 -0
- package/lib/rules/common/operation-singular-tag.js +16 -0
- package/lib/rules/common/operation-summary.d.ts +2 -0
- package/lib/rules/common/operation-summary.js +12 -0
- package/lib/rules/common/operation-tag-defined.d.ts +2 -0
- package/lib/rules/common/operation-tag-defined.js +24 -0
- package/lib/rules/common/parameter-description.d.ts +2 -0
- package/lib/rules/common/parameter-description.js +22 -0
- package/lib/rules/common/path-declaration-must-exist.d.ts +2 -0
- package/lib/rules/common/path-declaration-must-exist.js +16 -0
- package/lib/rules/common/path-excludes-patterns.d.ts +2 -0
- package/lib/rules/common/path-excludes-patterns.js +22 -0
- package/lib/rules/common/path-http-verbs-order.d.ts +2 -0
- package/lib/rules/common/path-http-verbs-order.js +26 -0
- package/lib/rules/common/path-not-include-query.d.ts +2 -0
- package/lib/rules/common/path-not-include-query.js +18 -0
- package/lib/rules/common/path-params-defined.d.ts +2 -0
- package/lib/rules/common/path-params-defined.js +58 -0
- package/lib/rules/common/path-segment-plural.d.ts +2 -0
- package/lib/rules/common/path-segment-plural.js +33 -0
- package/lib/rules/common/paths-kebab-case.d.ts +2 -0
- package/lib/rules/common/paths-kebab-case.js +20 -0
- package/lib/rules/common/required-string-property-missing-min-length.d.ts +2 -0
- package/lib/rules/common/required-string-property-missing-min-length.js +37 -0
- package/lib/rules/common/response-contains-header.d.ts +2 -0
- package/lib/rules/common/response-contains-header.js +29 -0
- package/lib/rules/common/scalar-property-missing-example.d.ts +2 -0
- package/lib/rules/common/scalar-property-missing-example.js +42 -0
- package/lib/rules/common/security-defined.d.ts +2 -0
- package/lib/rules/common/security-defined.js +65 -0
- package/lib/rules/common/spec-strict-refs.d.ts +2 -0
- package/lib/rules/common/spec-strict-refs.js +30 -0
- package/lib/rules/common/struct.d.ts +2 -0
- package/lib/rules/common/struct.js +158 -0
- package/lib/rules/common/tag-description.d.ts +2 -0
- package/lib/rules/common/tag-description.js +12 -0
- package/lib/rules/common/tags-alphabetical.d.ts +2 -0
- package/lib/rules/common/tags-alphabetical.js +23 -0
- package/lib/rules/no-unresolved-refs.d.ts +5 -0
- package/lib/rules/no-unresolved-refs.js +46 -0
- package/lib/rules/oas2/boolean-parameter-prefixes.d.ts +5 -0
- package/lib/rules/oas2/boolean-parameter-prefixes.js +22 -0
- package/lib/rules/oas2/index.d.ts +3 -0
- package/lib/rules/oas2/index.js +98 -0
- package/lib/rules/oas2/request-mime-type.d.ts +2 -0
- package/lib/rules/oas2/request-mime-type.js +17 -0
- package/lib/rules/oas2/response-contains-property.d.ts +2 -0
- package/lib/rules/oas2/response-contains-property.js +37 -0
- package/lib/rules/oas2/response-mime-type.d.ts +2 -0
- package/lib/rules/oas2/response-mime-type.js +17 -0
- package/lib/rules/oas3/array-parameter-serialization.d.ts +5 -0
- package/lib/rules/oas3/array-parameter-serialization.js +29 -0
- package/lib/rules/oas3/boolean-parameter-prefixes.d.ts +5 -0
- package/lib/rules/oas3/boolean-parameter-prefixes.js +24 -0
- package/lib/rules/oas3/component-name-unique.d.ts +2 -0
- package/lib/rules/oas3/component-name-unique.js +133 -0
- package/lib/rules/oas3/index.d.ts +3 -0
- package/lib/rules/oas3/index.js +122 -0
- package/lib/rules/oas3/no-empty-servers.d.ts +2 -0
- package/lib/rules/oas3/no-empty-servers.js +23 -0
- package/lib/rules/oas3/no-example-value-and-externalValue.d.ts +2 -0
- package/lib/rules/oas3/no-example-value-and-externalValue.js +16 -0
- package/lib/rules/oas3/no-invalid-media-type-examples.d.ts +2 -0
- package/lib/rules/oas3/no-invalid-media-type-examples.js +39 -0
- package/lib/rules/oas3/no-server-example.com.d.ts +2 -0
- package/lib/rules/oas3/no-server-example.com.js +18 -0
- package/lib/rules/oas3/no-server-trailing-slash.d.ts +2 -0
- package/lib/rules/oas3/no-server-trailing-slash.js +18 -0
- package/lib/rules/oas3/no-server-variables-empty-enum.d.ts +2 -0
- package/lib/rules/oas3/no-server-variables-empty-enum.js +66 -0
- package/lib/rules/oas3/no-undefined-server-variable.d.ts +2 -0
- package/lib/rules/oas3/no-undefined-server-variable.js +31 -0
- package/lib/rules/oas3/no-unused-components.d.ts +2 -0
- package/lib/rules/oas3/no-unused-components.js +73 -0
- package/lib/rules/oas3/operation-4xx-problem-details-rfc7807.d.ts +5 -0
- package/lib/rules/oas3/operation-4xx-problem-details-rfc7807.js +36 -0
- package/lib/rules/oas3/request-mime-type.d.ts +2 -0
- package/lib/rules/oas3/request-mime-type.js +31 -0
- package/lib/rules/oas3/response-contains-property.d.ts +2 -0
- package/lib/rules/oas3/response-contains-property.js +39 -0
- package/lib/rules/oas3/response-mime-type.d.ts +2 -0
- package/lib/rules/oas3/response-mime-type.js +31 -0
- package/lib/rules/oas3/spec-components-invalid-map-name.d.ts +2 -0
- package/lib/rules/oas3/spec-components-invalid-map-name.js +62 -0
- package/lib/rules/other/stats.d.ts +41 -0
- package/lib/rules/other/stats.js +75 -0
- package/lib/rules/spot/no-criteria-xpath.d.ts +2 -0
- package/lib/rules/spot/no-criteria-xpath.js +21 -0
- package/lib/rules/spot/spot-supported-versions.d.ts +2 -0
- package/lib/rules/spot/spot-supported-versions.js +21 -0
- package/lib/rules/utils.d.ts +22 -0
- package/lib/rules/utils.js +183 -0
- package/lib/types/arazzo.d.ts +2 -0
- package/lib/types/arazzo.js +311 -0
- package/lib/types/asyncapi2.d.ts +17 -0
- package/lib/types/asyncapi2.js +1008 -0
- package/lib/types/asyncapi3.d.ts +2 -0
- package/lib/types/asyncapi3.js +347 -0
- package/lib/types/index.d.ts +57 -0
- package/lib/types/index.js +94 -0
- package/lib/types/json-schema-adapter.d.ts +3 -0
- package/lib/types/json-schema-adapter.js +159 -0
- package/lib/types/oas2.d.ts +3 -0
- package/lib/types/oas2.js +456 -0
- package/lib/types/oas3.d.ts +7 -0
- package/lib/types/oas3.js +554 -0
- package/lib/types/oas3_1.d.ts +6 -0
- package/lib/types/oas3_1.js +285 -0
- package/lib/types/redocly-yaml.d.ts +26 -0
- package/lib/types/redocly-yaml.js +1126 -0
- package/lib/typings/arazzo.d.ts +131 -0
- package/lib/typings/arazzo.js +5 -0
- package/lib/typings/asyncapi.d.ts +21 -0
- package/lib/typings/asyncapi.js +2 -0
- package/lib/typings/asyncapi3.d.ts +53 -0
- package/lib/typings/asyncapi3.js +2 -0
- package/lib/typings/common.d.ts +8 -0
- package/lib/typings/common.js +2 -0
- package/lib/typings/openapi.d.ts +355 -0
- package/lib/typings/openapi.js +2 -0
- package/lib/typings/swagger.d.ts +217 -0
- package/lib/typings/swagger.js +2 -0
- package/lib/utils.d.ts +70 -0
- package/lib/utils.js +301 -0
- package/lib/visitors.d.ts +229 -0
- package/lib/visitors.js +176 -0
- package/lib/walk.d.ts +78 -0
- package/lib/walk.js +290 -0
- package/package.json +59 -0
|
@@ -0,0 +1,456 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Oas2Types = void 0;
|
|
4
|
+
const _1 = require(".");
|
|
5
|
+
const responseCodeRegexp = /^[0-9][0-9Xx]{2}$/;
|
|
6
|
+
const Root = {
|
|
7
|
+
properties: {
|
|
8
|
+
swagger: { type: 'string' },
|
|
9
|
+
info: 'Info',
|
|
10
|
+
host: { type: 'string' },
|
|
11
|
+
basePath: { type: 'string' },
|
|
12
|
+
schemes: { type: 'array', items: { type: 'string' } },
|
|
13
|
+
consumes: { type: 'array', items: { type: 'string' } },
|
|
14
|
+
produces: { type: 'array', items: { type: 'string' } },
|
|
15
|
+
paths: 'Paths',
|
|
16
|
+
definitions: 'NamedSchemas',
|
|
17
|
+
parameters: 'NamedParameters',
|
|
18
|
+
responses: 'NamedResponses',
|
|
19
|
+
securityDefinitions: 'NamedSecuritySchemes',
|
|
20
|
+
security: 'SecurityRequirementList',
|
|
21
|
+
tags: 'TagList',
|
|
22
|
+
externalDocs: 'ExternalDocs',
|
|
23
|
+
'x-servers': 'XServerList',
|
|
24
|
+
'x-tagGroups': 'TagGroups',
|
|
25
|
+
'x-ignoredHeaderParameters': { type: 'array', items: { type: 'string' } },
|
|
26
|
+
},
|
|
27
|
+
required: ['swagger', 'paths', 'info'],
|
|
28
|
+
extensionsPrefix: 'x-',
|
|
29
|
+
};
|
|
30
|
+
const Info = {
|
|
31
|
+
properties: {
|
|
32
|
+
title: { type: 'string' },
|
|
33
|
+
description: { type: 'string' },
|
|
34
|
+
termsOfService: { type: 'string' },
|
|
35
|
+
contact: 'Contact',
|
|
36
|
+
license: 'License',
|
|
37
|
+
version: { type: 'string' },
|
|
38
|
+
'x-logo': 'Logo',
|
|
39
|
+
},
|
|
40
|
+
required: ['title', 'version'],
|
|
41
|
+
extensionsPrefix: 'x-',
|
|
42
|
+
};
|
|
43
|
+
const Logo = {
|
|
44
|
+
properties: {
|
|
45
|
+
url: { type: 'string' },
|
|
46
|
+
altText: { type: 'string' },
|
|
47
|
+
backgroundColor: { type: 'string' },
|
|
48
|
+
href: { type: 'string' },
|
|
49
|
+
},
|
|
50
|
+
extensionsPrefix: 'x-',
|
|
51
|
+
};
|
|
52
|
+
const Contact = {
|
|
53
|
+
properties: {
|
|
54
|
+
name: { type: 'string' },
|
|
55
|
+
url: { type: 'string' },
|
|
56
|
+
email: { type: 'string' },
|
|
57
|
+
},
|
|
58
|
+
extensionsPrefix: 'x-',
|
|
59
|
+
};
|
|
60
|
+
const License = {
|
|
61
|
+
properties: {
|
|
62
|
+
name: { type: 'string' },
|
|
63
|
+
url: { type: 'string' },
|
|
64
|
+
},
|
|
65
|
+
required: ['name'],
|
|
66
|
+
extensionsPrefix: 'x-',
|
|
67
|
+
};
|
|
68
|
+
const Paths = {
|
|
69
|
+
properties: {},
|
|
70
|
+
additionalProperties: (_value, key) => key.startsWith('/') ? 'PathItem' : undefined,
|
|
71
|
+
};
|
|
72
|
+
const PathItem = {
|
|
73
|
+
properties: {
|
|
74
|
+
$ref: { type: 'string' }, // TODO: verify special $ref handling for Path Item
|
|
75
|
+
parameters: 'ParameterList',
|
|
76
|
+
get: 'Operation',
|
|
77
|
+
put: 'Operation',
|
|
78
|
+
post: 'Operation',
|
|
79
|
+
delete: 'Operation',
|
|
80
|
+
options: 'Operation',
|
|
81
|
+
head: 'Operation',
|
|
82
|
+
patch: 'Operation',
|
|
83
|
+
},
|
|
84
|
+
extensionsPrefix: 'x-',
|
|
85
|
+
};
|
|
86
|
+
const Operation = {
|
|
87
|
+
properties: {
|
|
88
|
+
tags: { type: 'array', items: { type: 'string' } },
|
|
89
|
+
summary: { type: 'string' },
|
|
90
|
+
description: { type: 'string' },
|
|
91
|
+
externalDocs: 'ExternalDocs',
|
|
92
|
+
operationId: { type: 'string' },
|
|
93
|
+
consumes: { type: 'array', items: { type: 'string' } },
|
|
94
|
+
produces: { type: 'array', items: { type: 'string' } },
|
|
95
|
+
parameters: 'ParameterList',
|
|
96
|
+
responses: 'Responses',
|
|
97
|
+
schemes: { type: 'array', items: { type: 'string' } },
|
|
98
|
+
deprecated: { type: 'boolean' },
|
|
99
|
+
security: 'SecurityRequirementList',
|
|
100
|
+
'x-codeSamples': 'XCodeSampleList',
|
|
101
|
+
'x-code-samples': 'XCodeSampleList', // deprecated
|
|
102
|
+
'x-hideTryItPanel': { type: 'boolean' },
|
|
103
|
+
},
|
|
104
|
+
required: ['responses'],
|
|
105
|
+
extensionsPrefix: 'x-',
|
|
106
|
+
};
|
|
107
|
+
const XCodeSample = {
|
|
108
|
+
properties: {
|
|
109
|
+
lang: { type: 'string' },
|
|
110
|
+
label: { type: 'string' },
|
|
111
|
+
source: { type: 'string' },
|
|
112
|
+
},
|
|
113
|
+
};
|
|
114
|
+
const XServer = {
|
|
115
|
+
properties: {
|
|
116
|
+
url: { type: 'string' },
|
|
117
|
+
description: { type: 'string' },
|
|
118
|
+
},
|
|
119
|
+
required: ['url'],
|
|
120
|
+
};
|
|
121
|
+
const ExternalDocs = {
|
|
122
|
+
properties: {
|
|
123
|
+
description: { type: 'string' },
|
|
124
|
+
url: { type: 'string' },
|
|
125
|
+
},
|
|
126
|
+
required: ['url'],
|
|
127
|
+
extensionsPrefix: 'x-',
|
|
128
|
+
};
|
|
129
|
+
const Parameter = {
|
|
130
|
+
properties: {
|
|
131
|
+
name: { type: 'string' },
|
|
132
|
+
in: { type: 'string', enum: ['query', 'header', 'path', 'formData', 'body'] },
|
|
133
|
+
description: { type: 'string' },
|
|
134
|
+
required: { type: 'boolean' },
|
|
135
|
+
schema: 'Schema',
|
|
136
|
+
type: { type: 'string', enum: ['string', 'number', 'integer', 'boolean', 'array', 'file'] },
|
|
137
|
+
format: { type: 'string' },
|
|
138
|
+
allowEmptyValue: { type: 'boolean' },
|
|
139
|
+
items: 'ParameterItems',
|
|
140
|
+
collectionFormat: { type: 'string', enum: ['csv', 'ssv', 'tsv', 'pipes', 'multi'] },
|
|
141
|
+
default: null,
|
|
142
|
+
maximum: { type: 'integer' },
|
|
143
|
+
exclusiveMaximum: { type: 'boolean' },
|
|
144
|
+
minimum: { type: 'integer' },
|
|
145
|
+
exclusiveMinimum: { type: 'boolean' },
|
|
146
|
+
maxLength: { type: 'integer' },
|
|
147
|
+
minLength: { type: 'integer' },
|
|
148
|
+
pattern: { type: 'string' },
|
|
149
|
+
maxItems: { type: 'integer' },
|
|
150
|
+
minItems: { type: 'integer' },
|
|
151
|
+
uniqueItems: { type: 'boolean' },
|
|
152
|
+
enum: { type: 'array' },
|
|
153
|
+
multipleOf: { type: 'number' },
|
|
154
|
+
'x-example': 'Example',
|
|
155
|
+
'x-examples': 'ExamplesMap',
|
|
156
|
+
},
|
|
157
|
+
required(value) {
|
|
158
|
+
if (!value || !value.in) {
|
|
159
|
+
return ['name', 'in'];
|
|
160
|
+
}
|
|
161
|
+
if (value.in === 'body') {
|
|
162
|
+
return ['name', 'in', 'schema'];
|
|
163
|
+
}
|
|
164
|
+
else {
|
|
165
|
+
if (value.type === 'array') {
|
|
166
|
+
return ['name', 'in', 'type', 'items'];
|
|
167
|
+
}
|
|
168
|
+
else {
|
|
169
|
+
return ['name', 'in', 'type'];
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
extensionsPrefix: 'x-',
|
|
174
|
+
};
|
|
175
|
+
const ParameterItems = {
|
|
176
|
+
properties: {
|
|
177
|
+
type: { type: 'string', enum: ['string', 'number', 'integer', 'boolean', 'array'] },
|
|
178
|
+
format: { type: 'string' },
|
|
179
|
+
items: 'ParameterItems',
|
|
180
|
+
collectionFormat: { type: 'string', enum: ['csv', 'ssv', 'tsv', 'pipes', 'multi'] },
|
|
181
|
+
default: null,
|
|
182
|
+
maximum: { type: 'integer' },
|
|
183
|
+
exclusiveMaximum: { type: 'boolean' },
|
|
184
|
+
minimum: { type: 'integer' },
|
|
185
|
+
exclusiveMinimum: { type: 'boolean' },
|
|
186
|
+
maxLength: { type: 'integer' },
|
|
187
|
+
minLength: { type: 'integer' },
|
|
188
|
+
pattern: { type: 'string' },
|
|
189
|
+
maxItems: { type: 'integer' },
|
|
190
|
+
minItems: { type: 'integer' },
|
|
191
|
+
uniqueItems: { type: 'boolean' },
|
|
192
|
+
enum: { type: 'array' },
|
|
193
|
+
multipleOf: { type: 'number' },
|
|
194
|
+
},
|
|
195
|
+
required(value) {
|
|
196
|
+
if (value && value.type === 'array') {
|
|
197
|
+
return ['type', 'items'];
|
|
198
|
+
}
|
|
199
|
+
else {
|
|
200
|
+
return ['type'];
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
extensionsPrefix: 'x-',
|
|
204
|
+
};
|
|
205
|
+
const Responses = {
|
|
206
|
+
properties: {
|
|
207
|
+
default: 'Response',
|
|
208
|
+
},
|
|
209
|
+
additionalProperties: (_v, key) => responseCodeRegexp.test(key) ? 'Response' : undefined,
|
|
210
|
+
};
|
|
211
|
+
const Response = {
|
|
212
|
+
properties: {
|
|
213
|
+
description: { type: 'string' },
|
|
214
|
+
schema: 'Schema',
|
|
215
|
+
headers: (0, _1.mapOf)('Header'),
|
|
216
|
+
examples: 'Examples',
|
|
217
|
+
'x-summary': { type: 'string' },
|
|
218
|
+
},
|
|
219
|
+
required: ['description'],
|
|
220
|
+
extensionsPrefix: 'x-',
|
|
221
|
+
};
|
|
222
|
+
const Examples = {
|
|
223
|
+
properties: {},
|
|
224
|
+
additionalProperties: { isExample: true },
|
|
225
|
+
};
|
|
226
|
+
const Header = {
|
|
227
|
+
properties: {
|
|
228
|
+
description: { type: 'string' },
|
|
229
|
+
type: { type: 'string', enum: ['string', 'number', 'integer', 'boolean', 'array'] },
|
|
230
|
+
format: { type: 'string' },
|
|
231
|
+
items: 'ParameterItems',
|
|
232
|
+
collectionFormat: { type: 'string', enum: ['csv', 'ssv', 'tsv', 'pipes', 'multi'] },
|
|
233
|
+
default: null,
|
|
234
|
+
maximum: { type: 'integer' },
|
|
235
|
+
exclusiveMaximum: { type: 'boolean' },
|
|
236
|
+
minimum: { type: 'integer' },
|
|
237
|
+
exclusiveMinimum: { type: 'boolean' },
|
|
238
|
+
maxLength: { type: 'integer' },
|
|
239
|
+
minLength: { type: 'integer' },
|
|
240
|
+
pattern: { type: 'string' },
|
|
241
|
+
maxItems: { type: 'integer' },
|
|
242
|
+
minItems: { type: 'integer' },
|
|
243
|
+
uniqueItems: { type: 'boolean' },
|
|
244
|
+
enum: { type: 'array' },
|
|
245
|
+
multipleOf: { type: 'number' },
|
|
246
|
+
},
|
|
247
|
+
required(value) {
|
|
248
|
+
if (value && value.type === 'array') {
|
|
249
|
+
return ['type', 'items'];
|
|
250
|
+
}
|
|
251
|
+
else {
|
|
252
|
+
return ['type'];
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
extensionsPrefix: 'x-',
|
|
256
|
+
};
|
|
257
|
+
const Tag = {
|
|
258
|
+
properties: {
|
|
259
|
+
name: { type: 'string' },
|
|
260
|
+
description: { type: 'string' },
|
|
261
|
+
externalDocs: 'ExternalDocs',
|
|
262
|
+
'x-traitTag': { type: 'boolean' },
|
|
263
|
+
'x-displayName': { type: 'string' },
|
|
264
|
+
},
|
|
265
|
+
required: ['name'],
|
|
266
|
+
extensionsPrefix: 'x-',
|
|
267
|
+
};
|
|
268
|
+
const TagGroup = {
|
|
269
|
+
properties: {
|
|
270
|
+
name: { type: 'string' },
|
|
271
|
+
tags: { type: 'array', items: { type: 'string' } },
|
|
272
|
+
},
|
|
273
|
+
};
|
|
274
|
+
const Schema = {
|
|
275
|
+
properties: {
|
|
276
|
+
format: { type: 'string' },
|
|
277
|
+
title: { type: 'string' },
|
|
278
|
+
description: { type: 'string' },
|
|
279
|
+
default: null,
|
|
280
|
+
multipleOf: { type: 'number' },
|
|
281
|
+
maximum: { type: 'number' },
|
|
282
|
+
minimum: { type: 'number' },
|
|
283
|
+
exclusiveMaximum: { type: 'boolean' },
|
|
284
|
+
exclusiveMinimum: { type: 'boolean' },
|
|
285
|
+
maxLength: { type: 'number' },
|
|
286
|
+
minLength: { type: 'number' },
|
|
287
|
+
pattern: { type: 'string' },
|
|
288
|
+
maxItems: { type: 'number' },
|
|
289
|
+
minItems: { type: 'number' },
|
|
290
|
+
uniqueItems: { type: 'boolean' },
|
|
291
|
+
maxProperties: { type: 'number' },
|
|
292
|
+
minProperties: { type: 'number' },
|
|
293
|
+
required: { type: 'array', items: { type: 'string' } },
|
|
294
|
+
enum: { type: 'array' },
|
|
295
|
+
type: {
|
|
296
|
+
type: 'string',
|
|
297
|
+
enum: ['object', 'array', 'string', 'number', 'integer', 'boolean', 'null'],
|
|
298
|
+
},
|
|
299
|
+
items: (value) => {
|
|
300
|
+
if (Array.isArray(value)) {
|
|
301
|
+
return (0, _1.listOf)('Schema');
|
|
302
|
+
}
|
|
303
|
+
else {
|
|
304
|
+
return 'Schema';
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
allOf: (0, _1.listOf)('Schema'),
|
|
308
|
+
properties: 'SchemaProperties',
|
|
309
|
+
additionalProperties: (value) => {
|
|
310
|
+
if (typeof value === 'boolean') {
|
|
311
|
+
return { type: 'boolean' };
|
|
312
|
+
}
|
|
313
|
+
else {
|
|
314
|
+
return 'Schema';
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
discriminator: { type: 'string' },
|
|
318
|
+
readOnly: { type: 'boolean' },
|
|
319
|
+
xml: 'Xml',
|
|
320
|
+
externalDocs: 'ExternalDocs',
|
|
321
|
+
example: { isExample: true },
|
|
322
|
+
'x-tags': { type: 'array', items: { type: 'string' } },
|
|
323
|
+
'x-nullable': { type: 'boolean' },
|
|
324
|
+
'x-extendedDiscriminator': { type: 'string' },
|
|
325
|
+
'x-additionalPropertiesName': { type: 'string' },
|
|
326
|
+
'x-explicitMappingOnly': { type: 'boolean' },
|
|
327
|
+
'x-enumDescriptions': 'EnumDescriptions',
|
|
328
|
+
},
|
|
329
|
+
extensionsPrefix: 'x-',
|
|
330
|
+
};
|
|
331
|
+
const EnumDescriptions = {
|
|
332
|
+
properties: {},
|
|
333
|
+
additionalProperties: { type: 'string' },
|
|
334
|
+
};
|
|
335
|
+
const SchemaProperties = {
|
|
336
|
+
properties: {},
|
|
337
|
+
additionalProperties: 'Schema',
|
|
338
|
+
};
|
|
339
|
+
const Xml = {
|
|
340
|
+
properties: {
|
|
341
|
+
name: { type: 'string' },
|
|
342
|
+
namespace: { type: 'string' },
|
|
343
|
+
prefix: { type: 'string' },
|
|
344
|
+
attribute: { type: 'boolean' },
|
|
345
|
+
wrapped: { type: 'boolean' },
|
|
346
|
+
},
|
|
347
|
+
extensionsPrefix: 'x-',
|
|
348
|
+
};
|
|
349
|
+
const SecurityScheme = {
|
|
350
|
+
properties: {
|
|
351
|
+
type: { enum: ['basic', 'apiKey', 'oauth2'] },
|
|
352
|
+
description: { type: 'string' },
|
|
353
|
+
name: { type: 'string' },
|
|
354
|
+
in: { type: 'string', enum: ['query', 'header'] },
|
|
355
|
+
flow: { enum: ['implicit', 'password', 'application', 'accessCode'] },
|
|
356
|
+
authorizationUrl: { type: 'string' },
|
|
357
|
+
tokenUrl: { type: 'string' },
|
|
358
|
+
scopes: { type: 'object', additionalProperties: { type: 'string' } },
|
|
359
|
+
'x-defaultClientId': { type: 'string' },
|
|
360
|
+
},
|
|
361
|
+
required(value) {
|
|
362
|
+
switch (value?.type) {
|
|
363
|
+
case 'apiKey':
|
|
364
|
+
return ['type', 'name', 'in'];
|
|
365
|
+
case 'oauth2':
|
|
366
|
+
switch (value?.flow) {
|
|
367
|
+
case 'implicit':
|
|
368
|
+
return ['type', 'flow', 'authorizationUrl', 'scopes'];
|
|
369
|
+
case 'accessCode':
|
|
370
|
+
return ['type', 'flow', 'authorizationUrl', 'tokenUrl', 'scopes'];
|
|
371
|
+
case 'application':
|
|
372
|
+
case 'password':
|
|
373
|
+
return ['type', 'flow', 'tokenUrl', 'scopes'];
|
|
374
|
+
default:
|
|
375
|
+
return ['type', 'flow', 'scopes'];
|
|
376
|
+
}
|
|
377
|
+
default:
|
|
378
|
+
return ['type'];
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
allowed(value) {
|
|
382
|
+
switch (value?.type) {
|
|
383
|
+
case 'basic':
|
|
384
|
+
return ['type', 'description'];
|
|
385
|
+
case 'apiKey':
|
|
386
|
+
return ['type', 'name', 'in', 'description'];
|
|
387
|
+
case 'oauth2':
|
|
388
|
+
switch (value?.flow) {
|
|
389
|
+
case 'implicit':
|
|
390
|
+
return ['type', 'flow', 'authorizationUrl', 'description', 'scopes'];
|
|
391
|
+
case 'accessCode':
|
|
392
|
+
return ['type', 'flow', 'authorizationUrl', 'tokenUrl', 'description', 'scopes'];
|
|
393
|
+
case 'application':
|
|
394
|
+
case 'password':
|
|
395
|
+
return ['type', 'flow', 'tokenUrl', 'description', 'scopes'];
|
|
396
|
+
default:
|
|
397
|
+
return ['type', 'flow', 'tokenUrl', 'authorizationUrl', 'description', 'scopes'];
|
|
398
|
+
}
|
|
399
|
+
default:
|
|
400
|
+
return ['type', 'description'];
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
extensionsPrefix: 'x-',
|
|
404
|
+
};
|
|
405
|
+
const SecurityRequirement = {
|
|
406
|
+
properties: {},
|
|
407
|
+
additionalProperties: { type: 'array', items: { type: 'string' } },
|
|
408
|
+
};
|
|
409
|
+
const Example = {
|
|
410
|
+
properties: {
|
|
411
|
+
value: { isExample: true },
|
|
412
|
+
summary: { type: 'string' },
|
|
413
|
+
description: { type: 'string' },
|
|
414
|
+
externalValue: { type: 'string' },
|
|
415
|
+
},
|
|
416
|
+
extensionsPrefix: 'x-',
|
|
417
|
+
};
|
|
418
|
+
exports.Oas2Types = {
|
|
419
|
+
Root,
|
|
420
|
+
Tag,
|
|
421
|
+
TagList: (0, _1.listOf)('Tag'),
|
|
422
|
+
TagGroups: (0, _1.listOf)('TagGroup'),
|
|
423
|
+
TagGroup,
|
|
424
|
+
ExternalDocs,
|
|
425
|
+
Example,
|
|
426
|
+
ExamplesMap: (0, _1.mapOf)('Example'),
|
|
427
|
+
EnumDescriptions,
|
|
428
|
+
SecurityRequirement,
|
|
429
|
+
SecurityRequirementList: (0, _1.listOf)('SecurityRequirement'),
|
|
430
|
+
Info,
|
|
431
|
+
Contact,
|
|
432
|
+
License,
|
|
433
|
+
Logo,
|
|
434
|
+
Paths,
|
|
435
|
+
PathItem,
|
|
436
|
+
Parameter,
|
|
437
|
+
ParameterItems,
|
|
438
|
+
ParameterList: (0, _1.listOf)('Parameter'),
|
|
439
|
+
Operation,
|
|
440
|
+
Examples,
|
|
441
|
+
Header,
|
|
442
|
+
Responses,
|
|
443
|
+
Response,
|
|
444
|
+
Schema,
|
|
445
|
+
Xml,
|
|
446
|
+
SchemaProperties,
|
|
447
|
+
NamedSchemas: (0, _1.mapOf)('Schema'),
|
|
448
|
+
NamedResponses: (0, _1.mapOf)('Response'),
|
|
449
|
+
NamedParameters: (0, _1.mapOf)('Parameter'),
|
|
450
|
+
NamedSecuritySchemes: (0, _1.mapOf)('SecurityScheme'),
|
|
451
|
+
SecurityScheme,
|
|
452
|
+
XCodeSample,
|
|
453
|
+
XCodeSampleList: (0, _1.listOf)('XCodeSample'),
|
|
454
|
+
XServerList: (0, _1.listOf)('XServer'),
|
|
455
|
+
XServer,
|
|
456
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { NodeType } from '.';
|
|
2
|
+
import type { Oas3NodeType } from './redocly-yaml';
|
|
3
|
+
export declare const ExternalDocs: NodeType;
|
|
4
|
+
export declare const Xml: NodeType;
|
|
5
|
+
export declare const DiscriminatorMapping: NodeType;
|
|
6
|
+
export declare const Discriminator: NodeType;
|
|
7
|
+
export declare const Oas3Types: Record<Oas3NodeType, NodeType>;
|