@redocly/openapi-core 1.0.0 → 1.0.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/CHANGELOG.md +9 -0
- package/__tests__/utils.ts +88 -0
- package/lib/config/all.js +0 -1
- package/lib/config/minimal.js +0 -1
- package/lib/config/recommended.js +0 -1
- package/package.json +1 -1
- package/src/__tests__/__snapshots__/bundle.test.ts.snap +437 -0
- package/src/__tests__/bundle.test.ts +236 -0
- package/src/__tests__/codeframes.test.ts +530 -0
- package/src/__tests__/fixtures/.redocly.lint-ignore.yaml +5 -0
- package/src/__tests__/fixtures/extension.js +24 -0
- package/src/__tests__/fixtures/refs/definitions.yaml +3 -0
- package/src/__tests__/fixtures/refs/examples.yaml +8 -0
- package/src/__tests__/fixtures/refs/external-request-body.yaml +13 -0
- package/src/__tests__/fixtures/refs/externalref.yaml +35 -0
- package/src/__tests__/fixtures/refs/hosted.yaml +35 -0
- package/src/__tests__/fixtures/refs/openapi-with-external-refs-conflicting-names.yaml +21 -0
- package/src/__tests__/fixtures/refs/openapi-with-external-refs.yaml +33 -0
- package/src/__tests__/fixtures/refs/openapi-with-url-refs.yaml +18 -0
- package/src/__tests__/fixtures/refs/param-b.yaml +1 -0
- package/src/__tests__/fixtures/refs/param-c.yaml +1 -0
- package/src/__tests__/fixtures/refs/rename.yaml +1 -0
- package/src/__tests__/fixtures/refs/requestBody.yaml +9 -0
- package/src/__tests__/fixtures/refs/schema-a.yaml +1 -0
- package/src/__tests__/fixtures/refs/simple.yaml +1 -0
- package/src/__tests__/fixtures/refs/vendor.schema.yaml +20 -0
- package/src/__tests__/fixtures/resolve/External.yaml +10 -0
- package/src/__tests__/fixtures/resolve/External2.yaml +4 -0
- package/src/__tests__/fixtures/resolve/description.md +3 -0
- package/src/__tests__/fixtures/resolve/externalInfo.yaml +4 -0
- package/src/__tests__/fixtures/resolve/externalLicense.yaml +1 -0
- package/src/__tests__/fixtures/resolve/openapi-with-back.yaml +13 -0
- package/src/__tests__/fixtures/resolve/openapi-with-md-description.yaml +5 -0
- package/src/__tests__/fixtures/resolve/openapi.yaml +28 -0
- package/src/__tests__/fixtures/resolve/schemas/type-a.yaml +10 -0
- package/src/__tests__/fixtures/resolve/schemas/type-b.yaml +6 -0
- package/src/__tests__/fixtures/resolve/transitive/a.yaml +1 -0
- package/src/__tests__/fixtures/resolve/transitive/components.yaml +5 -0
- package/src/__tests__/fixtures/resolve/transitive/schemas.yaml +3 -0
- package/src/__tests__/format.test.ts +76 -0
- package/src/__tests__/js-yaml.test.ts +73 -0
- package/src/__tests__/lint.test.ts +392 -0
- package/src/__tests__/logger-browser.test.ts +53 -0
- package/src/__tests__/logger.test.ts +47 -0
- package/src/__tests__/login.test.ts +17 -0
- package/src/__tests__/normalizeVisitors.test.ts +151 -0
- package/src/__tests__/output-browser.test.ts +18 -0
- package/src/__tests__/output.test.ts +15 -0
- package/src/__tests__/ref-utils.test.ts +120 -0
- package/src/__tests__/resolve-http.test.ts +77 -0
- package/src/__tests__/resolve.test.ts +431 -0
- package/src/__tests__/utils-browser.test.ts +11 -0
- package/src/__tests__/utils.test.ts +144 -0
- package/src/__tests__/walk.test.ts +1545 -0
- package/src/benchmark/benches/lint-with-many-rules.bench.ts +35 -0
- package/src/benchmark/benches/lint-with-nested-rule.bench.ts +39 -0
- package/src/benchmark/benches/lint-with-no-rules.bench.ts +20 -0
- package/src/benchmark/benches/lint-with-top-level-rule-report.bench.ts +35 -0
- package/src/benchmark/benches/lint-with-top-level-rule.bench.ts +32 -0
- package/src/benchmark/benches/rebilly.yaml +32275 -0
- package/src/benchmark/benches/recommended-oas3.bench.ts +22 -0
- package/src/benchmark/benches/resolve-with-no-external.bench.ts +23 -0
- package/src/benchmark/benchmark.js +311 -0
- package/src/benchmark/colors.js +29 -0
- package/src/benchmark/fork.js +83 -0
- package/src/benchmark/utils.ts +36 -0
- package/src/bundle.ts +417 -0
- package/src/config/__tests__/__snapshots__/config-resolvers.test.ts.snap +164 -0
- package/src/config/__tests__/__snapshots__/config.test.ts.snap +144 -0
- package/src/config/__tests__/config-resolvers.test.ts +491 -0
- package/src/config/__tests__/config.test.ts +312 -0
- package/src/config/__tests__/fixtures/ingore-file.ts +8 -0
- package/src/config/__tests__/fixtures/load-redocly.yaml +2 -0
- package/src/config/__tests__/fixtures/plugin-config.yaml +2 -0
- package/src/config/__tests__/fixtures/plugin.js +56 -0
- package/src/config/__tests__/fixtures/resolve-config/api/nested-config.yaml +11 -0
- package/src/config/__tests__/fixtures/resolve-config/api/plugin.js +69 -0
- package/src/config/__tests__/fixtures/resolve-config/local-config-with-circular.yaml +7 -0
- package/src/config/__tests__/fixtures/resolve-config/local-config-with-custom-function.yaml +17 -0
- package/src/config/__tests__/fixtures/resolve-config/local-config-with-file.yaml +18 -0
- package/src/config/__tests__/fixtures/resolve-config/local-config-with-wrong-custom-function.yaml +15 -0
- package/src/config/__tests__/fixtures/resolve-config/local-config.yaml +9 -0
- package/src/config/__tests__/fixtures/resolve-config/plugin.js +80 -0
- package/src/config/__tests__/fixtures/resolve-remote-configs/nested-remote-config.yaml +3 -0
- package/src/config/__tests__/fixtures/resolve-remote-configs/remote-config.yaml +4 -0
- package/src/config/__tests__/load.test.ts +167 -0
- package/src/config/__tests__/resolve-plugins.test.ts +27 -0
- package/src/config/__tests__/utils.test.ts +204 -0
- package/src/config/all.ts +74 -0
- package/src/config/builtIn.ts +37 -0
- package/src/config/config-resolvers.ts +474 -0
- package/src/config/config.ts +332 -0
- package/src/config/index.ts +7 -0
- package/src/config/load.ts +144 -0
- package/src/config/minimal.ts +61 -0
- package/src/config/recommended.ts +61 -0
- package/src/config/rules.ts +54 -0
- package/src/config/types.ts +231 -0
- package/src/config/utils.ts +349 -0
- package/src/decorators/__tests__/filter-in.test.ts +310 -0
- package/src/decorators/__tests__/filter-out.test.ts +335 -0
- package/src/decorators/__tests__/media-type-examples-override.test.ts +665 -0
- package/src/decorators/__tests__/remove-x-internal.test.ts +316 -0
- package/src/decorators/__tests__/resources/request.yaml +3 -0
- package/src/decorators/__tests__/resources/response.yaml +3 -0
- package/src/decorators/common/filters/filter-helper.ts +72 -0
- package/src/decorators/common/filters/filter-in.ts +18 -0
- package/src/decorators/common/filters/filter-out.ts +18 -0
- package/src/decorators/common/info-description-override.ts +24 -0
- package/src/decorators/common/info-override.ts +15 -0
- package/src/decorators/common/media-type-examples-override.ts +79 -0
- package/src/decorators/common/operation-description-override.ts +30 -0
- package/src/decorators/common/registry-dependencies.ts +25 -0
- package/src/decorators/common/remove-x-internal.ts +59 -0
- package/src/decorators/common/tag-description-override.ts +25 -0
- package/src/decorators/oas2/index.ts +20 -0
- package/src/decorators/oas3/index.ts +22 -0
- package/src/env.ts +5 -0
- package/src/format/codeframes.ts +216 -0
- package/src/format/format.ts +375 -0
- package/src/index.ts +71 -0
- package/src/js-yaml/index.ts +14 -0
- package/src/lint.ts +148 -0
- package/src/logger.ts +34 -0
- package/src/oas-types.ts +57 -0
- package/src/output.ts +7 -0
- package/src/redocly/__tests__/redocly-client.test.ts +146 -0
- package/src/redocly/index.ts +187 -0
- package/src/redocly/redocly-client-types.ts +10 -0
- package/src/redocly/registry-api-types.ts +32 -0
- package/src/redocly/registry-api.ts +150 -0
- package/src/ref-utils.ts +85 -0
- package/src/resolve.ts +417 -0
- package/src/rules/__tests__/fixtures/code-sample.php +9 -0
- package/src/rules/__tests__/fixtures/invalid-yaml.yaml +1 -0
- package/src/rules/__tests__/fixtures/ref.yaml +1 -0
- package/src/rules/__tests__/no-unresolved-refs.test.ts +257 -0
- package/src/rules/__tests__/utils.test.ts +160 -0
- package/src/rules/ajv.ts +102 -0
- package/src/rules/common/__tests__/info-license.test.ts +62 -0
- package/src/rules/common/__tests__/license-url.test.ts +63 -0
- package/src/rules/common/__tests__/no-ambiguous-paths.test.ts +96 -0
- package/src/rules/common/__tests__/no-enum-type-mismatch.test.ts +210 -0
- package/src/rules/common/__tests__/no-identical-paths.test.ts +58 -0
- package/src/rules/common/__tests__/no-path-trailing-slash.test.ts +85 -0
- package/src/rules/common/__tests__/operation-2xx-response.test.ts +192 -0
- package/src/rules/common/__tests__/operation-4xx-response.test.ts +231 -0
- package/src/rules/common/__tests__/operation-operationId-unique.test.ts +76 -0
- package/src/rules/common/__tests__/operation-operationId-url-safe.test.ts +45 -0
- package/src/rules/common/__tests__/operation-parameters-unique.test.ts +167 -0
- package/src/rules/common/__tests__/operation-singular-tag.test.ts +72 -0
- package/src/rules/common/__tests__/path-http-verbs-order.test.ts +95 -0
- package/src/rules/common/__tests__/path-not-include-query.test.ts +64 -0
- package/src/rules/common/__tests__/path-params-defined.test.ts +202 -0
- package/src/rules/common/__tests__/paths-kebab-case.test.ts +108 -0
- package/src/rules/common/__tests__/scalar-property-missing-example.test.ts +264 -0
- package/src/rules/common/__tests__/security-defined.test.ts +175 -0
- package/src/rules/common/__tests__/spec-strict-refs.test.ts +69 -0
- package/src/rules/common/__tests__/spec.test.ts +610 -0
- package/src/rules/common/__tests__/tag-description.test.ts +65 -0
- package/src/rules/common/__tests__/tags-alphabetical.test.ts +64 -0
- package/src/rules/common/assertions/__tests__/asserts.test.ts +869 -0
- package/src/rules/common/assertions/__tests__/index.test.ts +100 -0
- package/src/rules/common/assertions/__tests__/utils.test.ts +236 -0
- package/src/rules/common/assertions/asserts.ts +357 -0
- package/src/rules/common/assertions/index.ts +53 -0
- package/src/rules/common/assertions/utils.ts +331 -0
- package/src/rules/common/info-contact.ts +15 -0
- package/src/rules/common/info-license-url.ts +10 -0
- package/src/rules/common/info-license.ts +15 -0
- package/src/rules/common/no-ambiguous-paths.ts +50 -0
- package/src/rules/common/no-enum-type-mismatch.ts +52 -0
- package/src/rules/common/no-http-verbs-in-paths.ts +36 -0
- package/src/rules/common/no-identical-paths.ts +24 -0
- package/src/rules/common/no-invalid-parameter-examples.ts +36 -0
- package/src/rules/common/no-invalid-schema-examples.ts +27 -0
- package/src/rules/common/no-path-trailing-slash.ts +15 -0
- package/src/rules/common/operation-2xx-response.ts +24 -0
- package/src/rules/common/operation-4xx-response.ts +24 -0
- package/src/rules/common/operation-description.ts +13 -0
- package/src/rules/common/operation-operationId-unique.ts +21 -0
- package/src/rules/common/operation-operationId-url-safe.ts +19 -0
- package/src/rules/common/operation-operationId.ts +17 -0
- package/src/rules/common/operation-parameters-unique.ts +48 -0
- package/src/rules/common/operation-singular-tag.ts +17 -0
- package/src/rules/common/operation-summary.ts +13 -0
- package/src/rules/common/operation-tag-defined.ts +26 -0
- package/src/rules/common/parameter-description.ts +22 -0
- package/src/rules/common/path-declaration-must-exist.ts +15 -0
- package/src/rules/common/path-excludes-patterns.ts +23 -0
- package/src/rules/common/path-http-verbs-order.ts +30 -0
- package/src/rules/common/path-not-include-query.ts +17 -0
- package/src/rules/common/path-params-defined.ts +65 -0
- package/src/rules/common/path-segment-plural.ts +31 -0
- package/src/rules/common/paths-kebab-case.ts +19 -0
- package/src/rules/common/required-string-property-missing-min-length.ts +44 -0
- package/src/rules/common/response-contains-header.ts +35 -0
- package/src/rules/common/scalar-property-missing-example.ts +58 -0
- package/src/rules/common/security-defined.ts +65 -0
- package/src/rules/common/spec-strict-refs.ts +30 -0
- package/src/rules/common/spec.ts +175 -0
- package/src/rules/common/tag-description.ts +10 -0
- package/src/rules/common/tags-alphabetical.ts +20 -0
- package/src/rules/no-unresolved-refs.ts +51 -0
- package/src/rules/oas2/__tests__/boolean-parameter-prefixes.test.ts +110 -0
- package/src/rules/oas2/__tests__/response-contains-header.test.ts +174 -0
- package/src/rules/oas2/__tests__/response-contains-property.test.ts +155 -0
- package/src/rules/oas2/__tests__/spec/fixtures/description.md +1 -0
- package/src/rules/oas2/__tests__/spec/info.test.ts +355 -0
- package/src/rules/oas2/__tests__/spec/operation.test.ts +123 -0
- package/src/rules/oas2/__tests__/spec/paths.test.ts +245 -0
- package/src/rules/oas2/__tests__/spec/referenceableScalars.test.ts +35 -0
- package/src/rules/oas2/__tests__/spec/utils.ts +32 -0
- package/src/rules/oas2/boolean-parameter-prefixes.ts +26 -0
- package/src/rules/oas2/index.ts +91 -0
- package/src/rules/oas2/remove-unused-components.ts +81 -0
- package/src/rules/oas2/request-mime-type.ts +16 -0
- package/src/rules/oas2/response-contains-property.ts +36 -0
- package/src/rules/oas2/response-mime-type.ts +16 -0
- package/src/rules/oas3/__tests__/boolean-parameter-prefixes.test.ts +111 -0
- package/src/rules/oas3/__tests__/component-name-unique.test.ts +823 -0
- package/src/rules/oas3/__tests__/fixtures/common.yaml +11 -0
- package/src/rules/oas3/__tests__/no-empty-enum-servers.com.test.ts +205 -0
- package/src/rules/oas3/__tests__/no-example-value-and-externalValue.test.ts +65 -0
- package/src/rules/oas3/__tests__/no-invalid-media-type-examples.test.ts +473 -0
- package/src/rules/oas3/__tests__/no-server-example.com.test.ts +60 -0
- package/src/rules/oas3/__tests__/no-server-trailing-slash.test.ts +79 -0
- package/src/rules/oas3/__tests__/no-unused-components.test.ts +131 -0
- package/src/rules/oas3/__tests__/operation-4xx-problem-details-rfc7807.test.ts +145 -0
- package/src/rules/oas3/__tests__/response-contains-header.test.ts +389 -0
- package/src/rules/oas3/__tests__/response-contains-property.test.ts +403 -0
- package/src/rules/oas3/__tests__/spec/callbacks.test.ts +41 -0
- package/src/rules/oas3/__tests__/spec/fixtures/description.md +1 -0
- package/src/rules/oas3/__tests__/spec/info.test.ts +391 -0
- package/src/rules/oas3/__tests__/spec/operation.test.ts +253 -0
- package/src/rules/oas3/__tests__/spec/paths.test.ts +284 -0
- package/src/rules/oas3/__tests__/spec/referenceableScalars.test.ts +77 -0
- package/src/rules/oas3/__tests__/spec/servers.test.ts +505 -0
- package/src/rules/oas3/__tests__/spec/spec.test.ts +298 -0
- package/src/rules/oas3/__tests__/spec/utils.ts +32 -0
- package/src/rules/oas3/__tests__/spec-components-invalid-map-name.test.ts +276 -0
- package/src/rules/oas3/__tests__/utils/lint-document-for-test.ts +23 -0
- package/src/rules/oas3/boolean-parameter-prefixes.ts +28 -0
- package/src/rules/oas3/component-name-unique.ts +158 -0
- package/src/rules/oas3/index.ts +113 -0
- package/src/rules/oas3/no-empty-servers.ts +22 -0
- package/src/rules/oas3/no-example-value-and-externalValue.ts +14 -0
- package/src/rules/oas3/no-invalid-media-type-examples.ts +49 -0
- package/src/rules/oas3/no-server-example.com.ts +14 -0
- package/src/rules/oas3/no-server-trailing-slash.ts +15 -0
- package/src/rules/oas3/no-server-variables-empty-enum.ts +66 -0
- package/src/rules/oas3/no-undefined-server-variable.ts +30 -0
- package/src/rules/oas3/no-unused-components.ts +75 -0
- package/src/rules/oas3/operation-4xx-problem-details-rfc7807.ts +35 -0
- package/src/rules/oas3/remove-unused-components.ts +95 -0
- package/src/rules/oas3/request-mime-type.ts +30 -0
- package/src/rules/oas3/response-contains-property.ts +38 -0
- package/src/rules/oas3/response-mime-type.ts +30 -0
- package/src/rules/oas3/spec-components-invalid-map-name.ts +69 -0
- package/src/rules/other/stats.ts +73 -0
- package/src/rules/utils.ts +193 -0
- package/src/types/config-external-schemas.ts +917 -0
- package/src/types/index.ts +149 -0
- package/src/types/oas2.ts +478 -0
- package/src/types/oas3.ts +597 -0
- package/src/types/oas3_1.ts +258 -0
- package/src/types/redocly-yaml.ts +1040 -0
- package/src/typings/common.ts +17 -0
- package/src/typings/openapi.ts +298 -0
- package/src/typings/swagger.ts +236 -0
- package/src/utils.ts +276 -0
- package/src/visitors.ts +491 -0
- package/src/walk.ts +439 -0
- package/tsconfig.json +8 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface StatsRow {
|
|
2
|
+
metric: string;
|
|
3
|
+
total: number;
|
|
4
|
+
color: 'red' | 'yellow' | 'green' | 'white' | 'magenta' | 'cyan';
|
|
5
|
+
items?: Set<string>;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export type StatsName =
|
|
9
|
+
| 'operations'
|
|
10
|
+
| 'refs'
|
|
11
|
+
| 'tags'
|
|
12
|
+
| 'externalDocs'
|
|
13
|
+
| 'pathItems'
|
|
14
|
+
| 'links'
|
|
15
|
+
| 'schemas'
|
|
16
|
+
| 'parameters';
|
|
17
|
+
export type StatsAccumulator = Record<StatsName, StatsRow>;
|
|
@@ -0,0 +1,298 @@
|
|
|
1
|
+
export interface Oas3Definition {
|
|
2
|
+
openapi: string;
|
|
3
|
+
info?: Oas3Info;
|
|
4
|
+
servers?: Oas3Server[];
|
|
5
|
+
paths?: Oas3Paths;
|
|
6
|
+
components?: Oas3Components;
|
|
7
|
+
security?: Oas3SecurityRequirement[];
|
|
8
|
+
tags?: Oas3Tag[];
|
|
9
|
+
externalDocs?: Oas3ExternalDocs;
|
|
10
|
+
'x-webhooks'?: Oas3_1Webhooks;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface Oas3Info {
|
|
14
|
+
title: string;
|
|
15
|
+
version: string;
|
|
16
|
+
|
|
17
|
+
description?: string;
|
|
18
|
+
termsOfService?: string;
|
|
19
|
+
contact?: Oas3Contact;
|
|
20
|
+
license?: Oas3License;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface Oas3Server {
|
|
24
|
+
url: string;
|
|
25
|
+
description?: string;
|
|
26
|
+
variables?: { [name: string]: Oas3ServerVariable };
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export interface Oas3ServerVariable {
|
|
30
|
+
enum?: string[];
|
|
31
|
+
default: string;
|
|
32
|
+
description?: string;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface Oas3Paths {
|
|
36
|
+
[path: string]: Referenced<Oas3PathItem>;
|
|
37
|
+
}
|
|
38
|
+
export interface OasRef {
|
|
39
|
+
$ref: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export type Referenced<T> = OasRef | T;
|
|
43
|
+
|
|
44
|
+
export interface Oas3PathItem {
|
|
45
|
+
summary?: string;
|
|
46
|
+
description?: string;
|
|
47
|
+
get?: Oas3Operation;
|
|
48
|
+
put?: Oas3Operation;
|
|
49
|
+
post?: Oas3Operation;
|
|
50
|
+
delete?: Oas3Operation;
|
|
51
|
+
options?: Oas3Operation;
|
|
52
|
+
head?: Oas3Operation;
|
|
53
|
+
patch?: Oas3Operation;
|
|
54
|
+
trace?: Oas3Operation;
|
|
55
|
+
servers?: Oas3Server[];
|
|
56
|
+
parameters?: Array<Referenced<Oas3Parameter>>;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface Oas3XCodeSample {
|
|
60
|
+
lang: string;
|
|
61
|
+
label?: string;
|
|
62
|
+
source: string;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export interface Oas3Operation {
|
|
66
|
+
tags?: string[];
|
|
67
|
+
summary?: string;
|
|
68
|
+
description?: string;
|
|
69
|
+
externalDocs?: Oas3ExternalDocs;
|
|
70
|
+
operationId?: string;
|
|
71
|
+
parameters?: Array<Referenced<Oas3Parameter>>;
|
|
72
|
+
requestBody?: Referenced<Oas3RequestBody>;
|
|
73
|
+
responses: Oas3Responses;
|
|
74
|
+
callbacks?: { [name: string]: Referenced<Oas3Callback> };
|
|
75
|
+
deprecated?: boolean;
|
|
76
|
+
security?: Oas3SecurityRequirement[];
|
|
77
|
+
servers?: Oas3Server[];
|
|
78
|
+
'x-codeSamples'?: Oas3XCodeSample[];
|
|
79
|
+
'x-code-samples'?: Oas3XCodeSample[]; // deprecated
|
|
80
|
+
'x-hideTryItPanel'?: boolean;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface Oas3Parameter {
|
|
84
|
+
name: string;
|
|
85
|
+
in?: Oas3ParameterLocation;
|
|
86
|
+
description?: string;
|
|
87
|
+
required?: boolean;
|
|
88
|
+
deprecated?: boolean;
|
|
89
|
+
allowEmptyValue?: boolean;
|
|
90
|
+
style?: Oas3ParameterStyle;
|
|
91
|
+
explode?: boolean;
|
|
92
|
+
allowReserved?: boolean;
|
|
93
|
+
schema?: Referenced<Oas3Schema>;
|
|
94
|
+
example?: any;
|
|
95
|
+
examples?: { [media: string]: Referenced<Oas3Example> };
|
|
96
|
+
content?: { [media: string]: Oas3MediaType };
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export interface Oas3Example {
|
|
100
|
+
value: any;
|
|
101
|
+
summary?: string;
|
|
102
|
+
description?: string;
|
|
103
|
+
externalValue?: string;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export interface Oas3Xml {
|
|
107
|
+
name?: string;
|
|
108
|
+
namespace?: string;
|
|
109
|
+
prefix?: string;
|
|
110
|
+
attribute?: string;
|
|
111
|
+
wrapped?: string;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export interface Oas3Schema {
|
|
115
|
+
$ref?: string;
|
|
116
|
+
type?: string;
|
|
117
|
+
properties?: { [name: string]: Oas3Schema };
|
|
118
|
+
additionalProperties?: boolean | Oas3Schema;
|
|
119
|
+
description?: string;
|
|
120
|
+
default?: any;
|
|
121
|
+
items?: Oas3Schema;
|
|
122
|
+
required?: string[];
|
|
123
|
+
readOnly?: boolean;
|
|
124
|
+
writeOnly?: boolean;
|
|
125
|
+
deprecated?: boolean;
|
|
126
|
+
format?: string;
|
|
127
|
+
externalDocs?: Oas3ExternalDocs;
|
|
128
|
+
discriminator?: Oas3Discriminator;
|
|
129
|
+
nullable?: boolean;
|
|
130
|
+
oneOf?: Oas3Schema[];
|
|
131
|
+
anyOf?: Oas3Schema[];
|
|
132
|
+
allOf?: Oas3Schema[];
|
|
133
|
+
not?: Oas3Schema;
|
|
134
|
+
|
|
135
|
+
title?: string;
|
|
136
|
+
multipleOf?: number;
|
|
137
|
+
maximum?: number;
|
|
138
|
+
exclusiveMaximum?: boolean;
|
|
139
|
+
minimum?: number;
|
|
140
|
+
exclusiveMinimum?: boolean;
|
|
141
|
+
maxLength?: number;
|
|
142
|
+
minLength?: number;
|
|
143
|
+
pattern?: string;
|
|
144
|
+
maxItems?: number;
|
|
145
|
+
minItems?: number;
|
|
146
|
+
uniqueItems?: boolean;
|
|
147
|
+
maxProperties?: number;
|
|
148
|
+
minProperties?: number;
|
|
149
|
+
enum?: any[];
|
|
150
|
+
example?: any;
|
|
151
|
+
|
|
152
|
+
xml?: Oas3Xml;
|
|
153
|
+
'x-tags'?: string[];
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export type Oas3_1Schema = Oas3Schema & {
|
|
157
|
+
type?: string | string[];
|
|
158
|
+
examples?: any[];
|
|
159
|
+
};
|
|
160
|
+
|
|
161
|
+
export interface Oas3_1Definition extends Oas3Definition {
|
|
162
|
+
webhooks?: Oas3_1Webhooks;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export interface Oas3_1Webhooks {
|
|
166
|
+
[webhook: string]: Referenced<Oas3PathItem>;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export interface Oas3Discriminator {
|
|
170
|
+
propertyName: string;
|
|
171
|
+
mapping?: { [name: string]: string };
|
|
172
|
+
'x-explicitMappingOnly'?: boolean;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export interface Oas3MediaType {
|
|
176
|
+
schema?: Referenced<Oas3Schema>;
|
|
177
|
+
example?: any;
|
|
178
|
+
examples?: { [name: string]: Referenced<Oas3Example> };
|
|
179
|
+
encoding?: { [field: string]: Oas3Encoding };
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export interface Oas3Encoding {
|
|
183
|
+
contentType: string;
|
|
184
|
+
headers?: { [name: string]: Referenced<Oas3Header> };
|
|
185
|
+
style: Oas3ParameterStyle;
|
|
186
|
+
explode: boolean;
|
|
187
|
+
allowReserved: boolean;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export type Oas3ParameterLocation = 'query' | 'header' | 'path' | 'cookie';
|
|
191
|
+
export type Oas3ParameterStyle =
|
|
192
|
+
| 'matrix'
|
|
193
|
+
| 'label'
|
|
194
|
+
| 'form'
|
|
195
|
+
| 'simple'
|
|
196
|
+
| 'spaceDelimited'
|
|
197
|
+
| 'pipeDelimited'
|
|
198
|
+
| 'deepObject';
|
|
199
|
+
|
|
200
|
+
export interface Oas3RequestBody {
|
|
201
|
+
description?: string;
|
|
202
|
+
required?: boolean;
|
|
203
|
+
content: { [mime: string]: Oas3MediaType };
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
export interface Oas3Responses {
|
|
207
|
+
[code: string]: Oas3Response;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
export interface Oas3Response {
|
|
211
|
+
description?: string;
|
|
212
|
+
headers?: { [name: string]: Referenced<Oas3Header> };
|
|
213
|
+
content?: { [mime: string]: Oas3MediaType };
|
|
214
|
+
links?: { [name: string]: Referenced<Oas3Link> };
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
export interface Oas3Link {
|
|
218
|
+
$ref?: string;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
export type Oas3Header = Omit<Oas3Parameter, 'in' | 'name'>;
|
|
222
|
+
|
|
223
|
+
export interface Oas3Callback {
|
|
224
|
+
[name: string]: Oas3PathItem;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export interface Oas3Components {
|
|
228
|
+
schemas?: { [name: string]: Referenced<Oas3Schema> };
|
|
229
|
+
responses?: { [name: string]: Referenced<Oas3Response> };
|
|
230
|
+
parameters?: { [name: string]: Referenced<Oas3Parameter> };
|
|
231
|
+
examples?: { [name: string]: Referenced<Oas3Example> };
|
|
232
|
+
requestBodies?: { [name: string]: Referenced<Oas3RequestBody> };
|
|
233
|
+
headers?: { [name: string]: Referenced<Oas3Header> };
|
|
234
|
+
securitySchemes?: { [name: string]: Referenced<Oas3SecurityScheme> };
|
|
235
|
+
links?: { [name: string]: Referenced<Oas3Link> };
|
|
236
|
+
callbacks?: { [name: string]: Referenced<Oas3Callback> };
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
export type Oas3ComponentName = keyof Oas3Components;
|
|
240
|
+
|
|
241
|
+
export interface Oas3SecurityRequirement {
|
|
242
|
+
[name: string]: string[];
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export interface Oas3SecurityScheme {
|
|
246
|
+
type: 'apiKey' | 'http' | 'oauth2' | 'openIdConnect';
|
|
247
|
+
description?: string;
|
|
248
|
+
name?: string;
|
|
249
|
+
in?: 'query' | 'header' | 'cookie';
|
|
250
|
+
scheme?: string;
|
|
251
|
+
bearerFormat: string;
|
|
252
|
+
flows: {
|
|
253
|
+
implicit?: {
|
|
254
|
+
refreshUrl?: string;
|
|
255
|
+
scopes: Record<string, string>;
|
|
256
|
+
authorizationUrl: string;
|
|
257
|
+
};
|
|
258
|
+
password?: {
|
|
259
|
+
refreshUrl?: string;
|
|
260
|
+
scopes: Record<string, string>;
|
|
261
|
+
tokenUrl: string;
|
|
262
|
+
};
|
|
263
|
+
clientCredentials?: {
|
|
264
|
+
refreshUrl?: string;
|
|
265
|
+
scopes: Record<string, string>;
|
|
266
|
+
tokenUrl: string;
|
|
267
|
+
};
|
|
268
|
+
authorizationCode?: {
|
|
269
|
+
refreshUrl?: string;
|
|
270
|
+
scopes: Record<string, string>;
|
|
271
|
+
tokenUrl: string;
|
|
272
|
+
};
|
|
273
|
+
};
|
|
274
|
+
openIdConnectUrl?: string;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
export interface Oas3Tag {
|
|
278
|
+
name: string;
|
|
279
|
+
description?: string;
|
|
280
|
+
externalDocs?: Oas3ExternalDocs;
|
|
281
|
+
'x-displayName'?: string;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
export interface Oas3ExternalDocs {
|
|
285
|
+
description?: string;
|
|
286
|
+
url: string;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
export interface Oas3Contact {
|
|
290
|
+
name?: string;
|
|
291
|
+
url?: string;
|
|
292
|
+
email?: string;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
export interface Oas3License {
|
|
296
|
+
name: string;
|
|
297
|
+
url?: string;
|
|
298
|
+
}
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
import { Referenced } from './openapi';
|
|
2
|
+
import { Schema } from 'js-yaml';
|
|
3
|
+
|
|
4
|
+
export interface Oas2Definition {
|
|
5
|
+
swagger: '2.0';
|
|
6
|
+
info?: Oas2Info;
|
|
7
|
+
paths?: Oas2Paths;
|
|
8
|
+
|
|
9
|
+
basePath?: string;
|
|
10
|
+
schemes?: string[];
|
|
11
|
+
consumes?: string[];
|
|
12
|
+
produces?: string[];
|
|
13
|
+
|
|
14
|
+
definitions?: Record<string, Oas2Schema>;
|
|
15
|
+
responses?: Record<string, Oas2Response>;
|
|
16
|
+
parameters?: Record<string, Oas2Parameter>;
|
|
17
|
+
securityDefinitions?: Record<string, Oas2SecurityScheme>;
|
|
18
|
+
security?: Oas2SecurityRequirement[];
|
|
19
|
+
tags?: Oas2Tag[];
|
|
20
|
+
externalDocs?: Oas2ExternalDocs;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface Oas2Components {
|
|
24
|
+
definitions?: { [name: string]: Record<string, Oas2Schema> };
|
|
25
|
+
securityDefinitions?: { [name: string]: Record<string, Oas2SecurityScheme> };
|
|
26
|
+
responses?: { [name: string]: Record<string, Oas2Response> };
|
|
27
|
+
parameters?: { [name: string]: Record<string, Oas2Parameter> };
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface Oas2Info {
|
|
31
|
+
title: string;
|
|
32
|
+
version: string;
|
|
33
|
+
|
|
34
|
+
description?: string;
|
|
35
|
+
termsOfService?: string;
|
|
36
|
+
contact?: Oas2Contact;
|
|
37
|
+
license?: Oas2License;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export interface Oas2Paths {
|
|
41
|
+
[path: string]: Oas2PathItem;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export interface Oas2PathItem {
|
|
45
|
+
get?: Oas2Operation;
|
|
46
|
+
put?: Oas2Operation;
|
|
47
|
+
post?: Oas2Operation;
|
|
48
|
+
delete?: Oas2Operation;
|
|
49
|
+
options?: Oas2Operation;
|
|
50
|
+
head?: Oas2Operation;
|
|
51
|
+
patch?: Oas2Operation;
|
|
52
|
+
parameters?: Array<Referenced<Oas2Parameter>>;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export interface Oas2XCodeSample {
|
|
56
|
+
lang: string;
|
|
57
|
+
label?: string;
|
|
58
|
+
source: string;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export interface Oas2Operation {
|
|
62
|
+
tags?: string[];
|
|
63
|
+
consumes?: string[];
|
|
64
|
+
produces?: string[];
|
|
65
|
+
schemes?: string[];
|
|
66
|
+
summary?: string;
|
|
67
|
+
description?: string;
|
|
68
|
+
externalDocs?: Oas2ExternalDocs;
|
|
69
|
+
operationId?: string;
|
|
70
|
+
parameters?: Array<Referenced<Oas2Parameter>>;
|
|
71
|
+
responses: Oas2Responses;
|
|
72
|
+
deprecated?: boolean;
|
|
73
|
+
security?: Oas2SecurityRequirement[];
|
|
74
|
+
'x-codeSamples'?: Oas2XCodeSample[];
|
|
75
|
+
'x-code-samples'?: Oas2XCodeSample[]; // deprecated
|
|
76
|
+
'x-hideTryItPanel'?: boolean;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export type Oas2Parameter = Oas2BodyParameter | Oas2SimpleParameter;
|
|
80
|
+
|
|
81
|
+
export interface Oas2BodyParameter {
|
|
82
|
+
name: string;
|
|
83
|
+
in: 'body';
|
|
84
|
+
schema: Oas2Schema;
|
|
85
|
+
|
|
86
|
+
description?: string;
|
|
87
|
+
required?: boolean;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
export interface Oas2SimpleParameter {
|
|
91
|
+
name: string;
|
|
92
|
+
in: Oas2ParameterLocation;
|
|
93
|
+
description?: string;
|
|
94
|
+
required?: boolean;
|
|
95
|
+
type: 'string' | 'number' | 'integer' | 'boolean' | 'array' | 'file';
|
|
96
|
+
|
|
97
|
+
format?: string;
|
|
98
|
+
allowEmptyValue?: boolean;
|
|
99
|
+
items?: Oas2Items;
|
|
100
|
+
collectionFormat?: 'csv' | 'ssv' | 'tsv' | 'pipes' | 'multi';
|
|
101
|
+
default?: any;
|
|
102
|
+
maximum?: number;
|
|
103
|
+
exclusiveMaximum?: boolean;
|
|
104
|
+
minimum?: number;
|
|
105
|
+
exclusiveMinimum?: boolean;
|
|
106
|
+
maxLength?: number;
|
|
107
|
+
minLength?: number;
|
|
108
|
+
pattern?: string;
|
|
109
|
+
maxItems?: number;
|
|
110
|
+
minItems?: number;
|
|
111
|
+
uniqueItems?: boolean;
|
|
112
|
+
enum?: any[];
|
|
113
|
+
multipleOf?: number;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export interface Oas2Items {
|
|
117
|
+
type: 'string' | 'number' | 'integer' | 'boolean' | 'array';
|
|
118
|
+
|
|
119
|
+
format?: string;
|
|
120
|
+
allowEmptyValue?: boolean;
|
|
121
|
+
items?: Oas2Items;
|
|
122
|
+
collectionFormat?: 'csv' | 'ssv' | 'tsv' | 'pipes' | 'multi';
|
|
123
|
+
default?: any;
|
|
124
|
+
maximum?: number;
|
|
125
|
+
exclusiveMaximum?: boolean;
|
|
126
|
+
minimum?: number;
|
|
127
|
+
exclusiveMinimum?: boolean;
|
|
128
|
+
maxLength?: number;
|
|
129
|
+
minLength?: number;
|
|
130
|
+
pattern?: string;
|
|
131
|
+
maxItems?: number;
|
|
132
|
+
minItems?: number;
|
|
133
|
+
uniqueItems?: boolean;
|
|
134
|
+
enum?: any[];
|
|
135
|
+
multipleOf?: number;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export interface Oas2Xml {
|
|
139
|
+
name?: string;
|
|
140
|
+
namespace?: string;
|
|
141
|
+
prefix?: string;
|
|
142
|
+
attribute?: string;
|
|
143
|
+
wrapped?: string;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export interface Oas2Schema {
|
|
147
|
+
$ref?: string;
|
|
148
|
+
type?: string;
|
|
149
|
+
properties?: { [name: string]: Oas2Schema };
|
|
150
|
+
additionalProperties?: boolean | Oas2Schema;
|
|
151
|
+
description?: string;
|
|
152
|
+
default?: any;
|
|
153
|
+
items?: Oas2Schema;
|
|
154
|
+
required?: string[];
|
|
155
|
+
readOnly?: boolean;
|
|
156
|
+
deprecated?: boolean;
|
|
157
|
+
format?: string;
|
|
158
|
+
externalDocs?: Oas2ExternalDocs;
|
|
159
|
+
discriminator?: string;
|
|
160
|
+
nullable?: boolean;
|
|
161
|
+
allOf?: Oas2Schema[];
|
|
162
|
+
|
|
163
|
+
title?: string;
|
|
164
|
+
multipleOf?: number;
|
|
165
|
+
maximum?: number;
|
|
166
|
+
exclusiveMaximum?: boolean;
|
|
167
|
+
minimum?: number;
|
|
168
|
+
exclusiveMinimum?: boolean;
|
|
169
|
+
maxLength?: number;
|
|
170
|
+
minLength?: number;
|
|
171
|
+
pattern?: string;
|
|
172
|
+
maxItems?: number;
|
|
173
|
+
minItems?: number;
|
|
174
|
+
uniqueItems?: boolean;
|
|
175
|
+
maxProperties?: number;
|
|
176
|
+
minProperties?: number;
|
|
177
|
+
enum?: any[];
|
|
178
|
+
example?: any;
|
|
179
|
+
|
|
180
|
+
xml?: Oas2Xml;
|
|
181
|
+
'x-tags'?: string[];
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
export type Oas2ParameterLocation = 'query' | 'header' | 'path' | 'formData';
|
|
185
|
+
|
|
186
|
+
export interface Oas2Responses {
|
|
187
|
+
[code: string]: Oas2Response;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
export type Oas2Header = Oas2Items & { description?: 'string' };
|
|
191
|
+
|
|
192
|
+
export interface Oas2Response {
|
|
193
|
+
description?: string;
|
|
194
|
+
schema: Referenced<Schema>;
|
|
195
|
+
examples?: Record<string, any>;
|
|
196
|
+
headers?: Record<string, Oas2Header>;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
export interface Oas2SecurityRequirement {
|
|
200
|
+
[name: string]: string[];
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export interface Oas2SecurityScheme {
|
|
204
|
+
type: 'basic' | 'apiKey' | 'oauth2';
|
|
205
|
+
description?: string;
|
|
206
|
+
name?: string;
|
|
207
|
+
in?: 'query' | 'header' | 'cookie';
|
|
208
|
+
scheme?: string;
|
|
209
|
+
flow: 'implicit' | 'password' | 'application' | 'accessCode';
|
|
210
|
+
authorizationUrl?: string;
|
|
211
|
+
tokenUrl?: string;
|
|
212
|
+
scopes?: Record<string, string>;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export interface Oas2Tag {
|
|
216
|
+
name: string;
|
|
217
|
+
description?: string;
|
|
218
|
+
externalDocs?: Oas2ExternalDocs;
|
|
219
|
+
'x-displayName'?: string;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
export interface Oas2ExternalDocs {
|
|
223
|
+
description?: string;
|
|
224
|
+
url: string;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export interface Oas2Contact {
|
|
228
|
+
name?: string;
|
|
229
|
+
url?: string;
|
|
230
|
+
email?: string;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export interface Oas2License {
|
|
234
|
+
name: string;
|
|
235
|
+
url?: string;
|
|
236
|
+
}
|