orval 8.12.2 → 8.13.0

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.
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config-Cyybmy9c.mjs","names":["validateSpec","isNullish","fs","nodePath","path","pkg.name","pkg.version","version","fs"],"sources":["../package.json","../src/client.ts","../src/api.ts","../src/import-open-api.ts","../src/import-specs.ts","../src/formatters/prettier.ts","../src/utils/execute-hook.ts","../src/utils/package-json.ts","../src/utils/tsconfig.ts","../src/utils/options.ts","../src/utils/watcher.ts","../src/reusable-schemas.ts","../src/write-zod-specs.ts","../src/write-specs.ts","../src/generate-spec.ts","../src/utils/config.ts"],"sourcesContent":["","import angular from '@orval/angular';\nimport axios from '@orval/axios';\nimport type {\n AngularOptions,\n ClientFileBuilder,\n ClientGeneratorsBuilder,\n ClientMockGeneratorBuilder,\n ContextSpec,\n GeneratorClientFooter,\n GeneratorClientHeader,\n GeneratorClientImports,\n GeneratorClients,\n GeneratorClientTitle,\n GeneratorOperations,\n GeneratorOptions,\n GeneratorVerbOptions,\n GeneratorVerbsOptions,\n NormalizedOutputOptions,\n OutputClientFunc,\n} from '@orval/core';\nimport {\n asyncReduce,\n generateDependencyImports,\n getBaseUrlRuntimeImports,\n isFunction,\n logWarning,\n OutputClient,\n OutputMockType,\n pascal,\n} from '@orval/core';\nimport fetchClient from '@orval/fetch';\nimport hono from '@orval/hono';\nimport mcp from '@orval/mcp';\nimport * as mock from '@orval/mock';\nimport query from '@orval/query';\nimport solidStart from '@orval/solid-start';\nimport swr from '@orval/swr';\nimport zod from '@orval/zod';\n\nconst DEFAULT_CLIENT = OutputClient.AXIOS;\n\nconst getGeneratorClient = (\n outputClient: OutputClient | OutputClientFunc,\n output: NormalizedOutputOptions,\n) => {\n const angularBuilder = angular() as (\n options?: AngularOptions,\n ) => ClientGeneratorsBuilder;\n const GENERATOR_CLIENT: GeneratorClients = {\n axios: axios({ type: 'axios' })(),\n 'axios-functions': axios({ type: 'axios-functions' })(),\n angular: angularBuilder(output.override.angular),\n 'angular-query': query({ output, type: 'angular-query' })(),\n 'react-query': query({ output, type: 'react-query' })(),\n 'solid-start': solidStart()(),\n 'solid-query': query({ output, type: 'solid-query' })(),\n 'svelte-query': query({ output, type: 'svelte-query' })(),\n 'vue-query': query({ output, type: 'vue-query' })(),\n swr: swr()(),\n zod: zod()(),\n hono: hono()(),\n fetch: fetchClient()(),\n mcp: mcp()(),\n };\n\n const generator = isFunction(outputClient)\n ? outputClient(GENERATOR_CLIENT)\n : GENERATOR_CLIENT[outputClient];\n\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- defensive guard for custom OutputClientFunc returning unexpected values\n if (!generator) {\n throw new Error(\n `Unknown output client provided to getGeneratorClient: ${String(outputClient)}`,\n );\n }\n\n return generator;\n};\n\nexport const generateClientImports: GeneratorClientImports = ({\n client,\n implementation,\n imports,\n projectName,\n hasSchemaDir,\n isAllowSyntheticDefaultImports,\n hasGlobalMutator,\n hasTagsMutator,\n hasParamsSerializerOptions,\n packageJson,\n output,\n}) => {\n const { dependencies } = getGeneratorClient(client, output);\n return generateDependencyImports(\n implementation,\n dependencies\n ? [\n ...dependencies(\n hasGlobalMutator,\n hasParamsSerializerOptions,\n packageJson,\n output.httpClient,\n hasTagsMutator,\n output.override,\n ),\n ...imports,\n ]\n : (imports as Parameters<typeof generateDependencyImports>[1]),\n projectName,\n hasSchemaDir,\n isAllowSyntheticDefaultImports,\n );\n};\n\nexport const generateClientHeader: GeneratorClientHeader = ({\n outputClient = DEFAULT_CLIENT,\n isRequestOptions,\n isGlobalMutator,\n isMutator,\n provideIn,\n hasAwaitedType,\n titles,\n output,\n verbOptions,\n tag,\n isDefaultTagBucket,\n clientImplementation,\n}) => {\n const { header } = getGeneratorClient(outputClient, output);\n\n return {\n implementation: header\n ? header({\n title: titles.implementation,\n isRequestOptions,\n isGlobalMutator,\n isMutator,\n provideIn,\n hasAwaitedType,\n output,\n verbOptions,\n tag,\n isDefaultTagBucket,\n clientImplementation,\n })\n : '',\n implementationMock: `export const ${titles.implementationMock} = () => [\\n`,\n };\n};\n\nexport const generateClientFooter: GeneratorClientFooter = ({\n outputClient,\n operationNames,\n hasMutator,\n hasAwaitedType,\n titles,\n output,\n}) => {\n const { footer } = getGeneratorClient(outputClient, output);\n\n if (!footer) {\n return {\n implementation: '',\n implementationMock: `\\n]\\n`,\n };\n }\n\n let implementation: string;\n try {\n if (isFunction(outputClient)) {\n implementation = (\n footer as unknown as (operationNames: string[]) => string\n )(operationNames);\n // being here means that the previous call worked\n logWarning(\n '⚠️ Passing an array of strings for operations names to the footer function is deprecated and will be removed in a future major release. Please pass them in an object instead: { operationNames: string[] }.',\n );\n } else {\n implementation = footer({\n operationNames,\n title: titles.implementation,\n hasMutator,\n hasAwaitedType,\n });\n }\n } catch {\n implementation = footer({\n operationNames,\n title: titles.implementation,\n hasMutator,\n hasAwaitedType,\n });\n }\n\n return {\n implementation,\n implementationMock: `]\\n`,\n };\n};\n\nexport const generateClientTitle: GeneratorClientTitle = ({\n outputClient = DEFAULT_CLIENT,\n title,\n customTitleFunc,\n output,\n}) => {\n const { title: generatorTitle } = getGeneratorClient(outputClient, output);\n\n if (!generatorTitle) {\n return {\n implementation: '',\n implementationMock: `get${pascal(title)}Mock`,\n };\n }\n\n if (customTitleFunc) {\n const customTitle = customTitleFunc(title);\n return {\n implementation: generatorTitle(customTitle),\n implementationMock: `get${pascal(customTitle)}Mock`,\n };\n }\n return {\n implementation: generatorTitle(title),\n implementationMock: `get${pascal(title)}Mock`,\n };\n};\n\n/**\n * Invokes the underlying mock generator (msw, faker, or a user-provided\n * ClientMockBuilder) for a single generator entry. Returns the standard\n * `ClientMockGeneratorBuilder` shape (function/handler/handlerName +\n * imports) regardless of which generator handled it.\n */\nconst invokeMockGenerator = (\n verbOption: GeneratorVerbOptions,\n options: GeneratorOptions,\n entry: NonNullable<NormalizedOutputOptions['mock']['generators'][number]>,\n): ClientMockGeneratorBuilder => {\n if (isFunction(entry)) {\n return entry(verbOption, {\n ...options,\n mock: entry,\n });\n }\n return mock.generateMock(verbOption, {\n ...options,\n mock: entry,\n });\n};\n\nexport const generateOperations = (\n outputClient: OutputClient | OutputClientFunc = DEFAULT_CLIENT,\n verbsOptions: GeneratorVerbsOptions,\n options: GeneratorOptions,\n output: NormalizedOutputOptions,\n): Promise<GeneratorOperations> => {\n const baseUrlImports = getBaseUrlRuntimeImports(output.baseUrl);\n\n return asyncReduce(\n verbsOptions,\n async (acc, verbOption) => {\n const { client: generatorClient } = getGeneratorClient(\n outputClient,\n output,\n );\n const client = await generatorClient(\n verbOption,\n options,\n outputClient,\n output,\n );\n\n if (!client.implementation) {\n return acc;\n }\n\n // Run every configured mock generator for this operation. Each entry\n // contributes its own GeneratorMockOutputFull so writers can split the\n // results across per-type output files (e.g. `.msw.ts` + `.faker.ts`).\n // Function-form entries (ClientMockBuilder) inherit the historical\n // `msw` file extension and are treated as msw outputs for downstream\n // bookkeeping.\n const mockOutputs = output.mock.generators\n .filter((entry) => {\n // A faker entry with `operationResponses: false` opts out of the\n // per-operation `get<Op>ResponseMock` factories. The consolidated\n // schemas file (when `schemas: true`) is emitted separately and is\n // unaffected by this filter.\n if (\n !isFunction(entry) &&\n entry.type === OutputMockType.FAKER &&\n entry.operationResponses === false\n ) {\n return false;\n }\n return true;\n })\n .map((entry) => {\n const generated = invokeMockGenerator(verbOption, options, entry);\n return {\n type: isFunction(entry) ? OutputMockType.MSW : entry.type,\n implementation: generated.implementation,\n imports: generated.imports,\n };\n });\n\n const hasImplementation = client.implementation.trim().length > 0;\n const preferredOperationKey = verbOption.operationName;\n const baseOperationKey = verbOption.operationId\n ? `${verbOption.operationId}::${verbOption.operationName}`\n : verbOption.operationName;\n let operationKey = Object.hasOwn(acc, preferredOperationKey)\n ? baseOperationKey\n : preferredOperationKey;\n let collisionIndex = 1;\n\n while (Object.hasOwn(acc, operationKey)) {\n collisionIndex += 1;\n operationKey = `${baseOperationKey}::${collisionIndex}`;\n }\n\n acc[operationKey] = {\n implementation: hasImplementation\n ? (client.docComment ?? verbOption.doc) + client.implementation\n : client.implementation,\n imports: [...baseUrlImports, ...client.imports],\n mockOutputs,\n tags: verbOption.tags,\n mutator: verbOption.mutator,\n clientMutators: client.mutators,\n formData: verbOption.formData,\n formUrlEncoded: verbOption.formUrlEncoded,\n paramsSerializer: verbOption.paramsSerializer,\n paramsFilter: verbOption.paramsFilter,\n operationName: verbOption.operationName,\n fetchReviver: verbOption.fetchReviver,\n };\n\n return acc;\n },\n {} as GeneratorOperations,\n );\n};\n\nexport const generateExtraFiles = (\n outputClient: OutputClient | OutputClientFunc = DEFAULT_CLIENT,\n verbsOptions: Record<string, GeneratorVerbOptions>,\n output: NormalizedOutputOptions,\n context: ContextSpec,\n): Promise<ClientFileBuilder[]> => {\n const { extraFiles: generateExtraFiles } = getGeneratorClient(\n outputClient,\n output,\n );\n\n if (!generateExtraFiles) {\n return Promise.resolve([]);\n }\n\n return generateExtraFiles(verbsOptions, output, context);\n};\n","import {\n asyncReduce,\n type ContextSpec,\n generateVerbsOptions,\n type GeneratorApiBuilder,\n type GeneratorApiOperations,\n type GeneratorSchema,\n getFullRoute,\n getRoute,\n GetterPropType,\n isReference,\n type NormalizedInputOptions,\n type NormalizedOutputOptions,\n type OpenApiPathItemObject,\n resolveRef,\n} from '@orval/core';\nimport { generateMockImports } from '@orval/mock';\n\nimport {\n generateClientFooter,\n generateClientHeader,\n generateClientImports,\n generateClientTitle,\n generateExtraFiles,\n generateOperations,\n} from './client';\n\nexport async function getApiBuilder({\n input,\n output,\n context,\n}: {\n input: NormalizedInputOptions;\n output: NormalizedOutputOptions;\n context: ContextSpec;\n}): Promise<GeneratorApiBuilder> {\n const api = await asyncReduce(\n Object.entries(context.spec.paths ?? {}),\n async (acc, [pathRoute, verbs]) => {\n if (!verbs) {\n return acc;\n }\n\n const route = getRoute(pathRoute);\n\n let resolvedVerbs: OpenApiPathItemObject = verbs;\n\n if (isReference(verbs)) {\n const { schema }: { schema: OpenApiPathItemObject } = resolveRef(\n verbs,\n context,\n );\n\n resolvedVerbs = schema;\n }\n\n let verbsOptions = await generateVerbsOptions({\n verbs: resolvedVerbs,\n input,\n output,\n route,\n pathRoute,\n context,\n });\n\n // GitHub #564 check if we want to exclude deprecated operations\n if (output.override.useDeprecatedOperations === false) {\n verbsOptions = verbsOptions.filter((verb) => {\n return !verb.deprecated;\n });\n }\n\n const schemas: GeneratorSchema[] = [];\n for (const {\n queryParams,\n headers,\n body,\n response,\n props,\n } of verbsOptions) {\n schemas.push(\n ...props.flatMap((param) =>\n param.type === GetterPropType.NAMED_PATH_PARAMS ? param.schema : [],\n ),\n );\n if (queryParams) {\n schemas.push(queryParams.schema, ...queryParams.deps);\n }\n if (headers) {\n schemas.push(headers.schema, ...headers.deps);\n }\n\n schemas.push(...body.schemas, ...response.schemas);\n }\n\n const fullRoute = getFullRoute(\n route,\n resolvedVerbs.servers ?? context.spec.servers,\n output.baseUrl,\n );\n if (!output.target) {\n throw new Error('Output does not have a target');\n }\n const pathOperations = await generateOperations(\n output.client,\n verbsOptions,\n {\n route: fullRoute,\n pathRoute,\n override: output.override,\n context,\n output: output.target,\n },\n output,\n );\n\n for (const verbOption of verbsOptions) {\n acc.verbOptions[verbOption.operationId] = verbOption;\n }\n acc.schemas.push(...schemas);\n acc.operations = { ...acc.operations, ...pathOperations };\n\n return acc;\n },\n {\n operations: {},\n verbOptions: {},\n schemas: [],\n } as GeneratorApiOperations,\n );\n\n const extraFiles = await generateExtraFiles(\n output.client,\n api.verbOptions,\n output,\n context,\n );\n\n return {\n operations: api.operations,\n schemas: api.schemas,\n verbOptions: api.verbOptions,\n title: generateClientTitle,\n header: generateClientHeader,\n footer: generateClientFooter,\n imports: generateClientImports,\n importsMock: generateMockImports,\n extraFiles,\n };\n}\n","import {\n collectReferencedComponents,\n type ContextSpec,\n generateComponentDefinition,\n generateParameterDefinition,\n generateSchemasDefinition,\n type ImportOpenApi,\n type InputOptions,\n type NormalizedOutputOptions,\n type OpenApiComponentsObject,\n type OpenApiDocument,\n type WriteSpecBuilder,\n} from '@orval/core';\nimport { pick } from 'remeda';\n\nimport { getApiBuilder } from './api';\n\nfunction filterSpecComponents(\n spec: OpenApiDocument,\n input: InputOptions,\n): OpenApiDocument {\n const filters = input.filters;\n if (!filters?.tags || filters.schemas) return spec;\n\n const referenced = collectReferencedComponents(\n spec,\n filters.tags,\n filters.mode,\n );\n\n return {\n ...spec,\n components: {\n ...spec.components,\n schemas: pick(spec.components?.schemas ?? {}, referenced.schemas),\n responses: pick(spec.components?.responses ?? {}, referenced.responses),\n parameters: pick(\n spec.components?.parameters ?? {},\n referenced.parameters,\n ),\n requestBodies: pick(\n spec.components?.requestBodies ?? {},\n referenced.requestBodies,\n ),\n },\n };\n}\n\nexport async function importOpenApi({\n spec,\n input,\n output,\n target,\n workspace,\n projectName,\n}: ImportOpenApi): Promise<WriteSpecBuilder> {\n // The transformer has already been applied (pre-validation) in `resolveSpec`.\n const filteredSpec = filterSpecComponents(spec, input);\n\n const schemas = getApiSchemas({\n input,\n output,\n target,\n workspace,\n spec: filteredSpec,\n });\n\n const api = await getApiBuilder({\n input,\n output,\n context: {\n projectName,\n target,\n workspace,\n spec: filteredSpec,\n output,\n } satisfies ContextSpec,\n });\n\n return {\n ...api,\n schemas: [...schemas, ...api.schemas],\n target,\n // a valid spec will have info\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n info: filteredSpec.info!,\n spec: filteredSpec,\n };\n}\n\ninterface GetApiSchemasOptions {\n input: InputOptions;\n output: NormalizedOutputOptions;\n workspace: string;\n target: string;\n spec: OpenApiDocument;\n}\n\nfunction getApiSchemas({\n input,\n output,\n target,\n workspace,\n spec,\n}: GetApiSchemasOptions) {\n const context: ContextSpec = {\n target,\n workspace,\n spec,\n output,\n };\n\n const schemaDefinition = generateSchemasDefinition(\n spec.components?.schemas,\n context,\n output.override.components.schemas.suffix,\n input.filters,\n );\n\n const responseDefinition = generateComponentDefinition(\n spec.components?.responses,\n context,\n output.override.components.responses.suffix,\n );\n\n const swaggerResponseDefinition = generateComponentDefinition(\n 'responses' in spec\n ? (spec as { responses?: OpenApiComponentsObject['responses'] }).responses\n : undefined,\n context,\n '',\n );\n\n const bodyDefinition = generateComponentDefinition(\n spec.components?.requestBodies,\n context,\n output.override.components.requestBodies.suffix,\n );\n\n const parameters = generateParameterDefinition(\n spec.components?.parameters,\n context,\n output.override.components.parameters.suffix,\n );\n\n const schemas = [\n ...schemaDefinition,\n ...responseDefinition,\n ...swaggerResponseDefinition,\n ...bodyDefinition,\n ...parameters,\n ];\n\n return schemas;\n}\n","import {\n dynamicImport,\n isObject,\n isString,\n logWarning,\n type NormalizedOptions,\n type OpenApiDocument,\n type OverrideInput,\n type WriteSpecBuilder,\n} from '@orval/core';\nimport { bundle } from '@scalar/json-magic/bundle';\nimport {\n fetchUrls,\n parseJson,\n parseYaml,\n readFiles,\n} from '@scalar/json-magic/bundle/plugins/node';\nimport { upgrade, validate as validateSpec } from '@scalar/openapi-parser';\nimport { isNullish } from 'remeda';\n\nimport { importOpenApi } from './import-open-api';\n\ninterface ResolveSpecOptions {\n parserOptions?: {\n headers?: {\n domains: string[];\n headers: Record<string, string>;\n }[];\n };\n transformer?: OverrideInput['transformer'];\n workspace: string;\n unsafeDisableValidation?: boolean;\n}\n\nasync function resolveSpec(\n input: string | Record<string, unknown>,\n {\n parserOptions,\n transformer,\n workspace,\n unsafeDisableValidation = false,\n }: ResolveSpecOptions,\n): Promise<OpenApiDocument> {\n const data = await bundle(input, {\n plugins: [\n readFiles(),\n fetchUrls({\n headers: parserOptions?.headers,\n }),\n parseJson(),\n parseYaml(),\n ],\n treeShake: false,\n });\n const dereferencedData = dereferenceExternalRef(\n data as Record<string, unknown>,\n );\n\n // Apply user-provided transformer before validation so users can repair\n // malformed specs in-place. The transformer is typed against\n // `OpenApiDocument`, but we pass the raw bundled object — repairing a spec\n // necessarily means it does not yet conform to the type at call time.\n const transformedData = transformer\n ? await applyInputTransformer(dereferencedData, transformer, workspace)\n : dereferencedData;\n\n if (unsafeDisableValidation) {\n logWarning(\n `🚨 OpenAPI spec validation is disabled.\\n` +\n ` Code generation with invalid specs is not guaranteed to work and may break in minor updates.\\n` +\n ` Bug reports with validation disabled will not be accepted.`,\n );\n } else {\n validateComponentKeys(transformedData);\n\n const { valid, errors } = await validateSpec(transformedData);\n if (!valid) {\n throw new Error(\n `OpenAPI spec validation failed:\\n${JSON.stringify(errors, undefined, 2)}`,\n );\n }\n }\n\n const { specification } = upgrade(transformedData);\n\n // upgrade() returns @scalar/openapi-types/3.1 Document (openapi: string);\n // OpenApiDocument uses the legacy OpenAPIV3_1 namespace (openapi version literals).\n return specification as OpenApiDocument;\n}\n\nasync function applyInputTransformer(\n data: Record<string, unknown>,\n transformer: NonNullable<OverrideInput['transformer']>,\n workspace: string,\n): Promise<Record<string, unknown>> {\n const transformerFn = await dynamicImport(transformer, workspace);\n const result: unknown = await transformerFn(\n data as unknown as OpenApiDocument,\n );\n if (!isObject(result)) {\n const source = isString(transformer)\n ? transformer\n : transformerFn.name || '<inline function>';\n throw new Error(\n `input.override.transformer must return an OpenAPI document object; ` +\n `got ${result === undefined ? 'undefined' : typeof result} from ${source}. ` +\n `Ensure your transformer returns the (possibly modified) spec.`,\n );\n }\n return result;\n}\n\nexport async function importSpecs(\n workspace: string,\n options: NormalizedOptions,\n projectName?: string,\n): Promise<WriteSpecBuilder> {\n const { input, output } = options;\n\n const spec = await resolveSpec(input.target, {\n parserOptions: input.parserOptions,\n transformer: input.override.transformer,\n workspace,\n unsafeDisableValidation: input.unsafeDisableValidation,\n });\n\n return importOpenApi({\n spec,\n input,\n output,\n target: isString(input.target) ? input.target : workspace,\n workspace,\n projectName,\n });\n}\n\nconst COMPONENT_KEY_PATTERN = /^[a-zA-Z0-9.\\-_]+$/;\n\nconst COMPONENT_SECTIONS = [\n 'schemas',\n 'responses',\n 'parameters',\n 'examples',\n 'requestBodies',\n 'headers',\n 'securitySchemes',\n 'links',\n 'callbacks',\n 'pathItems', // OAS 3.1.0+\n] as const;\n\n/**\n * Validate that all component keys conform to the OAS regex: ^[a-zA-Z0-9.\\-_]+$\n * @see https://spec.openapis.org/oas/v3.0.3.html#fixed-fields-5\n * @see https://spec.openapis.org/oas/v3.1.0#fixed-fields-5\n */\nexport function validateComponentKeys(data: Record<string, unknown>): void {\n const components = data.components;\n if (!isObject(components)) return;\n\n const invalidKeys: string[] = [];\n\n for (const section of COMPONENT_SECTIONS) {\n const sectionObj = components[section];\n if (!isObject(sectionObj)) continue;\n\n for (const key of Object.keys(sectionObj)) {\n if (!COMPONENT_KEY_PATTERN.test(key)) {\n invalidKeys.push(`components.${section}.${key}`);\n }\n }\n }\n\n if (invalidKeys.length > 0) {\n throw new Error(\n `Invalid component key${invalidKeys.length > 1 ? 's' : ''} found. ` +\n `OpenAPI component keys must match the pattern ${COMPONENT_KEY_PATTERN} ` +\n `(non-ASCII characters are not allowed per the spec).\\n` +\n ` See: https://spec.openapis.org/oas/v3.0.3.html#components-object\\n` +\n ` Invalid keys:\\n` +\n invalidKeys.map((k) => ` - ${k}`).join('\\n'),\n );\n }\n}\n\n/**\n * The plugins from `@scalar/json-magic` does not dereference $ref.\n * Instead it fetches them and puts them under x-ext, and changes the $ref to point to #x-ext/<name>.\n * This function:\n * 1. Merges external schemas into main spec's components.schemas (with collision handling)\n * 2. Replaces x-ext refs with standard component refs or inlined content\n */\nexport function dereferenceExternalRef(\n data: Record<string, unknown>,\n): Record<string, unknown> {\n const extensions = (data['x-ext'] ?? {}) as Record<string, unknown>;\n\n // Step 1: Merge external schemas into main spec with collision handling\n const schemaNameMappings = mergeExternalSchemas(data, extensions);\n\n // Step 2: Replace all x-ext refs throughout the document\n const result: Record<string, unknown> = {};\n for (const [key, value] of Object.entries(data)) {\n if (key !== 'x-ext') {\n result[key] = replaceXExtRefs(value, extensions, schemaNameMappings);\n }\n }\n\n return result;\n}\n\n/**\n * Merge external document schemas into main spec's components.schemas\n * Returns mapping of original schema names to final names (with suffixes for collisions)\n */\nfunction mergeExternalSchemas(\n data: Record<string, unknown>,\n extensions: Record<string, unknown>,\n): Record<string, Record<string, string>> {\n const schemaNameMappings: Record<string, Record<string, string>> = {};\n\n if (Object.keys(extensions).length === 0) return schemaNameMappings;\n\n data.components ??= {};\n const mainComponents = data.components as Record<string, unknown>;\n mainComponents.schemas ??= {};\n const mainSchemas = mainComponents.schemas as Record<string, unknown>;\n\n // Merge schemas from each external doc\n // Collision handling:\n // - If schema already exists in main spec, add x-ext key as suffix (e.g., User -> User_external1)\n // - x-ext refs in main spec get replaced by actual schema from external doc\n for (const [extKey, extDoc] of Object.entries(extensions)) {\n schemaNameMappings[extKey] = {};\n\n if (isObject(extDoc) && 'components' in extDoc) {\n const extComponents = extDoc.components as Record<string, unknown>;\n if (isObject(extComponents) && 'schemas' in extComponents) {\n const extSchemas = extComponents.schemas as Record<string, unknown>;\n for (const [schemaName, schema] of Object.entries(extSchemas)) {\n // Check if main schema is just an x-ext ref - if so, replace it without suffix\n const existingSchema = mainSchemas[schemaName];\n const isXExtRef =\n isObject(existingSchema) &&\n '$ref' in existingSchema &&\n isString(existingSchema.$ref) &&\n existingSchema.$ref.startsWith('#/x-ext/');\n\n let finalSchemaName = schemaName;\n\n if (schemaName in mainSchemas && !isXExtRef) {\n // Collision: add suffix to external schema\n const suffix = extKey.replaceAll(/[^a-zA-Z0-9]/g, '_');\n finalSchemaName = `${schemaName}_${suffix}`;\n schemaNameMappings[extKey][schemaName] = finalSchemaName;\n } else {\n // No collision or replacing x-ext ref\n schemaNameMappings[extKey][schemaName] = schemaName;\n }\n\n mainSchemas[finalSchemaName] = scrubUnwantedKeys(schema);\n }\n }\n }\n }\n\n // Apply internal ref updates to all schemas from external docs\n for (const [extKey, mapping] of Object.entries(schemaNameMappings)) {\n for (const [, finalName] of Object.entries(mapping)) {\n const schema = mainSchemas[finalName];\n if (schema) {\n mainSchemas[finalName] = updateInternalRefs(\n schema,\n extKey,\n schemaNameMappings,\n ) as Record<string, unknown>;\n }\n }\n }\n\n return schemaNameMappings;\n}\n\n/**\n * Remove unwanted keys like $schema and $id from objects\n */\nfunction scrubUnwantedKeys(obj: unknown): unknown {\n const UNWANTED_KEYS = new Set(['$schema', '$id']);\n\n if (obj === null || obj === undefined) return obj;\n if (Array.isArray(obj)) return obj.map((x) => scrubUnwantedKeys(x));\n if (isObject(obj)) {\n const rec = obj;\n const out: Record<string, unknown> = {};\n for (const [k, v] of Object.entries(rec)) {\n if (UNWANTED_KEYS.has(k)) continue;\n out[k] = scrubUnwantedKeys(v);\n }\n return out;\n }\n return obj;\n}\n\n/**\n * Update internal refs within an external schema to use suffixed names\n */\nfunction updateInternalRefs(\n obj: unknown,\n extKey: string,\n schemaNameMappings: Record<string, Record<string, string>>,\n): unknown {\n if (obj === null || obj === undefined) return obj;\n\n if (Array.isArray(obj)) {\n return obj.map((element) =>\n updateInternalRefs(element, extKey, schemaNameMappings),\n );\n }\n\n if (isObject(obj)) {\n const record = obj;\n\n // Check if this is a $ref to #/components/schemas/...\n if ('$ref' in record && isString(record.$ref)) {\n const refValue = record.$ref;\n if (refValue.startsWith('#/components/schemas/')) {\n const schemaName = refValue.replace('#/components/schemas/', '');\n // If this schema was mapped to a suffixed name, update the ref\n const mappedName = schemaNameMappings[extKey][schemaName];\n if (mappedName) {\n return {\n $ref: `#/components/schemas/${mappedName}`,\n };\n }\n }\n }\n\n // Recursively process all properties\n const result: Record<string, unknown> = {};\n for (const [key, value] of Object.entries(record)) {\n result[key] = updateInternalRefs(value, extKey, schemaNameMappings);\n }\n return result;\n }\n\n return obj;\n}\n\n/**\n * Decode a single JSON Pointer reference token taken from an x-ext `$ref`.\n *\n * The token carries two layers of encoding: it sits in a URI fragment, so it\n * may be percent-encoded (e.g. `%7B` for `{` in templated paths), and it is a\n * JSON Pointer token, so `~1`/`~0` stand for `/`/`~` (RFC 6901). Percent-\n * encoding is the outer layer and is removed first; a malformed sequence is\n * left as-is rather than throwing. Without this, tokens such as `~1pets`\n * never match the real `/pets` key and the external `$ref` fails to resolve.\n */\nfunction decodeRefToken(token: string): string {\n let decoded = token;\n try {\n decoded = decodeURIComponent(token);\n } catch {\n // Malformed percent-encoding — fall back to the raw token.\n }\n return decoded.replaceAll('~1', '/').replaceAll('~0', '~');\n}\n\n/**\n * Replace x-ext refs with standard component refs, or inline the content.\n * `inliningRefs` tracks the inline chain to break cycles in recursive\n * external schemas that aren't under `components.schemas` (#1642).\n */\nfunction replaceXExtRefs(\n obj: unknown,\n extensions: Record<string, unknown>,\n schemaNameMappings: Record<string, Record<string, string>>,\n inliningRefs = new Set<string>(),\n): unknown {\n if (isNullish(obj)) return obj;\n\n if (Array.isArray(obj)) {\n return obj.map((element) =>\n replaceXExtRefs(element, extensions, schemaNameMappings, inliningRefs),\n );\n }\n\n if (isObject(obj)) {\n const record = obj;\n\n // Check if this object is a $ref to x-ext\n if ('$ref' in record && isString(record.$ref)) {\n const refValue = record.$ref;\n if (refValue.startsWith('#/x-ext/')) {\n // Parse the x-ext ref\n const pathStr = refValue.replace('#/x-ext/', '');\n const parts = pathStr.split('/');\n const extKey = parts.shift();\n\n if (extKey) {\n // Check if this is a ref to components/schemas - if so, replace with standard ref\n if (\n parts.length >= 3 &&\n parts[0] === 'components' &&\n parts[1] === 'schemas'\n ) {\n const schemaName = parts.slice(2).join('/');\n // Use the mapped name (which may include suffix for collisions)\n const finalName =\n schemaNameMappings[extKey][schemaName] || schemaName;\n return { $ref: `#/components/schemas/${finalName}` };\n }\n\n // Otherwise inline the content; break cycles with `{}`.\n if (inliningRefs.has(refValue)) {\n logWarning(\n `Detected a circular external $ref while inlining \"${refValue}\". ` +\n `Replacing with an empty schema to avoid infinite recursion. ` +\n `Move the schema under \"components.schemas\" in its source file ` +\n `or pre-bundle the spec to keep the recursion intact.`,\n );\n return {};\n }\n\n const extDoc = extensions[extKey];\n let refObj: unknown = extDoc;\n for (const rawPart of parts) {\n const p = decodeRefToken(rawPart);\n if (\n refObj &&\n (isObject(refObj) || Array.isArray(refObj)) &&\n p in (refObj as Record<string, unknown>)\n ) {\n refObj = (refObj as Record<string, unknown>)[p];\n } else {\n refObj = undefined;\n break;\n }\n }\n\n if (refObj) {\n const cleaned = scrubUnwantedKeys(refObj);\n const nextInlining = new Set(inliningRefs);\n nextInlining.add(refValue);\n return replaceXExtRefs(\n cleaned,\n extensions,\n schemaNameMappings,\n nextInlining,\n );\n }\n }\n }\n }\n\n // Recursively process all properties\n const result: Record<string, unknown> = {};\n for (const [key, value] of Object.entries(record)) {\n result[key] = replaceXExtRefs(\n value,\n extensions,\n schemaNameMappings,\n inliningRefs,\n );\n }\n return result;\n }\n\n return obj;\n}\n","import fs from 'node:fs/promises';\nimport path from 'node:path';\n\nimport { logWarning } from '@orval/core';\nimport { execa } from 'execa';\n\n/**\n * Format files with prettier.\n * Tries the programmatic API first (project dependency),\n * then falls back to the globally installed CLI.\n */\nexport async function formatWithPrettier(\n paths: string[],\n projectTitle?: string,\n): Promise<void> {\n const prettier = await tryImportPrettier();\n\n if (prettier) {\n const filePaths = [...new Set(await collectFilePaths(paths))];\n if (filePaths.length === 0) {\n return;\n }\n\n const config = (await prettier.resolveConfig(filePaths[0])) ?? {};\n await Promise.all(\n filePaths.map(async (filePath) => {\n try {\n const content = await fs.readFile(filePath, 'utf8');\n const formatted = await prettier.format(content, {\n ...config,\n // options.filepath can be specified for Prettier to infer the parser from the file extension\n filepath: filePath,\n });\n await fs.writeFile(filePath, formatted);\n } catch (error) {\n if (isMissingFileError(error)) {\n return;\n }\n\n if (error instanceof Error) {\n // prettier currently doesn't export UndefinedParserError, so having to do it the crude way\n if (error.name === 'UndefinedParserError') {\n // skip files with unsupported parsers\n // https://prettier.io/docs/options#parser\n } else {\n logWarning(\n `⚠️ ${projectTitle ? `${projectTitle} - ` : ''}Failed to format file ${filePath}: ${error.toString()}`,\n );\n }\n } else {\n logWarning(\n `⚠️ ${projectTitle ? `${projectTitle} - ` : ''}Failed to format file ${filePath}: unknown error`,\n );\n }\n }\n }),\n );\n\n return;\n }\n\n // fallback to globally installed prettier\n try {\n await execa('prettier', ['--write', ...paths]);\n } catch {\n logWarning(\n `⚠️ ${projectTitle ? `${projectTitle} - ` : ''}prettier not found. Install it as a project dependency or globally.`,\n );\n }\n}\n\nfunction isMissingFileError(error: unknown): error is NodeJS.ErrnoException {\n return (\n typeof error === 'object' &&\n error !== null &&\n 'code' in error &&\n error.code === 'ENOENT'\n );\n}\n\n/**\n * Try to import prettier from the project's dependencies.\n * Returns undefined if prettier is not installed.\n */\nasync function tryImportPrettier() {\n try {\n return await import('prettier');\n } catch {\n return;\n }\n}\n\n/**\n * Recursively collect absolute file paths from a mix of files and directories.\n */\nasync function collectFilePaths(paths: string[]): Promise<string[]> {\n const results: string[] = [];\n\n for (const p of paths) {\n const absolute = path.resolve(p);\n try {\n const stat = await fs.stat(absolute);\n if (stat.isFile()) {\n results.push(absolute);\n } else if (stat.isDirectory()) {\n const entries = await fs.readdir(absolute);\n const subPaths = entries.map((entry) => path.join(absolute, entry));\n const subFiles = await collectFilePaths(subPaths);\n results.push(...subFiles);\n }\n } catch {\n // Skip paths that don't exist or can't be accessed\n }\n }\n\n return results;\n}\n","import { styleText } from 'node:util';\n\nimport {\n type Hook,\n type HookOption,\n isFunction,\n isObject,\n isString,\n log,\n logError,\n type NormalizedHookCommand,\n} from '@orval/core';\nimport { execa } from 'execa';\nimport { parseArgsStringToArgv } from 'string-argv';\n\nexport const executeHook = async (\n name: Hook,\n commands: NormalizedHookCommand = [],\n args: string[] = [],\n) => {\n log(styleText('white', `Running ${name} hook...`));\n\n for (const command of commands) {\n try {\n if (isString(command)) {\n await executeCommand(command, args);\n } else if (isFunction(command)) {\n await command(args);\n } else if (isObject(command)) {\n await executeObjectCommand(command as HookOption, args);\n }\n } catch (error) {\n logError(error, `Failed to run ${name} hook`);\n }\n }\n};\n\nasync function executeCommand(command: string, args: string[]) {\n const [cmd, ..._args] = [...parseArgsStringToArgv(command), ...args];\n\n await execa(cmd, _args);\n}\n\nasync function executeObjectCommand(command: HookOption, args: string[]) {\n if (command.injectGeneratedDirsAndFiles === false) {\n args = [];\n }\n\n if (isString(command.command)) {\n await executeCommand(command.command, args);\n } else if (isFunction(command.command)) {\n await command.command();\n }\n}\n","import { styleText } from 'node:util';\n\nimport {\n dynamicImport,\n isObject,\n isString,\n logVerbose,\n logWarning,\n type PackageJson,\n resolveInstalledVersions,\n} from '@orval/core';\nimport { findUp, findUpMultiple } from 'find-up';\nimport fs from 'fs-extra';\nimport yaml from 'js-yaml';\n\nimport { normalizePath } from './options';\n\ntype CatalogData = Pick<PackageJson, 'catalog' | 'catalogs'>;\n\nexport const loadPackageJson = async (\n packageJson?: string,\n workspace = process.cwd(),\n): Promise<PackageJson | undefined> => {\n if (!packageJson) {\n const pkgPath = await findUp(['package.json'], { cwd: workspace });\n if (pkgPath) {\n const pkg = await dynamicImport<unknown>(pkgPath, workspace);\n\n if (isPackageJson(pkg)) {\n return resolveAndAttachVersions(\n await maybeReplaceCatalog(pkg, workspace),\n workspace,\n pkgPath,\n );\n } else {\n throw new Error('Invalid package.json file');\n }\n }\n return;\n }\n\n const normalizedPath = normalizePath(packageJson, workspace);\n if (fs.existsSync(normalizedPath)) {\n const pkg = await dynamicImport<unknown>(normalizedPath);\n\n if (isPackageJson(pkg)) {\n return resolveAndAttachVersions(\n await maybeReplaceCatalog(pkg, workspace),\n workspace,\n normalizedPath,\n );\n } else {\n throw new Error(`Invalid package.json file: ${normalizedPath}`);\n }\n }\n return;\n};\n\nconst isPackageJson = (obj: unknown): obj is PackageJson => isObject(obj);\n\nconst resolvedCache = new Map<string, Record<string, string>>();\n\n/** @internal visible for testing */\nexport const _resetResolvedCache = () => {\n resolvedCache.clear();\n};\n\nconst resolveAndAttachVersions = (\n pkg: PackageJson,\n workspace: string,\n cacheKey: string,\n): PackageJson => {\n const cached = resolvedCache.get(cacheKey);\n if (cached) {\n pkg.resolvedVersions = cached;\n return pkg;\n }\n\n const resolved = resolveInstalledVersions(pkg, workspace);\n if (Object.keys(resolved).length > 0) {\n pkg.resolvedVersions = resolved;\n resolvedCache.set(cacheKey, resolved);\n for (const [name, version] of Object.entries(resolved)) {\n logVerbose(\n styleText(\n 'dim',\n `Detected ${styleText('white', name)} v${styleText('white', version)}`,\n ),\n );\n }\n }\n return pkg;\n};\n\nconst hasCatalogReferences = (pkg: PackageJson): boolean => {\n return [\n ...Object.entries(pkg.dependencies ?? {}),\n ...Object.entries(pkg.devDependencies ?? {}),\n ...Object.entries(pkg.peerDependencies ?? {}),\n ].some(([, value]) => isString(value) && value.startsWith('catalog:'));\n};\n\nconst loadPnpmWorkspaceCatalog = async (\n workspace: string,\n): Promise<CatalogData | undefined> => {\n const filePath = await findUp('pnpm-workspace.yaml', { cwd: workspace });\n if (!filePath) return undefined;\n try {\n const file = await fs.readFile(filePath, 'utf8');\n const data = yaml.load(file) as Record<string, unknown> | undefined;\n if (!data?.catalog && !data?.catalogs) return undefined;\n return {\n catalog: data.catalog as CatalogData['catalog'],\n catalogs: data.catalogs as CatalogData['catalogs'],\n };\n } catch {\n return undefined;\n }\n};\n\nconst loadPackageJsonCatalog = async (\n workspace: string,\n): Promise<CatalogData | undefined> => {\n const filePaths = await findUpMultiple('package.json', { cwd: workspace });\n\n for (const filePath of filePaths) {\n try {\n const pkg = (await fs.readJson(filePath)) as Record<string, unknown>;\n if (pkg.catalog || pkg.catalogs) {\n return {\n catalog: pkg.catalog as CatalogData['catalog'],\n catalogs: pkg.catalogs as CatalogData['catalogs'],\n };\n }\n } catch {\n // Continue to next file\n }\n }\n return undefined;\n};\n\nconst loadYarnrcCatalog = async (\n workspace: string,\n): Promise<CatalogData | undefined> => {\n const filePath = await findUp('.yarnrc.yml', { cwd: workspace });\n if (!filePath) return undefined;\n try {\n const file = await fs.readFile(filePath, 'utf8');\n const data = yaml.load(file) as Record<string, unknown> | undefined;\n if (!data?.catalog && !data?.catalogs) return undefined;\n return {\n catalog: data.catalog as CatalogData['catalog'],\n catalogs: data.catalogs as CatalogData['catalogs'],\n };\n } catch {\n return undefined;\n }\n};\n\nconst maybeReplaceCatalog = async (\n pkg: PackageJson,\n workspace: string,\n): Promise<PackageJson> => {\n if (!hasCatalogReferences(pkg)) {\n return pkg;\n }\n\n const catalogData =\n (await loadPnpmWorkspaceCatalog(workspace)) ??\n (await loadPackageJsonCatalog(workspace)) ??\n (await loadYarnrcCatalog(workspace));\n\n if (!catalogData) {\n logWarning(\n '⚠️ package.json contains catalog: references, but no catalog source was found (checked: pnpm-workspace.yaml, package.json, .yarnrc.yml).',\n );\n return pkg;\n }\n\n performSubstitution(pkg.dependencies, catalogData);\n performSubstitution(pkg.devDependencies, catalogData);\n performSubstitution(pkg.peerDependencies, catalogData);\n\n return pkg;\n};\n\nconst performSubstitution = (\n dependencies: Record<string, string> | undefined,\n catalogData: CatalogData,\n) => {\n if (!dependencies) return;\n for (const [packageName, version] of Object.entries(dependencies)) {\n if (version === 'catalog:' || version === 'catalog:default') {\n if (!catalogData.catalog) {\n logWarning(\n `⚠️ catalog: substitution for the package '${packageName}' failed as there is no default catalog.`,\n );\n continue;\n }\n const sub = catalogData.catalog[packageName];\n if (!sub) {\n logWarning(\n `⚠️ catalog: substitution for the package '${packageName}' failed as there is no matching package in the default catalog.`,\n );\n continue;\n }\n dependencies[packageName] = sub;\n } else if (version.startsWith('catalog:')) {\n const catalogName = version.slice('catalog:'.length);\n const catalog = catalogData.catalogs?.[catalogName];\n if (!catalog) {\n logWarning(\n `⚠️ '${version}' substitution for the package '${packageName}' failed as there is no matching catalog named '${catalogName}'. (available named catalogs are: ${Object.keys(catalogData.catalogs ?? {}).join(', ')})`,\n );\n continue;\n }\n const sub = catalog[packageName];\n if (!sub) {\n logWarning(\n `⚠️ '${version}' substitution for the package '${packageName}' failed as there is no package in the catalog named '${catalogName}'. (packages in the catalog are: ${Object.keys(catalog).join(', ')})`,\n );\n continue;\n }\n dependencies[packageName] = sub;\n }\n }\n};\n","import { isNullish, isObject, isString, type Tsconfig } from '@orval/core';\nimport { findUp } from 'find-up';\nimport fs from 'fs-extra';\nimport {\n parseTsconfig,\n type TsConfigJson,\n type TsConfigJsonResolved,\n} from 'get-tsconfig';\n\nimport { normalizePath } from './options';\n\ntype LowercaseString<T extends string> = T extends `${infer First}${infer Rest}`\n ? `${Lowercase<First>}${LowercaseString<Rest>}`\n : T;\n\nconst convertTarget = (config: TsConfigJsonResolved): Tsconfig => {\n if (!config.compilerOptions?.target) {\n return {\n baseUrl: config.compilerOptions?.baseUrl,\n ...config,\n } as Tsconfig;\n }\n const lowercaseTarget =\n config.compilerOptions.target.toLowerCase() as LowercaseString<TsConfigJson.CompilerOptions.Target>;\n return {\n baseUrl: config.compilerOptions.baseUrl,\n ...config,\n compilerOptions: { ...config.compilerOptions, target: lowercaseTarget },\n };\n};\n\nexport const loadTsconfig = async (\n tsconfig?: Tsconfig | string,\n workspace = process.cwd(),\n): Promise<Tsconfig | undefined> => {\n if (isNullish(tsconfig)) {\n const configPath = await findUp(['tsconfig.json', 'jsconfig.json'], {\n cwd: workspace,\n });\n if (configPath) {\n const config = parseTsconfig(configPath);\n return convertTarget(config);\n }\n return;\n }\n\n if (isString(tsconfig)) {\n const normalizedPath = normalizePath(tsconfig, workspace);\n if (fs.existsSync(normalizedPath)) {\n const config = parseTsconfig(normalizedPath);\n return convertTarget(config);\n }\n return;\n }\n\n if (isObject(tsconfig)) {\n return tsconfig;\n }\n return;\n};\n","import { access } from 'node:fs/promises';\nimport nodePath from 'node:path';\nimport { styleText } from 'node:util';\n\nimport {\n type ConfigExternal,\n FormDataArrayHandling,\n type GlobalMockOptions,\n type GlobalOptions,\n type HonoOptions,\n type Hook,\n type HookFunction,\n type HookOption,\n type HooksOptions,\n type InputOptions,\n type InputTransformerFn,\n isBoolean,\n isFunction,\n isNullish,\n isObject,\n isString,\n isUrl,\n type JsDocOptions,\n logWarning,\n type McpOptions,\n type McpServerOptions,\n type Mutator,\n NamingConvention,\n type NormalizedFactoryMethodsOptions,\n type NormalizedHonoOptions,\n type NormalizedHookOptions,\n type NormalizedJsDocOptions,\n type NormalizedMcpOptions,\n type NormalizedMcpServerOptions,\n type NormalizedMocksConfig,\n type NormalizedMutator,\n type NormalizedOperationOptions,\n type NormalizedOptions,\n type NormalizedOverrideOutput,\n type NormalizedQueryOptions,\n type NormalizedSchemaOptions,\n type OperationOptions,\n type OptionsExport,\n OutputClient,\n OutputHttpClient,\n OutputMockType,\n OutputMode,\n type OverrideOutput,\n PropertySortOrder,\n type QueryOptions,\n RefComponentSuffix,\n type SchemaOptions,\n} from '@orval/core';\nimport { getDefaultMockOptionsForType } from '@orval/mock';\n\nimport pkg from '../../package.json';\nimport { loadPackageJson } from './package-json';\nimport { loadTsconfig } from './tsconfig';\n\nconst INPUT_TARGET_FETCH_TIMEOUT_MS = 10_000;\n/**\n * Type helper to make it easier to use orval.config.ts\n * accepts a direct {@link ConfigExternal} object.\n */\nexport function defineConfig(options: ConfigExternal): ConfigExternal {\n return options;\n}\n\n/**\n * Type helper to make it easier to write input transformers.\n * accepts a direct {@link InputTransformerFn} function.\n */\nexport function defineTransformer(\n transformer: InputTransformerFn,\n): InputTransformerFn {\n return transformer;\n}\n\nfunction createFormData(\n workspace: string,\n formData: OverrideOutput['formData'],\n): NormalizedOverrideOutput['formData'] {\n const defaultArrayHandling = FormDataArrayHandling.SERIALIZE;\n if (formData === undefined)\n return { disabled: false, arrayHandling: defaultArrayHandling };\n if (isBoolean(formData))\n return { disabled: !formData, arrayHandling: defaultArrayHandling };\n if (isString(formData))\n return {\n disabled: false,\n mutator: normalizeMutator(workspace, formData),\n arrayHandling: defaultArrayHandling,\n };\n if ('mutator' in formData || 'arrayHandling' in formData)\n return {\n disabled: false,\n mutator: normalizeMutator(workspace, formData.mutator),\n arrayHandling: formData.arrayHandling ?? defaultArrayHandling,\n };\n return {\n disabled: false,\n mutator: normalizeMutator(workspace, formData),\n arrayHandling: defaultArrayHandling,\n };\n}\n\nfunction normalizeSchemasOption(\n schemas: string | SchemaOptions | false | undefined,\n workspace: string,\n): string | NormalizedSchemaOptions | undefined {\n if (!schemas) {\n return undefined;\n }\n\n if (isString(schemas)) {\n return normalizePath(schemas, workspace);\n }\n\n return {\n path: normalizePath(schemas.path, workspace),\n type: schemas.type,\n };\n}\n\nexport async function normalizeOptions(\n optionsExport: OptionsExport,\n workspace = process.cwd(),\n globalOptions: GlobalOptions = {},\n): Promise<NormalizedOptions> {\n const options = await (isFunction(optionsExport)\n ? optionsExport()\n : optionsExport);\n\n if (!options.input) {\n throw new Error(styleText('red', `Config requires an input.`));\n }\n\n if (!options.output) {\n throw new Error(styleText('red', `Config requires an output.`));\n }\n\n const inputOptions: InputOptions =\n isString(options.input) || Array.isArray(options.input)\n ? { target: options.input }\n : options.input;\n\n const outputOptions = isString(options.output)\n ? { target: options.output }\n : options.output;\n\n const outputWorkspace = normalizePath(\n outputOptions.workspace ?? '',\n workspace,\n );\n\n const { clean, client, httpClient, mode } = globalOptions;\n\n const tsconfig = await loadTsconfig(\n outputOptions.tsconfig ?? globalOptions.tsconfig,\n workspace,\n );\n\n const packageJson = await loadPackageJson(\n outputOptions.packageJson ?? globalOptions.packageJson,\n workspace,\n );\n\n // Normalize the `mock` option into a canonical `NormalizedMocksConfig`\n // so the rest of the pipeline can iterate `generators` uniformly without\n // branching on the input shape (boolean shorthand, function form, or\n // object form).\n const mocksOption = outputOptions.mock ?? globalOptions.mock;\n let mocks: NormalizedMocksConfig = {\n indexMockFiles: false,\n generators: [],\n };\n if (isBoolean(mocksOption) && mocksOption) {\n // `mock: true` shorthand emits both an MSW handler file and a faker\n // factory file using default options for each.\n mocks = {\n indexMockFiles: false,\n generators: [\n getDefaultMockOptionsForType(OutputMockType.MSW),\n getDefaultMockOptionsForType(OutputMockType.FAKER),\n ],\n };\n } else if (isFunction(mocksOption)) {\n // Function form treats the entire mocks option as a single\n // ClientMockBuilder. Wrap it in the array so writers can still iterate.\n mocks = { indexMockFiles: false, generators: [mocksOption] };\n } else if (mocksOption && typeof mocksOption === 'object') {\n if (!Array.isArray(mocksOption.generators)) {\n throw new TypeError(\n 'mock.generators must be an array of generator entries (e.g. [{ type: \"msw\" }]).',\n );\n }\n mocks = {\n indexMockFiles: mocksOption.indexMockFiles ?? false,\n generators: mocksOption.generators.map((m) =>\n isFunction(m)\n ? m\n : ({\n ...getDefaultMockOptionsForType(m.type),\n ...m,\n } as GlobalMockOptions),\n ),\n };\n }\n\n const seenMockTypes = new Set<string>();\n for (const entry of mocks.generators) {\n if (isFunction(entry)) continue;\n if (seenMockTypes.has(entry.type)) {\n throw new Error(\n `Duplicate mock generator type \"${entry.type}\". Each type can only appear once in mock.generators.`,\n );\n }\n seenMockTypes.add(entry.type);\n }\n\n const defaultFileExtension = '.ts';\n\n // Reusable Zod schemas land in `*.zod.ts` files by default so they sit\n // alongside any existing TypeScript types without a name collision. We\n // expose this as a separate `schemaFileExtension` field (not by flipping\n // the global `fileExtension`) so that non-schema writers (mode writers,\n // mock writers, the workspace barrel) keep their own extensions and don't\n // start emitting `*.zod.ts` for unrelated artifacts. A user-set\n // `output.fileExtension` overrides this default at the call site.\n const isZodSchemasOutput =\n !!outputOptions.schemas &&\n ((!isString(outputOptions.schemas) &&\n outputOptions.schemas.type === 'zod') ||\n (isString(outputOptions.schemas) &&\n (outputOptions.client ?? client) === 'zod' &&\n outputOptions.override?.zod?.generateReusableSchemas === true));\n const defaultSchemaFileExtension = isZodSchemasOutput\n ? '.zod.ts'\n : defaultFileExtension;\n\n const factoryMethodsConfig = outputOptions.factoryMethods;\n let factoryMethods: NormalizedFactoryMethodsOptions | undefined = undefined;\n\n if (factoryMethodsConfig) {\n factoryMethods = {\n functionNamePrefix: factoryMethodsConfig.functionNamePrefix ?? 'create',\n mode: factoryMethodsConfig.mode ?? 'split',\n outputDirectory: factoryMethodsConfig.outputDirectory\n ? normalizePath(factoryMethodsConfig.outputDirectory, outputWorkspace)\n : outputOptions.schemas\n ? normalizePath(\n isString(outputOptions.schemas)\n ? outputOptions.schemas\n : outputOptions.schemas.path,\n outputWorkspace,\n )\n : normalizePath(outputWorkspace, outputWorkspace),\n includeOptionalProperty:\n factoryMethodsConfig.includeOptionalProperty ?? true,\n };\n }\n\n // `useQuery` / `useMutation` defaults are applied per-verb in\n // `query-generator.ts` so we can tell \"unset\" from \"explicit true\" (#2376).\n const globalQueryOptions: NormalizedQueryOptions = {\n signal: true,\n shouldExportMutatorHooks: true,\n shouldExportHttpClient: true,\n shouldExportQueryKey: true,\n shouldSplitQueryKey: false,\n ...normalizeQueryOptions(outputOptions.override?.query, workspace),\n };\n\n const normalizedOptions: NormalizedOptions = {\n input: {\n target: globalOptions.input\n ? Array.isArray(globalOptions.input)\n ? await resolveFirstValidTarget(\n globalOptions.input,\n process.cwd(),\n inputOptions.parserOptions,\n )\n : normalizePathOrUrl(globalOptions.input, process.cwd())\n : Array.isArray(inputOptions.target)\n ? await resolveFirstValidTarget(\n inputOptions.target,\n workspace,\n inputOptions.parserOptions,\n )\n : normalizePathOrUrl(inputOptions.target, workspace),\n override: {\n transformer: normalizePath(\n inputOptions.override?.transformer,\n workspace,\n ),\n },\n unsafeDisableValidation: inputOptions.unsafeDisableValidation ?? false,\n filters: inputOptions.filters,\n parserOptions: inputOptions.parserOptions,\n },\n output: {\n target: globalOptions.output\n ? normalizePath(globalOptions.output, process.cwd())\n : normalizePath(outputOptions.target, outputWorkspace),\n schemas: normalizeSchemasOption(outputOptions.schemas, outputWorkspace),\n operationSchemas: outputOptions.operationSchemas\n ? normalizePath(outputOptions.operationSchemas, outputWorkspace)\n : undefined,\n namingConvention:\n outputOptions.namingConvention ?? NamingConvention.CAMEL_CASE,\n fileExtension: outputOptions.fileExtension ?? defaultFileExtension,\n schemaFileExtension:\n outputOptions.schemaFileExtension ??\n outputOptions.fileExtension ??\n defaultSchemaFileExtension,\n workspace: outputOptions.workspace ? outputWorkspace : undefined,\n client: outputOptions.client ?? client ?? OutputClient.AXIOS_FUNCTIONS,\n httpClient:\n outputOptions.httpClient ??\n httpClient ??\n // Auto-detect: use Angular HttpClient for angular-query by default\n ((outputOptions.client ?? client) === OutputClient.ANGULAR_QUERY\n ? OutputHttpClient.ANGULAR\n : OutputHttpClient.FETCH),\n mode: normalizeOutputMode(outputOptions.mode ?? mode),\n mock: mocks,\n clean: outputOptions.clean ?? clean ?? false,\n docs: outputOptions.docs ?? false,\n formatter: outputOptions.formatter ?? globalOptions.formatter,\n tsconfig,\n packageJson,\n headers: outputOptions.headers ?? false,\n indexFiles: outputOptions.indexFiles ?? true,\n baseUrl: outputOptions.baseUrl,\n unionAddMissingProperties:\n outputOptions.unionAddMissingProperties ?? false,\n factoryMethods,\n override: {\n ...outputOptions.override,\n mock: {\n arrayMin: outputOptions.override?.mock?.arrayMin ?? 1,\n arrayMax: outputOptions.override?.mock?.arrayMax ?? 10,\n stringMin: outputOptions.override?.mock?.stringMin ?? 10,\n stringMax: outputOptions.override?.mock?.stringMax ?? 20,\n fractionDigits: outputOptions.override?.mock?.fractionDigits ?? 2,\n ...outputOptions.override?.mock,\n },\n operations: normalizeOperationsAndTags(\n outputOptions.override?.operations ?? {},\n outputWorkspace,\n {\n query: globalQueryOptions,\n },\n ),\n tags: normalizeOperationsAndTags(\n outputOptions.override?.tags ?? {},\n outputWorkspace,\n {\n query: globalQueryOptions,\n },\n ),\n mutator: normalizeMutator(\n outputWorkspace,\n outputOptions.override?.mutator,\n ),\n formData: createFormData(\n outputWorkspace,\n outputOptions.override?.formData,\n ),\n formUrlEncoded:\n (isBoolean(outputOptions.override?.formUrlEncoded)\n ? outputOptions.override.formUrlEncoded\n : normalizeMutator(\n outputWorkspace,\n outputOptions.override?.formUrlEncoded,\n )) ?? true,\n paramsSerializer: normalizeMutator(\n outputWorkspace,\n outputOptions.override?.paramsSerializer,\n ),\n paramsFilter: normalizeMutator(\n outputWorkspace,\n outputOptions.override?.paramsFilter,\n ),\n header:\n outputOptions.override?.header === false\n ? false\n : isFunction(outputOptions.override?.header)\n ? outputOptions.override.header\n : getDefaultFilesHeader,\n requestOptions: outputOptions.override?.requestOptions ?? true,\n namingConvention: outputOptions.override?.namingConvention ?? {},\n components: {\n schemas: {\n suffix: RefComponentSuffix.schemas,\n itemSuffix:\n outputOptions.override?.components?.schemas?.itemSuffix ?? 'Item',\n ...outputOptions.override?.components?.schemas,\n },\n responses: {\n suffix: RefComponentSuffix.responses,\n ...outputOptions.override?.components?.responses,\n },\n parameters: {\n suffix: RefComponentSuffix.parameters,\n ...outputOptions.override?.components?.parameters,\n },\n requestBodies: {\n suffix: RefComponentSuffix.requestBodies,\n ...outputOptions.override?.components?.requestBodies,\n },\n },\n hono: normalizeHonoOptions(outputOptions.override?.hono, workspace),\n mcp: normalizeMcpOptions(outputOptions.override?.mcp, workspace),\n jsDoc: normalizeJSDocOptions(outputOptions.override?.jsDoc),\n query: globalQueryOptions,\n zod: {\n strict: {\n param: outputOptions.override?.zod?.strict?.param ?? false,\n query: outputOptions.override?.zod?.strict?.query ?? false,\n header: outputOptions.override?.zod?.strict?.header ?? false,\n body: outputOptions.override?.zod?.strict?.body ?? false,\n response: outputOptions.override?.zod?.strict?.response ?? false,\n },\n generate: {\n param: outputOptions.override?.zod?.generate?.param ?? true,\n query: outputOptions.override?.zod?.generate?.query ?? true,\n header: outputOptions.override?.zod?.generate?.header ?? true,\n body: outputOptions.override?.zod?.generate?.body ?? true,\n response: outputOptions.override?.zod?.generate?.response ?? true,\n },\n coerce: {\n param: outputOptions.override?.zod?.coerce?.param ?? false,\n query: outputOptions.override?.zod?.coerce?.query ?? false,\n header: outputOptions.override?.zod?.coerce?.header ?? false,\n body: outputOptions.override?.zod?.coerce?.body ?? false,\n response: outputOptions.override?.zod?.coerce?.response ?? false,\n },\n preprocess: {\n ...(outputOptions.override?.zod?.preprocess?.param\n ? {\n param: normalizeMutator(\n workspace,\n outputOptions.override.zod.preprocess.param,\n ),\n }\n : {}),\n ...(outputOptions.override?.zod?.preprocess?.query\n ? {\n query: normalizeMutator(\n workspace,\n outputOptions.override.zod.preprocess.query,\n ),\n }\n : {}),\n ...(outputOptions.override?.zod?.preprocess?.header\n ? {\n header: normalizeMutator(\n workspace,\n outputOptions.override.zod.preprocess.header,\n ),\n }\n : {}),\n ...(outputOptions.override?.zod?.preprocess?.body\n ? {\n body: normalizeMutator(\n workspace,\n outputOptions.override.zod.preprocess.body,\n ),\n }\n : {}),\n ...(outputOptions.override?.zod?.preprocess?.response\n ? {\n response: normalizeMutator(\n workspace,\n outputOptions.override.zod.preprocess.response,\n ),\n }\n : {}),\n },\n generateEachHttpStatus:\n outputOptions.override?.zod?.generateEachHttpStatus ?? false,\n useBrandedTypes:\n outputOptions.override?.zod?.useBrandedTypes ?? false,\n generateReusableSchemas:\n outputOptions.override?.zod?.generateReusableSchemas ?? false,\n dateTimeOptions: outputOptions.override?.zod?.dateTimeOptions ?? {\n offset: true,\n },\n timeOptions: outputOptions.override?.zod?.timeOptions ?? {},\n },\n swr: {\n generateErrorTypes: false,\n ...outputOptions.override?.swr,\n },\n angular: {\n provideIn: outputOptions.override?.angular?.provideIn ?? 'root',\n client:\n outputOptions.override?.angular?.retrievalClient ??\n outputOptions.override?.angular?.client ??\n 'httpClient',\n runtimeValidation:\n outputOptions.override?.angular?.runtimeValidation ?? false,\n ...(outputOptions.override?.angular?.httpResource\n ? { httpResource: outputOptions.override.angular.httpResource }\n : {}),\n },\n fetch: {\n includeHttpResponseReturnType:\n outputOptions.override?.fetch?.includeHttpResponseReturnType ??\n true,\n forceSuccessResponse:\n outputOptions.override?.fetch?.forceSuccessResponse ?? false,\n runtimeValidation:\n outputOptions.override?.fetch?.runtimeValidation ?? false,\n useRuntimeFetcher:\n outputOptions.override?.fetch?.useRuntimeFetcher ?? false,\n ...outputOptions.override?.fetch,\n ...(outputOptions.override?.fetch?.jsonReviver\n ? {\n jsonReviver: normalizeMutator(\n outputWorkspace,\n outputOptions.override.fetch.jsonReviver,\n ),\n }\n : {}),\n },\n useDates: outputOptions.override?.useDates ?? false,\n useDeprecatedOperations:\n outputOptions.override?.useDeprecatedOperations ?? true,\n enumGenerationType:\n outputOptions.override?.enumGenerationType ?? 'const',\n suppressReadonlyModifier:\n outputOptions.override?.suppressReadonlyModifier ?? false,\n preserveReadonlyRequestBodies:\n outputOptions.override?.preserveReadonlyRequestBodies ?? 'strip',\n splitByContentType: outputOptions.override?.splitByContentType ?? false,\n aliasCombinedTypes: outputOptions.override?.aliasCombinedTypes ?? false,\n },\n allParamsOptional: outputOptions.allParamsOptional ?? false,\n urlEncodeParameters: outputOptions.urlEncodeParameters ?? false,\n optionsParamRequired: outputOptions.optionsParamRequired ?? false,\n propertySortOrder:\n outputOptions.propertySortOrder ?? PropertySortOrder.SPECIFICATION,\n },\n hooks: options.hooks ? normalizeHooks(options.hooks) : {},\n };\n\n if (!normalizedOptions.input.target) {\n throw new Error(styleText('red', `Config requires an input target.`));\n }\n\n if (!normalizedOptions.output.target && !normalizedOptions.output.schemas) {\n throw new Error(\n styleText('red', `Config requires an output target or schemas.`),\n );\n }\n\n // `paramsFilter` is only consumed by the Angular generator. That runs for\n // the `angular` client (regardless of `httpClient`, which stays at its\n // `fetch` default there) and for `angular-query` when it resolves to the\n // Angular HttpClient. For any other client the mutator would be imported\n // but never called, so fail fast instead of emitting a dead import.\n const usesAngularGenerator =\n normalizedOptions.output.client === OutputClient.ANGULAR ||\n (normalizedOptions.output.client === OutputClient.ANGULAR_QUERY &&\n normalizedOptions.output.httpClient === OutputHttpClient.ANGULAR);\n if (normalizedOptions.output.override.paramsFilter && !usesAngularGenerator) {\n throw new Error(\n styleText(\n 'red',\n `\\`override.paramsFilter\\` is only supported by the Angular generator (the \\`angular\\` client, or \\`angular-query\\` with \\`httpClient: 'angular'\\`). It has no effect for other clients — use \\`override.paramsSerializer\\` instead.`,\n ),\n );\n }\n if (!usesAngularGenerator) {\n const offendingOperation = Object.entries(\n normalizedOptions.output.override.operations,\n ).find(([, opOverride]) => opOverride?.paramsFilter)?.[0];\n if (offendingOperation) {\n throw new Error(\n styleText(\n 'red',\n `\\`override.operations[\"${offendingOperation}\"].paramsFilter\\` is only supported by the Angular generator (the \\`angular\\` client, or \\`angular-query\\` with \\`httpClient: 'angular'\\`). It has no effect for other clients — use \\`override.paramsSerializer\\` instead.`,\n ),\n );\n }\n const offendingTag = Object.entries(\n normalizedOptions.output.override.tags,\n ).find(([, tagOverride]) => tagOverride?.paramsFilter)?.[0];\n if (offendingTag) {\n throw new Error(\n styleText(\n 'red',\n `\\`override.tags[\"${offendingTag}\"].paramsFilter\\` is only supported by the Angular generator (the \\`angular\\` client, or \\`angular-query\\` with \\`httpClient: 'angular'\\`). It has no effect for other clients — use \\`override.paramsSerializer\\` instead.`,\n ),\n );\n }\n }\n\n if (\n normalizedOptions.output.httpClient === OutputHttpClient.FETCH &&\n normalizedOptions.output.optionsParamRequired &&\n normalizedOptions.output.override.requestOptions !== false\n ) {\n logWarning(\n `⚠️ With \\`httpClient: 'fetch'\\`, \\`optionsParamRequired: true\\` cannot make the generated \\`options\\` parameter required. The fetch \\`options\\` parameter remains optional with type \\`RequestInit\\` (\\`optionsParamRequired\\` may still affect other generated parameters). Set \\`httpClient: 'axios'\\` to make the \\`options\\` parameter required.`,\n );\n }\n\n return normalizedOptions;\n}\n\nfunction normalizeMutator(\n workspace: string,\n mutator?: Mutator,\n): NormalizedMutator | undefined {\n if (isObject(mutator)) {\n const m = mutator as Exclude<Mutator, string>;\n if (!m.path) {\n throw new Error(styleText('red', `Mutator requires a path.`));\n }\n\n return {\n path: nodePath.resolve(workspace, m.path),\n name: m.name,\n default: m.default ?? !m.name,\n alias: m.alias,\n external: m.external,\n extension: m.extension,\n };\n }\n\n if (isString(mutator)) {\n return {\n path: nodePath.resolve(workspace, mutator),\n default: true,\n };\n }\n\n return undefined;\n}\n\nasync function resolveFirstValidTarget(\n targets: string[],\n workspace: string,\n parserOptions?: InputOptions['parserOptions'],\n): Promise<string> {\n for (const target of targets) {\n if (isUrl(target)) {\n try {\n const headers = getHeadersForUrl(target, parserOptions?.headers);\n const headResponse = await fetchWithTimeout(target, {\n method: 'HEAD',\n headers,\n });\n\n if (headResponse.ok) {\n return target;\n }\n\n if (headResponse.status === 405 || headResponse.status === 501) {\n const getResponse = await fetchWithTimeout(target, {\n method: 'GET',\n headers,\n });\n\n if (getResponse.ok) {\n return target;\n }\n }\n } catch {\n continue;\n }\n\n continue;\n }\n\n const resolvedTarget = normalizePath(target, workspace);\n\n try {\n await access(resolvedTarget);\n return resolvedTarget;\n } catch {\n continue;\n }\n }\n\n throw new Error(\n styleText(\n 'red',\n `None of the input targets could be resolved:\\n${targets.map((target) => ` - ${target}`).join('\\n')}`,\n ),\n );\n}\n\nfunction getHeadersForUrl(\n url: string,\n headersConfig?: NonNullable<InputOptions['parserOptions']>['headers'],\n): Record<string, string> {\n if (!headersConfig) return {};\n\n const { hostname } = new URL(url);\n const matchedHeaders: Record<string, string> = {};\n\n for (const headerEntry of headersConfig) {\n if (\n headerEntry.domains.some(\n (domain) => hostname === domain || hostname.endsWith(`.${domain}`),\n )\n ) {\n Object.assign(matchedHeaders, headerEntry.headers);\n }\n }\n\n return matchedHeaders;\n}\n\nasync function fetchWithTimeout(\n target: string,\n init: RequestInit,\n): Promise<Response> {\n const controller = new AbortController();\n const timeoutId = setTimeout(() => {\n controller.abort();\n }, INPUT_TARGET_FETCH_TIMEOUT_MS);\n\n try {\n return await fetch(target, {\n ...init,\n signal: controller.signal,\n });\n } finally {\n clearTimeout(timeoutId);\n }\n}\n\nfunction normalizePathOrUrl<T>(path: T, workspace: string) {\n if (isString(path) && !isUrl(path)) {\n return normalizePath(path, workspace);\n }\n\n return path;\n}\n\nexport function normalizePath<T>(path: T, workspace: string) {\n if (!isString(path)) {\n return path;\n }\n return nodePath.resolve(workspace, path);\n}\n\nfunction normalizeOperationsAndTags(\n operationsOrTags: Record<string, OperationOptions>,\n workspace: string,\n global: {\n query: NormalizedQueryOptions;\n },\n): Record<string, NormalizedOperationOptions> {\n return Object.fromEntries(\n Object.entries(operationsOrTags).map(\n ([\n key,\n {\n transformer,\n mutator,\n formData,\n formUrlEncoded,\n paramsSerializer,\n paramsFilter,\n query,\n angular,\n zod,\n ...rest\n },\n ]) => {\n return [\n key,\n {\n ...rest,\n ...(angular\n ? {\n angular: {\n provideIn: angular.provideIn ?? 'root',\n client:\n angular.retrievalClient ?? angular.client ?? 'httpClient',\n runtimeValidation: angular.runtimeValidation ?? false,\n ...(angular.httpResource\n ? { httpResource: angular.httpResource }\n : {}),\n },\n }\n : {}),\n ...(query\n ? {\n query: normalizeQueryOptions(query, workspace, global.query),\n }\n : {}),\n ...(zod\n ? {\n zod: {\n strict: {\n param: zod.strict?.param ?? false,\n query: zod.strict?.query ?? false,\n header: zod.strict?.header ?? false,\n body: zod.strict?.body ?? false,\n response: zod.strict?.response ?? false,\n },\n generate: {\n param: zod.generate?.param ?? true,\n query: zod.generate?.query ?? true,\n header: zod.generate?.header ?? true,\n body: zod.generate?.body ?? true,\n response: zod.generate?.response ?? true,\n },\n coerce: {\n param: zod.coerce?.param ?? false,\n query: zod.coerce?.query ?? false,\n header: zod.coerce?.header ?? false,\n body: zod.coerce?.body ?? false,\n response: zod.coerce?.response ?? false,\n },\n preprocess: {\n ...(zod.preprocess?.param\n ? {\n param: normalizeMutator(\n workspace,\n zod.preprocess.param,\n ),\n }\n : {}),\n ...(zod.preprocess?.query\n ? {\n query: normalizeMutator(\n workspace,\n zod.preprocess.query,\n ),\n }\n : {}),\n ...(zod.preprocess?.header\n ? {\n header: normalizeMutator(\n workspace,\n zod.preprocess.header,\n ),\n }\n : {}),\n ...(zod.preprocess?.body\n ? {\n body: normalizeMutator(\n workspace,\n zod.preprocess.body,\n ),\n }\n : {}),\n ...(zod.preprocess?.response\n ? {\n response: normalizeMutator(\n workspace,\n zod.preprocess.response,\n ),\n }\n : {}),\n },\n generateEachHttpStatus: zod.generateEachHttpStatus ?? false,\n useBrandedTypes: zod.useBrandedTypes ?? false,\n generateReusableSchemas:\n zod.generateReusableSchemas ?? false,\n dateTimeOptions: zod.dateTimeOptions ?? { offset: true },\n timeOptions: zod.timeOptions ?? {},\n },\n }\n : {}),\n ...(transformer\n ? { transformer: normalizePath(transformer, workspace) }\n : {}),\n ...(mutator\n ? { mutator: normalizeMutator(workspace, mutator) }\n : {}),\n ...(formData === undefined\n ? {}\n : { formData: createFormData(workspace, formData) }),\n ...(formUrlEncoded\n ? {\n formUrlEncoded: isBoolean(formUrlEncoded)\n ? formUrlEncoded\n : normalizeMutator(workspace, formUrlEncoded),\n }\n : {}),\n ...(paramsSerializer\n ? {\n paramsSerializer: normalizeMutator(\n workspace,\n paramsSerializer,\n ),\n }\n : {}),\n ...(paramsFilter\n ? {\n paramsFilter: normalizeMutator(workspace, paramsFilter),\n }\n : {}),\n },\n ];\n },\n ),\n );\n}\n\nfunction normalizeOutputMode(mode?: OutputMode): OutputMode {\n if (!mode) {\n return OutputMode.SINGLE;\n }\n\n if (!Object.values(OutputMode).includes(mode)) {\n logWarning(`⚠️ Unknown provided mode => ${mode}`);\n return OutputMode.SINGLE;\n }\n\n return mode;\n}\n\nfunction normalizeHooks(hooks: HooksOptions): NormalizedHookOptions {\n const keys = Object.keys(hooks) as unknown as Hook[];\n\n const result: NormalizedHookOptions = {};\n for (const key of keys) {\n if (isString(hooks[key])) {\n result[key] = [hooks[key]] as string[];\n } else if (Array.isArray(hooks[key])) {\n result[key] = hooks[key] as string[];\n } else if (isFunction(hooks[key])) {\n result[key] = [hooks[key]] as HookFunction[];\n } else if (isObject(hooks[key])) {\n result[key] = [hooks[key]] as HookOption[];\n }\n }\n return result;\n}\n\nfunction normalizeHonoOptions(\n hono: HonoOptions = {},\n workspace: string,\n): NormalizedHonoOptions {\n return {\n ...(hono.handlers\n ? { handlers: nodePath.resolve(workspace, hono.handlers) }\n : {}),\n compositeRoute: hono.compositeRoute\n ? nodePath.resolve(workspace, hono.compositeRoute)\n : '',\n validator: hono.validator ?? true,\n validatorOutputPath: hono.validatorOutputPath\n ? nodePath.resolve(workspace, hono.validatorOutputPath)\n : '',\n };\n}\n\nfunction normalizeMcpServerOptions(\n server: McpServerOptions,\n workspace: string,\n): NormalizedMcpServerOptions {\n return {\n path: nodePath.resolve(workspace, server.path),\n name: server.name,\n default: server.default ?? !server.name,\n };\n}\n\nfunction normalizeMcpOptions(\n mcp: McpOptions = {},\n workspace: string,\n): NormalizedMcpOptions {\n return {\n ...(mcp.server\n ? { server: normalizeMcpServerOptions(mcp.server, workspace) }\n : {}),\n };\n}\n\nfunction normalizeJSDocOptions(\n jsdoc: JsDocOptions = {},\n): NormalizedJsDocOptions {\n return {\n ...jsdoc,\n };\n}\n\nfunction normalizeQueryOptions(\n queryOptions: QueryOptions = {},\n outputWorkspace: string,\n globalOptions: NormalizedQueryOptions = {},\n): NormalizedQueryOptions {\n if (queryOptions.options) {\n logWarning(\n '⚠️ Using query options is deprecated and will be removed in a future major release. Please use queryOptions or mutationOptions instead.',\n );\n }\n\n return {\n ...(isNullish(queryOptions.usePrefetch)\n ? {}\n : { usePrefetch: queryOptions.usePrefetch }),\n ...(isNullish(queryOptions.useInvalidate)\n ? {}\n : { useInvalidate: queryOptions.useInvalidate }),\n ...(isNullish(queryOptions.useSetQueryData)\n ? {}\n : { useSetQueryData: queryOptions.useSetQueryData }),\n ...(isNullish(queryOptions.useGetQueryData)\n ? {}\n : { useGetQueryData: queryOptions.useGetQueryData }),\n ...(isNullish(queryOptions.useQuery)\n ? {}\n : { useQuery: queryOptions.useQuery }),\n ...(isNullish(queryOptions.useSuspenseQuery)\n ? {}\n : { useSuspenseQuery: queryOptions.useSuspenseQuery }),\n ...(isNullish(queryOptions.useMutation)\n ? {}\n : { useMutation: queryOptions.useMutation }),\n ...(isNullish(queryOptions.useInfinite)\n ? {}\n : { useInfinite: queryOptions.useInfinite }),\n ...(isNullish(queryOptions.useSuspenseInfiniteQuery)\n ? {}\n : { useSuspenseInfiniteQuery: queryOptions.useSuspenseInfiniteQuery }),\n ...(queryOptions.useInfiniteQueryParam\n ? { useInfiniteQueryParam: queryOptions.useInfiniteQueryParam }\n : {}),\n ...(queryOptions.options ? { options: queryOptions.options } : {}),\n ...(globalOptions.queryKey\n ? {\n queryKey: globalOptions.queryKey,\n }\n : {}),\n ...(queryOptions.queryKey\n ? {\n queryKey: normalizeMutator(outputWorkspace, queryOptions.queryKey),\n }\n : {}),\n ...(globalOptions.queryOptions\n ? {\n queryOptions: globalOptions.queryOptions,\n }\n : {}),\n ...(queryOptions.queryOptions\n ? {\n queryOptions: normalizeMutator(\n outputWorkspace,\n queryOptions.queryOptions,\n ),\n }\n : {}),\n ...(globalOptions.mutationOptions\n ? {\n mutationOptions: globalOptions.mutationOptions,\n }\n : {}),\n ...(queryOptions.mutationOptions\n ? {\n mutationOptions: normalizeMutator(\n outputWorkspace,\n queryOptions.mutationOptions,\n ),\n }\n : {}),\n ...(isNullish(globalOptions.shouldExportQueryKey)\n ? {}\n : {\n shouldExportQueryKey: globalOptions.shouldExportQueryKey,\n }),\n ...(isNullish(queryOptions.shouldExportQueryKey)\n ? {}\n : { shouldExportQueryKey: queryOptions.shouldExportQueryKey }),\n ...(isNullish(globalOptions.shouldExportHttpClient)\n ? {}\n : {\n shouldExportHttpClient: globalOptions.shouldExportHttpClient,\n }),\n ...(isNullish(queryOptions.shouldExportHttpClient)\n ? {}\n : { shouldExportHttpClient: queryOptions.shouldExportHttpClient }),\n ...(isNullish(globalOptions.shouldExportMutatorHooks)\n ? {}\n : {\n shouldExportMutatorHooks: globalOptions.shouldExportMutatorHooks,\n }),\n ...(isNullish(queryOptions.shouldExportMutatorHooks)\n ? {}\n : { shouldExportMutatorHooks: queryOptions.shouldExportMutatorHooks }),\n ...(isNullish(globalOptions.shouldSplitQueryKey)\n ? {}\n : {\n shouldSplitQueryKey: globalOptions.shouldSplitQueryKey,\n }),\n ...(isNullish(queryOptions.shouldSplitQueryKey)\n ? {}\n : { shouldSplitQueryKey: queryOptions.shouldSplitQueryKey }),\n ...(isNullish(globalOptions.signal)\n ? {}\n : {\n signal: globalOptions.signal,\n }),\n ...(isNullish(globalOptions.useOperationIdAsQueryKey)\n ? {}\n : {\n useOperationIdAsQueryKey: globalOptions.useOperationIdAsQueryKey,\n }),\n ...(isNullish(queryOptions.useOperationIdAsQueryKey)\n ? {}\n : { useOperationIdAsQueryKey: queryOptions.useOperationIdAsQueryKey }),\n ...(isNullish(globalOptions.signal)\n ? {}\n : {\n signal: globalOptions.signal,\n }),\n ...(isNullish(queryOptions.signal) ? {} : { signal: queryOptions.signal }),\n ...(isNullish(globalOptions.version)\n ? {}\n : {\n version: globalOptions.version,\n }),\n ...(isNullish(queryOptions.version)\n ? {}\n : { version: queryOptions.version }),\n ...(queryOptions.mutationInvalidates\n ? { mutationInvalidates: queryOptions.mutationInvalidates }\n : {}),\n ...(isNullish(globalOptions.runtimeValidation)\n ? {}\n : {\n runtimeValidation: globalOptions.runtimeValidation,\n }),\n ...(isNullish(queryOptions.runtimeValidation)\n ? {}\n : { runtimeValidation: queryOptions.runtimeValidation }),\n };\n}\n\nexport function getDefaultFilesHeader({\n title,\n description,\n version,\n}: {\n title?: string;\n description?: string;\n version?: string;\n} = {}) {\n return [\n `Generated by ${pkg.name} v${pkg.version} 🍺`,\n `Do not edit manually.`,\n ...(title ? [title] : []),\n ...(description ? [description] : []),\n ...(version ? [`OpenAPI spec version: ${version}`] : []),\n ];\n}\n","import { isBoolean, log, logError } from '@orval/core';\n\n/**\n * Start a file watcher and invoke an async callback on file changes.\n *\n * If `watchOptions` is falsy the watcher is not started. Supported shapes:\n * - boolean: when true the `defaultTarget` is watched\n * - string: a single path to watch\n * - string[]: an array of paths to watch\n *\n * @param watchOptions - false to disable watching, or a path/paths to watch\n * @param watchFn - async callback executed on change events\n * @param defaultTarget - path(s) to watch when `watchOptions` is `true` (default: '.')\n * @returns Resolves once the watcher has been started (or immediately if disabled)\n *\n * @example\n * await startWatcher(true, async () => { await buildProject(); }, 'src');\n */\nexport async function startWatcher(\n watchOptions: boolean | string | string[],\n watchFn: () => Promise<void>,\n defaultTarget: string | string[] = '.',\n) {\n if (!watchOptions) return;\n const { watch } = await import('chokidar');\n\n const ignored = ['**/{.git,node_modules}/**'];\n\n const watchPaths = isBoolean(watchOptions) ? defaultTarget : watchOptions;\n\n log(\n `Watching for changes in ${\n Array.isArray(watchPaths)\n ? watchPaths.map((v) => '\"' + v + '\"').join(' | ')\n : '\"' + watchPaths + '\"'\n }`,\n );\n\n const watcher = watch(watchPaths, {\n ignorePermissionErrors: true,\n ignored,\n });\n watcher.on('ready', () => {\n log('Initial scan complete. Watching for changes...');\n watcher.on('all', (type, file) => {\n log(`Change detected: ${type} ${file}`);\n\n watchFn().catch((error: unknown) => {\n logError(error);\n });\n });\n });\n}\n","import type { ContextSpec, ZodCoerceType } from '@orval/core';\nimport { conventionName, type NamingConvention } from '@orval/core';\nimport {\n generateZodValidationSchemaDefinition,\n parseZodValidationSchemaDefinition,\n} from '@orval/zod';\nimport type { OpenAPIV3_1 } from '@scalar/openapi-types';\n\n// Mirror `@orval/core`'s `getRefInfo`: split the JSON pointer, URL-decode each\n// segment, and unescape RFC 6901 tokens (`~1` → `/`, `~0` → `~`). The zod\n// generator uses `getRefInfo(...).originalName` to derive the namedRef export\n// name, so we must follow the same rules here or the orchestrator's exported\n// names would diverge for refs containing escaped characters.\nconst lastRefSegment = (ref: string): string => {\n const raw = ref.split('/').pop() ?? '';\n return decodeURIComponent(raw).replaceAll('~1', '/').replaceAll('~0', '~');\n};\n\n/**\n * Convert a single `#/components/schemas/X` ref into the export name we will\n * emit for it: the last `$ref` segment with `namingConvention` applied.\n */\nexport const resolveSchemaName = (\n ref: string,\n namingConvention: NamingConvention,\n): string => conventionName(lastRefSegment(ref), namingConvention);\n\n// JavaScript identifier (loose): start with letter/_/$, continue with word chars.\n// Reusable schema names are emitted as `export const <name> = ...`, so they\n// must be valid identifiers regardless of naming convention.\nconst JS_IDENTIFIER_PATTERN = /^[A-Za-z_$][A-Za-z0-9_$]*$/;\n\n/**\n * Resolve names for a set of refs, throwing on conflicts or on names that\n * aren't valid JS identifiers (e.g. `kebab-case` produces dashes). The mapping\n * is the single source of truth for cross-schema references — the generator,\n * the orchestrator's graph, and the sentinel rewriter all consult it.\n */\nexport const resolveSchemaNames = (\n refs: readonly string[],\n namingConvention: NamingConvention,\n): Map<string, string> => {\n const resolved = new Map<string, string>();\n const reverse = new Map<string, string>();\n\n for (const ref of refs) {\n const name = resolveSchemaName(ref, namingConvention);\n if (!JS_IDENTIFIER_PATTERN.test(name)) {\n throw new Error(\n `[orval/zod] generateReusableSchemas: ref ${ref} converts to \"${name}\" ` +\n `under namingConvention=${namingConvention}, which is not a valid JS ` +\n `identifier. Use camelCase, PascalCase, or snake_case for the project's ` +\n `namingConvention when this flag is enabled.`,\n );\n }\n const previous = reverse.get(name);\n if (previous !== undefined && previous !== ref) {\n throw new Error(\n `[orval/zod] generateReusableSchemas: refs ${previous} and ${ref} ` +\n `both convert to \"${name}\" under namingConvention=${namingConvention}. ` +\n `Rename one in the OpenAPI source or change the convention.`,\n );\n }\n resolved.set(ref, name);\n reverse.set(name, ref);\n }\n\n return resolved;\n};\n\nconst COMPONENT_SCHEMAS_PREFIX = '#/components/schemas/';\n\nconst isComponentSchemaRef = (ref: unknown): ref is string =>\n typeof ref === 'string' && ref.startsWith(COMPONENT_SCHEMAS_PREFIX);\n\n/**\n * Walk a value (object or array) and accumulate every component-schema `$ref`\n * found anywhere in the subtree. Pure spec traversal — does NOT invoke the\n * Zod generator.\n */\nconst collectRefsInValue = (value: unknown, refs: Set<string>): void => {\n if (value === null || typeof value !== 'object') {\n return;\n }\n if (Array.isArray(value)) {\n for (const item of value) {\n collectRefsInValue(item, refs);\n }\n return;\n }\n const record = value as Record<string, unknown>;\n if (isComponentSchemaRef(record.$ref)) {\n refs.add(record.$ref);\n }\n for (const key of Object.keys(record)) {\n if (key === '$ref') continue; // already added; don't descend into the string\n collectRefsInValue(record[key], refs);\n }\n};\n\n/**\n * Returns the set of component-schema refs reachable from `spec.paths`,\n * following refs transitively through `spec.components.schemas`.\n */\nexport const collectReachableComponentRefs = (\n spec: OpenAPIV3_1.Document,\n): Set<string> => {\n const reachable = new Set<string>();\n const queue: string[] = [];\n\n const initial = new Set<string>();\n collectRefsInValue(spec.paths, initial);\n for (const ref of initial) {\n reachable.add(ref);\n queue.push(ref);\n }\n\n const componentSchemas = spec.components?.schemas ?? {};\n // Index-based queue iteration (not `shift()`) so the BFS is O(n) rather than\n // O(n²). The queue is append-only — we never need to reclaim the head slot.\n for (const currentRef of queue) {\n const schemaName = currentRef.slice(COMPONENT_SCHEMAS_PREFIX.length);\n const targetSchema = componentSchemas[schemaName];\n if (!targetSchema) continue;\n\n const innerRefs = new Set<string>();\n collectRefsInValue(targetSchema, innerRefs);\n for (const innerRef of innerRefs) {\n if (!reachable.has(innerRef)) {\n reachable.add(innerRef);\n queue.push(innerRef);\n }\n }\n }\n\n return reachable;\n};\n\nexport interface ReusableSchemaEntry {\n ref: string;\n name: string;\n zod: string;\n consts: string;\n usedRefs: Set<string>;\n}\n\nexport interface GenerateReusableSchemaSetOptions {\n strict: boolean;\n isZodV4: boolean;\n coerce?: boolean | ZodCoerceType[];\n}\n\n/**\n * For each component-schema ref, run the Zod generator + parser with\n * `useReusableSchemas: true`. The resulting `zod` strings contain\n * `__REF_<name>__` sentinels at every site that references another schema;\n * the SCC step (Task 10) decides whether each sentinel becomes a direct\n * identifier or a `z.lazy(() => Name)` wrapper.\n */\nexport const generateReusableSchemaSet = (\n refs: readonly string[],\n context: ContextSpec,\n options: GenerateReusableSchemaSetOptions,\n): ReusableSchemaEntry[] => {\n const componentSchemas = context.spec.components?.schemas ?? {};\n\n // Map convention-applied export name → source ref, so when a generated\n // schema references another component schema via its `usedRefs` name we\n // can find which `$ref` to add to the work queue.\n const nameToRef = new Map<string, string>();\n for (const schemaName of Object.keys(componentSchemas)) {\n const ref = `#/components/schemas/${schemaName}`;\n nameToRef.set(resolveSchemaName(ref, context.output.namingConvention), ref);\n }\n\n // Expand to the transitive closure of component-schema refs reachable from\n // the initial roots. Without this, a generated schema could emit a sentinel\n // for a ref that's not in our entries → the rewriter would render a bare\n // identifier with no corresponding `export const`. Iterate until stable.\n const queue = [...refs];\n const seen = new Set<string>(refs);\n const entries: ReusableSchemaEntry[] = [];\n\n for (const ref of queue) {\n const schemaName = ref.slice('#/components/schemas/'.length);\n const schema = componentSchemas[schemaName];\n if (!schema) continue;\n\n const name = resolveSchemaName(ref, context.output.namingConvention);\n\n const definition = generateZodValidationSchemaDefinition(\n schema,\n context,\n name,\n options.strict,\n options.isZodV4,\n { required: true, useReusableSchemas: true },\n );\n\n const parsed = parseZodValidationSchemaDefinition(\n definition,\n context,\n options.coerce ?? false,\n options.strict,\n options.isZodV4,\n );\n\n entries.push({\n ref,\n name,\n zod: parsed.zod,\n consts: parsed.consts,\n usedRefs: parsed.usedRefs,\n });\n\n for (const usedName of parsed.usedRefs) {\n const usedRef = nameToRef.get(usedName);\n if (usedRef !== undefined && !seen.has(usedRef)) {\n seen.add(usedRef);\n queue.push(usedRef);\n }\n }\n }\n\n return entries;\n};\n\ntype Graph = ReadonlyMap<string, ReadonlySet<string>>;\n\nconst edgeKey = (from: string, to: string): string => `${from}->${to}`;\n\n/**\n * Tarjan's SCC. Returns SCCs as arrays of node ids, in reverse topological\n * order (deepest SCC first). Self-loops form their own size-1 SCC; non-cyclic\n * nodes are size-1 SCCs without a self-loop.\n */\ninterface TarjanResult {\n /**\n * SCCs in reverse topological order (deepest first). Within an SCC the\n * nodes are in REVERSE DFS finish order — emit in this order and every\n * non-lazy edge points to an already-emitted node, avoiding TDZ.\n */\n sccs: string[][];\n /** Back-edges discovered during DFS, keyed as \"from->to\". Plus self-loops. */\n lazyEdges: Set<string>;\n}\n\nconst tarjan = (graph: Graph): TarjanResult => {\n let index = 0;\n const stack: string[] = [];\n const onStack = new Set<string>();\n const indices = new Map<string, number>();\n const lowlinks = new Map<string, number>();\n const sccs: string[][] = [];\n const lazyEdges = new Set<string>();\n\n const strongconnect = (v: string): void => {\n indices.set(v, index);\n lowlinks.set(v, index);\n index += 1;\n stack.push(v);\n onStack.add(v);\n\n const neighbors = graph.get(v) ?? new Set<string>();\n for (const w of neighbors) {\n if (v === w) {\n // Self-loop: always lazy.\n lazyEdges.add(edgeKey(v, w));\n continue;\n }\n if (!indices.has(w)) {\n strongconnect(w);\n lowlinks.set(v, Math.min(lowlinks.get(v) ?? -1, lowlinks.get(w) ?? -1));\n } else if (onStack.has(w)) {\n // Back-edge: w is an ancestor in the DFS tree. v and w belong to\n // the same SCC and the edge v→w closes a cycle — emit it lazy so\n // the runtime initializer doesn't read w in its TDZ.\n lazyEdges.add(edgeKey(v, w));\n lowlinks.set(v, Math.min(lowlinks.get(v) ?? -1, indices.get(w) ?? -1));\n }\n }\n\n if (lowlinks.get(v) === indices.get(v)) {\n const scc: string[] = [];\n let w: string | undefined;\n do {\n w = stack.pop();\n if (w === undefined) break;\n onStack.delete(w);\n scc.push(w);\n } while (w !== v);\n sccs.push(scc);\n }\n };\n\n for (const node of graph.keys()) {\n if (!indices.has(node)) {\n strongconnect(node);\n }\n }\n\n return { sccs, lazyEdges };\n};\n\n/**\n * Returns the set of lazy-emission edge keys (\"from->to\") for `graph`. Back-edges\n * (edges from a node to an ancestor in the DFS tree) and self-loops are lazy.\n * Cross-SCC edges and tree/forward edges within an SCC are not lazy.\n */\nexport const computeLazyEdges = (graph: Graph): Set<string> =>\n tarjan(graph).lazyEdges;\n\nconst SENTINEL_PATTERN = /__REF_([A-Za-z_$][A-Za-z0-9_$]*)__/g;\n\n/**\n * Replace every `__REF_<name>__` sentinel with either the bare identifier or\n * `zod.lazy(() => <name>)` based on whether the edge closes a cycle, then\n * reorder entries so that every non-lazy reference is emitted AFTER its\n * target. This avoids TDZ errors at module load.\n *\n * Both the lazy classification and the emit order come from a single Tarjan\n * run, guaranteeing they agree: a non-lazy edge u→v means v is visited (and\n * popped) before u in DFS, so v appears earlier in the SCC array → emitted\n * before u → safe.\n */\nexport const rewriteReusableSchemas = (\n entries: readonly ReusableSchemaEntry[],\n): ReusableSchemaEntry[] => {\n const graph = new Map<string, Set<string>>(\n entries.map((e) => [e.name, new Set(e.usedRefs)] as const),\n );\n // Ensure all referenced names exist as nodes (even if no entry — guards against\n // forgotten roots; the renderer will still emit valid code, just with a dangling\n // ref the user can debug).\n for (const e of entries) {\n for (const ref of e.usedRefs) {\n if (!graph.has(ref)) graph.set(ref, new Set());\n }\n }\n\n const { sccs, lazyEdges } = tarjan(graph);\n\n const rewritten = new Map(\n entries.map((entry) => {\n const newZod = entry.zod.replaceAll(\n SENTINEL_PATTERN,\n (_match, refName: string) => {\n const isLazy = lazyEdges.has(edgeKey(entry.name, refName));\n return isLazy ? `zod.lazy(() => ${refName})` : refName;\n },\n );\n return [entry.name, { ...entry, zod: newZod }] as const;\n }),\n );\n\n // Tarjan returns SCCs in reverse topological order (deepest first) and\n // within each SCC the nodes are popped in REVERSE DFS-finish order — i.e.\n // descendants first, SCC root last. That's exactly the order we want to\n // emit: every non-lazy edge points to an already-emitted node.\n const out: ReusableSchemaEntry[] = [];\n for (const scc of sccs) {\n for (const name of scc) {\n const entry = rewritten.get(name);\n if (entry !== undefined) out.push(entry);\n }\n }\n return out;\n};\n","import path from 'node:path';\n\nimport {\n type ContextSpec,\n conventionName,\n type NamingConvention,\n type NormalizedOutputOptions,\n type OpenApiParameterObject,\n type OpenApiReferenceObject,\n type OpenApiRequestBodyObject,\n type OpenApiSchemaObject,\n pascal,\n type ZodCoerceType,\n} from '@orval/core';\nimport {\n dereference,\n generateFormDataZodSchema,\n generateZodValidationSchemaDefinition,\n isZodVersionV4,\n parseZodValidationSchemaDefinition,\n type ZodValidationSchemaDefinition,\n} from '@orval/zod';\nimport fs from 'fs-extra';\n\nimport {\n generateReusableSchemaSet,\n resolveSchemaNames,\n rewriteReusableSchemas,\n} from './reusable-schemas';\n\ninterface ZodSchemaFileEntry {\n schemaName: string;\n consts: string;\n zodExpression: string;\n}\n\ntype ZodSchemaFileToWrite = ZodSchemaFileEntry & {\n filePath: string;\n};\n\ninterface WriteZodOutputOptions {\n namingConvention: NamingConvention;\n indexFiles: boolean;\n packageJson?: NormalizedOutputOptions['packageJson'];\n override: {\n zod: {\n strict: {\n body: boolean;\n };\n generate: {\n param: boolean;\n query: boolean;\n header: boolean;\n body: boolean;\n response: boolean;\n };\n coerce: {\n body: boolean | ZodCoerceType[];\n };\n generateReusableSchemas?: boolean;\n };\n };\n}\n\ninterface WriteZodSchemasInput {\n spec: ContextSpec['spec'];\n target: string;\n schemas: {\n name: string;\n schema?: OpenApiSchemaObject | OpenApiReferenceObject;\n }[];\n}\n\ninterface WriteZodVerbResponseType {\n value: string;\n isRef?: boolean;\n originalSchema?: OpenApiSchemaObject;\n}\n\ninterface WriteZodSchemasFromVerbsEntry {\n operationName: string;\n originalOperation: {\n requestBody?: OpenApiRequestBodyObject | OpenApiReferenceObject;\n parameters?: (OpenApiParameterObject | OpenApiReferenceObject)[];\n };\n response: {\n types: {\n success: WriteZodVerbResponseType[];\n errors: WriteZodVerbResponseType[];\n };\n };\n override?: {\n zod: {\n generate: WriteZodOutputOptions['override']['zod']['generate'];\n };\n };\n}\n\ntype WriteZodSchemasFromVerbsInput = Record<\n string,\n WriteZodSchemasFromVerbsEntry\n>;\n\ninterface WriteZodSchemasFromVerbsContext {\n output: {\n override: {\n useDates?: NormalizedOutputOptions['override']['useDates'];\n zod: Pick<\n NormalizedOutputOptions['override']['zod'],\n 'dateTimeOptions' | 'timeOptions'\n >;\n };\n };\n spec: ContextSpec['spec'];\n target: string;\n workspace: string;\n}\n\nfunction generateZodSchemaFileContent(\n header: string,\n schemas: ZodSchemaFileEntry[],\n): string {\n const schemaContent = schemas\n .map(({ schemaName, consts, zodExpression }) => {\n const schemaConsts = consts ? `${consts}\\n` : '';\n\n return `${schemaConsts}export const ${schemaName} = ${zodExpression}\n\nexport type ${schemaName} = zod.input<typeof ${schemaName}>;\nexport type ${schemaName}Output = zod.output<typeof ${schemaName}>;`;\n })\n .join('\\n\\n');\n\n return `${header}import { z as zod } from 'zod';\n\n${schemaContent}\n`;\n}\n\nconst isValidSchemaIdentifier = (name: string) =>\n /^[A-Za-z_][A-Za-z0-9_]*$/.test(name);\n\nconst isPrimitiveSchemaName = (name: string) =>\n ['string', 'number', 'boolean', 'void', 'unknown', 'Blob'].includes(name);\n\nconst dedupeSchemasByName = <T extends { name: string }>(schemas: T[]) => {\n const uniqueSchemas = new Map<string, T>();\n\n for (const schema of schemas) {\n if (!uniqueSchemas.has(schema.name)) {\n uniqueSchemas.set(schema.name, schema);\n }\n }\n\n return [...uniqueSchemas.values()];\n};\n\nconst groupSchemasByFilePath = <T extends { filePath: string }>(\n schemas: T[],\n) => {\n const grouped = new Map<string, T[]>();\n\n for (const schema of schemas) {\n const key = schema.filePath.toLowerCase();\n const existingGroup = grouped.get(key);\n\n if (existingGroup) {\n existingGroup.push(schema);\n } else {\n grouped.set(key, [schema]);\n }\n }\n\n const sortedGroups = [...grouped.values()].map((group) =>\n [...group].toSorted((a, b) =>\n a.filePath.localeCompare(b.filePath, 'en', { numeric: true }),\n ),\n );\n\n return sortedGroups.toSorted((a, b) =>\n a[0].filePath.localeCompare(b[0].filePath, 'en', { numeric: true }),\n );\n};\n\nasync function writeZodSchemaIndex(\n schemasPath: string,\n fileExtension: string,\n header: string,\n schemaNames: string[],\n namingConvention: NamingConvention,\n shouldMergeExisting = false,\n) {\n const importFileExtension = fileExtension.replace(/\\.ts$/, '');\n const indexPath = path.join(schemasPath, `index.ts`);\n\n let existingExports = '';\n if (shouldMergeExisting && (await fs.pathExists(indexPath))) {\n const existingContent = await fs.readFile(indexPath, 'utf8');\n const headerMatch = /^(\\/\\*\\*[\\s\\S]*?\\*\\/\\n)?/.exec(existingContent);\n const headerPart = headerMatch ? headerMatch[0] : '';\n existingExports = existingContent.slice(headerPart.length).trim();\n }\n\n const newExports = schemaNames\n .map((schemaName) => {\n const fileName = conventionName(schemaName, namingConvention);\n return `export * from './${fileName}${importFileExtension}';`;\n })\n .toSorted()\n .join('\\n');\n\n const allExports = existingExports\n ? `${existingExports}\\n${newExports}`\n : newExports;\n\n const uniqueExports = [...new Set(allExports.split('\\n'))]\n .filter((line) => line.trim())\n .toSorted()\n .join('\\n');\n\n await fs.outputFile(indexPath, `${header}\\n${uniqueExports}\\n`);\n}\n\nexport function generateZodSchemasInline(\n builder: WriteZodSchemasInput,\n output: WriteZodOutputOptions,\n): string {\n const useReusableSchemas =\n output.override.zod.generateReusableSchemas === true;\n\n if (useReusableSchemas) {\n return generateZodSchemasInlineReusable(builder, output);\n }\n\n const schemasWithOpenApiDef = builder.schemas.filter((s) => s.schema);\n\n if (schemasWithOpenApiDef.length === 0) {\n return '';\n }\n\n const isZodV4 = !!output.packageJson && isZodVersionV4(output.packageJson);\n const strict = output.override.zod.strict.body;\n const coerce = output.override.zod.coerce.body;\n const schemas: ZodSchemaFileEntry[] = [];\n\n for (const { name, schema: schemaObject } of schemasWithOpenApiDef) {\n if (!schemaObject) {\n continue;\n }\n\n const context: ContextSpec = {\n spec: builder.spec,\n target: builder.target,\n workspace: '',\n output: output as ContextSpec['output'],\n };\n\n const dereferencedSchema = dereference(schemaObject, context);\n\n const zodDefinition = generateZodValidationSchemaDefinition(\n dereferencedSchema,\n context,\n name,\n strict,\n isZodV4,\n {\n required: true,\n },\n );\n\n const parsedZodDefinition = parseZodValidationSchemaDefinition(\n zodDefinition,\n context,\n coerce,\n strict,\n isZodV4,\n );\n\n schemas.push({\n schemaName: name,\n consts: parsedZodDefinition.consts,\n zodExpression: parsedZodDefinition.zod,\n });\n }\n\n if (schemas.length === 0) {\n return '';\n }\n\n return generateZodSchemaFileContent('', schemas);\n}\n\nfunction generateZodSchemasInlineReusable(\n builder: WriteZodSchemasInput,\n output: WriteZodOutputOptions,\n): string {\n const schemasWithOpenApiDef = builder.schemas.filter((s) => s.schema);\n if (schemasWithOpenApiDef.length === 0) return '';\n\n const isZodV4 = !!output.packageJson && isZodVersionV4(output.packageJson);\n const strict = output.override.zod.strict.body;\n const coerce = output.override.zod.coerce.body;\n const context: ContextSpec = {\n spec: builder.spec,\n target: builder.target,\n workspace: '',\n output: output as ContextSpec['output'],\n };\n\n const refs = schemasWithOpenApiDef.map(\n ({ name }) => `#/components/schemas/${name}`,\n );\n\n resolveSchemaNames(refs, output.namingConvention);\n\n const entries = generateReusableSchemaSet(refs, context, {\n strict,\n isZodV4,\n coerce,\n });\n\n const rewritten = rewriteReusableSchemas(entries);\n\n const body = rewritten\n .map((entry) => {\n const consts = entry.consts ? `${entry.consts}\\n\\n` : '';\n return (\n `${consts}export const ${entry.name} = ${entry.zod};\\n\\n` +\n `export type ${entry.name} = zod.input<typeof ${entry.name}>;\\n` +\n `export type ${entry.name}Output = zod.output<typeof ${entry.name}>;`\n );\n })\n .join('\\n\\n');\n\n return `import { z as zod } from 'zod';\\n\\n${body}\\n`;\n}\n\nexport async function writeZodSchemas(\n builder: WriteZodSchemasInput,\n schemasPath: string,\n fileExtension: string,\n header: string,\n output: WriteZodOutputOptions,\n) {\n const useReusableSchemas = output.override.zod.generateReusableSchemas;\n\n if (useReusableSchemas) {\n await writeZodSchemasReusable(\n builder,\n schemasPath,\n fileExtension,\n header,\n output,\n );\n return;\n }\n\n const schemasWithOpenApiDef = builder.schemas.filter((s) => s.schema);\n const schemasToWrite: ZodSchemaFileToWrite[] = [];\n const isZodV4 = !!output.packageJson && isZodVersionV4(output.packageJson);\n const strict = output.override.zod.strict.body;\n const coerce = output.override.zod.coerce.body;\n\n for (const generatorSchema of schemasWithOpenApiDef) {\n const { name, schema: schemaObject } = generatorSchema;\n\n if (!schemaObject) {\n continue;\n }\n\n const fileName = conventionName(name, output.namingConvention);\n const filePath = path.join(schemasPath, `${fileName}${fileExtension}`);\n const context: ContextSpec = {\n spec: builder.spec,\n target: builder.target,\n workspace: '',\n output: output as ContextSpec['output'],\n };\n\n // Dereference the schema to resolve $ref\n const dereferencedSchema = dereference(schemaObject, context);\n\n const zodDefinition = generateZodValidationSchemaDefinition(\n dereferencedSchema,\n context,\n name,\n strict,\n isZodV4,\n {\n required: true,\n },\n );\n\n const parsedZodDefinition = parseZodValidationSchemaDefinition(\n zodDefinition,\n context,\n coerce,\n strict,\n isZodV4,\n );\n\n schemasToWrite.push({\n schemaName: name,\n filePath,\n consts: parsedZodDefinition.consts,\n zodExpression: parsedZodDefinition.zod,\n });\n }\n\n const groupedSchemasToWrite = groupSchemasByFilePath(schemasToWrite);\n\n for (const schemaGroup of groupedSchemasToWrite) {\n const fileContent = generateZodSchemaFileContent(header, schemaGroup);\n\n await fs.outputFile(schemaGroup[0].filePath, fileContent);\n }\n\n if (output.indexFiles) {\n const schemaNames = groupedSchemasToWrite.map(\n (schemaGroup) => schemaGroup[0].schemaName,\n );\n await writeZodSchemaIndex(\n schemasPath,\n fileExtension,\n header,\n schemaNames,\n output.namingConvention,\n false,\n );\n }\n}\n\nasync function writeZodSchemasReusable(\n builder: WriteZodSchemasInput,\n schemasPath: string,\n fileExtension: string,\n header: string,\n output: WriteZodOutputOptions,\n) {\n const isZodV4 = !!output.packageJson && isZodVersionV4(output.packageJson);\n const strict = output.override.zod.strict.body;\n const coerce = output.override.zod.coerce.body;\n const context: ContextSpec = {\n spec: builder.spec,\n target: builder.target,\n workspace: '',\n output: output as ContextSpec['output'],\n };\n\n // Roots = every component schema in the builder list. This matches today's\n // writeZodSchemas behavior of emitting all of them (the `schemas: { type: 'zod' }`\n // path passes the full schema list in via builder.schemas).\n const refs = builder.schemas\n .map(({ name }) => `#/components/schemas/${name}`)\n .filter((ref) => {\n const schemaName = ref.slice('#/components/schemas/'.length);\n const componentSchemas = (builder.spec.components?.schemas ??\n {}) as Record<string, unknown>;\n return componentSchemas[schemaName] !== undefined;\n });\n\n // Conflict guard.\n resolveSchemaNames(refs, output.namingConvention);\n\n const entries = generateReusableSchemaSet(refs, context, {\n strict,\n isZodV4,\n coerce,\n });\n\n const rewritten = rewriteReusableSchemas(entries);\n\n for (const entry of rewritten) {\n const fileName = conventionName(entry.name, output.namingConvention);\n const filePath = path.join(schemasPath, `${fileName}${fileExtension}`);\n const importExt = fileExtension.replace(/\\.ts$/, '');\n const imports = [...entry.usedRefs]\n .filter((r) => r !== entry.name)\n .toSorted()\n .map((r) => {\n const importedFile = conventionName(r, output.namingConvention);\n return `import { ${r} } from './${importedFile}${importExt}';`;\n })\n .join('\\n');\n\n const consts = entry.consts ? `${entry.consts}\\n\\n` : '';\n const fileContent =\n `${header}import { z as zod } from 'zod';\\n` +\n (imports ? `${imports}\\n\\n` : '\\n') +\n `${consts}export const ${entry.name} = ${entry.zod};\\n\\n` +\n `export type ${entry.name} = zod.input<typeof ${entry.name}>;\\n` +\n `export type ${entry.name}Output = zod.output<typeof ${entry.name}>;\\n`;\n\n await fs.outputFile(filePath, fileContent);\n }\n\n if (output.indexFiles && rewritten.length > 0) {\n const schemaNames = rewritten.map((e) => e.name);\n await writeZodSchemaIndex(\n schemasPath,\n fileExtension,\n header,\n schemaNames,\n output.namingConvention,\n true,\n );\n }\n}\n\nexport async function writeZodSchemasFromVerbs(\n verbOptions: WriteZodSchemasFromVerbsInput,\n schemasPath: string,\n fileExtension: string,\n header: string,\n output: WriteZodOutputOptions,\n context: WriteZodSchemasFromVerbsContext,\n) {\n const zodContext = context as unknown as ContextSpec;\n const verbOptionsArray = Object.values(verbOptions);\n\n if (verbOptionsArray.length === 0) {\n return;\n }\n\n const isZodV4 = !!output.packageJson && isZodVersionV4(output.packageJson);\n const strict = output.override.zod.strict.body;\n const coerce = output.override.zod.coerce.body;\n const useReusableSchemas =\n output.override.zod.generateReusableSchemas === true;\n\n const generateVerbsSchemas = verbOptionsArray.flatMap((verbOption) => {\n const operation = verbOption.originalOperation;\n const shouldGenerate = {\n ...output.override.zod.generate,\n ...verbOption.override?.zod.generate,\n };\n\n const requestBody = operation.requestBody;\n const requestBodyContent =\n requestBody && 'content' in requestBody\n ? (requestBody as OpenApiRequestBodyObject).content\n : undefined;\n // Pick the first available body media type. JSON wins; otherwise fall back\n // to form-data / urlencoded so we still generate a `*Body` schema for\n // operations whose only payload is multipart (e.g. file uploads). Without\n // this, endpoints that import `${OperationName}Body` from the zod schemas\n // path resolve to a missing export. (issue #3066)\n const jsonBodyMedia = requestBodyContent?.['application/json'];\n const formDataBodyMedia = requestBodyContent?.['multipart/form-data'];\n const formUrlEncodedBodyMedia =\n requestBodyContent?.['application/x-www-form-urlencoded'];\n const [bodyContentType, bodyMedia] = jsonBodyMedia\n ? (['application/json', jsonBodyMedia] as const)\n : formDataBodyMedia\n ? (['multipart/form-data', formDataBodyMedia] as const)\n : formUrlEncodedBodyMedia\n ? ([\n 'application/x-www-form-urlencoded',\n formUrlEncodedBodyMedia,\n ] as const)\n : [undefined, undefined];\n const bodySchema = bodyMedia?.schema as OpenApiSchemaObject | undefined;\n\n const bodySchemas =\n shouldGenerate.body && bodySchema\n ? [\n {\n name: `${pascal(verbOption.operationName)}Body`,\n schema: useReusableSchemas\n ? bodySchema\n : dereference(bodySchema, zodContext),\n bodyContentType,\n encoding: bodyMedia?.encoding,\n },\n ]\n : [];\n\n const parameters = operation.parameters;\n\n const queryParams = parameters?.filter(\n (p): p is OpenApiParameterObject => 'in' in p && p.in === 'query',\n );\n\n const queryParamsSchemas =\n shouldGenerate.query && queryParams && queryParams.length > 0\n ? [\n {\n name: `${pascal(verbOption.operationName)}Params`,\n schema: {\n type: 'object' as const,\n properties: Object.fromEntries(\n queryParams\n .filter((p) => 'schema' in p && p.schema)\n .map((p) => [\n p.name,\n useReusableSchemas\n ? (p.schema as OpenApiSchemaObject)\n : dereference(\n p.schema as OpenApiSchemaObject,\n zodContext,\n ),\n ]),\n ) as Record<string, OpenApiSchemaObject>,\n required: queryParams\n .filter((p) => p.required)\n .map((p) => p.name)\n .filter((name): name is string => name !== undefined),\n },\n },\n ]\n : [];\n\n const headerParams = parameters?.filter(\n (p): p is OpenApiParameterObject => 'in' in p && p.in === 'header',\n );\n\n const headerParamsSchemas =\n shouldGenerate.header && headerParams && headerParams.length > 0\n ? [\n {\n name: `${pascal(verbOption.operationName)}Headers`,\n schema: {\n type: 'object' as const,\n properties: Object.fromEntries(\n headerParams\n .filter((p) => 'schema' in p && p.schema)\n .map((p) => [\n p.name,\n useReusableSchemas\n ? (p.schema as OpenApiSchemaObject)\n : dereference(\n p.schema as OpenApiSchemaObject,\n zodContext,\n ),\n ]),\n ) as Record<string, OpenApiSchemaObject>,\n required: headerParams\n .filter((p) => p.required)\n .map((p) => p.name)\n .filter((name): name is string => name !== undefined),\n },\n },\n ]\n : [];\n\n const responseSchemas = shouldGenerate.response\n ? [\n ...verbOption.response.types.success,\n ...verbOption.response.types.errors,\n ]\n .filter(\n (\n responseType,\n ): responseType is typeof responseType & {\n originalSchema: OpenApiSchemaObject;\n } =>\n !!responseType.originalSchema &&\n !responseType.isRef &&\n isValidSchemaIdentifier(responseType.value) &&\n !isPrimitiveSchemaName(responseType.value),\n )\n .map((responseType) => ({\n name: responseType.value,\n schema: useReusableSchemas\n ? responseType.originalSchema\n : dereference(responseType.originalSchema, zodContext),\n }))\n : [];\n\n return dedupeSchemasByName([\n ...bodySchemas,\n ...queryParamsSchemas,\n ...headerParamsSchemas,\n ...responseSchemas,\n ]);\n });\n\n const uniqueVerbsSchemas = dedupeSchemasByName(generateVerbsSchemas);\n const schemasToWrite: ZodSchemaFileToWrite[] = [];\n\n for (const entry of uniqueVerbsSchemas) {\n // Pure-ref wrapper skip: if the underlying schema is just `{ $ref: ... }` AND\n // the flag is on, don't emit a per-operation wrapper file. Consumers import\n // the named component schema directly.\n if (\n useReusableSchemas &&\n entry.schema &&\n typeof (entry.schema as { $ref?: unknown }).$ref === 'string' &&\n Object.keys(entry.schema).length === 1\n ) {\n continue;\n }\n\n const { name, schema } = entry;\n const fileName = conventionName(name, output.namingConvention);\n const filePath = path.join(schemasPath, `${fileName}${fileExtension}`);\n\n // multipart/form-data bodies need file-aware overrides so binary fields\n // become `z.instanceof(File)` instead of plain strings.\n const isFormDataBody =\n 'bodyContentType' in entry &&\n entry.bodyContentType === 'multipart/form-data';\n\n const zodDefinition: ZodValidationSchemaDefinition = isFormDataBody\n ? generateFormDataZodSchema(\n schema,\n zodContext,\n name,\n strict,\n isZodV4,\n 'encoding' in entry\n ? (entry.encoding as\n | Record<string, { contentType?: string }>\n | undefined)\n : undefined,\n useReusableSchemas,\n )\n : generateZodValidationSchemaDefinition(\n schema,\n zodContext,\n name,\n strict,\n isZodV4,\n {\n required: true,\n useReusableSchemas,\n },\n );\n\n const parsedZodDefinition = parseZodValidationSchemaDefinition(\n zodDefinition,\n zodContext,\n coerce,\n strict,\n isZodV4,\n );\n\n schemasToWrite.push({\n schemaName: name,\n filePath,\n consts: parsedZodDefinition.consts,\n zodExpression: parsedZodDefinition.zod,\n });\n }\n\n const groupedSchemasToWrite = groupSchemasByFilePath(schemasToWrite);\n\n for (const schemaGroup of groupedSchemasToWrite) {\n const fileContent = generateZodSchemaFileContent(header, schemaGroup);\n\n await fs.outputFile(schemaGroup[0].filePath, fileContent);\n }\n\n if (output.indexFiles && uniqueVerbsSchemas.length > 0) {\n const schemaNames = groupedSchemasToWrite.map(\n (schemaGroup) => schemaGroup[0].schemaName,\n );\n await writeZodSchemaIndex(\n schemasPath,\n fileExtension,\n header,\n schemaNames,\n output.namingConvention,\n true,\n );\n }\n}\n","import path from 'node:path';\n\nimport {\n type ContextSpec,\n createSuccessMessage,\n type FakerMockOptions,\n fixCrossDirectoryImports,\n fixRegularSchemaImports,\n generateDependencyImports,\n getFileInfo,\n getImportExtension,\n getMockFileExtensionByTypeName,\n isFunction,\n isObject,\n isString,\n jsDoc,\n logWarning,\n type NormalizedOptions,\n type OpenApiInfoObject,\n OutputMockType,\n OutputMode,\n splitSchemasByType,\n SupportedFormatter,\n upath,\n writeGeneratedFile,\n writeSchemas,\n writeSingleMode,\n type WriteSpecBuilder,\n writeSplitMode,\n writeSplitTagsMode,\n writeTagsMode,\n} from '@orval/core';\nimport { generateFakerForSchemas } from '@orval/mock';\nimport { execa, ExecaError } from 'execa';\nimport fs from 'fs-extra';\nimport { unique } from 'remeda';\nimport type { TypeDocOptions } from 'typedoc';\n\nimport { formatWithPrettier } from './formatters/prettier';\nimport { executeHook } from './utils';\nimport {\n generateZodSchemasInline,\n writeZodSchemas,\n writeZodSchemasFromVerbs,\n} from './write-zod-specs';\n\nasync function runExternalFormatter(\n bin: string,\n args: string[],\n projectTitle?: string,\n): Promise<void> {\n try {\n await execa(bin, args);\n } catch (error) {\n let message: string;\n if (error instanceof ExecaError) {\n message =\n error.code === 'ENOENT'\n ? `⚠️ ${projectTitle ? `${projectTitle} - ` : ''}${bin} not found`\n : error.message;\n } else if (error instanceof Error) {\n message = error.message;\n } else {\n message = `⚠️ ${projectTitle ? `${projectTitle} - ` : ''}${bin} failed`;\n }\n logWarning(message);\n }\n}\n\nexport async function runFormatter(\n formatter: SupportedFormatter | undefined,\n paths: string[],\n projectTitle?: string,\n): Promise<void> {\n switch (formatter) {\n case SupportedFormatter.PRETTIER: {\n await formatWithPrettier(paths, projectTitle);\n break;\n }\n case SupportedFormatter.BIOME: {\n await runExternalFormatter(\n SupportedFormatter.BIOME,\n ['check', '--write', ...paths],\n projectTitle,\n );\n break;\n }\n case SupportedFormatter.OXFMT: {\n await runExternalFormatter(SupportedFormatter.OXFMT, paths, projectTitle);\n break;\n }\n }\n}\n\nfunction getHeader(\n option: false | ((info: OpenApiInfoObject) => string | string[]),\n info: OpenApiInfoObject,\n): string {\n if (!option) {\n return '';\n }\n\n const header = option(info);\n return Array.isArray(header) ? jsDoc({ description: header }) : header;\n}\n\n/**\n * Add re-export of operation schemas from the main schemas index file.\n * Handles the case where the index file doesn't exist (no regular schemas).\n */\nasync function addOperationSchemasReExport(\n schemaPath: string,\n operationSchemasPath: string,\n header: string,\n): Promise<void> {\n const schemaIndexPath = path.join(schemaPath, `index.ts`);\n const esmImportPath = upath.getRelativeImportPath(\n schemaIndexPath,\n operationSchemasPath,\n );\n const exportLine = `export * from '${esmImportPath}';\\n`;\n\n const indexExists = await fs.pathExists(schemaIndexPath);\n if (indexExists) {\n // Check if export already exists to prevent duplicates on re-runs\n // Use regex to handle both single and double quotes\n const existingContent = await fs.readFile(schemaIndexPath, 'utf8');\n const exportPattern = new RegExp(\n String.raw`export\\s*\\*\\s*from\\s*['\"]${esmImportPath.replaceAll(/[.*+?^${}()|[\\]\\\\]/g, String.raw`\\$&`)}['\"]`,\n );\n if (!exportPattern.test(existingContent)) {\n await fs.appendFile(schemaIndexPath, exportLine);\n }\n } else {\n // Create index with header if file doesn't exist (no regular schemas case)\n const content =\n header && header.trim().length > 0\n ? `${header}\\n${exportLine}`\n : exportLine;\n await fs.outputFile(schemaIndexPath, content);\n }\n}\n\n/**\n * Emit `<schemas-dir>/index.faker.ts` (or `<output-root>/schemas.faker.ts`\n * when `output.schemas` is not configured) when a faker generator entry has\n * `schemas: true`. Each `components/schemas` entry becomes a\n * `get<SchemaName>Mock(overrides)` factory in the file. Returns the written\n * file path so callers can include it in formatter / hook runs, or\n * `undefined` if no file was written.\n */\nasync function writeFakerSchemaMocks(\n builder: WriteSpecBuilder,\n options: NormalizedOptions,\n header: string,\n): Promise<string | undefined> {\n const { output } = options;\n // Pick the opted-in faker entry directly. The duplicate-type guard in\n // `normalizeMocksOption` keeps this unambiguous today, and finding by\n // `schemas: true` also makes the intent obvious if that guard ever\n // loosens (so a `faker({ schemas: false })` entry can't accidentally\n // win the lookup).\n const fakerEntry = output.mock.generators.find(\n (g): g is FakerMockOptions =>\n !isFunction(g) && g.type === OutputMockType.FAKER && g.schemas === true,\n );\n if (!fakerEntry) {\n return undefined;\n }\n\n const schemasWithDef = builder.schemas.filter((s) => !!s.schema);\n if (schemasWithDef.length === 0) {\n return undefined;\n }\n\n const context: ContextSpec = {\n spec: builder.spec,\n target: builder.target,\n workspace: '',\n output,\n };\n\n const { implementation, imports } = generateFakerForSchemas(\n schemasWithDef,\n context,\n fakerEntry,\n );\n\n if (!implementation.trim()) {\n return undefined;\n }\n\n let filePath: string;\n let schemaImportPath: string | undefined;\n const fileExtension = output.fileExtension || '.ts';\n\n if (output.schemas) {\n const schemasDir = isString(output.schemas)\n ? output.schemas\n : output.schemas.path;\n filePath = path.join(schemasDir, `index.faker${fileExtension}`);\n schemaImportPath = '.';\n } else {\n const targetInfo = output.target\n ? getFileInfo(output.target, { extension: fileExtension })\n : undefined;\n const dir = targetInfo?.dirname ?? process.cwd();\n filePath = path.join(dir, `schemas.faker${fileExtension}`);\n // Without a dedicated schemas dir we have no separate types file to\n // import from; the factories will reference inline types declared in\n // the main output target. Append `getImportExtension` so NodeNext /\n // Node16 module resolution gets the required local-file extension.\n schemaImportPath = targetInfo\n ? `./${targetInfo.filename}${getImportExtension(\n fileExtension,\n output.tsconfig,\n )}`\n : undefined;\n }\n\n // Route every schema-related import (both type-only and runtime value\n // forms) onto the consolidated schemas path. Both `import { Foo }` and\n // `import type { Foo }` come from the same module here, so we treat\n // them uniformly — `generateDependencyImports` splits values vs types\n // back out into separate `import` / `import type` lines as needed.\n const reroutedImports = imports.map((imp) =>\n imp.importPath ? imp : { ...imp, importPath: schemaImportPath },\n );\n\n // `generateDependencyImports` expects a list of `{ exports, dependency }`\n // groups (one per source module). Bucket all rerouted imports by their\n // resolved `importPath` so each module emits a single `import type { ... }`\n // line.\n const grouped = new Map<string, typeof reroutedImports>();\n for (const imp of reroutedImports) {\n const key = imp.importPath ?? '';\n if (!key) continue;\n const bucket = grouped.get(key) ?? [];\n bucket.push(imp);\n grouped.set(key, bucket);\n }\n\n const importsHeader = generateDependencyImports(\n implementation,\n [\n {\n exports: [{ name: 'faker', values: true }],\n dependency: fakerEntry.locale\n ? `@faker-js/faker/locale/${fakerEntry.locale}`\n : '@faker-js/faker',\n },\n ...[...grouped.entries()].map(([dependency, exports]) => ({\n exports,\n dependency,\n })),\n ],\n undefined,\n !!output.schemas,\n false,\n );\n\n const content = `${header}${importsHeader}\\n\\n${implementation}`;\n await writeGeneratedFile(filePath, content);\n return filePath;\n}\n\nexport async function writeSpecs(\n builder: WriteSpecBuilder,\n workspace: string,\n options: NormalizedOptions,\n projectName?: string,\n) {\n const { info, schemas, target } = builder;\n const { output } = options;\n const projectTitle = projectName ?? info.title;\n\n const header = getHeader(output.override.header, info);\n\n if (output.schemas) {\n const schemasPath = isString(output.schemas)\n ? output.schemas\n : output.schemas.path;\n const isZodSchemas =\n (!isString(output.schemas) && output.schemas.type === 'zod') ||\n // Auto-promote a string `schemas:` to the zod writer when client is zod\n // and the reusable flag is on. We deliberately don't promote when the\n // user explicitly set `{ type: 'typescript' }` — that signals intent\n // to keep TS types, even alongside a zod client.\n (isString(output.schemas) &&\n output.client === 'zod' &&\n output.override.zod.generateReusableSchemas);\n\n if (isZodSchemas) {\n // Use the schema-specific extension so the global `fileExtension` (which\n // also drives client/mock outputs) isn't dragged into the zod world.\n const fileExtension = output.schemaFileExtension;\n\n await writeZodSchemas(\n builder,\n schemasPath,\n fileExtension,\n header,\n output,\n );\n\n await writeZodSchemasFromVerbs(\n builder.verbOptions,\n schemasPath,\n fileExtension,\n header,\n output,\n {\n spec: builder.spec,\n target: builder.target,\n workspace,\n output,\n },\n );\n } else {\n const fileExtension = output.fileExtension || '.ts';\n\n // Split schemas if operationSchemas path is configured\n if (output.operationSchemas) {\n const { regularSchemas, operationSchemas: opSchemas } =\n splitSchemasByType(schemas);\n\n // Fix cross-directory imports before writing (both directions)\n const regularSchemaNames = new Set(regularSchemas.map((s) => s.name));\n const operationSchemaNames = new Set(opSchemas.map((s) => s.name));\n fixCrossDirectoryImports(\n opSchemas,\n regularSchemaNames,\n schemasPath,\n output.operationSchemas,\n output.namingConvention,\n fileExtension,\n output.tsconfig,\n );\n fixRegularSchemaImports(\n regularSchemas,\n operationSchemaNames,\n schemasPath,\n output.operationSchemas,\n output.namingConvention,\n fileExtension,\n output.tsconfig,\n );\n\n // Write regular schemas to schemas path\n if (regularSchemas.length > 0) {\n await writeSchemas({\n schemaPath: schemasPath,\n schemas: regularSchemas,\n target,\n namingConvention: output.namingConvention,\n fileExtension,\n header,\n indexFiles: output.indexFiles,\n tsconfig: output.tsconfig,\n factoryOutputDirectory: output.factoryMethods?.outputDirectory,\n });\n }\n\n // Write operation schemas to operationSchemas path\n if (opSchemas.length > 0) {\n await writeSchemas({\n schemaPath: output.operationSchemas,\n schemas: opSchemas,\n target,\n namingConvention: output.namingConvention,\n fileExtension,\n header,\n indexFiles: output.indexFiles,\n tsconfig: output.tsconfig,\n factoryOutputDirectory: output.factoryMethods?.outputDirectory,\n });\n\n // Add re-export from operations in the main schemas index\n if (output.indexFiles) {\n await addOperationSchemasReExport(\n schemasPath,\n output.operationSchemas,\n header,\n );\n }\n }\n } else {\n await writeSchemas({\n schemaPath: schemasPath,\n schemas,\n target,\n namingConvention: output.namingConvention,\n fileExtension,\n header,\n indexFiles: output.indexFiles,\n tsconfig: output.tsconfig,\n factoryOutputDirectory: output.factoryMethods?.outputDirectory,\n });\n }\n }\n }\n\n // Emit a consolidated faker mock file for `components/schemas` when the\n // faker generator opts in with `schemas: true`. Lives alongside the\n // generated TS schema types so factories can import them directly.\n const fakerSchemaPath = await writeFakerSchemaMocks(builder, options, header);\n\n let implementationPaths: string[] = [];\n\n if (output.target) {\n const writeMode = getWriteMode(output.mode);\n const isZodClient = output.client === 'zod';\n const hasOperations = Object.keys(builder.operations).length > 0;\n const needZodSchemasInline =\n isZodClient && !output.schemas && !hasOperations;\n\n implementationPaths = await writeMode({\n builder,\n workspace,\n output,\n projectName,\n header,\n needSchema: (!output.schemas && !isZodClient) || needZodSchemasInline,\n generateSchemasInline: needZodSchemasInline\n ? () => generateZodSchemasInline(builder, output)\n : undefined,\n });\n }\n\n if (output.workspace) {\n const workspacePath = output.workspace;\n const indexFile = path.join(workspacePath, 'index.ts');\n // Skip per-mock-entry output files when emitting the workspace index.\n // The cleanup pass removes any path matching `.<ext>.ts` for every\n // configured generator's extension (`msw`, `faker`, etc.).\n const mockExtensions = output.mock.generators.map((g) =>\n getMockFileExtensionByTypeName(g),\n );\n const imports = implementationPaths\n .filter(\n (p) =>\n mockExtensions.length === 0 ||\n !mockExtensions.some((ext) => p.endsWith(`.${ext}.ts`)),\n )\n .map((p) =>\n upath.getRelativeImportPath(\n indexFile,\n getFileInfo(p).pathWithoutExtension,\n true,\n ),\n );\n\n if (output.schemas) {\n const schemasPath = isString(output.schemas)\n ? output.schemas\n : output.schemas.path;\n imports.push(\n upath.getRelativeImportPath(\n indexFile,\n getFileInfo(schemasPath).dirname,\n ),\n );\n }\n\n if (output.operationSchemas) {\n imports.push(\n upath.getRelativeImportPath(\n indexFile,\n getFileInfo(output.operationSchemas).dirname,\n ),\n );\n }\n\n if (output.indexFiles) {\n if (await fs.pathExists(indexFile)) {\n const data = await fs.readFile(indexFile, 'utf8');\n const importsNotDeclared = imports.filter((imp) => !data.includes(imp));\n await fs.appendFile(\n indexFile,\n unique(importsNotDeclared)\n .map((imp) => `export * from '${imp}';\\n`)\n .join(''),\n );\n } else {\n await fs.outputFile(\n indexFile,\n unique(imports)\n .map((imp) => `export * from '${imp}';`)\n .join('\\n') + '\\n',\n );\n }\n\n implementationPaths = [indexFile, ...implementationPaths];\n }\n }\n\n if (builder.extraFiles.length > 0) {\n await Promise.all(\n builder.extraFiles.map(async (file) =>\n fs.outputFile(file.path, file.content),\n ),\n );\n\n implementationPaths = [\n ...implementationPaths,\n ...builder.extraFiles.map((file) => file.path),\n ];\n }\n\n const paths = [\n ...(output.schemas\n ? [\n getFileInfo(\n isString(output.schemas) ? output.schemas : output.schemas.path,\n ).dirname,\n ]\n : []),\n ...(fakerSchemaPath ? [fakerSchemaPath] : []),\n ...(output.operationSchemas\n ? [getFileInfo(output.operationSchemas).dirname]\n : []),\n ...implementationPaths,\n ];\n\n if (options.hooks.afterAllFilesWrite) {\n await executeHook(\n 'afterAllFilesWrite',\n options.hooks.afterAllFilesWrite,\n paths,\n );\n }\n\n await runFormatter(output.formatter, paths, projectTitle);\n\n if (output.docs) {\n try {\n let config: Partial<TypeDocOptions> = {};\n let configPath: string | undefined;\n if (isObject(output.docs)) {\n ({ configPath, ...config } = output.docs);\n if (configPath) {\n config.options = configPath;\n }\n }\n\n const getTypedocApplication = async () => {\n const { Application } = await import('typedoc');\n return Application;\n };\n\n const Application = await getTypedocApplication();\n const app = await Application.bootstrapWithPlugins({\n entryPoints: paths.map((x) => upath.toUnix(x)),\n theme: 'markdown',\n // Skip TypeScript diagnostics on the consuming project: TypeDoc would\n // otherwise pick up the user's tsconfig and surface errors from files\n // unrelated to the generated entry points (e.g. a demo `App.tsx`\n // with an unused `React` default import under the new JSX transform —\n // see #3338). User-overridable via the `docs` option below.\n skipErrorChecking: true,\n // Set the custom config location if it has been provided.\n ...config,\n plugin: ['typedoc-plugin-markdown', ...(config.plugin ?? [])],\n });\n // Set defaults if the have not been provided by the external config.\n if (!app.options.isSet('readme')) {\n app.options.setValue('readme', 'none');\n }\n if (!app.options.isSet('logLevel')) {\n app.options.setValue('logLevel', 'None');\n }\n const project = await app.convert();\n if (project) {\n const outputPath = app.options.getValue('out');\n await app.generateDocs(project, outputPath);\n\n await runFormatter(output.formatter, [outputPath], projectTitle);\n } else {\n throw new Error('TypeDoc not initialized');\n }\n } catch (error) {\n const message =\n error instanceof Error\n ? error.message\n : `⚠️ ${projectTitle ? `${projectTitle} - ` : ''}Unable to generate docs`;\n\n logWarning(message);\n }\n }\n\n createSuccessMessage(projectTitle);\n}\n\nfunction getWriteMode(mode: OutputMode) {\n switch (mode) {\n case OutputMode.SPLIT: {\n return writeSplitMode;\n }\n case OutputMode.TAGS: {\n return writeTagsMode;\n }\n case OutputMode.TAGS_SPLIT: {\n return writeSplitTagsMode;\n }\n default: {\n return writeSingleMode;\n }\n }\n}\n","import {\n getFileInfo,\n isString,\n log,\n type NormalizedOptions,\n removeFilesAndEmptyFolders,\n} from '@orval/core';\n\nimport { importSpecs } from './import-specs';\nimport { writeSpecs } from './write-specs';\n\n/**\n * Generate client/spec files for a single Orval project.\n *\n * @param workspace - Absolute or relative workspace path used to resolve imports.\n * @param options - Normalized generation options for this project.\n * @param projectName - Optional project name used in logging output.\n * @returns A promise that resolves once generation (and optional cleaning) completes.\n *\n * @example\n * await generateSpec(process.cwd(), normalizedOptions, 'my-project');\n */\nexport async function generateSpec(\n workspace: string,\n options: NormalizedOptions,\n projectName?: string,\n) {\n if (options.output.clean) {\n const extraPatterns = Array.isArray(options.output.clean)\n ? options.output.clean\n : [];\n\n if (options.output.target) {\n await removeFilesAndEmptyFolders(\n ['**/*', '!**/*.d.ts', ...extraPatterns],\n getFileInfo(options.output.target).dirname,\n );\n }\n if (options.output.schemas) {\n const schemasPath = isString(options.output.schemas)\n ? options.output.schemas\n : options.output.schemas.path;\n await removeFilesAndEmptyFolders(\n ['**/*', '!**/*.d.ts', ...extraPatterns],\n getFileInfo(schemasPath).dirname,\n );\n }\n log(`${projectName} Cleaning output folder`);\n }\n\n const writeSpecBuilder = await importSpecs(workspace, options, projectName);\n await writeSpecs(writeSpecBuilder, workspace, options, projectName);\n}\n","import fs from 'node:fs';\nimport path from 'node:path';\n\nimport { type Config, type ConfigExternal, isFunction } from '@orval/core';\nimport { createJiti } from 'jiti';\n\n/**\n * Resolve the Orval config file path.\n *\n * @param configFilePath - Optional path to the config file (absolute or relative).\n * @returns The absolute path to the resolved config file.\n * @throws If a provided path does not exist or if no config file is found.\n *\n * @example\n * // explicit path\n * const p = findConfigFile('./orval.config.ts');\n *\n * @example\n * // automatic discovery (searches process.cwd())\n * const p = findConfigFile();\n */\nexport function findConfigFile(configFilePath?: string) {\n if (configFilePath) {\n const absolutePath = path.isAbsolute(configFilePath)\n ? configFilePath\n : path.resolve(process.cwd(), configFilePath);\n\n if (!fs.existsSync(absolutePath))\n throw new Error(`Config file ${configFilePath} does not exist`);\n\n return absolutePath;\n }\n\n const root = process.cwd();\n const exts = ['.ts', '.js', '.mjs', '.mts'];\n for (const ext of exts) {\n const fullPath = path.resolve(root, `orval.config${ext}`);\n if (fs.existsSync(fullPath)) {\n return fullPath;\n }\n }\n\n throw new Error(`No config file found in ${root}`);\n}\n\n/**\n * Load an Orval config file\n * @param configFilePath - Path to the config file (absolute or relative).\n * @returns The resolved Orval `Config` object.\n * @throws If the module does not provide a default export or the default export resolves to `undefined`.\n *\n * @example\n * // load a config object\n * const cfg = await loadConfigFile('./orval.config.ts');\n */\nexport async function loadConfigFile(configFilePath: string): Promise<Config> {\n const jiti = createJiti(process.cwd(), {\n interopDefault: true,\n });\n\n const configExternal = await jiti.import<ConfigExternal | undefined>(\n configFilePath,\n {\n default: true,\n },\n );\n\n if (configExternal === undefined) {\n throw new Error(`${configFilePath} doesn't have a default export`);\n }\n\n const config = await (isFunction(configExternal)\n ? configExternal()\n : configExternal);\n\n return config;\n}\n"],"mappings":"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"}
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { a as defineConfig, i as startWatcher, n as loadConfigFile, o as defineTransformer, r as generateSpec, s as normalizeOptions, t as findConfigFile } from "./config-DrnCFlX1.mjs";
1
+ import { a as defineConfig, i as startWatcher, n as loadConfigFile, o as defineTransformer, r as generateSpec, s as normalizeOptions, t as findConfigFile } from "./config-Cyybmy9c.mjs";
2
2
  import { getWarningCount, isString, logError, resetWarnings, setVerbose } from "@orval/core";
3
3
  export * from "@orval/core";
4
4
  //#region src/generate.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "orval",
3
3
  "description": "A swagger client generator for typescript",
4
- "version": "8.12.2",
4
+ "version": "8.13.0",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "files": [
@@ -72,19 +72,19 @@
72
72
  },
73
73
  "dependencies": {
74
74
  "@commander-js/extra-typings": "^14.0.0",
75
- "@orval/angular": "8.12.2",
76
- "@orval/axios": "8.12.2",
77
- "@orval/core": "8.12.2",
78
- "@orval/fetch": "8.12.2",
79
- "@orval/hono": "8.12.2",
80
- "@orval/mcp": "8.12.2",
81
- "@orval/mock": "8.12.2",
82
- "@orval/query": "8.12.2",
83
- "@orval/solid-start": "8.12.2",
84
- "@orval/swr": "8.12.2",
85
- "@orval/zod": "8.12.2",
75
+ "@orval/angular": "8.13.0",
76
+ "@orval/axios": "8.13.0",
77
+ "@orval/core": "8.13.0",
78
+ "@orval/fetch": "8.13.0",
79
+ "@orval/hono": "8.13.0",
80
+ "@orval/mcp": "8.13.0",
81
+ "@orval/mock": "8.13.0",
82
+ "@orval/query": "8.13.0",
83
+ "@orval/solid-start": "8.13.0",
84
+ "@orval/swr": "8.13.0",
85
+ "@orval/zod": "8.13.0",
86
86
  "@scalar/json-magic": "^0.12.8",
87
- "@scalar/openapi-parser": "^0.25.12",
87
+ "@scalar/openapi-parser": "^0.28.5",
88
88
  "@scalar/openapi-types": "0.8.0",
89
89
  "chokidar": "^5.0.0",
90
90
  "commander": "^14.0.2",