@kubb/oas 3.5.13 → 3.6.1
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/dist/index.cjs +19 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +19 -14
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/Oas.ts +15 -8
package/dist/index.cjs
CHANGED
|
@@ -29,7 +29,7 @@ var HttpMethods = {
|
|
|
29
29
|
};
|
|
30
30
|
var Oas = class extends BaseOas__default.default {
|
|
31
31
|
#options = {};
|
|
32
|
-
document =
|
|
32
|
+
document = void 0;
|
|
33
33
|
constructor({ oas, user }, options = {}) {
|
|
34
34
|
if (typeof oas === "string") {
|
|
35
35
|
oas = JSON.parse(oas);
|
|
@@ -70,18 +70,23 @@ var Oas = class extends BaseOas__default.default {
|
|
|
70
70
|
Object.entries(schemas).forEach(([_key, schemaObject]) => {
|
|
71
71
|
if ("discriminator" in schemaObject) {
|
|
72
72
|
const { mapping = {}, propertyName } = schemaObject.discriminator || {};
|
|
73
|
+
if (!schemaObject.properties) {
|
|
74
|
+
schemaObject.properties = {};
|
|
75
|
+
}
|
|
76
|
+
schemaObject.properties[propertyName] = {
|
|
77
|
+
...schemaObject.properties[propertyName],
|
|
78
|
+
enum: Object.keys(mapping)
|
|
79
|
+
};
|
|
73
80
|
Object.entries(mapping).forEach(([mappingKey, mappingValue]) => {
|
|
74
81
|
if (mappingValue) {
|
|
75
82
|
const childSchema = this.get(mappingValue);
|
|
76
83
|
const property = childSchema.properties?.[propertyName];
|
|
77
|
-
|
|
78
|
-
childSchema.properties[propertyName]
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
this.set(mappingValue, childSchema);
|
|
84
|
-
}
|
|
84
|
+
childSchema.properties[propertyName] = {
|
|
85
|
+
...childSchema.properties[propertyName],
|
|
86
|
+
enum: [...property?.enum?.filter((value) => value !== mappingKey) ?? [], mappingKey]
|
|
87
|
+
};
|
|
88
|
+
childSchema.required = [...childSchema.required ?? [], propertyName];
|
|
89
|
+
this.set(mappingValue, childSchema);
|
|
85
90
|
}
|
|
86
91
|
});
|
|
87
92
|
}
|
|
@@ -119,7 +124,7 @@ var Oas = class extends BaseOas__default.default {
|
|
|
119
124
|
}
|
|
120
125
|
return responseBody.content[contentType];
|
|
121
126
|
}
|
|
122
|
-
let availablecontentType =
|
|
127
|
+
let availablecontentType = void 0;
|
|
123
128
|
const contentTypes = Object.keys(responseBody.content);
|
|
124
129
|
contentTypes.forEach((mt) => {
|
|
125
130
|
if (!availablecontentType && utils.matchesMimeType.json(mt)) {
|
|
@@ -143,7 +148,7 @@ var Oas = class extends BaseOas__default.default {
|
|
|
143
148
|
if (operation.schema.responses) {
|
|
144
149
|
Object.keys(operation.schema.responses).forEach((key) => {
|
|
145
150
|
const schema2 = operation.schema.responses[key];
|
|
146
|
-
const $ref = isReference(schema2) ? schema2.$ref :
|
|
151
|
+
const $ref = isReference(schema2) ? schema2.$ref : void 0;
|
|
147
152
|
if (schema2 && $ref) {
|
|
148
153
|
operation.schema.responses[key] = this.get($ref);
|
|
149
154
|
}
|
|
@@ -168,11 +173,11 @@ var Oas = class extends BaseOas__default.default {
|
|
|
168
173
|
}
|
|
169
174
|
const requestBody = operation.getRequestBody(contentType);
|
|
170
175
|
if (requestBody === false) {
|
|
171
|
-
return
|
|
176
|
+
return void 0;
|
|
172
177
|
}
|
|
173
178
|
const schema = Array.isArray(requestBody) ? requestBody[1].schema : requestBody.schema;
|
|
174
179
|
if (!schema) {
|
|
175
|
-
return
|
|
180
|
+
return void 0;
|
|
176
181
|
}
|
|
177
182
|
return this.dereferenceWithRef(schema);
|
|
178
183
|
}
|
|
@@ -187,7 +192,7 @@ var Oas = class extends BaseOas__default.default {
|
|
|
187
192
|
return params.reduce(
|
|
188
193
|
(schema, pathParameters) => {
|
|
189
194
|
const property = pathParameters.content?.[contentType]?.schema ?? pathParameters.schema;
|
|
190
|
-
const required = [...schema.required || [], pathParameters.required ? pathParameters.name :
|
|
195
|
+
const required = [...schema.required || [], pathParameters.required ? pathParameters.name : void 0].filter(Boolean);
|
|
191
196
|
return {
|
|
192
197
|
...schema,
|
|
193
198
|
description: schema.description,
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/types.ts","../src/Oas.ts","../src/utils.ts"],"names":["BaseOas","jsonpointer","matchesMimeType","schema","OASNormalize","isPlainObject","isRef","loadConfig","bundle","swagger2openapi"],"mappings":"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","file":"index.cjs","sourcesContent":["import type * as OasTypes from 'oas/types'\n\n// external packages\nexport type { Operation } from 'oas/operation'\nexport type { HttpMethods as HttpMethod } from 'oas/types'\nexport type * as OasTypes from 'oas/types'\nexport type { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'\n\nexport type contentType = 'application/json' | (string & {})\n\nexport type SchemaObject = OasTypes.SchemaObject & {\n 'x-nullable'?: boolean\n $ref?: string\n}\n\nexport const HttpMethods = {\n GET: 'get',\n POST: 'post',\n PUT: 'put',\n PATCH: 'patch',\n DELETE: 'delete',\n HEAD: 'head',\n OPTIONS: 'options',\n TRACE: 'trace',\n} satisfies Record<Uppercase<OasTypes.HttpMethods>, OasTypes.HttpMethods>\n","import BaseOas from 'oas'\nimport OASNormalize from 'oas-normalize'\nimport { matchesMimeType } from 'oas/utils'\n\nimport jsonpointer from 'jsonpointer'\n\nimport { isReference } from './utils.ts'\n\nimport type { Operation } from 'oas/operation'\nimport type { MediaTypeObject, OASDocument, ResponseObject, SchemaObject, User } from 'oas/types'\nimport type { OasTypes, OpenAPIV3 } from './index.ts'\nimport type { contentType } from './types.ts'\n\ntype Options = {\n contentType?: contentType\n}\n\nexport class Oas<const TOAS = unknown> extends BaseOas {\n #options: Options = {}\n document: TOAS = undefined as unknown as TOAS\n\n constructor({ oas, user }: { oas: TOAS | OASDocument | string; user?: User }, options: Options = {}) {\n if (typeof oas === 'string') {\n oas = JSON.parse(oas)\n }\n\n super(oas as OASDocument, user)\n\n this.document = oas as TOAS\n this.#options = options\n }\n\n get($ref: string) {\n const origRef = $ref\n $ref = $ref.trim()\n if ($ref === '') {\n return false\n }\n if ($ref.startsWith('#')) {\n $ref = globalThis.decodeURIComponent($ref.substring(1))\n } else {\n return null\n }\n const current = jsonpointer.get(this.api, $ref)\n\n if (!current) {\n throw new Error(`Could not find a definition for ${origRef}.`)\n }\n return current\n }\n\n set($ref: string, value: unknown) {\n $ref = $ref.trim()\n if ($ref === '') {\n return false\n }\n if ($ref.startsWith('#')) {\n $ref = globalThis.decodeURIComponent($ref.substring(1))\n\n jsonpointer.set(this.api, $ref, value)\n }\n }\n\n resolveDiscriminators(): void {\n const schemas = (this.api.components?.schemas || {}) as Record<string, OasTypes.SchemaObject>\n\n Object.entries(schemas).forEach(([_key, schemaObject]) => {\n if ('discriminator' in schemaObject) {\n const { mapping = {}, propertyName } = (schemaObject.discriminator || {}) as OpenAPIV3.DiscriminatorObject\n\n Object.entries(mapping).forEach(([mappingKey, mappingValue]) => {\n if (mappingValue) {\n const childSchema = this.get(mappingValue)\n const property = childSchema.properties?.[propertyName] as SchemaObject\n\n if (property) {\n childSchema.properties[propertyName] = {\n ...childSchema.properties[propertyName],\n enum: [...(property?.enum?.filter((value) => value !== mappingKey) ?? []), mappingKey],\n }\n\n childSchema.required = [...(childSchema.required ?? []), propertyName]\n\n this.set(mappingValue, childSchema)\n }\n }\n })\n }\n })\n }\n\n dereferenceWithRef(schema?: unknown) {\n if (isReference(schema)) {\n return {\n ...this.get(schema.$ref),\n $ref: schema.$ref,\n }\n }\n\n return schema\n }\n\n /**\n * Oas does not have a getResponseBody(contentType)\n */\n #getResponseBodyFactory(responseBody: boolean | ResponseObject): (contentType?: string) => MediaTypeObject | false | [string, MediaTypeObject, ...string[]] {\n function hasResponseBody(res = responseBody): res is ResponseObject {\n return !!res\n }\n\n return (contentType) => {\n if (!hasResponseBody(responseBody)) {\n return false\n }\n\n if (isReference(responseBody)) {\n // If the request body is still a `$ref` pointer we should return false because this library\n // assumes that you've run dereferencing beforehand.\n return false\n }\n\n if (!responseBody.content) {\n return false\n }\n\n if (contentType) {\n if (!(contentType in responseBody.content)) {\n return false\n }\n\n return responseBody.content[contentType]!\n }\n\n // Since no media type was supplied we need to find either the first JSON-like media type that\n // we've got, or the first available of anything else if no JSON-like media types are present.\n let availablecontentType: string | undefined = undefined\n const contentTypes = Object.keys(responseBody.content)\n contentTypes.forEach((mt: string) => {\n if (!availablecontentType && matchesMimeType.json(mt)) {\n availablecontentType = mt\n }\n })\n\n if (!availablecontentType) {\n contentTypes.forEach((mt: string) => {\n if (!availablecontentType) {\n availablecontentType = mt\n }\n })\n }\n\n if (availablecontentType) {\n return [availablecontentType, responseBody.content[availablecontentType]!, ...(responseBody.description ? [responseBody.description] : [])]\n }\n\n return false\n }\n }\n\n getResponseSchema(operation: Operation, statusCode: string | number): SchemaObject {\n if (operation.schema.responses) {\n Object.keys(operation.schema.responses).forEach((key) => {\n const schema = operation.schema.responses![key]\n const $ref = isReference(schema) ? schema.$ref : undefined\n\n if (schema && $ref) {\n operation.schema.responses![key] = this.get($ref)\n }\n })\n }\n\n const getResponseBody = this.#getResponseBodyFactory(operation.getResponseByStatusCode(statusCode))\n\n const { contentType } = this.#options\n const responseBody = getResponseBody(contentType)\n\n if (responseBody === false) {\n // return empty object because response will always be defined(request does not need a body)\n return {}\n }\n\n const schema = Array.isArray(responseBody) ? responseBody[1].schema : responseBody.schema\n\n if (!schema) {\n // return empty object because response will always be defined(request does not need a body)\n\n return {}\n }\n\n return this.dereferenceWithRef(schema)\n }\n\n getRequestSchema(operation: Operation): SchemaObject | undefined {\n const { contentType } = this.#options\n\n if (operation.schema.requestBody) {\n operation.schema.requestBody = this.dereferenceWithRef(operation.schema.requestBody)\n }\n\n const requestBody = operation.getRequestBody(contentType)\n\n if (requestBody === false) {\n return undefined\n }\n\n const schema = Array.isArray(requestBody) ? requestBody[1].schema : requestBody.schema\n\n if (!schema) {\n return undefined\n }\n\n return this.dereferenceWithRef(schema)\n }\n\n getParametersSchema(operation: Operation, inKey: 'path' | 'query' | 'header'): SchemaObject | null {\n const { contentType = operation.getContentType() } = this.#options\n const params = operation\n .getParameters()\n .map((schema) => {\n return this.dereferenceWithRef(schema)\n })\n .filter((v) => v.in === inKey)\n\n if (!params.length) {\n return null\n }\n\n return params.reduce(\n (schema, pathParameters) => {\n const property = pathParameters.content?.[contentType]?.schema ?? (pathParameters.schema as SchemaObject)\n const required = [...(schema.required || ([] as any)), pathParameters.required ? pathParameters.name : undefined].filter(Boolean)\n\n return {\n ...schema,\n description: schema.description,\n deprecated: schema.deprecated,\n example: schema.example,\n required,\n properties: {\n ...schema.properties,\n [pathParameters.name]: {\n description: pathParameters.description,\n ...property,\n },\n },\n }\n },\n { type: 'object', required: [], properties: {} } as SchemaObject,\n )\n }\n\n async valdiate() {\n const oasNormalize = new OASNormalize(this.api, {\n enablePaths: true,\n colorizeErrors: true,\n })\n\n await oasNormalize.validate({\n convertToLatest: true,\n parser: {\n validate: {\n colorizeErrors: true,\n },\n },\n })\n }\n}\n","import { isRef, isSchema } from 'oas/types'\nimport { isPlainObject } from 'remeda'\n\nimport { bundle, loadConfig } from '@redocly/openapi-core'\nimport OASNormalize from 'oas-normalize'\nimport type { OASDocument } from 'oas/types'\nimport type { ParameterObject, SchemaObject } from 'oas/types'\nimport type { OpenAPI, OpenAPIV2, OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'\nimport swagger2openapi from 'swagger2openapi'\nimport { Oas } from './Oas.ts'\n\nexport function isOpenApiV2Document(doc: any): doc is OpenAPIV2.Document {\n return doc && isPlainObject(doc) && !('openapi' in doc)\n}\nexport function isOpenApiV3Document(doc: any): doc is OpenAPIV3.Document {\n return doc && isPlainObject(doc) && 'openapi' in doc\n}\n\nexport function isOpenApiV3_1Document(doc: any): doc is OpenAPIV3_1.Document {\n return doc && isPlainObject<OpenAPIV3_1.Document>(doc) && 'openapi' in doc && doc.openapi.startsWith('3.1')\n}\n\nexport function isJSONSchema(obj?: unknown): obj is SchemaObject {\n return !!obj && isSchema(obj)\n}\n\nexport function isParameterObject(obj: ParameterObject | SchemaObject): obj is ParameterObject {\n return obj && 'in' in obj\n}\n\nexport function isReference(obj?: unknown): obj is OpenAPIV3.ReferenceObject | OpenAPIV3_1.ReferenceObject {\n return !!obj && isRef(obj)\n}\n\nexport function isRequired(schema?: SchemaObject): boolean {\n if (!schema) {\n return false\n }\n\n return Array.isArray(schema.required) ? !!schema.required?.length : !!schema.required\n}\n\nexport function isOptional(schema?: SchemaObject): boolean {\n return !isRequired(schema)\n}\n\nexport async function parse(pathOrApi: string | OASDocument, oasClass: typeof Oas = Oas): Promise<Oas> {\n if (typeof pathOrApi === 'string') {\n // resolve external refs\n const config = await loadConfig()\n const bundleResults = await bundle({ ref: pathOrApi, config, base: pathOrApi })\n\n return parse(bundleResults.bundle.parsed)\n }\n\n const oasNormalize = new OASNormalize(pathOrApi, {\n enablePaths: true,\n colorizeErrors: true,\n })\n const document = (await oasNormalize.load()) as OpenAPI.Document\n\n if (isOpenApiV2Document(document)) {\n const { openapi } = await swagger2openapi.convertObj(document, {\n anchors: true,\n })\n\n return new oasClass({ oas: openapi as OASDocument })\n }\n\n return new oasClass({ oas: document })\n}\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/types.ts","../src/Oas.ts","../src/utils.ts"],"names":["BaseOas","jsonpointer","matchesMimeType","schema","OASNormalize","isPlainObject","isRef","loadConfig","bundle","swagger2openapi"],"mappings":"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","file":"index.cjs","sourcesContent":["import type * as OasTypes from 'oas/types'\n\n// external packages\nexport type { Operation } from 'oas/operation'\nexport type { HttpMethods as HttpMethod } from 'oas/types'\nexport type * as OasTypes from 'oas/types'\nexport type { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'\n\nexport type contentType = 'application/json' | (string & {})\n\nexport type SchemaObject = OasTypes.SchemaObject & {\n 'x-nullable'?: boolean\n $ref?: string\n}\n\nexport const HttpMethods = {\n GET: 'get',\n POST: 'post',\n PUT: 'put',\n PATCH: 'patch',\n DELETE: 'delete',\n HEAD: 'head',\n OPTIONS: 'options',\n TRACE: 'trace',\n} satisfies Record<Uppercase<OasTypes.HttpMethods>, OasTypes.HttpMethods>\n","import BaseOas from 'oas'\nimport OASNormalize from 'oas-normalize'\nimport { matchesMimeType } from 'oas/utils'\n\nimport jsonpointer from 'jsonpointer'\n\nimport { isReference } from './utils.ts'\n\nimport type { Operation } from 'oas/operation'\nimport type { MediaTypeObject, OASDocument, ResponseObject, SchemaObject, User } from 'oas/types'\nimport type { OasTypes, OpenAPIV3 } from './index.ts'\nimport type { contentType } from './types.ts'\n\ntype Options = {\n contentType?: contentType\n}\n\nexport class Oas<const TOAS = unknown> extends BaseOas {\n #options: Options = {}\n document: TOAS = undefined as unknown as TOAS\n\n constructor({ oas, user }: { oas: TOAS | OASDocument | string; user?: User }, options: Options = {}) {\n if (typeof oas === 'string') {\n oas = JSON.parse(oas)\n }\n\n super(oas as OASDocument, user)\n\n this.document = oas as TOAS\n this.#options = options\n }\n\n get($ref: string) {\n const origRef = $ref\n $ref = $ref.trim()\n if ($ref === '') {\n return false\n }\n if ($ref.startsWith('#')) {\n $ref = globalThis.decodeURIComponent($ref.substring(1))\n } else {\n return null\n }\n const current = jsonpointer.get(this.api, $ref)\n\n if (!current) {\n throw new Error(`Could not find a definition for ${origRef}.`)\n }\n return current\n }\n\n set($ref: string, value: unknown) {\n $ref = $ref.trim()\n if ($ref === '') {\n return false\n }\n if ($ref.startsWith('#')) {\n $ref = globalThis.decodeURIComponent($ref.substring(1))\n\n jsonpointer.set(this.api, $ref, value)\n }\n }\n\n resolveDiscriminators(): void {\n const schemas = (this.api.components?.schemas || {}) as Record<string, OasTypes.SchemaObject>\n\n Object.entries(schemas).forEach(([_key, schemaObject]) => {\n if ('discriminator' in schemaObject) {\n const { mapping = {}, propertyName } = (schemaObject.discriminator || {}) as OpenAPIV3.DiscriminatorObject\n\n if (!schemaObject.properties) {\n schemaObject.properties = {}\n }\n\n schemaObject.properties[propertyName] = {\n ...schemaObject.properties[propertyName],\n enum: Object.keys(mapping),\n }\n\n Object.entries(mapping).forEach(([mappingKey, mappingValue]) => {\n if (mappingValue) {\n const childSchema = this.get(mappingValue)\n const property = childSchema.properties?.[propertyName] as SchemaObject\n\n childSchema.properties[propertyName] = {\n ...childSchema.properties[propertyName],\n enum: [...(property?.enum?.filter((value) => value !== mappingKey) ?? []), mappingKey],\n }\n\n childSchema.required = [...(childSchema.required ?? []), propertyName]\n\n this.set(mappingValue, childSchema)\n }\n })\n }\n })\n }\n\n dereferenceWithRef(schema?: unknown) {\n if (isReference(schema)) {\n return {\n ...this.get(schema.$ref),\n $ref: schema.$ref,\n }\n }\n\n return schema\n }\n\n /**\n * Oas does not have a getResponseBody(contentType)\n */\n #getResponseBodyFactory(responseBody: boolean | ResponseObject): (contentType?: string) => MediaTypeObject | false | [string, MediaTypeObject, ...string[]] {\n function hasResponseBody(res = responseBody): res is ResponseObject {\n return !!res\n }\n\n return (contentType) => {\n if (!hasResponseBody(responseBody)) {\n return false\n }\n\n if (isReference(responseBody)) {\n // If the request body is still a `$ref` pointer we should return false because this library\n // assumes that you've run dereferencing beforehand.\n return false\n }\n\n if (!responseBody.content) {\n return false\n }\n\n if (contentType) {\n if (!(contentType in responseBody.content)) {\n return false\n }\n\n return responseBody.content[contentType]!\n }\n\n // Since no media type was supplied we need to find either the first JSON-like media type that\n // we've got, or the first available of anything else if no JSON-like media types are present.\n let availablecontentType: string | undefined = undefined\n const contentTypes = Object.keys(responseBody.content)\n contentTypes.forEach((mt: string) => {\n if (!availablecontentType && matchesMimeType.json(mt)) {\n availablecontentType = mt\n }\n })\n\n if (!availablecontentType) {\n contentTypes.forEach((mt: string) => {\n if (!availablecontentType) {\n availablecontentType = mt\n }\n })\n }\n\n if (availablecontentType) {\n return [availablecontentType, responseBody.content[availablecontentType]!, ...(responseBody.description ? [responseBody.description] : [])]\n }\n\n return false\n }\n }\n\n getResponseSchema(operation: Operation, statusCode: string | number): SchemaObject {\n if (operation.schema.responses) {\n Object.keys(operation.schema.responses).forEach((key) => {\n const schema = operation.schema.responses![key]\n const $ref = isReference(schema) ? schema.$ref : undefined\n\n if (schema && $ref) {\n operation.schema.responses![key] = this.get($ref)\n }\n })\n }\n\n const getResponseBody = this.#getResponseBodyFactory(operation.getResponseByStatusCode(statusCode))\n\n const { contentType } = this.#options\n const responseBody = getResponseBody(contentType)\n\n if (responseBody === false) {\n // return empty object because response will always be defined(request does not need a body)\n return {}\n }\n\n const schema = Array.isArray(responseBody) ? responseBody[1].schema : responseBody.schema\n\n if (!schema) {\n // return empty object because response will always be defined(request does not need a body)\n\n return {}\n }\n\n return this.dereferenceWithRef(schema)\n }\n\n getRequestSchema(operation: Operation): SchemaObject | undefined {\n const { contentType } = this.#options\n\n if (operation.schema.requestBody) {\n operation.schema.requestBody = this.dereferenceWithRef(operation.schema.requestBody)\n }\n\n const requestBody = operation.getRequestBody(contentType)\n\n if (requestBody === false) {\n return undefined\n }\n\n const schema = Array.isArray(requestBody) ? requestBody[1].schema : requestBody.schema\n\n if (!schema) {\n return undefined\n }\n\n return this.dereferenceWithRef(schema)\n }\n\n getParametersSchema(operation: Operation, inKey: 'path' | 'query' | 'header'): SchemaObject | null {\n const { contentType = operation.getContentType() } = this.#options\n const params = operation\n .getParameters()\n .map((schema) => {\n return this.dereferenceWithRef(schema)\n })\n .filter((v) => v.in === inKey)\n\n if (!params.length) {\n return null\n }\n\n return params.reduce(\n (schema, pathParameters) => {\n const property = pathParameters.content?.[contentType]?.schema ?? (pathParameters.schema as SchemaObject)\n const required = [...(schema.required || ([] as any)), pathParameters.required ? pathParameters.name : undefined].filter(Boolean)\n\n return {\n ...schema,\n description: schema.description,\n deprecated: schema.deprecated,\n example: schema.example,\n required,\n properties: {\n ...schema.properties,\n [pathParameters.name]: {\n description: pathParameters.description,\n ...property,\n },\n },\n }\n },\n { type: 'object', required: [], properties: {} } as SchemaObject,\n )\n }\n\n async valdiate() {\n const oasNormalize = new OASNormalize(this.api, {\n enablePaths: true,\n colorizeErrors: true,\n })\n\n await oasNormalize.validate({\n convertToLatest: true,\n parser: {\n validate: {\n colorizeErrors: true,\n },\n },\n })\n }\n}\n","import { isRef, isSchema } from 'oas/types'\nimport { isPlainObject } from 'remeda'\n\nimport { bundle, loadConfig } from '@redocly/openapi-core'\nimport OASNormalize from 'oas-normalize'\nimport type { OASDocument } from 'oas/types'\nimport type { ParameterObject, SchemaObject } from 'oas/types'\nimport type { OpenAPI, OpenAPIV2, OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'\nimport swagger2openapi from 'swagger2openapi'\nimport { Oas } from './Oas.ts'\n\nexport function isOpenApiV2Document(doc: any): doc is OpenAPIV2.Document {\n return doc && isPlainObject(doc) && !('openapi' in doc)\n}\nexport function isOpenApiV3Document(doc: any): doc is OpenAPIV3.Document {\n return doc && isPlainObject(doc) && 'openapi' in doc\n}\n\nexport function isOpenApiV3_1Document(doc: any): doc is OpenAPIV3_1.Document {\n return doc && isPlainObject<OpenAPIV3_1.Document>(doc) && 'openapi' in doc && doc.openapi.startsWith('3.1')\n}\n\nexport function isJSONSchema(obj?: unknown): obj is SchemaObject {\n return !!obj && isSchema(obj)\n}\n\nexport function isParameterObject(obj: ParameterObject | SchemaObject): obj is ParameterObject {\n return obj && 'in' in obj\n}\n\nexport function isReference(obj?: unknown): obj is OpenAPIV3.ReferenceObject | OpenAPIV3_1.ReferenceObject {\n return !!obj && isRef(obj)\n}\n\nexport function isRequired(schema?: SchemaObject): boolean {\n if (!schema) {\n return false\n }\n\n return Array.isArray(schema.required) ? !!schema.required?.length : !!schema.required\n}\n\nexport function isOptional(schema?: SchemaObject): boolean {\n return !isRequired(schema)\n}\n\nexport async function parse(pathOrApi: string | OASDocument, oasClass: typeof Oas = Oas): Promise<Oas> {\n if (typeof pathOrApi === 'string') {\n // resolve external refs\n const config = await loadConfig()\n const bundleResults = await bundle({ ref: pathOrApi, config, base: pathOrApi })\n\n return parse(bundleResults.bundle.parsed)\n }\n\n const oasNormalize = new OASNormalize(pathOrApi, {\n enablePaths: true,\n colorizeErrors: true,\n })\n const document = (await oasNormalize.load()) as OpenAPI.Document\n\n if (isOpenApiV2Document(document)) {\n const { openapi } = await swagger2openapi.convertObj(document, {\n anchors: true,\n })\n\n return new oasClass({ oas: openapi as OASDocument })\n }\n\n return new oasClass({ oas: document })\n}\n"]}
|
package/dist/index.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ import { OASDocument, User, SchemaObject as SchemaObject$1, ParameterObject } fr
|
|
|
3
3
|
export { OasTypes };
|
|
4
4
|
export { HttpMethods as HttpMethod } from 'oas/types';
|
|
5
5
|
export { findSchemaDefinition, matchesMimeType } from 'oas/utils';
|
|
6
|
-
import {
|
|
6
|
+
import { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types';
|
|
7
7
|
export { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types';
|
|
8
8
|
import BaseOas from 'oas';
|
|
9
9
|
import { Operation } from 'oas/operation';
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { OASDocument, User, SchemaObject as SchemaObject$1, ParameterObject } fr
|
|
|
3
3
|
export { OasTypes };
|
|
4
4
|
export { HttpMethods as HttpMethod } from 'oas/types';
|
|
5
5
|
export { findSchemaDefinition, matchesMimeType } from 'oas/utils';
|
|
6
|
-
import {
|
|
6
|
+
import { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types';
|
|
7
7
|
export { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types';
|
|
8
8
|
import BaseOas from 'oas';
|
|
9
9
|
import { Operation } from 'oas/operation';
|
package/dist/index.js
CHANGED
|
@@ -21,7 +21,7 @@ var HttpMethods = {
|
|
|
21
21
|
};
|
|
22
22
|
var Oas = class extends BaseOas {
|
|
23
23
|
#options = {};
|
|
24
|
-
document =
|
|
24
|
+
document = void 0;
|
|
25
25
|
constructor({ oas, user }, options = {}) {
|
|
26
26
|
if (typeof oas === "string") {
|
|
27
27
|
oas = JSON.parse(oas);
|
|
@@ -62,18 +62,23 @@ var Oas = class extends BaseOas {
|
|
|
62
62
|
Object.entries(schemas).forEach(([_key, schemaObject]) => {
|
|
63
63
|
if ("discriminator" in schemaObject) {
|
|
64
64
|
const { mapping = {}, propertyName } = schemaObject.discriminator || {};
|
|
65
|
+
if (!schemaObject.properties) {
|
|
66
|
+
schemaObject.properties = {};
|
|
67
|
+
}
|
|
68
|
+
schemaObject.properties[propertyName] = {
|
|
69
|
+
...schemaObject.properties[propertyName],
|
|
70
|
+
enum: Object.keys(mapping)
|
|
71
|
+
};
|
|
65
72
|
Object.entries(mapping).forEach(([mappingKey, mappingValue]) => {
|
|
66
73
|
if (mappingValue) {
|
|
67
74
|
const childSchema = this.get(mappingValue);
|
|
68
75
|
const property = childSchema.properties?.[propertyName];
|
|
69
|
-
|
|
70
|
-
childSchema.properties[propertyName]
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
this.set(mappingValue, childSchema);
|
|
76
|
-
}
|
|
76
|
+
childSchema.properties[propertyName] = {
|
|
77
|
+
...childSchema.properties[propertyName],
|
|
78
|
+
enum: [...property?.enum?.filter((value) => value !== mappingKey) ?? [], mappingKey]
|
|
79
|
+
};
|
|
80
|
+
childSchema.required = [...childSchema.required ?? [], propertyName];
|
|
81
|
+
this.set(mappingValue, childSchema);
|
|
77
82
|
}
|
|
78
83
|
});
|
|
79
84
|
}
|
|
@@ -111,7 +116,7 @@ var Oas = class extends BaseOas {
|
|
|
111
116
|
}
|
|
112
117
|
return responseBody.content[contentType];
|
|
113
118
|
}
|
|
114
|
-
let availablecontentType =
|
|
119
|
+
let availablecontentType = void 0;
|
|
115
120
|
const contentTypes = Object.keys(responseBody.content);
|
|
116
121
|
contentTypes.forEach((mt) => {
|
|
117
122
|
if (!availablecontentType && matchesMimeType.json(mt)) {
|
|
@@ -135,7 +140,7 @@ var Oas = class extends BaseOas {
|
|
|
135
140
|
if (operation.schema.responses) {
|
|
136
141
|
Object.keys(operation.schema.responses).forEach((key) => {
|
|
137
142
|
const schema2 = operation.schema.responses[key];
|
|
138
|
-
const $ref = isReference(schema2) ? schema2.$ref :
|
|
143
|
+
const $ref = isReference(schema2) ? schema2.$ref : void 0;
|
|
139
144
|
if (schema2 && $ref) {
|
|
140
145
|
operation.schema.responses[key] = this.get($ref);
|
|
141
146
|
}
|
|
@@ -160,11 +165,11 @@ var Oas = class extends BaseOas {
|
|
|
160
165
|
}
|
|
161
166
|
const requestBody = operation.getRequestBody(contentType);
|
|
162
167
|
if (requestBody === false) {
|
|
163
|
-
return
|
|
168
|
+
return void 0;
|
|
164
169
|
}
|
|
165
170
|
const schema = Array.isArray(requestBody) ? requestBody[1].schema : requestBody.schema;
|
|
166
171
|
if (!schema) {
|
|
167
|
-
return
|
|
172
|
+
return void 0;
|
|
168
173
|
}
|
|
169
174
|
return this.dereferenceWithRef(schema);
|
|
170
175
|
}
|
|
@@ -179,7 +184,7 @@ var Oas = class extends BaseOas {
|
|
|
179
184
|
return params.reduce(
|
|
180
185
|
(schema, pathParameters) => {
|
|
181
186
|
const property = pathParameters.content?.[contentType]?.schema ?? pathParameters.schema;
|
|
182
|
-
const required = [...schema.required || [], pathParameters.required ? pathParameters.name :
|
|
187
|
+
const required = [...schema.required || [], pathParameters.required ? pathParameters.name : void 0].filter(Boolean);
|
|
183
188
|
return {
|
|
184
189
|
...schema,
|
|
185
190
|
description: schema.description,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/types.ts","../src/Oas.ts","../src/utils.ts"],"names":["schema","OASNormalize"],"mappings":"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","file":"index.js","sourcesContent":["import type * as OasTypes from 'oas/types'\n\n// external packages\nexport type { Operation } from 'oas/operation'\nexport type { HttpMethods as HttpMethod } from 'oas/types'\nexport type * as OasTypes from 'oas/types'\nexport type { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'\n\nexport type contentType = 'application/json' | (string & {})\n\nexport type SchemaObject = OasTypes.SchemaObject & {\n 'x-nullable'?: boolean\n $ref?: string\n}\n\nexport const HttpMethods = {\n GET: 'get',\n POST: 'post',\n PUT: 'put',\n PATCH: 'patch',\n DELETE: 'delete',\n HEAD: 'head',\n OPTIONS: 'options',\n TRACE: 'trace',\n} satisfies Record<Uppercase<OasTypes.HttpMethods>, OasTypes.HttpMethods>\n","import BaseOas from 'oas'\nimport OASNormalize from 'oas-normalize'\nimport { matchesMimeType } from 'oas/utils'\n\nimport jsonpointer from 'jsonpointer'\n\nimport { isReference } from './utils.ts'\n\nimport type { Operation } from 'oas/operation'\nimport type { MediaTypeObject, OASDocument, ResponseObject, SchemaObject, User } from 'oas/types'\nimport type { OasTypes, OpenAPIV3 } from './index.ts'\nimport type { contentType } from './types.ts'\n\ntype Options = {\n contentType?: contentType\n}\n\nexport class Oas<const TOAS = unknown> extends BaseOas {\n #options: Options = {}\n document: TOAS = undefined as unknown as TOAS\n\n constructor({ oas, user }: { oas: TOAS | OASDocument | string; user?: User }, options: Options = {}) {\n if (typeof oas === 'string') {\n oas = JSON.parse(oas)\n }\n\n super(oas as OASDocument, user)\n\n this.document = oas as TOAS\n this.#options = options\n }\n\n get($ref: string) {\n const origRef = $ref\n $ref = $ref.trim()\n if ($ref === '') {\n return false\n }\n if ($ref.startsWith('#')) {\n $ref = globalThis.decodeURIComponent($ref.substring(1))\n } else {\n return null\n }\n const current = jsonpointer.get(this.api, $ref)\n\n if (!current) {\n throw new Error(`Could not find a definition for ${origRef}.`)\n }\n return current\n }\n\n set($ref: string, value: unknown) {\n $ref = $ref.trim()\n if ($ref === '') {\n return false\n }\n if ($ref.startsWith('#')) {\n $ref = globalThis.decodeURIComponent($ref.substring(1))\n\n jsonpointer.set(this.api, $ref, value)\n }\n }\n\n resolveDiscriminators(): void {\n const schemas = (this.api.components?.schemas || {}) as Record<string, OasTypes.SchemaObject>\n\n Object.entries(schemas).forEach(([_key, schemaObject]) => {\n if ('discriminator' in schemaObject) {\n const { mapping = {}, propertyName } = (schemaObject.discriminator || {}) as OpenAPIV3.DiscriminatorObject\n\n Object.entries(mapping).forEach(([mappingKey, mappingValue]) => {\n if (mappingValue) {\n const childSchema = this.get(mappingValue)\n const property = childSchema.properties?.[propertyName] as SchemaObject\n\n if (property) {\n childSchema.properties[propertyName] = {\n ...childSchema.properties[propertyName],\n enum: [...(property?.enum?.filter((value) => value !== mappingKey) ?? []), mappingKey],\n }\n\n childSchema.required = [...(childSchema.required ?? []), propertyName]\n\n this.set(mappingValue, childSchema)\n }\n }\n })\n }\n })\n }\n\n dereferenceWithRef(schema?: unknown) {\n if (isReference(schema)) {\n return {\n ...this.get(schema.$ref),\n $ref: schema.$ref,\n }\n }\n\n return schema\n }\n\n /**\n * Oas does not have a getResponseBody(contentType)\n */\n #getResponseBodyFactory(responseBody: boolean | ResponseObject): (contentType?: string) => MediaTypeObject | false | [string, MediaTypeObject, ...string[]] {\n function hasResponseBody(res = responseBody): res is ResponseObject {\n return !!res\n }\n\n return (contentType) => {\n if (!hasResponseBody(responseBody)) {\n return false\n }\n\n if (isReference(responseBody)) {\n // If the request body is still a `$ref` pointer we should return false because this library\n // assumes that you've run dereferencing beforehand.\n return false\n }\n\n if (!responseBody.content) {\n return false\n }\n\n if (contentType) {\n if (!(contentType in responseBody.content)) {\n return false\n }\n\n return responseBody.content[contentType]!\n }\n\n // Since no media type was supplied we need to find either the first JSON-like media type that\n // we've got, or the first available of anything else if no JSON-like media types are present.\n let availablecontentType: string | undefined = undefined\n const contentTypes = Object.keys(responseBody.content)\n contentTypes.forEach((mt: string) => {\n if (!availablecontentType && matchesMimeType.json(mt)) {\n availablecontentType = mt\n }\n })\n\n if (!availablecontentType) {\n contentTypes.forEach((mt: string) => {\n if (!availablecontentType) {\n availablecontentType = mt\n }\n })\n }\n\n if (availablecontentType) {\n return [availablecontentType, responseBody.content[availablecontentType]!, ...(responseBody.description ? [responseBody.description] : [])]\n }\n\n return false\n }\n }\n\n getResponseSchema(operation: Operation, statusCode: string | number): SchemaObject {\n if (operation.schema.responses) {\n Object.keys(operation.schema.responses).forEach((key) => {\n const schema = operation.schema.responses![key]\n const $ref = isReference(schema) ? schema.$ref : undefined\n\n if (schema && $ref) {\n operation.schema.responses![key] = this.get($ref)\n }\n })\n }\n\n const getResponseBody = this.#getResponseBodyFactory(operation.getResponseByStatusCode(statusCode))\n\n const { contentType } = this.#options\n const responseBody = getResponseBody(contentType)\n\n if (responseBody === false) {\n // return empty object because response will always be defined(request does not need a body)\n return {}\n }\n\n const schema = Array.isArray(responseBody) ? responseBody[1].schema : responseBody.schema\n\n if (!schema) {\n // return empty object because response will always be defined(request does not need a body)\n\n return {}\n }\n\n return this.dereferenceWithRef(schema)\n }\n\n getRequestSchema(operation: Operation): SchemaObject | undefined {\n const { contentType } = this.#options\n\n if (operation.schema.requestBody) {\n operation.schema.requestBody = this.dereferenceWithRef(operation.schema.requestBody)\n }\n\n const requestBody = operation.getRequestBody(contentType)\n\n if (requestBody === false) {\n return undefined\n }\n\n const schema = Array.isArray(requestBody) ? requestBody[1].schema : requestBody.schema\n\n if (!schema) {\n return undefined\n }\n\n return this.dereferenceWithRef(schema)\n }\n\n getParametersSchema(operation: Operation, inKey: 'path' | 'query' | 'header'): SchemaObject | null {\n const { contentType = operation.getContentType() } = this.#options\n const params = operation\n .getParameters()\n .map((schema) => {\n return this.dereferenceWithRef(schema)\n })\n .filter((v) => v.in === inKey)\n\n if (!params.length) {\n return null\n }\n\n return params.reduce(\n (schema, pathParameters) => {\n const property = pathParameters.content?.[contentType]?.schema ?? (pathParameters.schema as SchemaObject)\n const required = [...(schema.required || ([] as any)), pathParameters.required ? pathParameters.name : undefined].filter(Boolean)\n\n return {\n ...schema,\n description: schema.description,\n deprecated: schema.deprecated,\n example: schema.example,\n required,\n properties: {\n ...schema.properties,\n [pathParameters.name]: {\n description: pathParameters.description,\n ...property,\n },\n },\n }\n },\n { type: 'object', required: [], properties: {} } as SchemaObject,\n )\n }\n\n async valdiate() {\n const oasNormalize = new OASNormalize(this.api, {\n enablePaths: true,\n colorizeErrors: true,\n })\n\n await oasNormalize.validate({\n convertToLatest: true,\n parser: {\n validate: {\n colorizeErrors: true,\n },\n },\n })\n }\n}\n","import { isRef, isSchema } from 'oas/types'\nimport { isPlainObject } from 'remeda'\n\nimport { bundle, loadConfig } from '@redocly/openapi-core'\nimport OASNormalize from 'oas-normalize'\nimport type { OASDocument } from 'oas/types'\nimport type { ParameterObject, SchemaObject } from 'oas/types'\nimport type { OpenAPI, OpenAPIV2, OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'\nimport swagger2openapi from 'swagger2openapi'\nimport { Oas } from './Oas.ts'\n\nexport function isOpenApiV2Document(doc: any): doc is OpenAPIV2.Document {\n return doc && isPlainObject(doc) && !('openapi' in doc)\n}\nexport function isOpenApiV3Document(doc: any): doc is OpenAPIV3.Document {\n return doc && isPlainObject(doc) && 'openapi' in doc\n}\n\nexport function isOpenApiV3_1Document(doc: any): doc is OpenAPIV3_1.Document {\n return doc && isPlainObject<OpenAPIV3_1.Document>(doc) && 'openapi' in doc && doc.openapi.startsWith('3.1')\n}\n\nexport function isJSONSchema(obj?: unknown): obj is SchemaObject {\n return !!obj && isSchema(obj)\n}\n\nexport function isParameterObject(obj: ParameterObject | SchemaObject): obj is ParameterObject {\n return obj && 'in' in obj\n}\n\nexport function isReference(obj?: unknown): obj is OpenAPIV3.ReferenceObject | OpenAPIV3_1.ReferenceObject {\n return !!obj && isRef(obj)\n}\n\nexport function isRequired(schema?: SchemaObject): boolean {\n if (!schema) {\n return false\n }\n\n return Array.isArray(schema.required) ? !!schema.required?.length : !!schema.required\n}\n\nexport function isOptional(schema?: SchemaObject): boolean {\n return !isRequired(schema)\n}\n\nexport async function parse(pathOrApi: string | OASDocument, oasClass: typeof Oas = Oas): Promise<Oas> {\n if (typeof pathOrApi === 'string') {\n // resolve external refs\n const config = await loadConfig()\n const bundleResults = await bundle({ ref: pathOrApi, config, base: pathOrApi })\n\n return parse(bundleResults.bundle.parsed)\n }\n\n const oasNormalize = new OASNormalize(pathOrApi, {\n enablePaths: true,\n colorizeErrors: true,\n })\n const document = (await oasNormalize.load()) as OpenAPI.Document\n\n if (isOpenApiV2Document(document)) {\n const { openapi } = await swagger2openapi.convertObj(document, {\n anchors: true,\n })\n\n return new oasClass({ oas: openapi as OASDocument })\n }\n\n return new oasClass({ oas: document })\n}\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/types.ts","../src/Oas.ts","../src/utils.ts"],"names":["schema","OASNormalize"],"mappings":"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","file":"index.js","sourcesContent":["import type * as OasTypes from 'oas/types'\n\n// external packages\nexport type { Operation } from 'oas/operation'\nexport type { HttpMethods as HttpMethod } from 'oas/types'\nexport type * as OasTypes from 'oas/types'\nexport type { OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'\n\nexport type contentType = 'application/json' | (string & {})\n\nexport type SchemaObject = OasTypes.SchemaObject & {\n 'x-nullable'?: boolean\n $ref?: string\n}\n\nexport const HttpMethods = {\n GET: 'get',\n POST: 'post',\n PUT: 'put',\n PATCH: 'patch',\n DELETE: 'delete',\n HEAD: 'head',\n OPTIONS: 'options',\n TRACE: 'trace',\n} satisfies Record<Uppercase<OasTypes.HttpMethods>, OasTypes.HttpMethods>\n","import BaseOas from 'oas'\nimport OASNormalize from 'oas-normalize'\nimport { matchesMimeType } from 'oas/utils'\n\nimport jsonpointer from 'jsonpointer'\n\nimport { isReference } from './utils.ts'\n\nimport type { Operation } from 'oas/operation'\nimport type { MediaTypeObject, OASDocument, ResponseObject, SchemaObject, User } from 'oas/types'\nimport type { OasTypes, OpenAPIV3 } from './index.ts'\nimport type { contentType } from './types.ts'\n\ntype Options = {\n contentType?: contentType\n}\n\nexport class Oas<const TOAS = unknown> extends BaseOas {\n #options: Options = {}\n document: TOAS = undefined as unknown as TOAS\n\n constructor({ oas, user }: { oas: TOAS | OASDocument | string; user?: User }, options: Options = {}) {\n if (typeof oas === 'string') {\n oas = JSON.parse(oas)\n }\n\n super(oas as OASDocument, user)\n\n this.document = oas as TOAS\n this.#options = options\n }\n\n get($ref: string) {\n const origRef = $ref\n $ref = $ref.trim()\n if ($ref === '') {\n return false\n }\n if ($ref.startsWith('#')) {\n $ref = globalThis.decodeURIComponent($ref.substring(1))\n } else {\n return null\n }\n const current = jsonpointer.get(this.api, $ref)\n\n if (!current) {\n throw new Error(`Could not find a definition for ${origRef}.`)\n }\n return current\n }\n\n set($ref: string, value: unknown) {\n $ref = $ref.trim()\n if ($ref === '') {\n return false\n }\n if ($ref.startsWith('#')) {\n $ref = globalThis.decodeURIComponent($ref.substring(1))\n\n jsonpointer.set(this.api, $ref, value)\n }\n }\n\n resolveDiscriminators(): void {\n const schemas = (this.api.components?.schemas || {}) as Record<string, OasTypes.SchemaObject>\n\n Object.entries(schemas).forEach(([_key, schemaObject]) => {\n if ('discriminator' in schemaObject) {\n const { mapping = {}, propertyName } = (schemaObject.discriminator || {}) as OpenAPIV3.DiscriminatorObject\n\n if (!schemaObject.properties) {\n schemaObject.properties = {}\n }\n\n schemaObject.properties[propertyName] = {\n ...schemaObject.properties[propertyName],\n enum: Object.keys(mapping),\n }\n\n Object.entries(mapping).forEach(([mappingKey, mappingValue]) => {\n if (mappingValue) {\n const childSchema = this.get(mappingValue)\n const property = childSchema.properties?.[propertyName] as SchemaObject\n\n childSchema.properties[propertyName] = {\n ...childSchema.properties[propertyName],\n enum: [...(property?.enum?.filter((value) => value !== mappingKey) ?? []), mappingKey],\n }\n\n childSchema.required = [...(childSchema.required ?? []), propertyName]\n\n this.set(mappingValue, childSchema)\n }\n })\n }\n })\n }\n\n dereferenceWithRef(schema?: unknown) {\n if (isReference(schema)) {\n return {\n ...this.get(schema.$ref),\n $ref: schema.$ref,\n }\n }\n\n return schema\n }\n\n /**\n * Oas does not have a getResponseBody(contentType)\n */\n #getResponseBodyFactory(responseBody: boolean | ResponseObject): (contentType?: string) => MediaTypeObject | false | [string, MediaTypeObject, ...string[]] {\n function hasResponseBody(res = responseBody): res is ResponseObject {\n return !!res\n }\n\n return (contentType) => {\n if (!hasResponseBody(responseBody)) {\n return false\n }\n\n if (isReference(responseBody)) {\n // If the request body is still a `$ref` pointer we should return false because this library\n // assumes that you've run dereferencing beforehand.\n return false\n }\n\n if (!responseBody.content) {\n return false\n }\n\n if (contentType) {\n if (!(contentType in responseBody.content)) {\n return false\n }\n\n return responseBody.content[contentType]!\n }\n\n // Since no media type was supplied we need to find either the first JSON-like media type that\n // we've got, or the first available of anything else if no JSON-like media types are present.\n let availablecontentType: string | undefined = undefined\n const contentTypes = Object.keys(responseBody.content)\n contentTypes.forEach((mt: string) => {\n if (!availablecontentType && matchesMimeType.json(mt)) {\n availablecontentType = mt\n }\n })\n\n if (!availablecontentType) {\n contentTypes.forEach((mt: string) => {\n if (!availablecontentType) {\n availablecontentType = mt\n }\n })\n }\n\n if (availablecontentType) {\n return [availablecontentType, responseBody.content[availablecontentType]!, ...(responseBody.description ? [responseBody.description] : [])]\n }\n\n return false\n }\n }\n\n getResponseSchema(operation: Operation, statusCode: string | number): SchemaObject {\n if (operation.schema.responses) {\n Object.keys(operation.schema.responses).forEach((key) => {\n const schema = operation.schema.responses![key]\n const $ref = isReference(schema) ? schema.$ref : undefined\n\n if (schema && $ref) {\n operation.schema.responses![key] = this.get($ref)\n }\n })\n }\n\n const getResponseBody = this.#getResponseBodyFactory(operation.getResponseByStatusCode(statusCode))\n\n const { contentType } = this.#options\n const responseBody = getResponseBody(contentType)\n\n if (responseBody === false) {\n // return empty object because response will always be defined(request does not need a body)\n return {}\n }\n\n const schema = Array.isArray(responseBody) ? responseBody[1].schema : responseBody.schema\n\n if (!schema) {\n // return empty object because response will always be defined(request does not need a body)\n\n return {}\n }\n\n return this.dereferenceWithRef(schema)\n }\n\n getRequestSchema(operation: Operation): SchemaObject | undefined {\n const { contentType } = this.#options\n\n if (operation.schema.requestBody) {\n operation.schema.requestBody = this.dereferenceWithRef(operation.schema.requestBody)\n }\n\n const requestBody = operation.getRequestBody(contentType)\n\n if (requestBody === false) {\n return undefined\n }\n\n const schema = Array.isArray(requestBody) ? requestBody[1].schema : requestBody.schema\n\n if (!schema) {\n return undefined\n }\n\n return this.dereferenceWithRef(schema)\n }\n\n getParametersSchema(operation: Operation, inKey: 'path' | 'query' | 'header'): SchemaObject | null {\n const { contentType = operation.getContentType() } = this.#options\n const params = operation\n .getParameters()\n .map((schema) => {\n return this.dereferenceWithRef(schema)\n })\n .filter((v) => v.in === inKey)\n\n if (!params.length) {\n return null\n }\n\n return params.reduce(\n (schema, pathParameters) => {\n const property = pathParameters.content?.[contentType]?.schema ?? (pathParameters.schema as SchemaObject)\n const required = [...(schema.required || ([] as any)), pathParameters.required ? pathParameters.name : undefined].filter(Boolean)\n\n return {\n ...schema,\n description: schema.description,\n deprecated: schema.deprecated,\n example: schema.example,\n required,\n properties: {\n ...schema.properties,\n [pathParameters.name]: {\n description: pathParameters.description,\n ...property,\n },\n },\n }\n },\n { type: 'object', required: [], properties: {} } as SchemaObject,\n )\n }\n\n async valdiate() {\n const oasNormalize = new OASNormalize(this.api, {\n enablePaths: true,\n colorizeErrors: true,\n })\n\n await oasNormalize.validate({\n convertToLatest: true,\n parser: {\n validate: {\n colorizeErrors: true,\n },\n },\n })\n }\n}\n","import { isRef, isSchema } from 'oas/types'\nimport { isPlainObject } from 'remeda'\n\nimport { bundle, loadConfig } from '@redocly/openapi-core'\nimport OASNormalize from 'oas-normalize'\nimport type { OASDocument } from 'oas/types'\nimport type { ParameterObject, SchemaObject } from 'oas/types'\nimport type { OpenAPI, OpenAPIV2, OpenAPIV3, OpenAPIV3_1 } from 'openapi-types'\nimport swagger2openapi from 'swagger2openapi'\nimport { Oas } from './Oas.ts'\n\nexport function isOpenApiV2Document(doc: any): doc is OpenAPIV2.Document {\n return doc && isPlainObject(doc) && !('openapi' in doc)\n}\nexport function isOpenApiV3Document(doc: any): doc is OpenAPIV3.Document {\n return doc && isPlainObject(doc) && 'openapi' in doc\n}\n\nexport function isOpenApiV3_1Document(doc: any): doc is OpenAPIV3_1.Document {\n return doc && isPlainObject<OpenAPIV3_1.Document>(doc) && 'openapi' in doc && doc.openapi.startsWith('3.1')\n}\n\nexport function isJSONSchema(obj?: unknown): obj is SchemaObject {\n return !!obj && isSchema(obj)\n}\n\nexport function isParameterObject(obj: ParameterObject | SchemaObject): obj is ParameterObject {\n return obj && 'in' in obj\n}\n\nexport function isReference(obj?: unknown): obj is OpenAPIV3.ReferenceObject | OpenAPIV3_1.ReferenceObject {\n return !!obj && isRef(obj)\n}\n\nexport function isRequired(schema?: SchemaObject): boolean {\n if (!schema) {\n return false\n }\n\n return Array.isArray(schema.required) ? !!schema.required?.length : !!schema.required\n}\n\nexport function isOptional(schema?: SchemaObject): boolean {\n return !isRequired(schema)\n}\n\nexport async function parse(pathOrApi: string | OASDocument, oasClass: typeof Oas = Oas): Promise<Oas> {\n if (typeof pathOrApi === 'string') {\n // resolve external refs\n const config = await loadConfig()\n const bundleResults = await bundle({ ref: pathOrApi, config, base: pathOrApi })\n\n return parse(bundleResults.bundle.parsed)\n }\n\n const oasNormalize = new OASNormalize(pathOrApi, {\n enablePaths: true,\n colorizeErrors: true,\n })\n const document = (await oasNormalize.load()) as OpenAPI.Document\n\n if (isOpenApiV2Document(document)) {\n const { openapi } = await swagger2openapi.convertObj(document, {\n anchors: true,\n })\n\n return new oasClass({ oas: openapi as OASDocument })\n }\n\n return new oasClass({ oas: document })\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/oas",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.1",
|
|
4
4
|
"description": "Oas helpers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"!/**/__tests__/**"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@redocly/openapi-core": "^1.
|
|
51
|
+
"@redocly/openapi-core": "^1.31.2",
|
|
52
52
|
"hotscript": "^1.0.13",
|
|
53
53
|
"json-schema-to-ts": "^3.1.1",
|
|
54
54
|
"jsonpointer": "^5.0.1",
|
|
55
55
|
"oas": "^25.3.0",
|
|
56
56
|
"oas-normalize": "^11.1.4",
|
|
57
57
|
"openapi-types": "^12.1.3",
|
|
58
|
-
"remeda": "^2.
|
|
58
|
+
"remeda": "^2.21.0",
|
|
59
59
|
"swagger2openapi": "^7.0.8",
|
|
60
60
|
"ts-toolbelt": "^9.6.0"
|
|
61
61
|
},
|
|
@@ -63,10 +63,10 @@
|
|
|
63
63
|
"@stoplight/yaml": "^4.3.0",
|
|
64
64
|
"@types/swagger2openapi": "^7.0.4",
|
|
65
65
|
"expect-type": "^1.1.0",
|
|
66
|
-
"tsup": "^8.
|
|
66
|
+
"tsup": "^8.4.0",
|
|
67
67
|
"typescript": "^5.7.3",
|
|
68
|
-
"@kubb/config-ts": "3.
|
|
69
|
-
"@kubb/config-tsup": "3.
|
|
68
|
+
"@kubb/config-ts": "3.6.1",
|
|
69
|
+
"@kubb/config-tsup": "3.6.1"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
72
|
"node": ">=20"
|
package/src/Oas.ts
CHANGED
|
@@ -68,21 +68,28 @@ export class Oas<const TOAS = unknown> extends BaseOas {
|
|
|
68
68
|
if ('discriminator' in schemaObject) {
|
|
69
69
|
const { mapping = {}, propertyName } = (schemaObject.discriminator || {}) as OpenAPIV3.DiscriminatorObject
|
|
70
70
|
|
|
71
|
+
if (!schemaObject.properties) {
|
|
72
|
+
schemaObject.properties = {}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
schemaObject.properties[propertyName] = {
|
|
76
|
+
...schemaObject.properties[propertyName],
|
|
77
|
+
enum: Object.keys(mapping),
|
|
78
|
+
}
|
|
79
|
+
|
|
71
80
|
Object.entries(mapping).forEach(([mappingKey, mappingValue]) => {
|
|
72
81
|
if (mappingValue) {
|
|
73
82
|
const childSchema = this.get(mappingValue)
|
|
74
83
|
const property = childSchema.properties?.[propertyName] as SchemaObject
|
|
75
84
|
|
|
76
|
-
|
|
77
|
-
childSchema.properties[propertyName]
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
85
|
+
childSchema.properties[propertyName] = {
|
|
86
|
+
...childSchema.properties[propertyName],
|
|
87
|
+
enum: [...(property?.enum?.filter((value) => value !== mappingKey) ?? []), mappingKey],
|
|
88
|
+
}
|
|
81
89
|
|
|
82
|
-
|
|
90
|
+
childSchema.required = [...(childSchema.required ?? []), propertyName]
|
|
83
91
|
|
|
84
|
-
|
|
85
|
-
}
|
|
92
|
+
this.set(mappingValue, childSchema)
|
|
86
93
|
}
|
|
87
94
|
})
|
|
88
95
|
}
|