@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,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SpotSupportedVersions = void 0;
|
|
4
|
+
const arazzo_1 = require("../../typings/arazzo");
|
|
5
|
+
const utils_1 = require("../../utils");
|
|
6
|
+
const SpotSupportedVersions = () => {
|
|
7
|
+
const supportedVersions = arazzo_1.ARAZZO_VERSIONS_SUPPORTED_BY_SPOT.join(', ');
|
|
8
|
+
return {
|
|
9
|
+
Root: {
|
|
10
|
+
enter(root, { report, location }) {
|
|
11
|
+
if (!arazzo_1.ARAZZO_VERSIONS_SUPPORTED_BY_SPOT.includes(root.arazzo)) {
|
|
12
|
+
report({
|
|
13
|
+
message: `Only ${supportedVersions} Arazzo ${(0, utils_1.pluralize)('version is', arazzo_1.ARAZZO_VERSIONS_SUPPORTED_BY_SPOT.length)} supported by Spot.`,
|
|
14
|
+
location: location.child('arazzo'),
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
exports.SpotSupportedVersions = SpotSupportedVersions;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Location } from '../ref-utils';
|
|
2
|
+
import type { Oas3Schema, Oas3_1Schema, Referenced } from '../typings/openapi';
|
|
3
|
+
import type { UserContext } from '../walk';
|
|
4
|
+
export declare function oasTypeOf(value: unknown): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | "integer" | "array" | "null";
|
|
5
|
+
/**
|
|
6
|
+
* Checks if value matches specified JSON schema type
|
|
7
|
+
*
|
|
8
|
+
* @param {*} value - value to check
|
|
9
|
+
* @param {JSONSchemaType} type - JSON Schema type
|
|
10
|
+
* @returns boolean
|
|
11
|
+
*/
|
|
12
|
+
export declare function matchesJsonSchemaType(value: unknown, type: string, nullable: boolean): boolean;
|
|
13
|
+
export declare function missingRequiredField(type: string, field: string): string;
|
|
14
|
+
export declare function missingRequiredOneOfFields(type: string, fields: string[]): string;
|
|
15
|
+
export declare function fieldNonEmpty(type: string, field: string): string;
|
|
16
|
+
export declare function validateDefinedAndNonEmpty(fieldName: string, value: any, ctx: UserContext): void;
|
|
17
|
+
export declare function validateOneOfDefinedAndNonEmpty(fieldNames: string[], value: any, ctx: UserContext): void;
|
|
18
|
+
export declare function getSuggest(given: string, variants: string[]): string[];
|
|
19
|
+
export declare function validateExample(example: any, schema: Referenced<Oas3Schema | Oas3_1Schema>, dataLoc: Location, { resolve, location, report }: UserContext, allowAdditionalProperties: boolean): void;
|
|
20
|
+
export declare function getAdditionalPropertiesOption(opts: Record<string, any>): boolean;
|
|
21
|
+
export declare function validateSchemaEnumType(schemaEnum: string[], propertyValue: string, propName: string, refLocation: Location | undefined, { report, location }: UserContext): void;
|
|
22
|
+
export declare function validateResponseCodes(responseCodes: string[], codeRange: string, { report }: UserContext): void;
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.oasTypeOf = oasTypeOf;
|
|
4
|
+
exports.matchesJsonSchemaType = matchesJsonSchemaType;
|
|
5
|
+
exports.missingRequiredField = missingRequiredField;
|
|
6
|
+
exports.missingRequiredOneOfFields = missingRequiredOneOfFields;
|
|
7
|
+
exports.fieldNonEmpty = fieldNonEmpty;
|
|
8
|
+
exports.validateDefinedAndNonEmpty = validateDefinedAndNonEmpty;
|
|
9
|
+
exports.validateOneOfDefinedAndNonEmpty = validateOneOfDefinedAndNonEmpty;
|
|
10
|
+
exports.getSuggest = getSuggest;
|
|
11
|
+
exports.validateExample = validateExample;
|
|
12
|
+
exports.getAdditionalPropertiesOption = getAdditionalPropertiesOption;
|
|
13
|
+
exports.validateSchemaEnumType = validateSchemaEnumType;
|
|
14
|
+
exports.validateResponseCodes = validateResponseCodes;
|
|
15
|
+
const levenshtein = require("js-levenshtein");
|
|
16
|
+
const ref_utils_1 = require("../ref-utils");
|
|
17
|
+
const ajv_1 = require("./ajv");
|
|
18
|
+
const utils_1 = require("../utils");
|
|
19
|
+
function oasTypeOf(value) {
|
|
20
|
+
if (Array.isArray(value)) {
|
|
21
|
+
return 'array';
|
|
22
|
+
}
|
|
23
|
+
else if (value === null) {
|
|
24
|
+
return 'null';
|
|
25
|
+
}
|
|
26
|
+
else if (Number.isInteger(value)) {
|
|
27
|
+
return 'integer';
|
|
28
|
+
}
|
|
29
|
+
else {
|
|
30
|
+
return typeof value;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Checks if value matches specified JSON schema type
|
|
35
|
+
*
|
|
36
|
+
* @param {*} value - value to check
|
|
37
|
+
* @param {JSONSchemaType} type - JSON Schema type
|
|
38
|
+
* @returns boolean
|
|
39
|
+
*/
|
|
40
|
+
function matchesJsonSchemaType(value, type, nullable) {
|
|
41
|
+
if (nullable && value === null) {
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
switch (type) {
|
|
45
|
+
case 'array':
|
|
46
|
+
return Array.isArray(value);
|
|
47
|
+
case 'object':
|
|
48
|
+
return typeof value === 'object' && value !== null && !Array.isArray(value);
|
|
49
|
+
case 'null':
|
|
50
|
+
return value === null;
|
|
51
|
+
case 'integer':
|
|
52
|
+
return Number.isInteger(value);
|
|
53
|
+
default:
|
|
54
|
+
return typeof value === type;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
function missingRequiredField(type, field) {
|
|
58
|
+
return `${type} object should contain \`${field}\` field.`;
|
|
59
|
+
}
|
|
60
|
+
function missingRequiredOneOfFields(type, fields) {
|
|
61
|
+
return `${type} object should contain one of the fields: ${fields
|
|
62
|
+
.map((field) => `\`${field}\``)
|
|
63
|
+
.join(', ')}.`;
|
|
64
|
+
}
|
|
65
|
+
function fieldNonEmpty(type, field) {
|
|
66
|
+
return `${type} object \`${field}\` must be non-empty string.`;
|
|
67
|
+
}
|
|
68
|
+
function validateDefinedAndNonEmpty(fieldName, value, ctx) {
|
|
69
|
+
if (!(0, utils_1.isPlainObject)(value)) {
|
|
70
|
+
return;
|
|
71
|
+
}
|
|
72
|
+
if (value[fieldName] === undefined) {
|
|
73
|
+
ctx.report({
|
|
74
|
+
message: missingRequiredField(ctx.type.name, fieldName),
|
|
75
|
+
location: ctx.location.child([fieldName]).key(),
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
else if (!value[fieldName]) {
|
|
79
|
+
ctx.report({
|
|
80
|
+
message: fieldNonEmpty(ctx.type.name, fieldName),
|
|
81
|
+
location: ctx.location.child([fieldName]).key(),
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
function validateOneOfDefinedAndNonEmpty(fieldNames, value, ctx) {
|
|
86
|
+
if (!(0, utils_1.isPlainObject)(value)) {
|
|
87
|
+
return;
|
|
88
|
+
}
|
|
89
|
+
if (!fieldNames.some((fieldName) => value.hasOwnProperty(fieldName))) {
|
|
90
|
+
ctx.report({
|
|
91
|
+
message: missingRequiredOneOfFields(ctx.type.name, fieldNames),
|
|
92
|
+
location: ctx.location.key(),
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
for (const fieldName of fieldNames) {
|
|
96
|
+
if (value.hasOwnProperty(fieldName) && !value[fieldName]) {
|
|
97
|
+
ctx.report({
|
|
98
|
+
message: fieldNonEmpty(ctx.type.name, fieldName),
|
|
99
|
+
location: ctx.location.child([fieldName]).key(),
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
function getSuggest(given, variants) {
|
|
105
|
+
if (given === null)
|
|
106
|
+
return variants;
|
|
107
|
+
if (typeof given !== 'string' || !variants.length)
|
|
108
|
+
return [];
|
|
109
|
+
const distances = [];
|
|
110
|
+
for (let i = 0; i < variants.length; i++) {
|
|
111
|
+
const distance = levenshtein(given, variants[i]);
|
|
112
|
+
if (distance < 4) {
|
|
113
|
+
distances.push({ distance, variant: variants[i] });
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
distances.sort((a, b) => a.distance - b.distance);
|
|
117
|
+
// if (bestMatch.distance <= 4) return bestMatch.string;
|
|
118
|
+
return distances.map((d) => d.variant);
|
|
119
|
+
}
|
|
120
|
+
function validateExample(example, schema, dataLoc, { resolve, location, report }, allowAdditionalProperties) {
|
|
121
|
+
try {
|
|
122
|
+
const { valid, errors } = (0, ajv_1.validateJsonSchema)(example, schema, location.child('schema'), dataLoc.pointer, resolve, allowAdditionalProperties);
|
|
123
|
+
if (!valid) {
|
|
124
|
+
for (const error of errors) {
|
|
125
|
+
report({
|
|
126
|
+
message: `Example value must conform to the schema: ${error.message}.`,
|
|
127
|
+
location: {
|
|
128
|
+
...new ref_utils_1.Location(dataLoc.source, error.instancePath),
|
|
129
|
+
reportOnKey: error.keyword === 'unevaluatedProperties' || error.keyword === 'additionalProperties',
|
|
130
|
+
},
|
|
131
|
+
from: location,
|
|
132
|
+
suggest: error.suggest,
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
catch (e) {
|
|
138
|
+
if (e.message === 'discriminator: requires oneOf or anyOf composite keyword') {
|
|
139
|
+
return;
|
|
140
|
+
}
|
|
141
|
+
report({
|
|
142
|
+
message: `Example validation errored: ${e.message}.`,
|
|
143
|
+
location: location.child('schema'),
|
|
144
|
+
from: location,
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
function getAdditionalPropertiesOption(opts) {
|
|
149
|
+
if (opts.disallowAdditionalProperties === undefined) {
|
|
150
|
+
return opts.allowAdditionalProperties;
|
|
151
|
+
}
|
|
152
|
+
if (opts.allowAdditionalProperties !== undefined) {
|
|
153
|
+
(0, utils_1.showErrorForDeprecatedField)('disallowAdditionalProperties', 'allowAdditionalProperties', undefined);
|
|
154
|
+
}
|
|
155
|
+
(0, utils_1.showWarningForDeprecatedField)('disallowAdditionalProperties', 'allowAdditionalProperties');
|
|
156
|
+
return !opts.disallowAdditionalProperties;
|
|
157
|
+
}
|
|
158
|
+
function validateSchemaEnumType(schemaEnum, propertyValue, propName, refLocation, { report, location }) {
|
|
159
|
+
if (!schemaEnum) {
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
162
|
+
if (!schemaEnum.includes(propertyValue)) {
|
|
163
|
+
report({
|
|
164
|
+
location,
|
|
165
|
+
message: `\`${propName}\` can be one of the following only: ${schemaEnum
|
|
166
|
+
.map((type) => `"${type}"`)
|
|
167
|
+
.join(', ')}.`,
|
|
168
|
+
from: refLocation,
|
|
169
|
+
suggest: getSuggest(propertyValue, schemaEnum),
|
|
170
|
+
});
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
function validateResponseCodes(responseCodes, codeRange, { report }) {
|
|
174
|
+
const responseCodeRegexp = new RegExp(`^${codeRange[0]}[0-9Xx]{2}$`);
|
|
175
|
+
const containsNeededCode = responseCodes.some((code) => (codeRange === '2XX' && code === 'default') || // It's OK to replace 2xx codes with the default
|
|
176
|
+
responseCodeRegexp.test(code));
|
|
177
|
+
if (!containsNeededCode) {
|
|
178
|
+
report({
|
|
179
|
+
message: `Operation must have at least one \`${codeRange}\` response.`,
|
|
180
|
+
location: { reportOnKey: true },
|
|
181
|
+
});
|
|
182
|
+
}
|
|
183
|
+
}
|
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Arazzo1Types = void 0;
|
|
4
|
+
const _1 = require(".");
|
|
5
|
+
const oas3_1_1 = require("./oas3_1");
|
|
6
|
+
const oas3_1 = require("./oas3");
|
|
7
|
+
const Root = {
|
|
8
|
+
properties: {
|
|
9
|
+
arazzo: { type: 'string' },
|
|
10
|
+
info: 'Info',
|
|
11
|
+
sourceDescriptions: 'SourceDescriptions',
|
|
12
|
+
workflows: 'Workflows',
|
|
13
|
+
components: 'Components',
|
|
14
|
+
},
|
|
15
|
+
required: ['arazzo', 'info', 'sourceDescriptions', 'workflows'],
|
|
16
|
+
extensionsPrefix: 'x-',
|
|
17
|
+
};
|
|
18
|
+
const NamedParameters = {
|
|
19
|
+
properties: {},
|
|
20
|
+
additionalProperties: 'Parameter',
|
|
21
|
+
};
|
|
22
|
+
const NamedSuccessActions = {
|
|
23
|
+
properties: {},
|
|
24
|
+
additionalProperties: 'SuccessActionObject',
|
|
25
|
+
};
|
|
26
|
+
const NamedFailureActions = {
|
|
27
|
+
properties: {},
|
|
28
|
+
additionalProperties: 'FailureActionObject',
|
|
29
|
+
};
|
|
30
|
+
const Components = {
|
|
31
|
+
properties: {
|
|
32
|
+
inputs: 'NamedInputs',
|
|
33
|
+
parameters: 'NamedParameters',
|
|
34
|
+
successActions: 'NamedSuccessActions',
|
|
35
|
+
failureActions: 'NamedFailureActions',
|
|
36
|
+
},
|
|
37
|
+
extensionsPrefix: 'x-',
|
|
38
|
+
};
|
|
39
|
+
const NamedInputs = (0, _1.mapOf)('Schema');
|
|
40
|
+
const Info = {
|
|
41
|
+
properties: {
|
|
42
|
+
title: { type: 'string' },
|
|
43
|
+
description: { type: 'string' },
|
|
44
|
+
summary: { type: 'string' },
|
|
45
|
+
version: { type: 'string' },
|
|
46
|
+
},
|
|
47
|
+
required: ['title', 'version'],
|
|
48
|
+
extensionsPrefix: 'x-',
|
|
49
|
+
};
|
|
50
|
+
const SourceDescriptions = {
|
|
51
|
+
properties: {},
|
|
52
|
+
items: (value) => {
|
|
53
|
+
if (value?.type === 'openapi') {
|
|
54
|
+
return 'OpenAPISourceDescription';
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
return 'ArazzoSourceDescription';
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
};
|
|
61
|
+
const OpenAPISourceDescription = {
|
|
62
|
+
properties: {
|
|
63
|
+
name: { type: 'string' },
|
|
64
|
+
type: { type: 'string', enum: ['openapi'] },
|
|
65
|
+
url: { type: 'string' },
|
|
66
|
+
'x-serverUrl': { type: 'string' },
|
|
67
|
+
},
|
|
68
|
+
required: ['name', 'type', 'url'],
|
|
69
|
+
extensionsPrefix: 'x-',
|
|
70
|
+
};
|
|
71
|
+
const ArazzoSourceDescription = {
|
|
72
|
+
properties: {
|
|
73
|
+
name: { type: 'string' },
|
|
74
|
+
type: { type: 'string', enum: ['arazzo'] },
|
|
75
|
+
url: { type: 'string' },
|
|
76
|
+
},
|
|
77
|
+
required: ['name', 'type', 'url'],
|
|
78
|
+
extensionsPrefix: 'x-',
|
|
79
|
+
};
|
|
80
|
+
const ReusableObject = {
|
|
81
|
+
properties: {
|
|
82
|
+
reference: { type: 'string' },
|
|
83
|
+
value: {}, // any
|
|
84
|
+
},
|
|
85
|
+
required: ['reference'],
|
|
86
|
+
extensionsPrefix: 'x-',
|
|
87
|
+
};
|
|
88
|
+
const Parameter = {
|
|
89
|
+
properties: {
|
|
90
|
+
in: { type: 'string', enum: ['header', 'query', 'path', 'cookie'] },
|
|
91
|
+
name: { type: 'string' },
|
|
92
|
+
value: {}, // any
|
|
93
|
+
},
|
|
94
|
+
required: ['name', 'value'],
|
|
95
|
+
extensionsPrefix: 'x-',
|
|
96
|
+
};
|
|
97
|
+
const Parameters = {
|
|
98
|
+
properties: {},
|
|
99
|
+
items: (value) => {
|
|
100
|
+
if (value?.reference) {
|
|
101
|
+
return 'ReusableObject';
|
|
102
|
+
}
|
|
103
|
+
else {
|
|
104
|
+
return 'Parameter';
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
};
|
|
108
|
+
const Workflow = {
|
|
109
|
+
properties: {
|
|
110
|
+
workflowId: { type: 'string' },
|
|
111
|
+
summary: { type: 'string' },
|
|
112
|
+
description: { type: 'string' },
|
|
113
|
+
parameters: 'Parameters',
|
|
114
|
+
dependsOn: { type: 'array', items: { type: 'string' } },
|
|
115
|
+
inputs: 'Schema',
|
|
116
|
+
outputs: 'Outputs',
|
|
117
|
+
steps: 'Steps',
|
|
118
|
+
successActions: 'OnSuccessActionList',
|
|
119
|
+
failureActions: 'OnFailureActionList',
|
|
120
|
+
},
|
|
121
|
+
required: ['workflowId', 'steps'],
|
|
122
|
+
extensionsPrefix: 'x-',
|
|
123
|
+
};
|
|
124
|
+
const Workflows = (0, _1.listOf)('Workflow');
|
|
125
|
+
const Steps = (0, _1.listOf)('Step');
|
|
126
|
+
const Step = {
|
|
127
|
+
properties: {
|
|
128
|
+
stepId: { type: 'string' },
|
|
129
|
+
description: { type: 'string' },
|
|
130
|
+
operationId: { type: 'string' },
|
|
131
|
+
operationPath: { type: 'string' },
|
|
132
|
+
workflowId: { type: 'string' },
|
|
133
|
+
parameters: 'Parameters',
|
|
134
|
+
successCriteria: (0, _1.listOf)('CriterionObject'),
|
|
135
|
+
onSuccess: 'OnSuccessActionList',
|
|
136
|
+
onFailure: 'OnFailureActionList',
|
|
137
|
+
outputs: 'Outputs',
|
|
138
|
+
'x-operation': 'ExtendedOperation',
|
|
139
|
+
requestBody: 'RequestBody',
|
|
140
|
+
},
|
|
141
|
+
required: ['stepId'],
|
|
142
|
+
requiredOneOf: ['x-operation', 'operationId', 'operationPath', 'workflowId'],
|
|
143
|
+
extensionsPrefix: 'x-',
|
|
144
|
+
};
|
|
145
|
+
const Outputs = {
|
|
146
|
+
properties: {},
|
|
147
|
+
additionalProperties: {
|
|
148
|
+
type: 'string',
|
|
149
|
+
},
|
|
150
|
+
};
|
|
151
|
+
const RequestBody = {
|
|
152
|
+
properties: {
|
|
153
|
+
contentType: { type: 'string' },
|
|
154
|
+
payload: {},
|
|
155
|
+
replacements: (0, _1.listOf)('Replacement'),
|
|
156
|
+
},
|
|
157
|
+
required: ['payload'],
|
|
158
|
+
extensionsPrefix: 'x-',
|
|
159
|
+
};
|
|
160
|
+
const Replacement = {
|
|
161
|
+
properties: {
|
|
162
|
+
target: { type: 'string' },
|
|
163
|
+
value: {},
|
|
164
|
+
},
|
|
165
|
+
required: ['target', 'value'],
|
|
166
|
+
extensionsPrefix: 'x-',
|
|
167
|
+
};
|
|
168
|
+
const ExtendedOperation = {
|
|
169
|
+
properties: {
|
|
170
|
+
url: { type: 'string' },
|
|
171
|
+
method: {
|
|
172
|
+
enum: [
|
|
173
|
+
'get',
|
|
174
|
+
'post',
|
|
175
|
+
'put',
|
|
176
|
+
'delete',
|
|
177
|
+
'patch',
|
|
178
|
+
'GET',
|
|
179
|
+
'POST',
|
|
180
|
+
'PUT',
|
|
181
|
+
'DELETE',
|
|
182
|
+
'PATCH',
|
|
183
|
+
'options',
|
|
184
|
+
'OPTIONS',
|
|
185
|
+
'head',
|
|
186
|
+
'HEAD',
|
|
187
|
+
'trace',
|
|
188
|
+
'TRACE',
|
|
189
|
+
'connect',
|
|
190
|
+
'CONNECT',
|
|
191
|
+
],
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
required: ['url', 'method'],
|
|
195
|
+
};
|
|
196
|
+
const CriterionObject = {
|
|
197
|
+
properties: {
|
|
198
|
+
condition: { type: 'string' },
|
|
199
|
+
context: { type: 'string' },
|
|
200
|
+
type: (value) => {
|
|
201
|
+
if (!value) {
|
|
202
|
+
return undefined;
|
|
203
|
+
}
|
|
204
|
+
else if (typeof value === 'string') {
|
|
205
|
+
return { enum: ['regex', 'jsonpath', 'simple', 'xpath'] };
|
|
206
|
+
}
|
|
207
|
+
else if (value?.type === 'jsonpath') {
|
|
208
|
+
return 'JSONPathCriterion';
|
|
209
|
+
}
|
|
210
|
+
else {
|
|
211
|
+
return 'XPathCriterion';
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
},
|
|
215
|
+
required: ['condition'],
|
|
216
|
+
};
|
|
217
|
+
const JSONPathCriterion = {
|
|
218
|
+
properties: {
|
|
219
|
+
type: { type: 'string', enum: ['jsonpath'] },
|
|
220
|
+
version: { type: 'string', enum: ['draft-goessner-dispatch-jsonpath-00'] },
|
|
221
|
+
},
|
|
222
|
+
};
|
|
223
|
+
const XPathCriterion = {
|
|
224
|
+
properties: {
|
|
225
|
+
type: { type: 'string', enum: ['xpath'] },
|
|
226
|
+
version: { type: 'string', enum: ['xpath-30', 'xpath-20', 'xpath-10'] },
|
|
227
|
+
},
|
|
228
|
+
};
|
|
229
|
+
const SuccessActionObject = {
|
|
230
|
+
properties: {
|
|
231
|
+
name: { type: 'string' },
|
|
232
|
+
type: { type: 'string', enum: ['goto', 'end'] },
|
|
233
|
+
stepId: { type: 'string' },
|
|
234
|
+
workflowId: { type: 'string' },
|
|
235
|
+
criteria: (0, _1.listOf)('CriterionObject'),
|
|
236
|
+
},
|
|
237
|
+
required: ['type', 'name'],
|
|
238
|
+
};
|
|
239
|
+
const OnSuccessActionList = {
|
|
240
|
+
properties: {},
|
|
241
|
+
items: (value) => {
|
|
242
|
+
if (value?.type && value?.name) {
|
|
243
|
+
return 'SuccessActionObject';
|
|
244
|
+
}
|
|
245
|
+
else {
|
|
246
|
+
return 'ReusableObject';
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
};
|
|
250
|
+
const FailureActionObject = {
|
|
251
|
+
properties: {
|
|
252
|
+
name: { type: 'string' },
|
|
253
|
+
type: { type: 'string', enum: ['goto', 'retry', 'end'] },
|
|
254
|
+
workflowId: { type: 'string' },
|
|
255
|
+
stepId: { type: 'string' },
|
|
256
|
+
retryAfter: { type: 'number' },
|
|
257
|
+
retryLimit: { type: 'number' },
|
|
258
|
+
criteria: (0, _1.listOf)('CriterionObject'),
|
|
259
|
+
},
|
|
260
|
+
required: ['type', 'name'],
|
|
261
|
+
};
|
|
262
|
+
const OnFailureActionList = {
|
|
263
|
+
properties: {},
|
|
264
|
+
items: (value) => {
|
|
265
|
+
if (value?.type && value?.name) {
|
|
266
|
+
return 'FailureActionObject';
|
|
267
|
+
}
|
|
268
|
+
else {
|
|
269
|
+
return 'ReusableObject';
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
};
|
|
273
|
+
exports.Arazzo1Types = {
|
|
274
|
+
Root,
|
|
275
|
+
Info,
|
|
276
|
+
SourceDescriptions,
|
|
277
|
+
OpenAPISourceDescription,
|
|
278
|
+
ArazzoSourceDescription,
|
|
279
|
+
Parameters,
|
|
280
|
+
Parameter,
|
|
281
|
+
ReusableObject,
|
|
282
|
+
Workflows,
|
|
283
|
+
Workflow,
|
|
284
|
+
Steps,
|
|
285
|
+
Step,
|
|
286
|
+
RequestBody,
|
|
287
|
+
Replacement,
|
|
288
|
+
ExtendedOperation,
|
|
289
|
+
Outputs,
|
|
290
|
+
CriterionObject,
|
|
291
|
+
XPathCriterion,
|
|
292
|
+
JSONPathCriterion,
|
|
293
|
+
SuccessActionObject,
|
|
294
|
+
OnSuccessActionList,
|
|
295
|
+
FailureActionObject,
|
|
296
|
+
OnFailureActionList,
|
|
297
|
+
Schema: oas3_1_1.Schema,
|
|
298
|
+
NamedSchemas: (0, _1.mapOf)('Schema'),
|
|
299
|
+
ExternalDocs: oas3_1.ExternalDocs,
|
|
300
|
+
DiscriminatorMapping: oas3_1.DiscriminatorMapping,
|
|
301
|
+
Discriminator: oas3_1.Discriminator,
|
|
302
|
+
DependentRequired: oas3_1_1.DependentRequired,
|
|
303
|
+
SchemaProperties: oas3_1_1.SchemaProperties,
|
|
304
|
+
PatternProperties: oas3_1_1.SchemaProperties,
|
|
305
|
+
Components,
|
|
306
|
+
NamedInputs,
|
|
307
|
+
NamedParameters,
|
|
308
|
+
NamedSuccessActions,
|
|
309
|
+
NamedFailureActions,
|
|
310
|
+
Xml: oas3_1.Xml,
|
|
311
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { NodeType } from '.';
|
|
2
|
+
export declare const Tag: NodeType;
|
|
3
|
+
export declare const ExternalDocs: NodeType;
|
|
4
|
+
export declare const ServerMap: NodeType;
|
|
5
|
+
export declare const ServerVariable: NodeType;
|
|
6
|
+
export declare const Contact: NodeType;
|
|
7
|
+
export declare const License: NodeType;
|
|
8
|
+
export declare const CorrelationId: NodeType;
|
|
9
|
+
export declare const MessageExample: NodeType;
|
|
10
|
+
export declare const Schema: NodeType;
|
|
11
|
+
export declare const SchemaProperties: NodeType;
|
|
12
|
+
export declare const DiscriminatorMapping: NodeType;
|
|
13
|
+
export declare const Discriminator: NodeType;
|
|
14
|
+
export declare const SecuritySchemeFlows: NodeType;
|
|
15
|
+
export declare const Dependencies: NodeType;
|
|
16
|
+
export declare const AsyncApi2Bindings: Record<string, NodeType>;
|
|
17
|
+
export declare const AsyncApi2Types: Record<string, NodeType>;
|