@hey-api/openapi-ts 0.94.1 → 0.94.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.d.mts +636 -437
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/{init-BZoKzIer.mjs → init-C6327prb.mjs} +1893 -1799
- package/dist/init-C6327prb.mjs.map +1 -0
- package/dist/internal.d.mts +1 -1
- package/dist/internal.d.mts.map +1 -1
- package/dist/internal.mjs +1 -1
- package/dist/run.mjs +3 -3
- package/dist/run.mjs.map +1 -1
- package/dist/{src-CSfoqA-f.mjs → src-CdNoenvJ.mjs} +13 -5
- package/dist/src-CdNoenvJ.mjs.map +1 -0
- package/dist/{types-Ba27ofyy.d.mts → types-CR-cSsLu.d.mts} +3 -3
- package/dist/types-CR-cSsLu.d.mts.map +1 -0
- package/package.json +6 -5
- package/dist/init-BZoKzIer.mjs.map +0 -1
- package/dist/src-CSfoqA-f.mjs.map +0 -1
- package/dist/types-Ba27ofyy.d.mts.map +0 -1
package/dist/internal.d.mts
CHANGED
package/dist/internal.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"internal.d.mts","names":[],"sources":["../src/config/resolve.ts","../src/config/init.ts"],"
|
|
1
|
+
{"version":3,"file":"internal.d.mts","names":[],"sources":["../src/config/resolve.ts","../src/config/init.ts"],"mappings":";;;;;KAWY,WAAA;EACV,MAAA,EAAQ,MAAA;EACR,MAAA,EAAQ,KAAA,CAAM,KAAA;EACd,KAAA;AAAA;;;KCJU,OAAA;EACV,YAAA,EAAc,MAAA;EACd,IAAA,EAAM,aAAA,CAAc,WAAA;EDDC;;;ECKrB,OAAA,EAAS,aAAA,CAAc,WAAA;AAAA;;;;iBAMH,WAAA,CAAA;EACpB,MAAA;EACA;AAAA;EAEA,MAAA,EAAQ,MAAA;EACR,WAAA,EAAa,aAAA,CAAc,UAAA;AAAA,IACzB,OAAA,CAAQ,OAAA"}
|
package/dist/internal.mjs
CHANGED
package/dist/run.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import "./init-
|
|
3
|
-
import { c as createClient } from "./src-
|
|
2
|
+
import "./init-C6327prb.mjs";
|
|
3
|
+
import { c as createClient } from "./src-CdNoenvJ.mjs";
|
|
4
4
|
import { isEnvironment } from "@hey-api/shared";
|
|
5
5
|
import { Command, CommanderError } from "commander";
|
|
6
6
|
|
|
7
7
|
//#region package.json
|
|
8
|
-
var version = "0.94.
|
|
8
|
+
var version = "0.94.2";
|
|
9
9
|
var bin = { "openapi-ts": "./bin/run.js" };
|
|
10
10
|
|
|
11
11
|
//#endregion
|
package/dist/run.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"run.mjs","names":["
|
|
1
|
+
{"version":3,"file":"run.mjs","names":["pkg.bin","pkg.version"],"sources":["../package.json","../src/cli/adapter.ts","../src/cli/index.ts","../src/run.ts"],"sourcesContent":["","import type { ToArray } from '@hey-api/types';\n\nimport type { UserConfig } from '../config/types';\nimport type { CliOptions } from './schema';\n\nexport function cliToConfig(cli: CliOptions): Partial<UserConfig> {\n const config: Partial<UserConfig> = {};\n\n if (cli.input) config.input = cli.input;\n if (cli.output) config.output = cli.output;\n if (cli.file) config.configFile = cli.file;\n if (cli.dryRun !== undefined) config.dryRun = cli.dryRun;\n\n const plugins: ToArray<UserConfig['plugins']> = [];\n if (cli.plugins instanceof Array && cli.plugins.length > 0) {\n plugins.push(...cli.plugins);\n }\n if (cli.client) plugins.push(cli.client);\n if (plugins.length > 0) config.plugins = plugins;\n\n if (cli.debug || cli.silent || cli.logs || cli.logFile === false) {\n config.logs = {\n ...(cli.logs && { path: cli.logs }),\n ...(cli.debug && { level: 'debug' as const }),\n ...(cli.silent && { level: 'silent' as const }),\n ...(cli.logFile === false && { file: false }),\n };\n }\n\n if (cli.watch !== undefined) {\n if (typeof cli.watch === 'string') {\n config.watch = Number.parseInt(cli.watch, 10);\n } else {\n config.watch = cli.watch;\n }\n }\n\n return config;\n}\n","import { isEnvironment } from '@hey-api/shared';\nimport { Command, CommanderError } from 'commander';\n\nimport pkg from '../../package.json';\nimport { createClient } from '../index';\nimport { cliToConfig } from './adapter';\n\nconst binName = Object.keys(pkg.bin)[0]!;\n\nconst program = new Command()\n .name(binName)\n .description('Generate TypeScript code from OpenAPI specifications')\n .version(isEnvironment('development') ? '[DEVELOPMENT]' : pkg.version);\n\nprogram\n .option('-i, --input <path...>', 'OpenAPI specification (path, URL, or string)')\n .option('-o, --output <path...>', 'Output folder(s)')\n .option('-c, --client <name>', 'HTTP client to generate')\n .option('-p, --plugins [names...]', 'Plugins to use')\n .option('-f, --file <path>', 'Path to config file')\n .option('-d, --debug', 'Enable debug logging')\n .option('-s, --silent', 'Suppress all output')\n .option('-l, --logs <path>', 'Logs folder path')\n .option('--no-log-file', 'Disable log file output')\n .option('--dry-run', 'Skip writing files')\n .option('-w, --watch [interval]', 'Watch for changes')\n .action(async (options) => {\n const config = cliToConfig(options);\n\n const context = await createClient(config as Parameters<typeof createClient>[0]);\n\n const hasActiveWatch = context[0]?.config.input.some((input) => input.watch?.enabled);\n\n if (!hasActiveWatch) {\n process.exit(0);\n }\n });\n\nexport async function runCli(): Promise<void> {\n try {\n await program.parseAsync(process.argv);\n } catch (error) {\n if (error instanceof CommanderError && 'code' in error) {\n if (error.code === 'commander.optionMissingArgument') {\n console.error(`\\nMissing required argument. Run '${binName} --help' for usage.\\n`);\n } else if (error.code === 'commander.unknownOption') {\n console.error(`\\nUnknown option. Run '${binName} --help' for available options.\\n`);\n }\n\n process.exit(error.exitCode);\n }\n\n console.error('Unexpected error:', error);\n process.exit(1);\n }\n}\n","#!/usr/bin/env node\n\nimport { runCli } from './cli';\n\nrunCli();\n"],"mappings":";;;;;;;;;;;;ACKA,SAAgB,YAAY,KAAsC;CAChE,MAAM,SAA8B,EAAE;AAEtC,KAAI,IAAI,MAAO,QAAO,QAAQ,IAAI;AAClC,KAAI,IAAI,OAAQ,QAAO,SAAS,IAAI;AACpC,KAAI,IAAI,KAAM,QAAO,aAAa,IAAI;AACtC,KAAI,IAAI,WAAW,OAAW,QAAO,SAAS,IAAI;CAElD,MAAM,UAA0C,EAAE;AAClD,KAAI,IAAI,mBAAmB,SAAS,IAAI,QAAQ,SAAS,EACvD,SAAQ,KAAK,GAAG,IAAI,QAAQ;AAE9B,KAAI,IAAI,OAAQ,SAAQ,KAAK,IAAI,OAAO;AACxC,KAAI,QAAQ,SAAS,EAAG,QAAO,UAAU;AAEzC,KAAI,IAAI,SAAS,IAAI,UAAU,IAAI,QAAQ,IAAI,YAAY,MACzD,QAAO,OAAO;EACZ,GAAI,IAAI,QAAQ,EAAE,MAAM,IAAI,MAAM;EAClC,GAAI,IAAI,SAAS,EAAE,OAAO,SAAkB;EAC5C,GAAI,IAAI,UAAU,EAAE,OAAO,UAAmB;EAC9C,GAAI,IAAI,YAAY,SAAS,EAAE,MAAM,OAAO;EAC7C;AAGH,KAAI,IAAI,UAAU,OAChB,KAAI,OAAO,IAAI,UAAU,SACvB,QAAO,QAAQ,OAAO,SAAS,IAAI,OAAO,GAAG;KAE7C,QAAO,QAAQ,IAAI;AAIvB,QAAO;;;;;AC9BT,MAAM,UAAU,OAAO,KAAKA,IAAQ,CAAC;AAErC,MAAM,UAAU,IAAI,SAAS,CAC1B,KAAK,QAAQ,CACb,YAAY,uDAAuD,CACnE,QAAQ,cAAc,cAAc,GAAG,kBAAkBC,QAAY;AAExE,QACG,OAAO,yBAAyB,+CAA+C,CAC/E,OAAO,0BAA0B,mBAAmB,CACpD,OAAO,uBAAuB,0BAA0B,CACxD,OAAO,4BAA4B,iBAAiB,CACpD,OAAO,qBAAqB,sBAAsB,CAClD,OAAO,eAAe,uBAAuB,CAC7C,OAAO,gBAAgB,sBAAsB,CAC7C,OAAO,qBAAqB,mBAAmB,CAC/C,OAAO,iBAAiB,0BAA0B,CAClD,OAAO,aAAa,qBAAqB,CACzC,OAAO,0BAA0B,oBAAoB,CACrD,OAAO,OAAO,YAAY;AAOzB,KAAI,EAJY,MAAM,aAFP,YAAY,QAAQ,CAE6C,EAEjD,IAAI,OAAO,MAAM,MAAM,UAAU,MAAM,OAAO,QAAQ,CAGnF,SAAQ,KAAK,EAAE;EAEjB;AAEJ,eAAsB,SAAwB;AAC5C,KAAI;AACF,QAAM,QAAQ,WAAW,QAAQ,KAAK;UAC/B,OAAO;AACd,MAAI,iBAAiB,kBAAkB,UAAU,OAAO;AACtD,OAAI,MAAM,SAAS,kCACjB,SAAQ,MAAM,qCAAqC,QAAQ,uBAAuB;YACzE,MAAM,SAAS,0BACxB,SAAQ,MAAM,0BAA0B,QAAQ,mCAAmC;AAGrF,WAAQ,KAAK,MAAM,SAAS;;AAG9B,UAAQ,MAAM,qBAAqB,MAAM;AACzC,UAAQ,KAAK,EAAE;;;;;;ACjDnB,QAAQ"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as postProcessors, c as TypeScriptRenderer, g as getTypedConfig, h as getClientPlugin, i as generateClientBundle, t as resolveJobs } from "./init-
|
|
1
|
+
import { _ as postProcessors, c as TypeScriptRenderer, g as getTypedConfig, h as getClientPlugin, i as generateClientBundle, t as resolveJobs } from "./init-C6327prb.mjs";
|
|
2
2
|
import { Logger, Logger as Logger$1, Project } from "@hey-api/codegen-core";
|
|
3
3
|
import { ConfigValidationError, Context, IntentContext, JobError, OperationPath as OperationPath$1, OperationStrategy as OperationStrategy$1, applyNaming, buildGraph, checkNodeVersion, compileInputPath, defaultPaginationKeywords, definePluginConfig as definePluginConfig$1, getLogs, getSpec, logCrashReport, logInputPaths, openGitHubIssueWithCrashReport, parseOpenApiSpec, patchOpenApiSpec, postprocessOutput, printCliIntro, printCrashReport, shouldReportCrash, utils } from "@hey-api/shared";
|
|
4
4
|
import colors from "ansi-colors";
|
|
@@ -77,9 +77,9 @@ async function createClient$1({ config, dependencies, jobIndex, logger, watches:
|
|
|
77
77
|
if (specData.length) {
|
|
78
78
|
const refParser = new $RefParser();
|
|
79
79
|
const data = specData.length > 1 ? await refParser.bundleMany({
|
|
80
|
-
arrayBuffer: specData.map((data
|
|
80
|
+
arrayBuffer: specData.map((data) => data.arrayBuffer),
|
|
81
81
|
pathOrUrlOrSchemas: [],
|
|
82
|
-
resolvedInputs: specData.map((data
|
|
82
|
+
resolvedInputs: specData.map((data) => data.resolvedInput)
|
|
83
83
|
}) : await refParser.bundle({
|
|
84
84
|
arrayBuffer: specData[0].arrayBuffer,
|
|
85
85
|
pathOrUrlOrSchema: void 0,
|
|
@@ -96,6 +96,7 @@ async function createClient$1({ config, dependencies, jobIndex, logger, watches:
|
|
|
96
96
|
});
|
|
97
97
|
eventInputPatch.timeEnd();
|
|
98
98
|
const eventParser = logger.timeEvent("parser");
|
|
99
|
+
const header = config.output.header;
|
|
99
100
|
context = new Context({
|
|
100
101
|
config,
|
|
101
102
|
dependencies,
|
|
@@ -110,7 +111,14 @@ async function createClient$1({ config, dependencies, jobIndex, logger, watches:
|
|
|
110
111
|
},
|
|
111
112
|
nameConflictResolvers: config.output.nameConflictResolver ? { typescript: config.output.nameConflictResolver } : void 0,
|
|
112
113
|
renderers: [new TypeScriptRenderer({
|
|
113
|
-
header:
|
|
114
|
+
header: (ctx) => {
|
|
115
|
+
const defaultValue = ["// This file is auto-generated by @hey-api/openapi-ts"];
|
|
116
|
+
const result = typeof header === "function" ? header({
|
|
117
|
+
...ctx,
|
|
118
|
+
defaultValue
|
|
119
|
+
}) : header;
|
|
120
|
+
return result === void 0 ? defaultValue : result;
|
|
121
|
+
},
|
|
114
122
|
preferExportAll: config.output.preferExportAll,
|
|
115
123
|
preferFileExtension: config.output.importFileExtension || void 0,
|
|
116
124
|
resolveModuleName: config.output.resolveModuleName
|
|
@@ -226,4 +234,4 @@ async function defineConfig(config) {
|
|
|
226
234
|
|
|
227
235
|
//#endregion
|
|
228
236
|
export { defineConfig as a, createClient as c, defaultPaginationKeywords as i, OperationPath$1 as n, definePluginConfig$1 as o, OperationStrategy$1 as r, utils as s, Logger$1 as t };
|
|
229
|
-
//# sourceMappingURL=src-
|
|
237
|
+
//# sourceMappingURL=src-CdNoenvJ.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"src-CdNoenvJ.mjs","names":["createClient","pCreateClient"],"sources":["../src/generate/output.ts","../src/createClient.ts","../src/generate.ts","../src/index.ts"],"sourcesContent":["import fs from 'node:fs';\nimport path from 'node:path';\n\nimport type { Context } from '@hey-api/shared';\nimport { IntentContext } from '@hey-api/shared';\n\nimport { getTypedConfig } from '../config/utils';\nimport { getClientPlugin } from '../plugins/@hey-api/client-core/utils';\nimport { generateClientBundle } from './client';\n\nexport async function generateOutput(context: Context): Promise<void> {\n const outputPath = path.resolve(context.config.output.path);\n\n if (context.config.output.clean) {\n if (fs.existsSync(outputPath)) {\n fs.rmSync(outputPath, { force: true, recursive: true });\n }\n }\n\n const config = getTypedConfig(context);\n\n const client = getClientPlugin(config);\n if ('bundle' in client.config && client.config.bundle && !config.dryRun) {\n // not proud of this one\n // @ts-expect-error\n config._FRAGILE_CLIENT_BUNDLE_RENAMED = generateClientBundle({\n header: config.output.header,\n meta: {\n importFileExtension: config.output.importFileExtension,\n },\n outputPath,\n // @ts-expect-error\n plugin: client,\n project: context.gen,\n });\n }\n\n for (const plugin of context.registerPlugins()) {\n await plugin.run();\n }\n\n context.gen.plan();\n\n const ctx = new IntentContext(context.spec);\n for (const intent of context.intents) {\n await intent.run(ctx);\n }\n\n for (const file of context.gen.render()) {\n const filePath = path.resolve(outputPath, file.path);\n const dir = path.dirname(filePath);\n if (!context.config.dryRun) {\n fs.mkdirSync(dir, { recursive: true });\n fs.writeFileSync(filePath, file.content, { encoding: 'utf8' });\n }\n }\n\n const { source } = context.config.output;\n if (source.enabled) {\n const sourcePath = source.path === null ? undefined : path.resolve(outputPath, source.path);\n if (!context.config.dryRun && sourcePath && sourcePath !== outputPath) {\n fs.mkdirSync(sourcePath, { recursive: true });\n }\n const serialized = await source.serialize(context.spec);\n // TODO: handle yaml (convert before writing)\n if (!context.config.dryRun && sourcePath) {\n fs.writeFileSync(\n path.resolve(sourcePath, `${source.fileName}.${source.extension}`),\n serialized,\n { encoding: 'utf8' },\n );\n }\n if (source.callback) {\n await source.callback(serialized);\n }\n }\n}\n","import path from 'node:path';\n\nimport { type Logger, Project } from '@hey-api/codegen-core';\nimport { $RefParser } from '@hey-api/json-schema-ref-parser';\nimport {\n applyNaming,\n buildGraph,\n compileInputPath,\n Context,\n getSpec,\n type Input,\n logInputPaths,\n type OpenApi,\n parseOpenApiSpec,\n patchOpenApiSpec,\n postprocessOutput,\n type WatchValues,\n} from '@hey-api/shared';\nimport colors from 'ansi-colors';\n\nimport { postProcessors } from './config/output/postprocess';\nimport type { Config } from './config/types';\nimport { generateOutput } from './generate/output';\nimport { TypeScriptRenderer } from './ts-dsl';\n\nexport async function createClient({\n config,\n dependencies,\n jobIndex,\n logger,\n watches: _watches,\n}: {\n config: Config;\n dependencies: Record<string, string>;\n jobIndex: number;\n logger: Logger;\n /**\n * Always undefined on the first run, defined on subsequent runs.\n */\n watches?: ReadonlyArray<WatchValues>;\n}): Promise<Context | undefined> {\n const watches: ReadonlyArray<WatchValues> =\n _watches ||\n Array.from({ length: config.input.length }, () => ({\n headers: new Headers(),\n }));\n\n const inputPaths = config.input.map((input) => compileInputPath(input));\n\n // on first run, print the message as soon as possible\n if (config.logs.level !== 'silent' && !_watches) {\n logInputPaths(inputPaths, jobIndex);\n }\n\n const getSpecData = async (input: Input, index: number) => {\n const eventSpec = logger.timeEvent('spec');\n const { arrayBuffer, error, resolvedInput, response } = await getSpec({\n fetchOptions: input.fetch,\n inputPath: inputPaths[index]!.path,\n timeout: input.watch.timeout,\n watch: watches[index]!,\n });\n eventSpec.timeEnd();\n\n // throw on first run if there's an error to preserve user experience\n // if in watch mode, subsequent errors won't throw to gracefully handle\n // cases where server might be reloading\n if (error && !_watches) {\n const text = await response.text().catch(() => '');\n throw new Error(\n `Request failed with status ${response.status}: ${text || response.statusText}`,\n );\n }\n\n return { arrayBuffer, resolvedInput };\n };\n const specData = (\n await Promise.all(config.input.map((input, index) => getSpecData(input, index)))\n ).filter((data) => data.arrayBuffer || data.resolvedInput);\n\n let context: Context | undefined;\n\n if (specData.length) {\n const refParser = new $RefParser();\n const data =\n specData.length > 1\n ? await refParser.bundleMany({\n arrayBuffer: specData.map((data) => data.arrayBuffer!),\n pathOrUrlOrSchemas: [],\n resolvedInputs: specData.map((data) => data.resolvedInput!),\n })\n : await refParser.bundle({\n arrayBuffer: specData[0]!.arrayBuffer,\n pathOrUrlOrSchema: undefined,\n resolvedInput: specData[0]!.resolvedInput!,\n });\n\n // on subsequent runs in watch mode, print the message only if we know we're\n // generating the output\n if (config.logs.level !== 'silent' && _watches) {\n console.clear();\n logInputPaths(inputPaths, jobIndex);\n }\n\n const eventInputPatch = logger.timeEvent('input.patch');\n await patchOpenApiSpec({ patchOptions: config.parser.patch, spec: data });\n eventInputPatch.timeEnd();\n\n const eventParser = logger.timeEvent('parser');\n const header = config.output.header;\n // TODO: allow overriding via config\n const project = new Project({\n defaultFileName: 'index',\n fileName: (base) => {\n const name = applyNaming(base, config.output.fileName);\n const { suffix } = config.output.fileName;\n if (!suffix) {\n return name;\n }\n return name === 'index' || name.endsWith(suffix) ? name : `${name}${suffix}`;\n },\n nameConflictResolvers: config.output.nameConflictResolver\n ? {\n typescript: config.output.nameConflictResolver,\n }\n : undefined,\n renderers: [\n new TypeScriptRenderer({\n header: (ctx) => {\n const defaultValue = ['// This file is auto-generated by @hey-api/openapi-ts'];\n const result = typeof header === 'function' ? header({ ...ctx, defaultValue }) : header;\n return result === undefined ? defaultValue : result;\n },\n preferExportAll: config.output.preferExportAll,\n preferFileExtension: config.output.importFileExtension || undefined,\n resolveModuleName: config.output.resolveModuleName,\n }),\n ],\n root: config.output.path,\n });\n context = new Context<OpenApi.V2_0_X | OpenApi.V3_0_X | OpenApi.V3_1_X, Config>({\n config,\n dependencies,\n logger,\n project,\n spec: data as OpenApi.V2_0_X | OpenApi.V3_0_X | OpenApi.V3_1_X,\n });\n parseOpenApiSpec(context);\n context.graph = buildGraph(context.ir, logger).graph;\n eventParser.timeEnd();\n\n const eventGenerator = logger.timeEvent('generator');\n await generateOutput(context);\n eventGenerator.timeEnd();\n\n const eventPostprocess = logger.timeEvent('postprocess');\n if (!config.dryRun) {\n const jobPrefix = colors.gray(`[Job ${jobIndex + 1}] `);\n postprocessOutput(config.output, postProcessors, jobPrefix);\n\n if (config.logs.level !== 'silent') {\n const outputPath = process.env.INIT_CWD\n ? `./${path.relative(process.env.INIT_CWD, config.output.path)}`\n : config.output.path;\n console.log(\n `${jobPrefix}${colors.green('✅ Done!')} Your output is in ${colors.cyanBright(outputPath)}`,\n );\n }\n }\n eventPostprocess.timeEnd();\n }\n\n const watchedInput = config.input.find(\n (input, index) => input.watch.enabled && typeof inputPaths[index]!.path === 'string',\n );\n\n if (watchedInput) {\n setTimeout(() => {\n createClient({\n config,\n dependencies,\n jobIndex,\n logger,\n watches,\n });\n }, watchedInput.watch.interval);\n }\n\n return context;\n}\n","import path from 'node:path';\nimport { fileURLToPath } from 'node:url';\n\nimport { Logger } from '@hey-api/codegen-core';\nimport type { Context } from '@hey-api/shared';\nimport {\n checkNodeVersion,\n ConfigValidationError,\n getLogs,\n JobError,\n logCrashReport,\n openGitHubIssueWithCrashReport,\n printCliIntro,\n printCrashReport,\n shouldReportCrash,\n} from '@hey-api/shared';\nimport type { LazyOrAsync, MaybeArray } from '@hey-api/types';\n\nimport type { Configs } from './config/init';\nimport { resolveJobs } from './config/init';\nimport type { UserConfig } from './config/types';\nimport { createClient as pCreateClient } from './createClient';\n\nconst __filename = fileURLToPath(import.meta.url);\nconst __dirname = path.dirname(__filename);\n\n/**\n * Generate a client from the provided configuration.\n *\n * @param userConfig User provided {@link UserConfig} configuration(s).\n */\nexport async function createClient(\n userConfig?: LazyOrAsync<MaybeArray<UserConfig>>,\n logger = new Logger(),\n): Promise<ReadonlyArray<Context>> {\n const resolvedConfig = typeof userConfig === 'function' ? await userConfig() : userConfig;\n const userConfigs = resolvedConfig\n ? resolvedConfig instanceof Array\n ? resolvedConfig\n : [resolvedConfig]\n : [];\n\n let rawLogs = userConfigs.find((config) => getLogs(config.logs).level !== 'silent')?.logs;\n if (typeof rawLogs === 'string') {\n rawLogs = getLogs(rawLogs);\n }\n\n let jobs: Configs['jobs'] = [];\n\n try {\n checkNodeVersion();\n\n const eventCreateClient = logger.timeEvent('createClient');\n\n const eventConfig = logger.timeEvent('config');\n const resolved = await resolveJobs({ logger, userConfigs });\n const dependencies = resolved.dependencies;\n jobs = resolved.jobs;\n const printIntro = jobs.some((job) => job.config.logs.level !== 'silent');\n if (printIntro) printCliIntro(__dirname);\n eventConfig.timeEnd();\n\n const configErrors = jobs.flatMap((job) =>\n job.errors.map((error) => ({ error, jobIndex: job.index })),\n );\n if (configErrors.length > 0) {\n throw new ConfigValidationError(configErrors);\n }\n\n const outputs = await Promise.all(\n jobs.map(async (job) => {\n try {\n return await pCreateClient({\n config: job.config,\n dependencies,\n jobIndex: job.index,\n logger,\n });\n } catch (error) {\n if (error instanceof Error) {\n throw new JobError('', {\n error,\n jobIndex: job.index,\n });\n }\n }\n }),\n );\n const contexts = outputs.filter((ctx): ctx is Context => ctx !== undefined);\n\n eventCreateClient.timeEnd();\n\n logger.report(jobs.some((job) => job.config.logs.level === 'debug'));\n\n return contexts;\n } catch (error) {\n const logs =\n jobs.find((job) => job.config.logs.level !== 'silent')?.config.logs ??\n jobs[0]?.config.logs ??\n rawLogs;\n const dryRun =\n jobs.some((job) => job.config.dryRun) ?? userConfigs.some((config) => config.dryRun) ?? false;\n const logPath = logs?.file && !dryRun ? logCrashReport(error, logs.path ?? '') : undefined;\n if (!logs || logs.level !== 'silent') {\n printCrashReport({ error, logPath });\n const isInteractive =\n jobs.some((job) => job.config.interactive) ??\n userConfigs.some((config) => config.interactive) ??\n false;\n if (await shouldReportCrash({ error, isInteractive })) {\n await openGitHubIssueWithCrashReport(error, __dirname);\n }\n }\n\n throw error;\n }\n}\n","/* eslint-disable @typescript-eslint/no-namespace */\n// OVERRIDES\n// hard-coded here because build process doesn't pick up overrides from separate files\nimport '@hey-api/codegen-core';\nimport '@hey-api/shared';\n\ndeclare module '@hey-api/codegen-core' {\n interface ProjectRenderMeta {\n /**\n * If specified, this will be the file extension used when importing\n * other modules. By default, we don't add a file extension and let the\n * runtime resolve it.\n *\n * @default null\n */\n importFileExtension?: AnyString | null;\n }\n\n interface SymbolMeta {\n category?:\n | 'client'\n | 'external'\n | 'hook'\n | 'schema'\n | 'sdk'\n | 'transform'\n | 'type'\n | 'utility'\n | AnyString;\n /**\n * Path to the resource this symbol represents.\n */\n path?: ReadonlyArray<string | number>;\n /**\n * Name of the plugin that registered this symbol.\n */\n pluginName?: string;\n resource?: 'client' | 'definition' | 'operation' | 'webhook' | AnyString;\n resourceId?: string;\n role?: 'data' | 'error' | 'errors' | 'options' | 'response' | 'responses' | AnyString;\n /**\n * Tags associated with this symbol.\n */\n tags?: ReadonlyArray<string>;\n tool?:\n | 'angular'\n | 'arktype'\n | 'fastify'\n | 'json-schema'\n | 'sdk'\n | 'typescript'\n | 'valibot'\n | 'zod'\n | AnyString;\n variant?: 'container' | AnyString;\n }\n}\n\ndeclare module '@hey-api/shared' {\n interface PluginConfigMap {\n '@angular/common': Plugins.AngularCommon.Types['Types'];\n '@faker-js/faker': Plugins.FakerJsFaker.Types['Types'];\n '@hey-api/client-angular': Plugins.HeyApiClientAngular.Types['Types'];\n '@hey-api/client-axios': Plugins.HeyApiClientAxios.Types['Types'];\n '@hey-api/client-fetch': Plugins.HeyApiClientFetch.Types['Types'];\n '@hey-api/client-ky': Plugins.HeyApiClientKy.Types['Types'];\n '@hey-api/client-next': Plugins.HeyApiClientNext.Types['Types'];\n '@hey-api/client-nuxt': Plugins.HeyApiClientNuxt.Types['Types'];\n '@hey-api/client-ofetch': Plugins.HeyApiClientOfetch.Types['Types'];\n '@hey-api/schemas': Plugins.HeyApiSchemas.Types['Types'];\n '@hey-api/sdk': Plugins.HeyApiSdk.Types['Types'];\n '@hey-api/transformers': Plugins.HeyApiTransformers.Types['Types'];\n '@hey-api/typescript': Plugins.HeyApiTypeScript.Types['Types'];\n '@pinia/colada': Plugins.PiniaColada.Types['Types'];\n '@tanstack/angular-query-experimental': Plugins.TanStackAngularQuery.Types['Types'];\n '@tanstack/preact-query': Plugins.TanStackPreactQuery.Types['Types'];\n '@tanstack/react-query': Plugins.TanStackReactQuery.Types['Types'];\n '@tanstack/solid-query': Plugins.TanStackSolidQuery.Types['Types'];\n '@tanstack/svelte-query': Plugins.TanStackSvelteQuery.Types['Types'];\n '@tanstack/vue-query': Plugins.TanStackVueQuery.Types['Types'];\n arktype: Plugins.Arktype.Types['Types'];\n fastify: Plugins.Fastify.Types['Types'];\n nestjs: Plugins.NestJs.Types['Types'];\n swr: Plugins.Swr.Types['Types'];\n valibot: Plugins.Valibot.Types['Types'];\n zod: Plugins.Zod.Types['Types'];\n }\n\n interface PluginInstanceTypes {\n Node: TsDsl;\n }\n}\n// END OVERRIDES\n\nimport type { AnyString, LazyOrAsync, MaybeArray } from '@hey-api/types';\nimport colors from 'ansi-colors';\n// @ts-expect-error\nimport colorSupport from 'color-support';\n\nimport type { UserConfig } from './config/types';\nimport type { AngularCommonPlugin } from './plugins/@angular/common';\nimport type { FakerJsFakerPlugin, FakerJsFakerResolvers } from './plugins/@faker-js/faker';\nimport type {\n AngularClient as AngularClientImp,\n HeyApiClientAngularPlugin,\n} from './plugins/@hey-api/client-angular';\nimport type {\n AxiosClient as AxiosClientImp,\n HeyApiClientAxiosPlugin,\n} from './plugins/@hey-api/client-axios';\nimport type {\n FetchClient as FetchClientImp,\n HeyApiClientFetchPlugin,\n} from './plugins/@hey-api/client-fetch';\nimport type { HeyApiClientKyPlugin, KyClient as KyClientImp } from './plugins/@hey-api/client-ky';\nimport type {\n HeyApiClientNextPlugin,\n NextClient as NextClientImp,\n} from './plugins/@hey-api/client-next';\nimport type {\n HeyApiClientNuxtPlugin,\n NuxtClient as NuxtClientImp,\n} from './plugins/@hey-api/client-nuxt';\nimport type {\n HeyApiClientOfetchPlugin,\n OfetchClient as OfetchClientImp,\n} from './plugins/@hey-api/client-ofetch';\nimport type { HeyApiSchemasPlugin } from './plugins/@hey-api/schemas';\nimport type { HeyApiSdkPlugin } from './plugins/@hey-api/sdk';\nimport type { HeyApiTransformersPlugin } from './plugins/@hey-api/transformers';\nimport type {\n HeyApiTypeScriptPlugin,\n HeyApiTypeScriptResolvers,\n} from './plugins/@hey-api/typescript';\nimport type { PiniaColadaPlugin } from './plugins/@pinia/colada';\nimport type { TanStackAngularQueryPlugin } from './plugins/@tanstack/angular-query-experimental';\nimport type { TanStackPreactQueryPlugin } from './plugins/@tanstack/preact-query';\nimport type { TanStackReactQueryPlugin } from './plugins/@tanstack/react-query';\nimport type { TanStackSolidQueryPlugin } from './plugins/@tanstack/solid-query';\nimport type { TanStackSvelteQueryPlugin } from './plugins/@tanstack/svelte-query';\nimport type { TanStackVueQueryPlugin } from './plugins/@tanstack/vue-query';\nimport type { ArktypePlugin } from './plugins/arktype';\nimport type { FastifyPlugin } from './plugins/fastify';\nimport type { NestJsPlugin } from './plugins/nestjs';\nimport type { SwrPlugin } from './plugins/swr';\nimport type { ValibotPlugin, ValibotResolvers } from './plugins/valibot';\nimport type { ZodPlugin, ZodResolvers } from './plugins/zod';\nimport type { TsDsl } from './ts-dsl';\n\ncolors.enabled = colorSupport().hasBasic;\n\nexport { createClient } from './generate';\n\n/**\n * Type helper for configuration object, returns {@link MaybeArray<UserConfig>} object(s)\n */\nexport function defineConfig(\n config: LazyOrAsync<ReadonlyArray<UserConfig>>,\n): Promise<ReadonlyArray<UserConfig>>;\nexport function defineConfig(config: LazyOrAsync<UserConfig>): Promise<UserConfig>;\nexport async function defineConfig<T extends MaybeArray<UserConfig>>(\n config: LazyOrAsync<T>,\n): Promise<T> {\n return typeof config === 'function' ? await config() : config;\n}\n\nexport { defaultPlugins } from './config/plugins';\nexport type { UserConfig } from './config/types';\nexport { clientDefaultConfig, clientDefaultMeta } from './plugins/@hey-api/client-core/config';\nexport { clientPluginHandler } from './plugins/@hey-api/client-core/plugin';\nexport type { Client } from './plugins/@hey-api/client-core/types';\nexport type { ExpressionTransformer } from './plugins/@hey-api/transformers/expressions';\nexport type { TypeTransformer } from './plugins/@hey-api/transformers/types';\nexport * from './ts-dsl';\nexport { Logger } from '@hey-api/codegen-core';\nexport type {\n DefinePlugin,\n IR,\n OpenApi,\n OpenApiMetaObject,\n OpenApiOperationObject,\n OpenApiParameterObject,\n OpenApiRequestBodyObject,\n OpenApiResponseObject,\n OpenApiSchemaObject,\n Plugin,\n} from '@hey-api/shared';\nexport {\n defaultPaginationKeywords,\n definePluginConfig,\n OperationPath,\n OperationStrategy,\n utils,\n} from '@hey-api/shared';\n\nexport namespace Plugins {\n export namespace AngularCommon {\n export type Types = AngularCommonPlugin;\n }\n\n export namespace Arktype {\n export type Types = ArktypePlugin;\n }\n\n export namespace FakerJsFaker {\n export type Types = FakerJsFakerPlugin;\n export type Resolvers = Required<FakerJsFakerResolvers>['~resolvers'];\n }\n\n export namespace Fastify {\n export type Types = FastifyPlugin;\n }\n\n export namespace HeyApiClientAngular {\n export type Client = AngularClientImp;\n export type Types = HeyApiClientAngularPlugin;\n }\n\n export namespace HeyApiClientAxios {\n export type Client = AxiosClientImp;\n export type Types = HeyApiClientAxiosPlugin;\n }\n\n export namespace HeyApiClientFetch {\n export type Client = FetchClientImp;\n export type Types = HeyApiClientFetchPlugin;\n }\n\n export namespace HeyApiClientKy {\n export type Client = KyClientImp;\n export type Types = HeyApiClientKyPlugin;\n }\n\n export namespace HeyApiClientNext {\n export type Client = NextClientImp;\n export type Types = HeyApiClientNextPlugin;\n }\n\n export namespace HeyApiClientNuxt {\n export type Client = NuxtClientImp;\n export type Types = HeyApiClientNuxtPlugin;\n }\n\n export namespace HeyApiClientOfetch {\n export type Client = OfetchClientImp;\n export type Types = HeyApiClientOfetchPlugin;\n }\n\n export namespace HeyApiSchemas {\n export type Types = HeyApiSchemasPlugin;\n }\n\n export namespace HeyApiSdk {\n export type Types = HeyApiSdkPlugin;\n }\n\n export namespace HeyApiTransformers {\n export type Types = HeyApiTransformersPlugin;\n }\n\n export namespace HeyApiTypeScript {\n export type Resolvers = Required<HeyApiTypeScriptResolvers>['~resolvers'];\n export type Types = HeyApiTypeScriptPlugin;\n }\n\n export namespace NestJs {\n export type Types = NestJsPlugin;\n }\n\n export namespace PiniaColada {\n export type Types = PiniaColadaPlugin;\n }\n\n export namespace Swr {\n export type Types = SwrPlugin;\n }\n\n export namespace TanStackAngularQuery {\n export type Types = TanStackAngularQueryPlugin;\n }\n\n export namespace TanStackPreactQuery {\n export type Types = TanStackPreactQueryPlugin;\n }\n\n export namespace TanStackReactQuery {\n export type Types = TanStackReactQueryPlugin;\n }\n\n export namespace TanStackSolidQuery {\n export type Types = TanStackSolidQueryPlugin;\n }\n\n export namespace TanStackSvelteQuery {\n export type Types = TanStackSvelteQueryPlugin;\n }\n\n export namespace TanStackVueQuery {\n export type Types = TanStackVueQueryPlugin;\n }\n\n export namespace Valibot {\n export type Resolvers = Required<ValibotResolvers>['~resolvers'];\n export type Types = ValibotPlugin;\n }\n\n export namespace Zod {\n export type Resolvers = Required<ZodResolvers>['~resolvers'];\n export type Types = ZodPlugin;\n }\n}\n\n// DEPRECATED\n/** @deprecated Use `Plugins.HeyApiClientAngular.Client` instead. */\nexport type AngularClient = AngularClientImp;\n/** @deprecated Use `Plugins.HeyApiClientAxios.Client` instead. */\nexport type AxiosClient = AxiosClientImp;\n/** @deprecated Use `Plugins.HeyApiClientFetch.Client` instead. */\nexport type FetchClient = FetchClientImp;\n/** @deprecated Use `Plugins.HeyApiClientKy.Client` instead. */\nexport type KyClient = KyClientImp;\n/** @deprecated Use `Plugins.HeyApiClientNext.Client` instead. */\nexport type NextClient = NextClientImp;\n/** @deprecated Use `Plugins.HeyApiClientNuxt.Client` instead. */\nexport type NuxtClient = NuxtClientImp;\n/** @deprecated Use `Plugins.HeyApiClientOfetch.Client` instead. */\nexport type OfetchClient = OfetchClientImp;\n"],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseConfig, BaseOutput, BaseUserConfig, BaseUserOutput, Plugin, PluginConfigMap, PluginNames, UserPostProcessor } from "@hey-api/shared";
|
|
2
|
-
import
|
|
2
|
+
import { TsConfigJsonResolved } from "get-tsconfig";
|
|
3
3
|
import { AnyString } from "@hey-api/types";
|
|
4
4
|
|
|
5
5
|
//#region src/config/output/postprocess.d.ts
|
|
@@ -125,7 +125,7 @@ type Output = BaseOutput & {
|
|
|
125
125
|
* The parsed TypeScript configuration used to generate the output.
|
|
126
126
|
* If no `tsconfig` file path was provided or found, this will be `null`.
|
|
127
127
|
*/
|
|
128
|
-
tsConfig:
|
|
128
|
+
tsConfig: TsConfigJsonResolved | null;
|
|
129
129
|
/**
|
|
130
130
|
* Relative or absolute path to the tsconfig file we should use to
|
|
131
131
|
* generate the output. If a path to tsconfig file is not provided, we
|
|
@@ -154,4 +154,4 @@ type Config = BaseConfig<UserConfig, Output> & {
|
|
|
154
154
|
};
|
|
155
155
|
//#endregion
|
|
156
156
|
export { UserConfig as n, Config as t };
|
|
157
|
-
//# sourceMappingURL=types-
|
|
157
|
+
//# sourceMappingURL=types-CR-cSsLu.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types-CR-cSsLu.d.mts","names":[],"sources":["../src/config/output/postprocess.ts","../src/config/output/types.ts","../src/config/types.ts"],"mappings":";;;;;;;;KAKY,UAAA;;AAAZ;;KAKY,OAAA;AAAA,cAEC,cAAA;EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAiCD,mBAAA,gBAAmC,cAAA;;;KCvC1C,oBAAA;AAAA,KAEO,UAAA,GAAa,cAAA;EDHH;;;;AAKtB;;ECKE,MAAA,GAAS,UAAA;EDLQ;;AAEnB;;;;;;ECYE,mBAAA,GAAsB,oBAAA,GAAuB,SAAA;;;;;;;EAO7C,IAAA,GAAO,OAAA;;;;;;;;;;;;EAYP,WAAA,GAAc,aAAA,CAAc,mBAAA,GAAsB,iBAAA;;;;;ADEpD;;ECKE,eAAA;EDL6C;;;;;ACzC+B;;;EAuD5E,YAAA,GAAe,SAAA;AAAA;AAAA,KAGL,MAAA,GAAS,UAAA;EAtDC;;;EA0DpB,MAAA,EAAQ,UAAA;EA1Cc;;;;;;EAiDtB,mBAAA,EAAqB,oBAAA,GAAuB,SAAA;EAdpB;;;EAkBxB,IAAA,EAAM,OAAA;EA9DG;;;;EAmET,eAAA;EAnDO;;;;EAwDP,QAAA,EAAU,oBAAA;EArCV;;;;;AAYF;EAgCE,YAAA,EAAc,SAAA;AAAA;;;KCpFJ,UAAA,GAAa,cAAA,CAAe,UAAA;;;AFLxC;;;;;EEaE,OAAA,GAAU,aAAA,CACN,WAAA,WAEQ,WAAA,GAAc,eAAA,CAAgB,CAAA;IAClC,IAAA,EAAM,CAAA;EAAA,IAER,WAAA;AAAA;AAAA,KAII,MAAA,GAAS,UAAA,CAAW,UAAA,EAAY,MAAA;EAC1C,WAAA,EAAa,aAAA,OAAoB,eAAA;EACjC,OAAA,UACQ,WAAA,IAAe,MAAA,CAAO,MAAA,CAAO,eAAA,CAAgB,CAAA;AAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hey-api/openapi-ts",
|
|
3
|
-
"version": "0.94.
|
|
3
|
+
"version": "0.94.2",
|
|
4
4
|
"description": "🌀 OpenAPI to TypeScript codegen. Production-ready SDKs, Zod schemas, TanStack Query hooks, and 20+ plugins. Used by Vercel, OpenCode, and PayPal.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -65,10 +65,11 @@
|
|
|
65
65
|
"ansi-colors": "4.1.3",
|
|
66
66
|
"color-support": "1.1.3",
|
|
67
67
|
"commander": "14.0.3",
|
|
68
|
+
"get-tsconfig": "4.13.6",
|
|
69
|
+
"@hey-api/codegen-core": "0.7.3",
|
|
68
70
|
"@hey-api/json-schema-ref-parser": "1.3.1",
|
|
69
|
-
"@hey-api/
|
|
70
|
-
"@hey-api/types": "0.1.
|
|
71
|
-
"@hey-api/shared": "0.2.3"
|
|
71
|
+
"@hey-api/shared": "0.2.4",
|
|
72
|
+
"@hey-api/types": "0.1.4"
|
|
72
73
|
},
|
|
73
74
|
"devDependencies": {
|
|
74
75
|
"@angular/common": "21.1.2",
|
|
@@ -90,7 +91,7 @@
|
|
|
90
91
|
"zone.js": "0.16.0"
|
|
91
92
|
},
|
|
92
93
|
"peerDependencies": {
|
|
93
|
-
"typescript": ">=5.5.3"
|
|
94
|
+
"typescript": ">=5.5.3 || 6.0.1-rc"
|
|
94
95
|
},
|
|
95
96
|
"engines": {
|
|
96
97
|
"node": ">=20.19.0"
|