@kubb/plugin-oas 3.0.0-alpha.4 → 3.0.0-alpha.6
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/{OperationGenerator-D7rSlflc.d.cts → OperationGenerator-Do52cvD0.d.cts} +1 -1
- package/dist/{OperationGenerator-vw0Zf-Mi.d.ts → OperationGenerator-Dzs1oRvm.d.ts} +1 -1
- package/dist/{Schema-gHgN14i2.d.ts → Schema-C90zFdkU.d.ts} +1 -1
- package/dist/{Schema-DxyOIX7q.d.cts → Schema-DDVEcNcu.d.cts} +1 -1
- package/dist/{chunk-264TCCJF.cjs → chunk-RQZBFORW.cjs} +6 -6
- package/dist/{chunk-264TCCJF.cjs.map → chunk-RQZBFORW.cjs.map} +1 -1
- package/dist/{chunk-FZN3PBEK.js → chunk-UJNAXXVE.js} +7 -7
- package/dist/{chunk-FZN3PBEK.js.map → chunk-UJNAXXVE.js.map} +1 -1
- package/dist/components.cjs +2 -2
- package/dist/components.d.cts +3 -3
- package/dist/components.d.ts +3 -3
- package/dist/components.js +1 -1
- package/dist/hooks.cjs +6 -6
- package/dist/hooks.d.cts +2 -2
- package/dist/hooks.d.ts +2 -2
- package/dist/hooks.js +1 -1
- package/dist/index.cjs +18 -31
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +13 -26
- package/dist/index.js.map +1 -1
- package/dist/utils.cjs +2 -3
- package/dist/utils.cjs.map +1 -1
- package/dist/utils.d.cts +4 -1
- package/dist/utils.d.ts +4 -1
- package/dist/utils.js +2 -3
- package/dist/utils.js.map +1 -1
- package/package.json +9 -9
- package/src/components/Oas.tsx +1 -1
- package/src/components/Operation.tsx +1 -1
- package/src/components/Schema.tsx +22 -28
- package/src/parser.tsx +2 -1
- package/src/plugin.ts +13 -29
- package/src/utils/getGroupedByTagFiles.ts +5 -3
- package/src/utils/getParams.ts +1 -1
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/OperationGenerator.ts","../src/plugin.ts","../src/parser.tsx"],"sourcesContent":["export type {\n GetOperationGeneratorOptions,\n OperationMethodResult,\n} from './OperationGenerator.ts'\nexport { OperationGenerator } from './OperationGenerator.ts'\nexport { pluginOas, pluginOasName } from './plugin.ts'\nexport type {\n GetSchemaGeneratorOptions,\n SchemaGeneratorBuildOptions,\n SchemaGeneratorOptions,\n} from './SchemaGenerator.ts'\nexport type { SchemaMethodResult } from './SchemaGenerator.ts'\nexport { SchemaGenerator } from './SchemaGenerator.ts'\nexport type {\n Schema,\n SchemaKeyword,\n SchemaKeywordBase,\n SchemaKeywordMapper,\n SchemaMapper,\n} from './SchemaMapper.ts'\nexport { isKeyword, schemaKeywords } from './SchemaMapper.ts'\nexport type * from './types.ts'\nexport { createParser, createReactParser } from './parser.tsx'\nexport type { ParserReactOptions } from './parser.tsx'\nexport type { Parser, ParserOptions } from './parser.tsx'\n","import { type FileMetaBase, Generator } from '@kubb/core'\nimport transformers from '@kubb/core/transformers'\n\nimport type { PluginFactoryOptions, PluginManager } from '@kubb/core'\nimport type * as KubbFile from '@kubb/fs/types'\n\nimport type { Plugin } from '@kubb/core'\nimport type { HttpMethod, Oas, OasTypes, Operation, contentType } from '@kubb/oas'\nimport type { Exclude, Include, OperationSchemas, OperationsByMethod, Override } from './types.ts'\nimport type { Parser } from './parser.tsx'\n\nexport type GetOperationGeneratorOptions<T extends OperationGenerator<any, any, any>> = T extends OperationGenerator<infer Options, any, any> ? Options : never\n\nexport type OperationMethodResult<TFileMeta extends FileMetaBase> = Promise<KubbFile.File<TFileMeta> | Array<KubbFile.File<TFileMeta>> | null>\n\ntype Context<TOptions, TPluginOptions extends PluginFactoryOptions> = {\n oas: Oas\n exclude: Array<Exclude> | undefined\n include: Array<Include> | undefined\n override: Array<Override<TOptions>> | undefined\n contentType: contentType | undefined\n pluginManager: PluginManager\n /**\n * Current plugin\n */\n plugin: Plugin<TPluginOptions>\n mode: KubbFile.Mode\n}\n\nexport class OperationGenerator<\n TOptions = unknown,\n TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions,\n TFileMeta extends FileMetaBase = FileMetaBase,\n> extends Generator<TOptions, Context<TOptions, TPluginOptions>> {\n #operationsByMethod: OperationsByMethod = {}\n get operationsByMethod(): OperationsByMethod {\n return this.#operationsByMethod\n }\n\n set operationsByMethod(paths: OperationsByMethod) {\n this.#operationsByMethod = paths\n }\n\n #getOptions(operation: Operation, method: HttpMethod): Partial<TOptions> {\n const { override = [] } = this.context\n\n return (\n override.find(({ pattern, type }) => {\n if (type === 'tag') {\n return !!operation.getTags()[0]?.name.match(pattern)\n }\n\n if (type === 'operationId') {\n return !!operation.getOperationId().match(pattern)\n }\n\n if (type === 'path') {\n return !!operation.path.match(pattern)\n }\n\n if (type === 'method') {\n return !!method.match(pattern)\n }\n\n return false\n })?.options || {}\n )\n }\n\n /**\n *\n * @deprecated\n */\n #isExcluded(operation: Operation, method: HttpMethod): boolean {\n const { exclude = [] } = this.context\n let matched = false\n\n exclude.forEach(({ pattern, type }) => {\n if (type === 'tag' && !matched) {\n matched = !!operation.getTags()[0]?.name.match(pattern)\n }\n\n if (type === 'operationId' && !matched) {\n matched = !!operation.getOperationId().match(pattern)\n }\n\n if (type === 'path' && !matched) {\n matched = !!operation.path.match(pattern)\n }\n\n if (type === 'method' && !matched) {\n matched = !!method.match(pattern)\n }\n })\n\n return matched\n }\n\n /**\n *\n * @deprecated\n */\n #isIncluded(operation: Operation, method: HttpMethod): boolean {\n const { include = [] } = this.context\n let matched = false\n\n include.forEach(({ pattern, type }) => {\n if (type === 'tag' && !matched) {\n matched = !!operation.getTags()[0]?.name.match(pattern)\n }\n\n if (type === 'operationId' && !matched) {\n matched = !!operation.getOperationId().match(pattern)\n }\n\n if (type === 'path' && !matched) {\n matched = !!operation.path.match(pattern)\n }\n\n if (type === 'method' && !matched) {\n matched = !!method.match(pattern)\n }\n })\n\n return matched\n }\n\n getSchemas(\n operation: Operation,\n {\n forStatusCode,\n resolveName = (name) => name,\n }: {\n forStatusCode?: string | number\n resolveName?: (name: string) => string\n } = {},\n ): OperationSchemas {\n const pathParamsSchema = this.context.oas.getParametersSchema(operation, 'path')\n const queryParamsSchema = this.context.oas.getParametersSchema(operation, 'query')\n const headerParamsSchema = this.context.oas.getParametersSchema(operation, 'header')\n const requestSchema = this.context.oas.getRequestSchema(operation)\n const responseStatusCode =\n forStatusCode || (operation.schema.responses && Object.keys(operation.schema.responses).find((key) => key.startsWith('2'))) || 200\n const responseSchema = this.context.oas.getResponseSchema(operation, responseStatusCode)\n const statusCodes = operation.getResponseStatusCodes().map((statusCode) => {\n let name = statusCode\n if (name === 'default') {\n name = 'error'\n }\n\n const schema = this.context.oas.getResponseSchema(operation, statusCode)\n\n return {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${name}`)),\n description: (operation.getResponseByStatusCode(statusCode) as OasTypes.ResponseObject)?.description,\n schema,\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n statusCode: name === 'error' ? undefined : Number(statusCode),\n keys: schema?.properties ? Object.keys(schema.properties) : undefined,\n }\n })\n\n return {\n pathParams: pathParamsSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} PathParams`)),\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: pathParamsSchema,\n keys: pathParamsSchema.properties ? Object.keys(pathParamsSchema.properties) : undefined,\n }\n : undefined,\n queryParams: queryParamsSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} QueryParams`)),\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: queryParamsSchema,\n keys: queryParamsSchema.properties ? Object.keys(queryParamsSchema.properties) : [],\n }\n : undefined,\n headerParams: headerParamsSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} HeaderParams`)),\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: headerParamsSchema,\n keys: headerParamsSchema.properties ? Object.keys(headerParamsSchema.properties) : undefined,\n }\n : undefined,\n request: requestSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${operation.method === 'get' ? 'queryRequest' : 'mutationRequest'}`)),\n description: (operation.schema.requestBody as OasTypes.RequestBodyObject)?.description,\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: requestSchema,\n keys: requestSchema.properties ? Object.keys(requestSchema.properties) : undefined,\n keysToOmit: requestSchema.properties\n ? Object.keys(requestSchema.properties).filter((key) => {\n const item = requestSchema.properties?.[key] as OasTypes.SchemaObject\n\n return item?.readOnly\n })\n : undefined,\n }\n : undefined,\n response: {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${operation.method === 'get' ? 'queryResponse' : 'mutationResponse'}`)),\n description: operation.getResponseAsJSONSchema(responseStatusCode)?.at(0)?.description,\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: responseSchema,\n statusCode: Number(responseStatusCode),\n keys: responseSchema?.properties ? Object.keys(responseSchema.properties) : undefined,\n keysToOmit: responseSchema?.properties\n ? Object.keys(responseSchema.properties).filter((key) => {\n const item = responseSchema.properties?.[key] as OasTypes.SchemaObject\n return item?.writeOnly\n })\n : undefined,\n },\n errors: statusCodes.filter((item) => item.statusCode?.toString().startsWith('4') || item.statusCode?.toString().startsWith('5')),\n statusCodes,\n }\n }\n\n async build(...parsers: Array<Parser<Extract<TOptions, PluginFactoryOptions>>>): Promise<Array<KubbFile.File<TFileMeta>>> {\n const { oas } = this.context\n\n const paths = oas.getPaths()\n this.operationsByMethod = Object.entries(paths).reduce((acc, [path, method]) => {\n const methods = Object.keys(method) as HttpMethod[]\n\n methods.forEach((method) => {\n const operation = oas.operation(path, method)\n if (operation) {\n const isExcluded = this.#isExcluded(operation, method)\n const isIncluded = this.context.include ? this.#isIncluded(operation, method) : true\n\n if (isIncluded && !isExcluded) {\n if (!acc[path]) {\n acc[path] = {} as OperationsByMethod['get']\n }\n acc[path] = {\n ...acc[path],\n [method]: {\n operation,\n schemas: this.getSchemas(operation),\n },\n } as OperationsByMethod['get']\n }\n }\n })\n\n return acc\n }, {} as OperationsByMethod)\n\n const promises = Object.keys(this.operationsByMethod).reduce((acc, path) => {\n const methods = this.operationsByMethod[path] ? (Object.keys(this.operationsByMethod[path]!) as HttpMethod[]) : []\n\n methods.forEach((method) => {\n const { operation } = this.operationsByMethod[path]?.[method]!\n const options = this.#getOptions(operation, method)\n\n const methodToCall = this[method as keyof typeof this] as any\n\n if (typeof methodToCall === 'function') {\n const promiseMethod = methodToCall?.call(this, operation, {\n ...this.options,\n ...options,\n })\n\n if (promiseMethod) {\n acc.push(promiseMethod)\n }\n }\n\n const promiseOperation = this.operation.call(this, operation, {\n ...this.options,\n ...options,\n })\n\n if (promiseOperation) {\n acc.push(promiseOperation)\n }\n\n parsers?.forEach((parser) => {\n const promise = parser.operation?.({\n instance: this,\n operation,\n options: {\n ...this.options,\n ...options,\n },\n } as any) as Promise<Array<KubbFile.File<TFileMeta>>>\n\n if (promise) {\n acc.push(promise)\n }\n })\n })\n\n return acc\n }, [] as OperationMethodResult<TFileMeta>[])\n\n const operations = Object.values(this.operationsByMethod).map((item) => Object.values(item).map((item) => item.operation))\n\n promises.push(this.all(operations.flat().filter(Boolean), this.operationsByMethod))\n\n parsers?.forEach((parser) => {\n const promise = parser.operations?.({\n instance: this,\n operations: operations.flat().filter(Boolean),\n operationsByMethod: this.operationsByMethod,\n options: this.options,\n } as any) as Promise<Array<KubbFile.File<TFileMeta>>>\n\n if (promise) {\n promises.push(promise)\n }\n })\n\n const files = await Promise.all(promises)\n\n // using .flat because operationGenerator[method] can return a array of files or just one file\n return files.flat().filter(Boolean)\n }\n\n /**\n * Operation\n */\n async operation(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * GET\n */\n async get(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * POST\n */\n async post(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n /**\n * PATCH\n */\n async patch(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * PUT\n */\n async put(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * DELETE\n */\n async delete(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * Combination of GET, POST, PATCH, PUT, DELETE\n */\n async all(operations: Operation[], paths: OperationsByMethod): OperationMethodResult<TFileMeta> {\n return []\n }\n}\n","import path from 'node:path'\n\nimport { createPlugin } from '@kubb/core'\nimport { camelCase } from '@kubb/core/transformers'\n\nimport { getSchemas } from './utils/getSchemas.ts'\n\nimport type { Config } from '@kubb/core'\nimport type { Logger } from '@kubb/core/logger'\nimport type { Oas, OasTypes } from '@kubb/oas'\nimport type { FormatOptions } from '@kubb/oas/parser'\nimport type { PluginOas } from './types.ts'\nimport { parseFromConfig } from './utils/parseFromConfig.ts'\n\nexport const pluginOasName = 'plugin-oas' satisfies PluginOas['name']\n\nexport const pluginOas = createPlugin<PluginOas>((options) => {\n const {\n output = { path: 'schemas', export: false },\n experimentalFilter: filter,\n experimentalSort: sort,\n validate = true,\n serverIndex = 0,\n contentType,\n oasClass,\n } = options\n\n const getOas = async ({ config, logger, formatOptions }: { config: Config; logger: Logger; formatOptions?: FormatOptions }): Promise<Oas> => {\n try {\n // needs to be in a different variable or the catch here will not work(return of a promise instead)\n const oas = await parseFromConfig(config, formatOptions, oasClass)\n\n if (validate) {\n await oas.valdiate()\n }\n\n return oas\n } catch (e) {\n const error = e as Error\n\n logger.emit('warning', error?.message)\n return parseFromConfig(config, {}, oasClass)\n }\n }\n\n return {\n name: pluginOasName,\n options,\n context() {\n const { config, logger } = this\n\n return {\n getOas(formatOptions) {\n return getOas({ config, logger, formatOptions })\n },\n async getSchemas({ includes } = {}) {\n const oas = await this.getOas()\n return getSchemas({ oas, contentType, includes })\n },\n async getBaseURL() {\n const oasInstance = await this.getOas()\n const baseURL = oasInstance.api.servers?.at(serverIndex)?.url\n return baseURL\n },\n contentType,\n }\n },\n resolvePath(baseName) {\n if (output === false) {\n return undefined\n }\n\n const root = path.resolve(this.config.root, this.config.output.path)\n\n return path.resolve(root, output.path, baseName)\n },\n resolveName(name, type) {\n return camelCase(name, { isFile: type === 'file' })\n },\n async buildStart() {\n if (!output) {\n return\n }\n\n const oas = await getOas({\n config: this.config,\n logger: this.logger,\n formatOptions: {\n filterSet: filter,\n sortSet: sort,\n },\n })\n await oas.dereference()\n const schemas = getSchemas({ oas, contentType })\n\n const mapSchema = async ([name, schema]: [string, OasTypes.SchemaObject]) => {\n const resolvedPath = this.resolvePath({\n baseName: `${name}.json`,\n pluginKey: this.plugin.key,\n })\n\n const resvoledFileName = this.resolveName({\n name: `${name}.json`,\n pluginKey: [pluginOasName],\n type: 'file',\n }) as `${string}.json`\n\n if (!resolvedPath) {\n return\n }\n\n await this.addFile({\n path: resolvedPath,\n baseName: resvoledFileName,\n source: JSON.stringify(schema),\n meta: {\n pluginKey: this.plugin.key,\n },\n })\n }\n\n const promises = Object.entries(schemas).map(mapSchema)\n await Promise.all(promises)\n },\n }\n})\n","import type { PluginFactoryOptions } from '@kubb/core'\nimport type { Operation, SchemaObject } from '@kubb/oas'\nimport { App, createRoot, type KubbNode } from '@kubb/react'\nimport type * as KubbFile from '@kubb/fs/types'\nimport type { OperationsByMethod } from './types.ts'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport type { OperationGenerator } from './OperationGenerator.ts'\nimport type { SchemaGenerator, SchemaGeneratorOptions } from './SchemaGenerator.ts'\n\ntype OperationsProps<TOptions extends PluginFactoryOptions> = {\n instance: Omit<OperationGenerator<TOptions>, 'build'>\n options: TOptions['resolvedOptions']\n operations: Array<Operation>\n operationsByMethod: OperationsByMethod\n}\n\ntype OperationProps<TOptions extends PluginFactoryOptions> = {\n instance: Omit<OperationGenerator<TOptions>, 'build'>\n options: TOptions['resolvedOptions']\n operation: Operation\n}\n\ntype SchemaProps<TOptions extends PluginFactoryOptions> = {\n instance: Omit<SchemaGenerator<SchemaGeneratorOptions, TOptions>, 'build'>\n name: string\n schema: SchemaObject\n options: TOptions['resolvedOptions']\n}\n\nexport type ParserOptions<TOptions extends PluginFactoryOptions> = {\n name: string\n operations?: (props: OperationsProps<TOptions>) => Promise<KubbFile.File[]>\n operation?: (props: OperationProps<TOptions>) => Promise<KubbFile.File[]>\n schema?: (props: SchemaProps<TOptions>) => Promise<KubbFile.File[]>\n}\n\nexport type Parser<TOptions extends PluginFactoryOptions> = ParserOptions<TOptions>\n\nexport function createParser<TOptions extends PluginFactoryOptions>(parseOptions: ParserOptions<TOptions>): Parser<TOptions> {\n return parseOptions\n}\n\nexport type ParserReactOptions<TOptions extends PluginFactoryOptions> = {\n name: string\n Operations?: (props: OperationsProps<TOptions>) => KubbNode\n Operation?: (props: OperationProps<TOptions>) => KubbNode\n Schema?: (props: SchemaProps<TOptions>) => KubbNode\n}\n\nexport function createReactParser<TOptions extends PluginFactoryOptions>(parseOptions: ParserReactOptions<TOptions>): Parser<TOptions> {\n return {\n ...parseOptions,\n async operations({ instance, options, operations, operationsByMethod }) {\n if (!parseOptions.Operations) {\n return []\n }\n\n const { pluginManager, oas, plugin, mode } = instance.context\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n root.render(\n <App pluginManager={pluginManager} plugin={plugin} mode={mode}>\n <Oas oas={oas} operations={operations} generator={instance}>\n <parseOptions.Operations operations={operations} instance={instance} operationsByMethod={operationsByMethod} options={options} />\n </Oas>\n </App>,\n )\n\n return root.files\n },\n async operation({ instance, operation, options }) {\n if (!parseOptions.Operation) {\n return []\n }\n\n const { pluginManager, oas, plugin, mode } = instance.context\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n root.render(\n <App pluginManager={pluginManager} plugin={{ ...plugin, options }} mode={mode}>\n <Oas oas={oas} operations={[operation]} generator={instance}>\n <Oas.Operation operation={operation}>\n <parseOptions.Operation operation={operation} options={options} instance={instance} />\n </Oas.Operation>\n </Oas>\n </App>,\n )\n\n return root.files\n },\n async schema({ instance, schema, name, options }) {\n if (!parseOptions.Schema) {\n return []\n }\n\n const { pluginManager, oas, plugin, mode } = instance.context\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n const tree = instance.parse({ schema, name })\n\n root.render(\n <App pluginManager={pluginManager} plugin={{ ...plugin, options }} mode={mode}>\n <Oas oas={oas}>\n <Oas.Schema name={name} value={schema} tree={tree}>\n <parseOptions.Schema schema={schema} options={options} instance={instance} name={name} />\n </Oas.Schema>\n </Oas>\n </App>,\n )\n\n return root.files\n },\n }\n}\n"],"mappings":"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","names":["path","method","item"]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/OperationGenerator.ts","../src/plugin.ts","../src/parser.tsx"],"sourcesContent":["export type {\n GetOperationGeneratorOptions,\n OperationMethodResult,\n} from './OperationGenerator.ts'\nexport { OperationGenerator } from './OperationGenerator.ts'\nexport { pluginOas, pluginOasName } from './plugin.ts'\nexport type {\n GetSchemaGeneratorOptions,\n SchemaGeneratorBuildOptions,\n SchemaGeneratorOptions,\n} from './SchemaGenerator.ts'\nexport type { SchemaMethodResult } from './SchemaGenerator.ts'\nexport { SchemaGenerator } from './SchemaGenerator.ts'\nexport type {\n Schema,\n SchemaKeyword,\n SchemaKeywordBase,\n SchemaKeywordMapper,\n SchemaMapper,\n} from './SchemaMapper.ts'\nexport { isKeyword, schemaKeywords } from './SchemaMapper.ts'\nexport type * from './types.ts'\nexport { createParser, createReactParser } from './parser.tsx'\nexport type { ParserReactOptions } from './parser.tsx'\nexport type { Parser, ParserOptions } from './parser.tsx'\n","import { type FileMetaBase, Generator } from '@kubb/core'\nimport transformers from '@kubb/core/transformers'\n\nimport type { PluginFactoryOptions, PluginManager } from '@kubb/core'\nimport type * as KubbFile from '@kubb/fs/types'\n\nimport type { Plugin } from '@kubb/core'\nimport type { HttpMethod, Oas, OasTypes, Operation, contentType } from '@kubb/oas'\nimport type { Exclude, Include, OperationSchemas, OperationsByMethod, Override } from './types.ts'\nimport type { Parser } from './parser.tsx'\n\nexport type GetOperationGeneratorOptions<T extends OperationGenerator<any, any, any>> = T extends OperationGenerator<infer Options, any, any> ? Options : never\n\nexport type OperationMethodResult<TFileMeta extends FileMetaBase> = Promise<KubbFile.File<TFileMeta> | Array<KubbFile.File<TFileMeta>> | null>\n\ntype Context<TOptions, TPluginOptions extends PluginFactoryOptions> = {\n oas: Oas\n exclude: Array<Exclude> | undefined\n include: Array<Include> | undefined\n override: Array<Override<TOptions>> | undefined\n contentType: contentType | undefined\n pluginManager: PluginManager\n /**\n * Current plugin\n */\n plugin: Plugin<TPluginOptions>\n mode: KubbFile.Mode\n}\n\nexport class OperationGenerator<\n TOptions = unknown,\n TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions,\n TFileMeta extends FileMetaBase = FileMetaBase,\n> extends Generator<TOptions, Context<TOptions, TPluginOptions>> {\n #operationsByMethod: OperationsByMethod = {}\n get operationsByMethod(): OperationsByMethod {\n return this.#operationsByMethod\n }\n\n set operationsByMethod(paths: OperationsByMethod) {\n this.#operationsByMethod = paths\n }\n\n #getOptions(operation: Operation, method: HttpMethod): Partial<TOptions> {\n const { override = [] } = this.context\n\n return (\n override.find(({ pattern, type }) => {\n if (type === 'tag') {\n return !!operation.getTags()[0]?.name.match(pattern)\n }\n\n if (type === 'operationId') {\n return !!operation.getOperationId().match(pattern)\n }\n\n if (type === 'path') {\n return !!operation.path.match(pattern)\n }\n\n if (type === 'method') {\n return !!method.match(pattern)\n }\n\n return false\n })?.options || {}\n )\n }\n\n /**\n *\n * @deprecated\n */\n #isExcluded(operation: Operation, method: HttpMethod): boolean {\n const { exclude = [] } = this.context\n let matched = false\n\n exclude.forEach(({ pattern, type }) => {\n if (type === 'tag' && !matched) {\n matched = !!operation.getTags()[0]?.name.match(pattern)\n }\n\n if (type === 'operationId' && !matched) {\n matched = !!operation.getOperationId().match(pattern)\n }\n\n if (type === 'path' && !matched) {\n matched = !!operation.path.match(pattern)\n }\n\n if (type === 'method' && !matched) {\n matched = !!method.match(pattern)\n }\n })\n\n return matched\n }\n\n /**\n *\n * @deprecated\n */\n #isIncluded(operation: Operation, method: HttpMethod): boolean {\n const { include = [] } = this.context\n let matched = false\n\n include.forEach(({ pattern, type }) => {\n if (type === 'tag' && !matched) {\n matched = !!operation.getTags()[0]?.name.match(pattern)\n }\n\n if (type === 'operationId' && !matched) {\n matched = !!operation.getOperationId().match(pattern)\n }\n\n if (type === 'path' && !matched) {\n matched = !!operation.path.match(pattern)\n }\n\n if (type === 'method' && !matched) {\n matched = !!method.match(pattern)\n }\n })\n\n return matched\n }\n\n getSchemas(\n operation: Operation,\n {\n forStatusCode,\n resolveName = (name) => name,\n }: {\n forStatusCode?: string | number\n resolveName?: (name: string) => string\n } = {},\n ): OperationSchemas {\n const pathParamsSchema = this.context.oas.getParametersSchema(operation, 'path')\n const queryParamsSchema = this.context.oas.getParametersSchema(operation, 'query')\n const headerParamsSchema = this.context.oas.getParametersSchema(operation, 'header')\n const requestSchema = this.context.oas.getRequestSchema(operation)\n const responseStatusCode =\n forStatusCode || (operation.schema.responses && Object.keys(operation.schema.responses).find((key) => key.startsWith('2'))) || 200\n const responseSchema = this.context.oas.getResponseSchema(operation, responseStatusCode)\n const statusCodes = operation.getResponseStatusCodes().map((statusCode) => {\n let name = statusCode\n if (name === 'default') {\n name = 'error'\n }\n\n const schema = this.context.oas.getResponseSchema(operation, statusCode)\n\n return {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${name}`)),\n description: (operation.getResponseByStatusCode(statusCode) as OasTypes.ResponseObject)?.description,\n schema,\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n statusCode: name === 'error' ? undefined : Number(statusCode),\n keys: schema?.properties ? Object.keys(schema.properties) : undefined,\n }\n })\n\n return {\n pathParams: pathParamsSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} PathParams`)),\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: pathParamsSchema,\n keys: pathParamsSchema.properties ? Object.keys(pathParamsSchema.properties) : undefined,\n }\n : undefined,\n queryParams: queryParamsSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} QueryParams`)),\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: queryParamsSchema,\n keys: queryParamsSchema.properties ? Object.keys(queryParamsSchema.properties) : [],\n }\n : undefined,\n headerParams: headerParamsSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} HeaderParams`)),\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: headerParamsSchema,\n keys: headerParamsSchema.properties ? Object.keys(headerParamsSchema.properties) : undefined,\n }\n : undefined,\n request: requestSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${operation.method === 'get' ? 'queryRequest' : 'mutationRequest'}`)),\n description: (operation.schema.requestBody as OasTypes.RequestBodyObject)?.description,\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: requestSchema,\n keys: requestSchema.properties ? Object.keys(requestSchema.properties) : undefined,\n keysToOmit: requestSchema.properties\n ? Object.keys(requestSchema.properties).filter((key) => {\n const item = requestSchema.properties?.[key] as OasTypes.SchemaObject\n\n return item?.readOnly\n })\n : undefined,\n }\n : undefined,\n response: {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${operation.method === 'get' ? 'queryResponse' : 'mutationResponse'}`)),\n description: operation.getResponseAsJSONSchema(responseStatusCode)?.at(0)?.description,\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: responseSchema,\n statusCode: Number(responseStatusCode),\n keys: responseSchema?.properties ? Object.keys(responseSchema.properties) : undefined,\n keysToOmit: responseSchema?.properties\n ? Object.keys(responseSchema.properties).filter((key) => {\n const item = responseSchema.properties?.[key] as OasTypes.SchemaObject\n return item?.writeOnly\n })\n : undefined,\n },\n errors: statusCodes.filter((item) => item.statusCode?.toString().startsWith('4') || item.statusCode?.toString().startsWith('5')),\n statusCodes,\n }\n }\n\n async build(...parsers: Array<Parser<Extract<TOptions, PluginFactoryOptions>>>): Promise<Array<KubbFile.File<TFileMeta>>> {\n const { oas } = this.context\n\n const paths = oas.getPaths()\n this.operationsByMethod = Object.entries(paths).reduce((acc, [path, method]) => {\n const methods = Object.keys(method) as HttpMethod[]\n\n methods.forEach((method) => {\n const operation = oas.operation(path, method)\n if (operation) {\n const isExcluded = this.#isExcluded(operation, method)\n const isIncluded = this.context.include ? this.#isIncluded(operation, method) : true\n\n if (isIncluded && !isExcluded) {\n if (!acc[path]) {\n acc[path] = {} as OperationsByMethod['get']\n }\n acc[path] = {\n ...acc[path],\n [method]: {\n operation,\n schemas: this.getSchemas(operation),\n },\n } as OperationsByMethod['get']\n }\n }\n })\n\n return acc\n }, {} as OperationsByMethod)\n\n const promises = Object.keys(this.operationsByMethod).reduce((acc, path) => {\n const methods = this.operationsByMethod[path] ? (Object.keys(this.operationsByMethod[path]!) as HttpMethod[]) : []\n\n methods.forEach((method) => {\n const { operation } = this.operationsByMethod[path]?.[method]!\n const options = this.#getOptions(operation, method)\n\n const methodToCall = this[method as keyof typeof this] as any\n\n if (typeof methodToCall === 'function') {\n const promiseMethod = methodToCall?.call(this, operation, {\n ...this.options,\n ...options,\n })\n\n if (promiseMethod) {\n acc.push(promiseMethod)\n }\n }\n\n const promiseOperation = this.operation.call(this, operation, {\n ...this.options,\n ...options,\n })\n\n if (promiseOperation) {\n acc.push(promiseOperation)\n }\n\n parsers?.forEach((parser) => {\n const promise = parser.operation?.({\n instance: this,\n operation,\n options: {\n ...this.options,\n ...options,\n },\n } as any) as Promise<Array<KubbFile.File<TFileMeta>>>\n\n if (promise) {\n acc.push(promise)\n }\n })\n })\n\n return acc\n }, [] as OperationMethodResult<TFileMeta>[])\n\n const operations = Object.values(this.operationsByMethod).map((item) => Object.values(item).map((item) => item.operation))\n\n promises.push(this.all(operations.flat().filter(Boolean), this.operationsByMethod))\n\n parsers?.forEach((parser) => {\n const promise = parser.operations?.({\n instance: this,\n operations: operations.flat().filter(Boolean),\n operationsByMethod: this.operationsByMethod,\n options: this.options,\n } as any) as Promise<Array<KubbFile.File<TFileMeta>>>\n\n if (promise) {\n promises.push(promise)\n }\n })\n\n const files = await Promise.all(promises)\n\n // using .flat because operationGenerator[method] can return a array of files or just one file\n return files.flat().filter(Boolean)\n }\n\n /**\n * Operation\n */\n async operation(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * GET\n */\n async get(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * POST\n */\n async post(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n /**\n * PATCH\n */\n async patch(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * PUT\n */\n async put(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * DELETE\n */\n async delete(operation: Operation, options: TOptions): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * Combination of GET, POST, PATCH, PUT, DELETE\n */\n async all(operations: Operation[], paths: OperationsByMethod): OperationMethodResult<TFileMeta> {\n return []\n }\n}\n","import path from 'node:path'\n\nimport { createPlugin } from '@kubb/core'\nimport { camelCase } from '@kubb/core/transformers'\n\nimport { getSchemas } from './utils/getSchemas.ts'\nimport { parseFromConfig } from './utils/parseFromConfig.ts'\n\nimport type { Config } from '@kubb/core'\nimport type { Logger } from '@kubb/core/logger'\nimport type { Oas, OasTypes } from '@kubb/oas'\nimport type { FormatOptions } from '@kubb/oas/parser'\nimport type { PluginOas } from './types.ts'\n\nexport const pluginOasName = 'plugin-oas' satisfies PluginOas['name']\n\nexport const pluginOas = createPlugin<PluginOas>((options) => {\n const {\n output = { path: 'schemas', export: false },\n experimentalFilter: filter,\n experimentalSort: sort,\n validate = true,\n serverIndex = 0,\n contentType,\n oasClass,\n } = options\n\n const getOas = async ({ config, logger, formatOptions }: { config: Config; logger: Logger; formatOptions?: FormatOptions }): Promise<Oas> => {\n try {\n // needs to be in a different variable or the catch here will not work(return of a promise instead)\n const oas = await parseFromConfig(config, formatOptions, oasClass)\n\n if (validate) {\n await oas.valdiate()\n }\n\n return oas\n } catch (e) {\n const error = e as Error\n\n logger.emit('warning', error?.message)\n return parseFromConfig(config, {}, oasClass)\n }\n }\n\n return {\n name: pluginOasName,\n options,\n context() {\n const { config, logger } = this\n\n return {\n getOas(formatOptions) {\n return getOas({ config, logger, formatOptions })\n },\n async getSchemas({ includes } = {}) {\n const oas = await this.getOas()\n return getSchemas({ oas, contentType, includes })\n },\n async getBaseURL() {\n const oasInstance = await this.getOas()\n const baseURL = oasInstance.api.servers?.at(serverIndex)?.url\n return baseURL\n },\n contentType,\n }\n },\n async buildStart() {\n if (!output) {\n return\n }\n\n const oas = await getOas({\n config: this.config,\n logger: this.logger,\n formatOptions: {\n filterSet: filter,\n sortSet: sort,\n },\n })\n await oas.dereference()\n\n const root = path.resolve(this.config.root, this.config.output.path)\n const schemas = getSchemas({ oas, contentType })\n\n const mapSchema = async ([name, schema]: [string, OasTypes.SchemaObject]) => {\n const baseName = `${camelCase(name)}.json` as `${string}.json`\n const resolvedPath = path.resolve(root, output.path, baseName)\n\n await this.addFile({\n path: resolvedPath,\n baseName,\n meta: {\n pluginKey: this.plugin.key,\n },\n sources: [\n {\n name: camelCase(name),\n isExportable: false,\n value: JSON.stringify(schema),\n },\n ],\n })\n }\n\n const promises = Object.entries(schemas).map(mapSchema)\n await Promise.all(promises)\n },\n }\n})\n","import type { PluginFactoryOptions } from '@kubb/core'\nimport type { Operation, SchemaObject } from '@kubb/oas'\nimport { App, createRoot } from '@kubb/react'\nimport type { KubbNode } from '@kubb/react/types'\nimport type * as KubbFile from '@kubb/fs/types'\nimport type { OperationsByMethod } from './types.ts'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport type { OperationGenerator } from './OperationGenerator.ts'\nimport type { SchemaGenerator, SchemaGeneratorOptions } from './SchemaGenerator.ts'\n\ntype OperationsProps<TOptions extends PluginFactoryOptions> = {\n instance: Omit<OperationGenerator<TOptions>, 'build'>\n options: TOptions['resolvedOptions']\n operations: Array<Operation>\n operationsByMethod: OperationsByMethod\n}\n\ntype OperationProps<TOptions extends PluginFactoryOptions> = {\n instance: Omit<OperationGenerator<TOptions>, 'build'>\n options: TOptions['resolvedOptions']\n operation: Operation\n}\n\ntype SchemaProps<TOptions extends PluginFactoryOptions> = {\n instance: Omit<SchemaGenerator<SchemaGeneratorOptions, TOptions>, 'build'>\n name: string\n schema: SchemaObject\n options: TOptions['resolvedOptions']\n}\n\nexport type ParserOptions<TOptions extends PluginFactoryOptions> = {\n name: string\n operations?: (props: OperationsProps<TOptions>) => Promise<KubbFile.File[]>\n operation?: (props: OperationProps<TOptions>) => Promise<KubbFile.File[]>\n schema?: (props: SchemaProps<TOptions>) => Promise<KubbFile.File[]>\n}\n\nexport type Parser<TOptions extends PluginFactoryOptions> = ParserOptions<TOptions>\n\nexport function createParser<TOptions extends PluginFactoryOptions>(parseOptions: ParserOptions<TOptions>): Parser<TOptions> {\n return parseOptions\n}\n\nexport type ParserReactOptions<TOptions extends PluginFactoryOptions> = {\n name: string\n Operations?: (props: OperationsProps<TOptions>) => KubbNode\n Operation?: (props: OperationProps<TOptions>) => KubbNode\n Schema?: (props: SchemaProps<TOptions>) => KubbNode\n}\n\nexport function createReactParser<TOptions extends PluginFactoryOptions>(parseOptions: ParserReactOptions<TOptions>): Parser<TOptions> {\n return {\n ...parseOptions,\n async operations({ instance, options, operations, operationsByMethod }) {\n if (!parseOptions.Operations) {\n return []\n }\n\n const { pluginManager, oas, plugin, mode } = instance.context\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n root.render(\n <App pluginManager={pluginManager} plugin={plugin} mode={mode}>\n <Oas oas={oas} operations={operations} generator={instance}>\n <parseOptions.Operations operations={operations} instance={instance} operationsByMethod={operationsByMethod} options={options} />\n </Oas>\n </App>,\n )\n\n return root.files\n },\n async operation({ instance, operation, options }) {\n if (!parseOptions.Operation) {\n return []\n }\n\n const { pluginManager, oas, plugin, mode } = instance.context\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n root.render(\n <App pluginManager={pluginManager} plugin={{ ...plugin, options }} mode={mode}>\n <Oas oas={oas} operations={[operation]} generator={instance}>\n <Oas.Operation operation={operation}>\n <parseOptions.Operation operation={operation} options={options} instance={instance} />\n </Oas.Operation>\n </Oas>\n </App>,\n )\n\n return root.files\n },\n async schema({ instance, schema, name, options }) {\n if (!parseOptions.Schema) {\n return []\n }\n\n const { pluginManager, oas, plugin, mode } = instance.context\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n const tree = instance.parse({ schema, name })\n\n root.render(\n <App pluginManager={pluginManager} plugin={{ ...plugin, options }} mode={mode}>\n <Oas oas={oas}>\n <Oas.Schema name={name} value={schema} tree={tree}>\n <parseOptions.Schema schema={schema} options={options} instance={instance} name={name} />\n </Oas.Schema>\n </Oas>\n </App>,\n )\n\n return root.files\n },\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA;;;ACAA;AAAA,SAA4B,iBAAiB;AAC7C,OAAO,kBAAkB;AADzB;AA6BO,IAAM,qBAAN,cAIG,UAAuD;AAAA,EAJ1D;AAAA;AAAA;AAKL,4CAA0C,CAAC;AAAA;AAAA,EAC3C,IAAI,qBAAyC;AAC3C,WAAO,mBAAK;AAAA,EACd;AAAA,EAEA,IAAI,mBAAmB,OAA2B;AAChD,uBAAK,qBAAsB;AAAA,EAC7B;AAAA,EAsFA,WACE,WACA;AAAA,IACE;AAAA,IACA,cAAc,CAAC,SAAS;AAAA,EAC1B,IAGI,CAAC,GACa;AAClB,UAAM,mBAAmB,KAAK,QAAQ,IAAI,oBAAoB,WAAW,MAAM;AAC/E,UAAM,oBAAoB,KAAK,QAAQ,IAAI,oBAAoB,WAAW,OAAO;AACjF,UAAM,qBAAqB,KAAK,QAAQ,IAAI,oBAAoB,WAAW,QAAQ;AACnF,UAAM,gBAAgB,KAAK,QAAQ,IAAI,iBAAiB,SAAS;AACjE,UAAM,qBACJ,iBAAkB,UAAU,OAAO,aAAa,OAAO,KAAK,UAAU,OAAO,SAAS,EAAE,KAAK,CAAC,QAAQ,IAAI,WAAW,GAAG,CAAC,KAAM;AACjI,UAAM,iBAAiB,KAAK,QAAQ,IAAI,kBAAkB,WAAW,kBAAkB;AACvF,UAAM,cAAc,UAAU,uBAAuB,EAAE,IAAI,CAAC,eAAe;AACzE,UAAI,OAAO;AACX,UAAI,SAAS,WAAW;AACtB,eAAO;AAAA,MACT;AAEA,YAAM,SAAS,KAAK,QAAQ,IAAI,kBAAkB,WAAW,UAAU;AAEvE,aAAO;AAAA,QACL,MAAM,YAAY,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,IAAI,IAAI,EAAE,CAAC;AAAA,QAClF,aAAc,UAAU,wBAAwB,UAAU,GAA+B;AAAA,QACzF;AAAA,QACA;AAAA,QACA,eAAe,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,EAAE;AAAA,QACtE,YAAY,SAAS,UAAU,SAAY,OAAO,UAAU;AAAA,QAC5D,MAAM,QAAQ,aAAa,OAAO,KAAK,OAAO,UAAU,IAAI;AAAA,MAC9D;AAAA,IACF,CAAC;AAED,WAAO;AAAA,MACL,YAAY,mBACR;AAAA,QACE,MAAM,YAAY,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,aAAa,CAAC;AAAA,QACrF;AAAA,QACA,eAAe,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,EAAE;AAAA,QACtE,QAAQ;AAAA,QACR,MAAM,iBAAiB,aAAa,OAAO,KAAK,iBAAiB,UAAU,IAAI;AAAA,MACjF,IACA;AAAA,MACJ,aAAa,oBACT;AAAA,QACE,MAAM,YAAY,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,cAAc,CAAC;AAAA,QACtF;AAAA,QACA,eAAe,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,EAAE;AAAA,QACtE,QAAQ;AAAA,QACR,MAAM,kBAAkB,aAAa,OAAO,KAAK,kBAAkB,UAAU,IAAI,CAAC;AAAA,MACpF,IACA;AAAA,MACJ,cAAc,qBACV;AAAA,QACE,MAAM,YAAY,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,eAAe,CAAC;AAAA,QACvF;AAAA,QACA,eAAe,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,EAAE;AAAA,QACtE,QAAQ;AAAA,QACR,MAAM,mBAAmB,aAAa,OAAO,KAAK,mBAAmB,UAAU,IAAI;AAAA,MACrF,IACA;AAAA,MACJ,SAAS,gBACL;AAAA,QACE,MAAM,YAAY,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,IAAI,UAAU,WAAW,QAAQ,iBAAiB,iBAAiB,EAAE,CAAC;AAAA,QAC7I,aAAc,UAAU,OAAO,aAA4C;AAAA,QAC3E;AAAA,QACA,eAAe,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,EAAE;AAAA,QACtE,QAAQ;AAAA,QACR,MAAM,cAAc,aAAa,OAAO,KAAK,cAAc,UAAU,IAAI;AAAA,QACzE,YAAY,cAAc,aACtB,OAAO,KAAK,cAAc,UAAU,EAAE,OAAO,CAAC,QAAQ;AACpD,gBAAM,OAAO,cAAc,aAAa,GAAG;AAE3C,iBAAO,MAAM;AAAA,QACf,CAAC,IACD;AAAA,MACN,IACA;AAAA,MACJ,UAAU;AAAA,QACR,MAAM,YAAY,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,IAAI,UAAU,WAAW,QAAQ,kBAAkB,kBAAkB,EAAE,CAAC;AAAA,QAC/I,aAAa,UAAU,wBAAwB,kBAAkB,GAAG,GAAG,CAAC,GAAG;AAAA,QAC3E;AAAA,QACA,eAAe,aAAa,WAAW,GAAG,UAAU,eAAe,CAAC,EAAE;AAAA,QACtE,QAAQ;AAAA,QACR,YAAY,OAAO,kBAAkB;AAAA,QACrC,MAAM,gBAAgB,aAAa,OAAO,KAAK,eAAe,UAAU,IAAI;AAAA,QAC5E,YAAY,gBAAgB,aACxB,OAAO,KAAK,eAAe,UAAU,EAAE,OAAO,CAAC,QAAQ;AACrD,gBAAM,OAAO,eAAe,aAAa,GAAG;AAC5C,iBAAO,MAAM;AAAA,QACf,CAAC,IACD;AAAA,MACN;AAAA,MACA,QAAQ,YAAY,OAAO,CAAC,SAAS,KAAK,YAAY,SAAS,EAAE,WAAW,GAAG,KAAK,KAAK,YAAY,SAAS,EAAE,WAAW,GAAG,CAAC;AAAA,MAC/H;AAAA,IACF;AAAA,EACF;AAAA,EAEA,MAAM,SAAS,SAA2G;AACxH,UAAM,EAAE,IAAI,IAAI,KAAK;AAErB,UAAM,QAAQ,IAAI,SAAS;AAC3B,SAAK,qBAAqB,OAAO,QAAQ,KAAK,EAAE,OAAO,CAAC,KAAK,CAACA,OAAM,MAAM,MAAM;AAC9E,YAAM,UAAU,OAAO,KAAK,MAAM;AAElC,cAAQ,QAAQ,CAACC,YAAW;AAC1B,cAAM,YAAY,IAAI,UAAUD,OAAMC,OAAM;AAC5C,YAAI,WAAW;AACb,gBAAM,aAAa,sBAAK,8CAAL,WAAiB,WAAWA;AAC/C,gBAAM,aAAa,KAAK,QAAQ,UAAU,sBAAK,8CAAL,WAAiB,WAAWA,WAAU;AAEhF,cAAI,cAAc,CAAC,YAAY;AAC7B,gBAAI,CAAC,IAAID,KAAI,GAAG;AACd,kBAAIA,KAAI,IAAI,CAAC;AAAA,YACf;AACA,gBAAIA,KAAI,IAAI;AAAA,cACV,GAAG,IAAIA,KAAI;AAAA,cACX,CAACC,OAAM,GAAG;AAAA,gBACR;AAAA,gBACA,SAAS,KAAK,WAAW,SAAS;AAAA,cACpC;AAAA,YACF;AAAA,UACF;AAAA,QACF;AAAA,MACF,CAAC;AAED,aAAO;AAAA,IACT,GAAG,CAAC,CAAuB;AAE3B,UAAM,WAAW,OAAO,KAAK,KAAK,kBAAkB,EAAE,OAAO,CAAC,KAAKD,UAAS;AAC1E,YAAM,UAAU,KAAK,mBAAmBA,KAAI,IAAK,OAAO,KAAK,KAAK,mBAAmBA,KAAI,CAAE,IAAqB,CAAC;AAEjH,cAAQ,QAAQ,CAAC,WAAW;AAC1B,cAAM,EAAE,UAAU,IAAI,KAAK,mBAAmBA,KAAI,IAAI,MAAM;AAC5D,cAAM,UAAU,sBAAK,8CAAL,WAAiB,WAAW;AAE5C,cAAM,eAAe,KAAK,MAA2B;AAErD,YAAI,OAAO,iBAAiB,YAAY;AACtC,gBAAM,gBAAgB,cAAc,KAAK,MAAM,WAAW;AAAA,YACxD,GAAG,KAAK;AAAA,YACR,GAAG;AAAA,UACL,CAAC;AAED,cAAI,eAAe;AACjB,gBAAI,KAAK,aAAa;AAAA,UACxB;AAAA,QACF;AAEA,cAAM,mBAAmB,KAAK,UAAU,KAAK,MAAM,WAAW;AAAA,UAC5D,GAAG,KAAK;AAAA,UACR,GAAG;AAAA,QACL,CAAC;AAED,YAAI,kBAAkB;AACpB,cAAI,KAAK,gBAAgB;AAAA,QAC3B;AAEA,iBAAS,QAAQ,CAAC,WAAW;AAC3B,gBAAM,UAAU,OAAO,YAAY;AAAA,YACjC,UAAU;AAAA,YACV;AAAA,YACA,SAAS;AAAA,cACP,GAAG,KAAK;AAAA,cACR,GAAG;AAAA,YACL;AAAA,UACF,CAAQ;AAER,cAAI,SAAS;AACX,gBAAI,KAAK,OAAO;AAAA,UAClB;AAAA,QACF,CAAC;AAAA,MACH,CAAC;AAED,aAAO;AAAA,IACT,GAAG,CAAC,CAAuC;AAE3C,UAAM,aAAa,OAAO,OAAO,KAAK,kBAAkB,EAAE,IAAI,CAAC,SAAS,OAAO,OAAO,IAAI,EAAE,IAAI,CAACE,UAASA,MAAK,SAAS,CAAC;AAEzH,aAAS,KAAK,KAAK,IAAI,WAAW,KAAK,EAAE,OAAO,OAAO,GAAG,KAAK,kBAAkB,CAAC;AAElF,aAAS,QAAQ,CAAC,WAAW;AAC3B,YAAM,UAAU,OAAO,aAAa;AAAA,QAClC,UAAU;AAAA,QACV,YAAY,WAAW,KAAK,EAAE,OAAO,OAAO;AAAA,QAC5C,oBAAoB,KAAK;AAAA,QACzB,SAAS,KAAK;AAAA,MAChB,CAAQ;AAER,UAAI,SAAS;AACX,iBAAS,KAAK,OAAO;AAAA,MACvB;AAAA,IACF,CAAC;AAED,UAAM,QAAQ,MAAM,QAAQ,IAAI,QAAQ;AAGxC,WAAO,MAAM,KAAK,EAAE,OAAO,OAAO;AAAA,EACpC;AAAA;AAAA;AAAA;AAAA,EAKA,MAAM,UAAU,WAAsB,SAAqD;AACzF,WAAO,CAAC;AAAA,EACV;AAAA;AAAA;AAAA;AAAA,EAKA,MAAM,IAAI,WAAsB,SAAqD;AACnF,WAAO,CAAC;AAAA,EACV;AAAA;AAAA;AAAA;AAAA,EAKA,MAAM,KAAK,WAAsB,SAAqD;AACpF,WAAO,CAAC;AAAA,EACV;AAAA;AAAA;AAAA;AAAA,EAIA,MAAM,MAAM,WAAsB,SAAqD;AACrF,WAAO,CAAC;AAAA,EACV;AAAA;AAAA;AAAA;AAAA,EAKA,MAAM,IAAI,WAAsB,SAAqD;AACnF,WAAO,CAAC;AAAA,EACV;AAAA;AAAA;AAAA;AAAA,EAKA,MAAM,OAAO,WAAsB,SAAqD;AACtF,WAAO,CAAC;AAAA,EACV;AAAA;AAAA;AAAA;AAAA,EAKA,MAAM,IAAI,YAAyB,OAA6D;AAC9F,WAAO,CAAC;AAAA,EACV;AACF;AAvVE;AALK;AAcL,gBAAW,SAAC,WAAsB,QAAuC;AACvE,QAAM,EAAE,WAAW,CAAC,EAAE,IAAI,KAAK;AAE/B,SACE,SAAS,KAAK,CAAC,EAAE,SAAS,KAAK,MAAM;AACnC,QAAI,SAAS,OAAO;AAClB,aAAO,CAAC,CAAC,UAAU,QAAQ,EAAE,CAAC,GAAG,KAAK,MAAM,OAAO;AAAA,IACrD;AAEA,QAAI,SAAS,eAAe;AAC1B,aAAO,CAAC,CAAC,UAAU,eAAe,EAAE,MAAM,OAAO;AAAA,IACnD;AAEA,QAAI,SAAS,QAAQ;AACnB,aAAO,CAAC,CAAC,UAAU,KAAK,MAAM,OAAO;AAAA,IACvC;AAEA,QAAI,SAAS,UAAU;AACrB,aAAO,CAAC,CAAC,OAAO,MAAM,OAAO;AAAA,IAC/B;AAEA,WAAO;AAAA,EACT,CAAC,GAAG,WAAW,CAAC;AAEpB;AAAA;AAAA;AAAA;AAAA;AAMA,gBAAW,SAAC,WAAsB,QAA6B;AAC7D,QAAM,EAAE,UAAU,CAAC,EAAE,IAAI,KAAK;AAC9B,MAAI,UAAU;AAEd,UAAQ,QAAQ,CAAC,EAAE,SAAS,KAAK,MAAM;AACrC,QAAI,SAAS,SAAS,CAAC,SAAS;AAC9B,gBAAU,CAAC,CAAC,UAAU,QAAQ,EAAE,CAAC,GAAG,KAAK,MAAM,OAAO;AAAA,IACxD;AAEA,QAAI,SAAS,iBAAiB,CAAC,SAAS;AACtC,gBAAU,CAAC,CAAC,UAAU,eAAe,EAAE,MAAM,OAAO;AAAA,IACtD;AAEA,QAAI,SAAS,UAAU,CAAC,SAAS;AAC/B,gBAAU,CAAC,CAAC,UAAU,KAAK,MAAM,OAAO;AAAA,IAC1C;AAEA,QAAI,SAAS,YAAY,CAAC,SAAS;AACjC,gBAAU,CAAC,CAAC,OAAO,MAAM,OAAO;AAAA,IAClC;AAAA,EACF,CAAC;AAED,SAAO;AACT;AAAA;AAAA;AAAA;AAAA;AAMA,gBAAW,SAAC,WAAsB,QAA6B;AAC7D,QAAM,EAAE,UAAU,CAAC,EAAE,IAAI,KAAK;AAC9B,MAAI,UAAU;AAEd,UAAQ,QAAQ,CAAC,EAAE,SAAS,KAAK,MAAM;AACrC,QAAI,SAAS,SAAS,CAAC,SAAS;AAC9B,gBAAU,CAAC,CAAC,UAAU,QAAQ,EAAE,CAAC,GAAG,KAAK,MAAM,OAAO;AAAA,IACxD;AAEA,QAAI,SAAS,iBAAiB,CAAC,SAAS;AACtC,gBAAU,CAAC,CAAC,UAAU,eAAe,EAAE,MAAM,OAAO;AAAA,IACtD;AAEA,QAAI,SAAS,UAAU,CAAC,SAAS;AAC/B,gBAAU,CAAC,CAAC,UAAU,KAAK,MAAM,OAAO;AAAA,IAC1C;AAEA,QAAI,SAAS,YAAY,CAAC,SAAS;AACjC,gBAAU,CAAC,CAAC,OAAO,MAAM,OAAO;AAAA,IAClC;AAAA,EACF,CAAC;AAED,SAAO;AACT;;;AC7HF;AAAA,OAAO,UAAU;AAEjB,SAAS,oBAAoB;AAC7B,SAAS,iBAAiB;AAWnB,IAAM,gBAAgB;AAEtB,IAAM,YAAY,aAAwB,CAAC,YAAY;AAC5D,QAAM;AAAA,IACJ,SAAS,EAAE,MAAM,WAAW,QAAQ,MAAM;AAAA,IAC1C,oBAAoB;AAAA,IACpB,kBAAkB;AAAA,IAClB,WAAW;AAAA,IACX,cAAc;AAAA,IACd;AAAA,IACA;AAAA,EACF,IAAI;AAEJ,QAAM,SAAS,OAAO,EAAE,QAAQ,QAAQ,cAAc,MAAuF;AAC3I,QAAI;AAEF,YAAM,MAAM,MAAM,gBAAgB,QAAQ,eAAe,QAAQ;AAEjE,UAAI,UAAU;AACZ,cAAM,IAAI,SAAS;AAAA,MACrB;AAEA,aAAO;AAAA,IACT,SAAS,GAAG;AACV,YAAM,QAAQ;AAEd,aAAO,KAAK,WAAW,OAAO,OAAO;AACrC,aAAO,gBAAgB,QAAQ,CAAC,GAAG,QAAQ;AAAA,IAC7C;AAAA,EACF;AAEA,SAAO;AAAA,IACL,MAAM;AAAA,IACN;AAAA,IACA,UAAU;AACR,YAAM,EAAE,QAAQ,OAAO,IAAI;AAE3B,aAAO;AAAA,QACL,OAAO,eAAe;AACpB,iBAAO,OAAO,EAAE,QAAQ,QAAQ,cAAc,CAAC;AAAA,QACjD;AAAA,QACA,MAAM,WAAW,EAAE,SAAS,IAAI,CAAC,GAAG;AAClC,gBAAM,MAAM,MAAM,KAAK,OAAO;AAC9B,iBAAO,WAAW,EAAE,KAAK,aAAa,SAAS,CAAC;AAAA,QAClD;AAAA,QACA,MAAM,aAAa;AACjB,gBAAM,cAAc,MAAM,KAAK,OAAO;AACtC,gBAAM,UAAU,YAAY,IAAI,SAAS,GAAG,WAAW,GAAG;AAC1D,iBAAO;AAAA,QACT;AAAA,QACA;AAAA,MACF;AAAA,IACF;AAAA,IACA,MAAM,aAAa;AACjB,UAAI,CAAC,QAAQ;AACX;AAAA,MACF;AAEA,YAAM,MAAM,MAAM,OAAO;AAAA,QACvB,QAAQ,KAAK;AAAA,QACb,QAAQ,KAAK;AAAA,QACb,eAAe;AAAA,UACb,WAAW;AAAA,UACX,SAAS;AAAA,QACX;AAAA,MACF,CAAC;AACD,YAAM,IAAI,YAAY;AAEtB,YAAM,OAAO,KAAK,QAAQ,KAAK,OAAO,MAAM,KAAK,OAAO,OAAO,IAAI;AACnE,YAAM,UAAU,WAAW,EAAE,KAAK,YAAY,CAAC;AAE/C,YAAM,YAAY,OAAO,CAAC,MAAM,MAAM,MAAuC;AAC3E,cAAM,WAAW,GAAG,UAAU,IAAI,CAAC;AACnC,cAAM,eAAe,KAAK,QAAQ,MAAM,OAAO,MAAM,QAAQ;AAE7D,cAAM,KAAK,QAAQ;AAAA,UACjB,MAAM;AAAA,UACN;AAAA,UACA,MAAM;AAAA,YACJ,WAAW,KAAK,OAAO;AAAA,UACzB;AAAA,UACA,SAAS;AAAA,YACP;AAAA,cACE,MAAM,UAAU,IAAI;AAAA,cACpB,cAAc;AAAA,cACd,OAAO,KAAK,UAAU,MAAM;AAAA,YAC9B;AAAA,UACF;AAAA,QACF,CAAC;AAAA,MACH;AAEA,YAAM,WAAW,OAAO,QAAQ,OAAO,EAAE,IAAI,SAAS;AACtD,YAAM,QAAQ,IAAI,QAAQ;AAAA,IAC5B;AAAA,EACF;AACF,CAAC;;;AC7GD;AAEA,SAAS,KAAK,kBAAkB;AAgEpB;AA3BL,SAAS,aAAoD,cAAyD;AAC3H,SAAO;AACT;AASO,SAAS,kBAAyD,cAA8D;AACrI,SAAO;AAAA,IACL,GAAG;AAAA,IACH,MAAM,WAAW,EAAE,UAAU,SAAS,YAAY,mBAAmB,GAAG;AACtE,UAAI,CAAC,aAAa,YAAY;AAC5B,eAAO,CAAC;AAAA,MACV;AAEA,YAAM,EAAE,eAAe,KAAK,QAAQ,KAAK,IAAI,SAAS;AACtD,YAAM,OAAO,WAAW;AAAA,QACtB,QAAQ,cAAc;AAAA,MACxB,CAAC;AAED,WAAK;AAAA,QACH,4CAAC,OAAI,eAA8B,QAAgB,MACjD,sDAAC,OAAI,KAAU,YAAwB,WAAW,UAChD,sDAAC,aAAa,YAAb,EAAwB,YAAwB,UAAoB,oBAAwC,SAAkB,GACjI,GACF;AAAA,MACF;AAEA,aAAO,KAAK;AAAA,IACd;AAAA,IACA,MAAM,UAAU,EAAE,UAAU,WAAW,QAAQ,GAAG;AAChD,UAAI,CAAC,aAAa,WAAW;AAC3B,eAAO,CAAC;AAAA,MACV;AAEA,YAAM,EAAE,eAAe,KAAK,QAAQ,KAAK,IAAI,SAAS;AACtD,YAAM,OAAO,WAAW;AAAA,QACtB,QAAQ,cAAc;AAAA,MACxB,CAAC;AAED,WAAK;AAAA,QACH,4CAAC,OAAI,eAA8B,QAAQ,EAAE,GAAG,QAAQ,QAAQ,GAAG,MACjE,sDAAC,OAAI,KAAU,YAAY,CAAC,SAAS,GAAG,WAAW,UACjD,sDAAC,IAAI,WAAJ,EAAc,WACb,sDAAC,aAAa,WAAb,EAAuB,WAAsB,SAAkB,UAAoB,GACtF,GACF,GACF;AAAA,MACF;AAEA,aAAO,KAAK;AAAA,IACd;AAAA,IACA,MAAM,OAAO,EAAE,UAAU,QAAQ,MAAM,QAAQ,GAAG;AAChD,UAAI,CAAC,aAAa,QAAQ;AACxB,eAAO,CAAC;AAAA,MACV;AAEA,YAAM,EAAE,eAAe,KAAK,QAAQ,KAAK,IAAI,SAAS;AACtD,YAAM,OAAO,WAAW;AAAA,QACtB,QAAQ,cAAc;AAAA,MACxB,CAAC;AAED,YAAM,OAAO,SAAS,MAAM,EAAE,QAAQ,KAAK,CAAC;AAE5C,WAAK;AAAA,QACH,4CAAC,OAAI,eAA8B,QAAQ,EAAE,GAAG,QAAQ,QAAQ,GAAG,MACjE,sDAAC,OAAI,KACH,sDAAC,IAAI,QAAJ,EAAW,MAAY,OAAO,QAAQ,MACrC,sDAAC,aAAa,QAAb,EAAoB,QAAgB,SAAkB,UAAoB,MAAY,GACzF,GACF,GACF;AAAA,MACF;AAEA,aAAO,KAAK;AAAA,IACd;AAAA,EACF;AACF;","names":["path","method","item"]}
|
package/dist/utils.cjs
CHANGED
|
@@ -41,7 +41,7 @@ async function getGroupedByTagFiles({ logger, files, plugin, template, exportAs,
|
|
|
41
41
|
return name === plugin.name;
|
|
42
42
|
}).map((file) => {
|
|
43
43
|
if (!_optionalChain([file, 'access', _4 => _4.meta, 'optionalAccess', _5 => _5.tag])) {
|
|
44
|
-
_optionalChain([logger, 'optionalAccess', _6 => _6.emit, 'call', _7 => _7("debug", [`Could not find a tagName for ${JSON.stringify(file, void 0, 2)}`])]);
|
|
44
|
+
_optionalChain([logger, 'optionalAccess', _6 => _6.emit, 'call', _7 => _7("debug", { logs: [`Could not find a tagName for ${JSON.stringify(file, void 0, 2)}`] })]);
|
|
45
45
|
return;
|
|
46
46
|
}
|
|
47
47
|
const tag = _optionalChain([file, 'access', _8 => _8.meta, 'optionalAccess', _9 => _9.tag]) && _transformers2.default.camelCase(file.meta.tag);
|
|
@@ -51,7 +51,6 @@ async function getGroupedByTagFiles({ logger, files, plugin, template, exportAs,
|
|
|
51
51
|
return {
|
|
52
52
|
baseName: "index.ts",
|
|
53
53
|
path: _path.resolve.call(void 0, root, output.path, "index.ts"),
|
|
54
|
-
source: "",
|
|
55
54
|
exports: [
|
|
56
55
|
{
|
|
57
56
|
path: output.extName ? `${tagPath}/index${output.extName}` : `${tagPath}/index`,
|
|
@@ -62,7 +61,7 @@ async function getGroupedByTagFiles({ logger, files, plugin, template, exportAs,
|
|
|
62
61
|
meta: {
|
|
63
62
|
pluginKey: plugin.key
|
|
64
63
|
},
|
|
65
|
-
|
|
64
|
+
sources: []
|
|
66
65
|
};
|
|
67
66
|
}
|
|
68
67
|
}).filter(Boolean);
|
package/dist/utils.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/kubb/kubb/packages/plugin-oas/dist/utils.cjs","../src/utils/index.ts","../src/utils/getComments.ts","../src/utils/getGroupedByTagFiles.ts","../src/utils/getParams.ts","../src/utils/refSorter.ts"],"names":[],"mappings":"AAAA;AACE;AACF,wDAA6B;AAC7B;AACE;AACA;AACA;AACF,wDAA6B;AAC7B;AACA;ACTA,8CAAA,CAAA;ADWA;AACA;AEZA,8CAAA,CAAA;AAAA,mHAAyB;AACzB,yCAAwB;AAIjB,SAAS,WAAA,CAAY,SAAA,EAAgC;AAC1D,EAAA,OAAO;AAAA,IACL,SAAA,CAAU,cAAA,CAAe,EAAA,GAAK,CAAA,aAAA,EAAgB,SAAA,CAAU,cAAA,CAAe,CAAC,CAAA,CAAA;AACZ,IAAA;AACF,IAAA;AAC9B,IAAA;AAGU,EAAA;AAC1C;AFU6E;AACA;AGzB7E;AAAwB;AAEI;AACH;AACM;AACC;
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/kubb/kubb/packages/plugin-oas/dist/utils.cjs","../src/utils/index.ts","../src/utils/getComments.ts","../src/utils/getGroupedByTagFiles.ts","../src/utils/getParams.ts","../src/utils/refSorter.ts"],"names":[],"mappings":"AAAA;AACE;AACF,wDAA6B;AAC7B;AACE;AACA;AACA;AACF,wDAA6B;AAC7B;AACA;ACTA,8CAAA,CAAA;ADWA;AACA;AEZA,8CAAA,CAAA;AAAA,mHAAyB;AACzB,yCAAwB;AAIjB,SAAS,WAAA,CAAY,SAAA,EAAgC;AAC1D,EAAA,OAAO;AAAA,IACL,SAAA,CAAU,cAAA,CAAe,EAAA,GAAK,CAAA,aAAA,EAAgB,SAAA,CAAU,cAAA,CAAe,CAAC,CAAA,CAAA;AACZ,IAAA;AACF,IAAA;AAC9B,IAAA;AAGU,EAAA;AAC1C;AFU6E;AACA;AGzB7E;AAAwB;AAEI;AACH;AACM;AACC;AAmC8C;AACpC,EAAA;AACY,EAAA;AAEL,EAAA;AACrC,IAAA;AACV,EAAA;AAGoB,EAAA;AACqB,IAAA;AACd,IAAA;AAEe,EAAA;AACjB,IAAA;AACiD,sBAAA;AAEpE,MAAA;AACF,IAAA;AAEkE,IAAA;AACE,IAAA;AACpB,IAAA;AAEnC,IAAA;AACJ,MAAA;AACK,QAAA;AACiC,QAAA;AAClC,QAAA;AACP,UAAA;AACkE,YAAA;AACvD,YAAA;AACH,YAAA;AACR,UAAA;AACF,QAAA;AACM,QAAA;AACc,UAAA;AACpB,QAAA;AACU,QAAA;AACZ,MAAA;AACF,IAAA;AAEa,EAAA;AACnB;AHf6E;AACA;AIrE7E;AAAkC;AAMR;AAQxB;AACU,EAAA;AACR,EAAA;AAKmB;AAC0C,EAAA;AACrD,IAAA;AACV,EAAA;AAE2E,EAAA;AACjC,IAAA;AACR,IAAA;AAC9B,MAAA;AACW,MAAA;AAC2B,MAAA;AACe,MAAA;AACvD,IAAA;AAEmC,IAAA;AACpC,EAAA;AACH;AAQE;AACoE,EAAA;AACnC,IAAA;AACD,MAAA;AACZ,QAAA;AACH,QAAA;AACK,QAAA;AAClB,MAAA;AACF,IAAA;AAEO,IAAA;AACM,EAAA;AACjB;AJ8C6E;AACA;AKxG7E;AAIoE;AACG,EAAA;AAC5D,IAAA;AACT,EAAA;AACqE,EAAA;AAC5D,IAAA;AACT,EAAA;AACO,EAAA;AACT;ALuG6E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"/home/runner/work/kubb/kubb/packages/plugin-oas/dist/utils.cjs","sourcesContent":[null,"export { getComments } from './getComments.ts'\nexport { getGroupedByTagFiles } from './getGroupedByTagFiles.ts'\nexport { getASTParams, getPathParams } from './getParams.ts'\nexport { getSchemaFactory } from './getSchemaFactory.ts'\nexport type { GetSchemasProps } from './getSchemas.ts'\nexport { getSchemas } from './getSchemas.ts'\nexport { refsSorter } from './refSorter.ts'\nexport { parseFromConfig } from './parseFromConfig.ts'\n","import transformers from '@kubb/core/transformers'\nimport { URLPath } from '@kubb/core/utils'\n\nimport type { Operation } from '@kubb/oas'\n\nexport function getComments(operation: Operation): string[] {\n return [\n operation.getDescription() && `@description ${operation.getDescription()}`,\n operation.getSummary() && `@summary ${operation.getSummary()}`,\n operation.path && `@link ${new URLPath(operation.path).URL}`,\n operation.isDeprecated() && '@deprecated',\n ]\n .filter(Boolean)\n .map((text) => transformers.trim(text))\n}\n","import { resolve } from 'node:path'\n\nimport { FileManager } from '@kubb/core'\nimport transformers from '@kubb/core/transformers'\nimport { renderTemplate } from '@kubb/core/utils'\nimport { getRelativePath } from '@kubb/fs'\n\nimport type { Plugin } from '@kubb/core'\nimport type { Logger } from '@kubb/core/logger'\nimport type * as KubbFile from '@kubb/fs/types'\n\ntype Options = {\n logger: Logger\n files: Array<KubbFile.File<FileMeta>>\n plugin: Plugin\n template: string\n exportAs: string\n /**\n * Root based on root and output.path specified in the config\n */\n root: string\n /**\n * Output for plugin\n */\n output: {\n path: string\n exportAs?: string\n extName?: KubbFile.Extname\n exportType?: 'barrel' | 'barrelNamed' | false\n }\n}\n\ntype FileMeta = {\n pluginKey?: Plugin['key']\n tag?: string\n}\n\n/**\n * @deprecated //TODO replace by getIndexFiles?\n */\nexport async function getGroupedByTagFiles({ logger, files, plugin, template, exportAs, root, output }: Options): Promise<KubbFile.File<FileMeta>[]> {\n const { path, exportType = 'barrel' } = output\n const mode = FileManager.getMode(resolve(root, path))\n\n if (mode === 'single' || exportType === false) {\n return []\n }\n\n return files\n .filter((file) => {\n const name = file.meta?.pluginKey?.[0]\n return name === plugin.name\n })\n .map((file: KubbFile.File<FileMeta>) => {\n if (!file.meta?.tag) {\n logger?.emit('debug', { logs: [`Could not find a tagName for ${JSON.stringify(file, undefined, 2)}`] })\n\n return\n }\n\n const tag = file.meta?.tag && transformers.camelCase(file.meta.tag)\n const tagPath = getRelativePath(resolve(root, output.path), resolve(root, renderTemplate(template, { tag })))\n const tagName = renderTemplate(exportAs, { tag })\n\n if (tagName) {\n return {\n baseName: 'index.ts' as const,\n path: resolve(root, output.path, 'index.ts'),\n exports: [\n {\n path: output.extName ? `${tagPath}/index${output.extName}` : `${tagPath}/index`,\n asAlias: true,\n name: tagName,\n },\n ],\n meta: {\n pluginKey: plugin.key,\n },\n sources: [],\n }\n }\n })\n .filter(Boolean)\n}\n","import { isParameterObject } from '@kubb/oas'\n\nimport type { FunctionParamsAST } from '@kubb/core/utils'\nimport type { OasTypes } from '@kubb/oas'\nimport type { Params } from '@kubb/react/types'\nimport type { OperationSchema } from '../types.ts'\nimport { camelCase } from '@kubb/core/transformers'\n/**\n *\n * @deprecated\n * TODO move to operationManager hook\n */\nexport function getASTParams(\n operationSchema: OperationSchema | undefined,\n {\n typed = false,\n override,\n }: {\n typed?: boolean\n override?: (data: FunctionParamsAST) => FunctionParamsAST\n } = {},\n): FunctionParamsAST[] {\n if (!operationSchema || !operationSchema.schema.properties || !operationSchema.name) {\n return []\n }\n\n return Object.entries(operationSchema.schema.properties).map(([name, schema]: [string, OasTypes.SchemaObject]) => {\n const isParam = isParameterObject(schema)\n const data: FunctionParamsAST = {\n name,\n enabled: !!name,\n required: isParam ? schema.required : true,\n type: typed ? `${operationSchema.name}[\"${name}\"]` : undefined,\n }\n\n return override ? override(data) : data\n })\n}\n\nexport function getPathParams(\n operationSchema: OperationSchema | undefined,\n options: {\n typed?: boolean\n override?: (data: FunctionParamsAST) => FunctionParamsAST\n } = {},\n) {\n return getASTParams(operationSchema, options).reduce((acc, curr) => {\n if (curr.name && curr.enabled) {\n acc[camelCase(curr.name)] = {\n default: curr.default,\n type: curr.type,\n optional: !curr.required,\n }\n }\n\n return acc\n }, {} as Params)\n}\n","import type { Refs } from '../types.ts'\n\ntype Generated = { import: { refs: Refs; name: string } }\n\nexport function refsSorter<T extends Generated>(a: T, b: T): number {\n if (Object.keys(a.import.refs)?.length < Object.keys(b.import.refs)?.length) {\n return -1\n }\n if (Object.keys(a.import.refs)?.length > Object.keys(b.import.refs)?.length) {\n return 1\n }\n return 0\n}\n"]}
|
package/dist/utils.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ import { Plugin, Config } from '@kubb/core';
|
|
|
3
3
|
import { Logger } from '@kubb/core/logger';
|
|
4
4
|
import * as KubbFile from '@kubb/fs/types';
|
|
5
5
|
import { FunctionParamsAST } from '@kubb/core/utils';
|
|
6
|
-
import { Params } from '@kubb/react';
|
|
6
|
+
import { Params } from '@kubb/react/types';
|
|
7
7
|
import { d as OperationSchema, b as Refs } from './types-C2RXaY0_.cjs';
|
|
8
8
|
export { G as GetSchemasProps, h as getSchemas } from './types-C2RXaY0_.cjs';
|
|
9
9
|
import { FormatOptions } from '@kubb/oas/parser';
|
|
@@ -34,6 +34,9 @@ type FileMeta = {
|
|
|
34
34
|
pluginKey?: Plugin['key'];
|
|
35
35
|
tag?: string;
|
|
36
36
|
};
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated //TODO replace by getIndexFiles?
|
|
39
|
+
*/
|
|
37
40
|
declare function getGroupedByTagFiles({ logger, files, plugin, template, exportAs, root, output }: Options): Promise<KubbFile.File<FileMeta>[]>;
|
|
38
41
|
|
|
39
42
|
/**
|
package/dist/utils.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { Plugin, Config } from '@kubb/core';
|
|
|
3
3
|
import { Logger } from '@kubb/core/logger';
|
|
4
4
|
import * as KubbFile from '@kubb/fs/types';
|
|
5
5
|
import { FunctionParamsAST } from '@kubb/core/utils';
|
|
6
|
-
import { Params } from '@kubb/react';
|
|
6
|
+
import { Params } from '@kubb/react/types';
|
|
7
7
|
import { d as OperationSchema, b as Refs } from './types-C2RXaY0_.js';
|
|
8
8
|
export { G as GetSchemasProps, h as getSchemas } from './types-C2RXaY0_.js';
|
|
9
9
|
import { FormatOptions } from '@kubb/oas/parser';
|
|
@@ -34,6 +34,9 @@ type FileMeta = {
|
|
|
34
34
|
pluginKey?: Plugin['key'];
|
|
35
35
|
tag?: string;
|
|
36
36
|
};
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated //TODO replace by getIndexFiles?
|
|
39
|
+
*/
|
|
37
40
|
declare function getGroupedByTagFiles({ logger, files, plugin, template, exportAs, root, output }: Options): Promise<KubbFile.File<FileMeta>[]>;
|
|
38
41
|
|
|
39
42
|
/**
|
package/dist/utils.js
CHANGED
|
@@ -41,7 +41,7 @@ async function getGroupedByTagFiles({ logger, files, plugin, template, exportAs,
|
|
|
41
41
|
return name === plugin.name;
|
|
42
42
|
}).map((file) => {
|
|
43
43
|
if (!file.meta?.tag) {
|
|
44
|
-
logger?.emit("debug", [`Could not find a tagName for ${JSON.stringify(file, void 0, 2)}`]);
|
|
44
|
+
logger?.emit("debug", { logs: [`Could not find a tagName for ${JSON.stringify(file, void 0, 2)}`] });
|
|
45
45
|
return;
|
|
46
46
|
}
|
|
47
47
|
const tag = file.meta?.tag && transformers2.camelCase(file.meta.tag);
|
|
@@ -51,7 +51,6 @@ async function getGroupedByTagFiles({ logger, files, plugin, template, exportAs,
|
|
|
51
51
|
return {
|
|
52
52
|
baseName: "index.ts",
|
|
53
53
|
path: resolve(root, output.path, "index.ts"),
|
|
54
|
-
source: "",
|
|
55
54
|
exports: [
|
|
56
55
|
{
|
|
57
56
|
path: output.extName ? `${tagPath}/index${output.extName}` : `${tagPath}/index`,
|
|
@@ -62,7 +61,7 @@ async function getGroupedByTagFiles({ logger, files, plugin, template, exportAs,
|
|
|
62
61
|
meta: {
|
|
63
62
|
pluginKey: plugin.key
|
|
64
63
|
},
|
|
65
|
-
|
|
64
|
+
sources: []
|
|
66
65
|
};
|
|
67
66
|
}
|
|
68
67
|
}).filter(Boolean);
|
package/dist/utils.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/utils/index.ts","../src/utils/getComments.ts","../src/utils/getGroupedByTagFiles.ts","../src/utils/getParams.ts","../src/utils/refSorter.ts"],"sourcesContent":["export { getComments } from './getComments.ts'\nexport { getGroupedByTagFiles } from './getGroupedByTagFiles.ts'\nexport { getASTParams, getPathParams } from './getParams.ts'\nexport { getSchemaFactory } from './getSchemaFactory.ts'\nexport type { GetSchemasProps } from './getSchemas.ts'\nexport { getSchemas } from './getSchemas.ts'\nexport { refsSorter } from './refSorter.ts'\nexport { parseFromConfig } from './parseFromConfig.ts'\n","import transformers from '@kubb/core/transformers'\nimport { URLPath } from '@kubb/core/utils'\n\nimport type { Operation } from '@kubb/oas'\n\nexport function getComments(operation: Operation): string[] {\n return [\n operation.getDescription() && `@description ${operation.getDescription()}`,\n operation.getSummary() && `@summary ${operation.getSummary()}`,\n operation.path && `@link ${new URLPath(operation.path).URL}`,\n operation.isDeprecated() && '@deprecated',\n ]\n .filter(Boolean)\n .map((text) => transformers.trim(text))\n}\n","import { resolve } from 'node:path'\n\nimport { FileManager } from '@kubb/core'\nimport transformers from '@kubb/core/transformers'\nimport { renderTemplate } from '@kubb/core/utils'\nimport { getRelativePath } from '@kubb/fs'\n\nimport type { Plugin } from '@kubb/core'\nimport type { Logger } from '@kubb/core/logger'\nimport type * as KubbFile from '@kubb/fs/types'\n\ntype Options = {\n logger: Logger\n files: Array<KubbFile.File<FileMeta>>\n plugin: Plugin\n template: string\n exportAs: string\n /**\n * Root based on root and output.path specified in the config\n */\n root: string\n /**\n * Output for plugin\n */\n output: {\n path: string\n exportAs?: string\n extName?: KubbFile.Extname\n exportType?: 'barrel' | 'barrelNamed' | false\n }\n}\n\ntype FileMeta = {\n pluginKey?: Plugin['key']\n tag?: string\n}\n\nexport async function getGroupedByTagFiles({ logger, files, plugin, template, exportAs, root, output }: Options): Promise<KubbFile.File<FileMeta>[]> {\n const { path, exportType = 'barrel' } = output\n const mode = FileManager.getMode(resolve(root, path))\n\n if (mode === 'single' || exportType === false) {\n return []\n }\n\n return files\n .filter((file) => {\n const name = file.meta?.pluginKey?.[0]\n return name === plugin.name\n })\n .map((file: KubbFile.File<FileMeta>) => {\n if (!file.meta?.tag) {\n logger?.emit('debug', [`Could not find a tagName for ${JSON.stringify(file, undefined, 2)}`])\n\n return\n }\n\n const tag = file.meta?.tag && transformers.camelCase(file.meta.tag)\n const tagPath = getRelativePath(resolve(root, output.path), resolve(root, renderTemplate(template, { tag })))\n const tagName = renderTemplate(exportAs, { tag })\n\n if (tagName) {\n return {\n baseName: 'index.ts' as const,\n path: resolve(root, output.path, 'index.ts'),\n
|
|
1
|
+
{"version":3,"sources":["../src/utils/index.ts","../src/utils/getComments.ts","../src/utils/getGroupedByTagFiles.ts","../src/utils/getParams.ts","../src/utils/refSorter.ts"],"sourcesContent":["export { getComments } from './getComments.ts'\nexport { getGroupedByTagFiles } from './getGroupedByTagFiles.ts'\nexport { getASTParams, getPathParams } from './getParams.ts'\nexport { getSchemaFactory } from './getSchemaFactory.ts'\nexport type { GetSchemasProps } from './getSchemas.ts'\nexport { getSchemas } from './getSchemas.ts'\nexport { refsSorter } from './refSorter.ts'\nexport { parseFromConfig } from './parseFromConfig.ts'\n","import transformers from '@kubb/core/transformers'\nimport { URLPath } from '@kubb/core/utils'\n\nimport type { Operation } from '@kubb/oas'\n\nexport function getComments(operation: Operation): string[] {\n return [\n operation.getDescription() && `@description ${operation.getDescription()}`,\n operation.getSummary() && `@summary ${operation.getSummary()}`,\n operation.path && `@link ${new URLPath(operation.path).URL}`,\n operation.isDeprecated() && '@deprecated',\n ]\n .filter(Boolean)\n .map((text) => transformers.trim(text))\n}\n","import { resolve } from 'node:path'\n\nimport { FileManager } from '@kubb/core'\nimport transformers from '@kubb/core/transformers'\nimport { renderTemplate } from '@kubb/core/utils'\nimport { getRelativePath } from '@kubb/fs'\n\nimport type { Plugin } from '@kubb/core'\nimport type { Logger } from '@kubb/core/logger'\nimport type * as KubbFile from '@kubb/fs/types'\n\ntype Options = {\n logger: Logger\n files: Array<KubbFile.File<FileMeta>>\n plugin: Plugin\n template: string\n exportAs: string\n /**\n * Root based on root and output.path specified in the config\n */\n root: string\n /**\n * Output for plugin\n */\n output: {\n path: string\n exportAs?: string\n extName?: KubbFile.Extname\n exportType?: 'barrel' | 'barrelNamed' | false\n }\n}\n\ntype FileMeta = {\n pluginKey?: Plugin['key']\n tag?: string\n}\n\n/**\n * @deprecated //TODO replace by getIndexFiles?\n */\nexport async function getGroupedByTagFiles({ logger, files, plugin, template, exportAs, root, output }: Options): Promise<KubbFile.File<FileMeta>[]> {\n const { path, exportType = 'barrel' } = output\n const mode = FileManager.getMode(resolve(root, path))\n\n if (mode === 'single' || exportType === false) {\n return []\n }\n\n return files\n .filter((file) => {\n const name = file.meta?.pluginKey?.[0]\n return name === plugin.name\n })\n .map((file: KubbFile.File<FileMeta>) => {\n if (!file.meta?.tag) {\n logger?.emit('debug', { logs: [`Could not find a tagName for ${JSON.stringify(file, undefined, 2)}`] })\n\n return\n }\n\n const tag = file.meta?.tag && transformers.camelCase(file.meta.tag)\n const tagPath = getRelativePath(resolve(root, output.path), resolve(root, renderTemplate(template, { tag })))\n const tagName = renderTemplate(exportAs, { tag })\n\n if (tagName) {\n return {\n baseName: 'index.ts' as const,\n path: resolve(root, output.path, 'index.ts'),\n exports: [\n {\n path: output.extName ? `${tagPath}/index${output.extName}` : `${tagPath}/index`,\n asAlias: true,\n name: tagName,\n },\n ],\n meta: {\n pluginKey: plugin.key,\n },\n sources: [],\n }\n }\n })\n .filter(Boolean)\n}\n","import { isParameterObject } from '@kubb/oas'\n\nimport type { FunctionParamsAST } from '@kubb/core/utils'\nimport type { OasTypes } from '@kubb/oas'\nimport type { Params } from '@kubb/react/types'\nimport type { OperationSchema } from '../types.ts'\nimport { camelCase } from '@kubb/core/transformers'\n/**\n *\n * @deprecated\n * TODO move to operationManager hook\n */\nexport function getASTParams(\n operationSchema: OperationSchema | undefined,\n {\n typed = false,\n override,\n }: {\n typed?: boolean\n override?: (data: FunctionParamsAST) => FunctionParamsAST\n } = {},\n): FunctionParamsAST[] {\n if (!operationSchema || !operationSchema.schema.properties || !operationSchema.name) {\n return []\n }\n\n return Object.entries(operationSchema.schema.properties).map(([name, schema]: [string, OasTypes.SchemaObject]) => {\n const isParam = isParameterObject(schema)\n const data: FunctionParamsAST = {\n name,\n enabled: !!name,\n required: isParam ? schema.required : true,\n type: typed ? `${operationSchema.name}[\"${name}\"]` : undefined,\n }\n\n return override ? override(data) : data\n })\n}\n\nexport function getPathParams(\n operationSchema: OperationSchema | undefined,\n options: {\n typed?: boolean\n override?: (data: FunctionParamsAST) => FunctionParamsAST\n } = {},\n) {\n return getASTParams(operationSchema, options).reduce((acc, curr) => {\n if (curr.name && curr.enabled) {\n acc[camelCase(curr.name)] = {\n default: curr.default,\n type: curr.type,\n optional: !curr.required,\n }\n }\n\n return acc\n }, {} as Params)\n}\n","import type { Refs } from '../types.ts'\n\ntype Generated = { import: { refs: Refs; name: string } }\n\nexport function refsSorter<T extends Generated>(a: T, b: T): number {\n if (Object.keys(a.import.refs)?.length < Object.keys(b.import.refs)?.length) {\n return -1\n }\n if (Object.keys(a.import.refs)?.length > Object.keys(b.import.refs)?.length) {\n return 1\n }\n return 0\n}\n"],"mappings":"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","names":["transformers"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-oas",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.6",
|
|
4
4
|
"description": "Generator swagger",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -68,10 +68,10 @@
|
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@stoplight/yaml": "^4.3.0",
|
|
70
70
|
"remeda": "^2.11.0",
|
|
71
|
-
"@kubb/core": "3.0.0-alpha.
|
|
72
|
-
"@kubb/fs": "3.0.0-alpha.
|
|
73
|
-
"@kubb/oas": "3.0.0-alpha.
|
|
74
|
-
"@kubb/react": "3.0.0-alpha.
|
|
71
|
+
"@kubb/core": "3.0.0-alpha.6",
|
|
72
|
+
"@kubb/fs": "3.0.0-alpha.6",
|
|
73
|
+
"@kubb/oas": "3.0.0-alpha.6",
|
|
74
|
+
"@kubb/react": "3.0.0-alpha.6"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@types/react": "^18.3.4",
|
|
@@ -79,12 +79,12 @@
|
|
|
79
79
|
"react": "^18.3.1",
|
|
80
80
|
"tsup": "^8.2.4",
|
|
81
81
|
"typescript": "^5.5.4",
|
|
82
|
-
"@kubb/config-biome": "3.0.0-alpha.
|
|
83
|
-
"@kubb/config-ts": "3.0.0-alpha.
|
|
84
|
-
"@kubb/config-tsup": "3.0.0-alpha.
|
|
82
|
+
"@kubb/config-biome": "3.0.0-alpha.6",
|
|
83
|
+
"@kubb/config-ts": "3.0.0-alpha.6",
|
|
84
|
+
"@kubb/config-tsup": "3.0.0-alpha.6"
|
|
85
85
|
},
|
|
86
86
|
"peerDependencies": {
|
|
87
|
-
"@kubb/react": "3.0.0-alpha.
|
|
87
|
+
"@kubb/react": "3.0.0-alpha.6"
|
|
88
88
|
},
|
|
89
89
|
"engines": {
|
|
90
90
|
"node": ">=20"
|
package/src/components/Oas.tsx
CHANGED
|
@@ -4,7 +4,7 @@ import { Operation } from './Operation.tsx'
|
|
|
4
4
|
import { Schema } from './Schema.tsx'
|
|
5
5
|
|
|
6
6
|
import type { Oas as OasType, Operation as OperationType } from '@kubb/oas'
|
|
7
|
-
import type { KubbNode } from '@kubb/react'
|
|
7
|
+
import type { KubbNode } from '@kubb/react/types'
|
|
8
8
|
import type { OperationGenerator } from '../OperationGenerator.ts'
|
|
9
9
|
|
|
10
10
|
type Props = {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { File,
|
|
1
|
+
import { File, createContext, useApp, useFile } from '@kubb/react'
|
|
2
2
|
|
|
3
3
|
import { schemaKeywords } from '../SchemaMapper.ts'
|
|
4
4
|
import { useSchema } from '../hooks/useSchema.ts'
|
|
5
5
|
|
|
6
6
|
import type * as KubbFile from '@kubb/fs/types'
|
|
7
7
|
import type { SchemaObject } from '@kubb/oas'
|
|
8
|
-
import type { KubbNode } from '@kubb/react'
|
|
8
|
+
import type { KubbNode } from '@kubb/react/types'
|
|
9
9
|
import type { ReactNode } from 'react'
|
|
10
10
|
import { SchemaGenerator } from '../SchemaGenerator.ts'
|
|
11
11
|
import type { Schema as SchemaType } from '../SchemaMapper.ts'
|
|
@@ -55,17 +55,15 @@ Schema.File = function ({ output, isTypeOnly, children }: FileProps): ReactNode
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
return (
|
|
58
|
-
<
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
</File>
|
|
68
|
-
</Parser>
|
|
58
|
+
<File
|
|
59
|
+
baseName={baseName}
|
|
60
|
+
path={resolvedPath}
|
|
61
|
+
meta={{
|
|
62
|
+
pluginKey: plugin.key,
|
|
63
|
+
}}
|
|
64
|
+
>
|
|
65
|
+
{children}
|
|
66
|
+
</File>
|
|
69
67
|
)
|
|
70
68
|
}
|
|
71
69
|
|
|
@@ -84,18 +82,16 @@ Schema.File = function ({ output, isTypeOnly, children }: FileProps): ReactNode
|
|
|
84
82
|
}
|
|
85
83
|
|
|
86
84
|
return (
|
|
87
|
-
<
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
</File>
|
|
98
|
-
</Parser>
|
|
85
|
+
<File
|
|
86
|
+
baseName={baseName}
|
|
87
|
+
path={resolvedPath}
|
|
88
|
+
meta={{
|
|
89
|
+
pluginKey: plugin.key,
|
|
90
|
+
}}
|
|
91
|
+
>
|
|
92
|
+
<Schema.Imports isTypeOnly={isTypeOnly} />
|
|
93
|
+
{children}
|
|
94
|
+
</File>
|
|
99
95
|
)
|
|
100
96
|
}
|
|
101
97
|
|
|
@@ -118,9 +114,7 @@ Schema.Imports = ({ isTypeOnly, extName }: SchemaImportsProps): ReactNode => {
|
|
|
118
114
|
return undefined
|
|
119
115
|
}
|
|
120
116
|
|
|
121
|
-
return
|
|
122
|
-
<File.Import key={i} extName={extName} root={root} name={[item.args.name]} path={item.args.path} isTypeOnly={item.args.isTypeOnly ?? isTypeOnly} />
|
|
123
|
-
)
|
|
117
|
+
return <File.Import key={i} root={root} name={[item.args.name]} path={item.args.path} isTypeOnly={item.args.isTypeOnly ?? isTypeOnly} />
|
|
124
118
|
})
|
|
125
119
|
.filter(Boolean)}
|
|
126
120
|
</>
|
package/src/parser.tsx
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { PluginFactoryOptions } from '@kubb/core'
|
|
2
2
|
import type { Operation, SchemaObject } from '@kubb/oas'
|
|
3
|
-
import { App, createRoot
|
|
3
|
+
import { App, createRoot } from '@kubb/react'
|
|
4
|
+
import type { KubbNode } from '@kubb/react/types'
|
|
4
5
|
import type * as KubbFile from '@kubb/fs/types'
|
|
5
6
|
import type { OperationsByMethod } from './types.ts'
|
|
6
7
|
import { Oas } from '@kubb/plugin-oas/components'
|
package/src/plugin.ts
CHANGED
|
@@ -4,13 +4,13 @@ import { createPlugin } from '@kubb/core'
|
|
|
4
4
|
import { camelCase } from '@kubb/core/transformers'
|
|
5
5
|
|
|
6
6
|
import { getSchemas } from './utils/getSchemas.ts'
|
|
7
|
+
import { parseFromConfig } from './utils/parseFromConfig.ts'
|
|
7
8
|
|
|
8
9
|
import type { Config } from '@kubb/core'
|
|
9
10
|
import type { Logger } from '@kubb/core/logger'
|
|
10
11
|
import type { Oas, OasTypes } from '@kubb/oas'
|
|
11
12
|
import type { FormatOptions } from '@kubb/oas/parser'
|
|
12
13
|
import type { PluginOas } from './types.ts'
|
|
13
|
-
import { parseFromConfig } from './utils/parseFromConfig.ts'
|
|
14
14
|
|
|
15
15
|
export const pluginOasName = 'plugin-oas' satisfies PluginOas['name']
|
|
16
16
|
|
|
@@ -65,18 +65,6 @@ export const pluginOas = createPlugin<PluginOas>((options) => {
|
|
|
65
65
|
contentType,
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
|
-
resolvePath(baseName) {
|
|
69
|
-
if (output === false) {
|
|
70
|
-
return undefined
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
const root = path.resolve(this.config.root, this.config.output.path)
|
|
74
|
-
|
|
75
|
-
return path.resolve(root, output.path, baseName)
|
|
76
|
-
},
|
|
77
|
-
resolveName(name, type) {
|
|
78
|
-
return camelCase(name, { isFile: type === 'file' })
|
|
79
|
-
},
|
|
80
68
|
async buildStart() {
|
|
81
69
|
if (!output) {
|
|
82
70
|
return
|
|
@@ -91,31 +79,27 @@ export const pluginOas = createPlugin<PluginOas>((options) => {
|
|
|
91
79
|
},
|
|
92
80
|
})
|
|
93
81
|
await oas.dereference()
|
|
82
|
+
|
|
83
|
+
const root = path.resolve(this.config.root, this.config.output.path)
|
|
94
84
|
const schemas = getSchemas({ oas, contentType })
|
|
95
85
|
|
|
96
86
|
const mapSchema = async ([name, schema]: [string, OasTypes.SchemaObject]) => {
|
|
97
|
-
const
|
|
98
|
-
|
|
99
|
-
pluginKey: this.plugin.key,
|
|
100
|
-
})
|
|
101
|
-
|
|
102
|
-
const resvoledFileName = this.resolveName({
|
|
103
|
-
name: `${name}.json`,
|
|
104
|
-
pluginKey: [pluginOasName],
|
|
105
|
-
type: 'file',
|
|
106
|
-
}) as `${string}.json`
|
|
107
|
-
|
|
108
|
-
if (!resolvedPath) {
|
|
109
|
-
return
|
|
110
|
-
}
|
|
87
|
+
const baseName = `${camelCase(name)}.json` as `${string}.json`
|
|
88
|
+
const resolvedPath = path.resolve(root, output.path, baseName)
|
|
111
89
|
|
|
112
90
|
await this.addFile({
|
|
113
91
|
path: resolvedPath,
|
|
114
|
-
baseName
|
|
115
|
-
source: JSON.stringify(schema),
|
|
92
|
+
baseName,
|
|
116
93
|
meta: {
|
|
117
94
|
pluginKey: this.plugin.key,
|
|
118
95
|
},
|
|
96
|
+
sources: [
|
|
97
|
+
{
|
|
98
|
+
name: camelCase(name),
|
|
99
|
+
isExportable: false,
|
|
100
|
+
value: JSON.stringify(schema),
|
|
101
|
+
},
|
|
102
|
+
],
|
|
119
103
|
})
|
|
120
104
|
}
|
|
121
105
|
|
|
@@ -35,6 +35,9 @@ type FileMeta = {
|
|
|
35
35
|
tag?: string
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
/**
|
|
39
|
+
* @deprecated //TODO replace by getIndexFiles?
|
|
40
|
+
*/
|
|
38
41
|
export async function getGroupedByTagFiles({ logger, files, plugin, template, exportAs, root, output }: Options): Promise<KubbFile.File<FileMeta>[]> {
|
|
39
42
|
const { path, exportType = 'barrel' } = output
|
|
40
43
|
const mode = FileManager.getMode(resolve(root, path))
|
|
@@ -50,7 +53,7 @@ export async function getGroupedByTagFiles({ logger, files, plugin, template, ex
|
|
|
50
53
|
})
|
|
51
54
|
.map((file: KubbFile.File<FileMeta>) => {
|
|
52
55
|
if (!file.meta?.tag) {
|
|
53
|
-
logger?.emit('debug', [`Could not find a tagName for ${JSON.stringify(file, undefined, 2)}`])
|
|
56
|
+
logger?.emit('debug', { logs: [`Could not find a tagName for ${JSON.stringify(file, undefined, 2)}`] })
|
|
54
57
|
|
|
55
58
|
return
|
|
56
59
|
}
|
|
@@ -63,7 +66,6 @@ export async function getGroupedByTagFiles({ logger, files, plugin, template, ex
|
|
|
63
66
|
return {
|
|
64
67
|
baseName: 'index.ts' as const,
|
|
65
68
|
path: resolve(root, output.path, 'index.ts'),
|
|
66
|
-
source: '',
|
|
67
69
|
exports: [
|
|
68
70
|
{
|
|
69
71
|
path: output.extName ? `${tagPath}/index${output.extName}` : `${tagPath}/index`,
|
|
@@ -74,7 +76,7 @@ export async function getGroupedByTagFiles({ logger, files, plugin, template, ex
|
|
|
74
76
|
meta: {
|
|
75
77
|
pluginKey: plugin.key,
|
|
76
78
|
},
|
|
77
|
-
|
|
79
|
+
sources: [],
|
|
78
80
|
}
|
|
79
81
|
}
|
|
80
82
|
})
|
package/src/utils/getParams.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { isParameterObject } from '@kubb/oas'
|
|
|
2
2
|
|
|
3
3
|
import type { FunctionParamsAST } from '@kubb/core/utils'
|
|
4
4
|
import type { OasTypes } from '@kubb/oas'
|
|
5
|
-
import type { Params } from '@kubb/react'
|
|
5
|
+
import type { Params } from '@kubb/react/types'
|
|
6
6
|
import type { OperationSchema } from '../types.ts'
|
|
7
7
|
import { camelCase } from '@kubb/core/transformers'
|
|
8
8
|
/**
|