@kubb/ast 5.0.0-alpha.9 → 5.0.0-beta.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,44 +1,168 @@
1
1
  import "./chunk--u3MIqq1.js";
2
- import { parseArgs, styleText } from "node:util";
2
+ import { createHash } from "node:crypto";
3
+ import path from "node:path";
3
4
  //#region src/constants.ts
4
5
  const visitorDepths = {
5
6
  shallow: "shallow",
6
7
  deep: "deep"
7
8
  };
8
9
  const nodeKinds = {
9
- root: "Root",
10
+ input: "Input",
11
+ output: "Output",
10
12
  operation: "Operation",
11
13
  schema: "Schema",
12
14
  property: "Property",
13
15
  parameter: "Parameter",
14
- response: "Response"
16
+ response: "Response",
17
+ functionParameter: "FunctionParameter",
18
+ parameterGroup: "ParameterGroup",
19
+ functionParameters: "FunctionParameters",
20
+ type: "Type",
21
+ file: "File",
22
+ import: "Import",
23
+ export: "Export",
24
+ source: "Source",
25
+ text: "Text",
26
+ break: "Break"
15
27
  };
28
+ /**
29
+ * Schema type discriminators used by all AST schema nodes.
30
+ *
31
+ * These values serve as stable discriminators across the AST (e.g., `schema.type === schemaTypes.object`).
32
+ * Grouped by category: primitives (`string`, `number`, `boolean`), structural types (`object`, `array`, `union`),
33
+ * and format-specific types (`date`, `uuid`, `email`). Use `isScalarPrimitive()` to check for scalar types.
34
+ */
16
35
  const schemaTypes = {
36
+ /**
37
+ * Text value.
38
+ */
17
39
  string: "string",
40
+ /**
41
+ * Floating-point number (`float`, `double`).
42
+ */
18
43
  number: "number",
44
+ /**
45
+ * Whole number (`int32`). Use `bigint` for `int64`.
46
+ */
19
47
  integer: "integer",
48
+ /**
49
+ * 64-bit integer (`int64`). Only used when `integerType` is set to `'bigint'`.
50
+ */
20
51
  bigint: "bigint",
52
+ /**
53
+ * Boolean value
54
+ */
21
55
  boolean: "boolean",
56
+ /**
57
+ * Explicit null value.
58
+ */
22
59
  null: "null",
60
+ /**
61
+ * Any value (no type restriction).
62
+ */
23
63
  any: "any",
64
+ /**
65
+ * Unknown value (must be narrowed before usage).
66
+ */
24
67
  unknown: "unknown",
68
+ /**
69
+ * No return value (`void`).
70
+ */
25
71
  void: "void",
72
+ /**
73
+ * Object with named properties.
74
+ */
26
75
  object: "object",
76
+ /**
77
+ * Sequential list of items.
78
+ */
27
79
  array: "array",
80
+ /**
81
+ * Fixed-length list with position-specific items.
82
+ */
28
83
  tuple: "tuple",
84
+ /**
85
+ * "One of" multiple schema members.
86
+ */
29
87
  union: "union",
88
+ /**
89
+ * "All of" multiple schema members.
90
+ */
30
91
  intersection: "intersection",
92
+ /**
93
+ * Enum schema.
94
+ */
31
95
  enum: "enum",
96
+ /**
97
+ * Reference to another schema.
98
+ */
32
99
  ref: "ref",
100
+ /**
101
+ * Calendar date (for example `2026-03-24`).
102
+ */
33
103
  date: "date",
104
+ /**
105
+ * Date-time value (for example `2026-03-24T09:00:00Z`).
106
+ */
34
107
  datetime: "datetime",
108
+ /**
109
+ * Time-only value (for example `09:00:00`).
110
+ */
35
111
  time: "time",
112
+ /**
113
+ * UUID value.
114
+ */
36
115
  uuid: "uuid",
116
+ /**
117
+ * Email address value.
118
+ */
37
119
  email: "email",
120
+ /**
121
+ * URL value.
122
+ */
38
123
  url: "url",
124
+ /**
125
+ * IPv4 address value.
126
+ */
127
+ ipv4: "ipv4",
128
+ /**
129
+ * IPv6 address value.
130
+ */
131
+ ipv6: "ipv6",
132
+ /**
133
+ * Binary/blob value.
134
+ */
39
135
  blob: "blob",
136
+ /**
137
+ * Impossible value (`never`).
138
+ */
40
139
  never: "never"
41
140
  };
141
+ /**
142
+ * Scalar primitive schema types used for union simplification and type narrowing.
143
+ *
144
+ * Use `isScalarPrimitive()` to safely check whether a type is a scalar primitive.
145
+ */
146
+ const SCALAR_PRIMITIVE_TYPES = new Set([
147
+ "string",
148
+ "number",
149
+ "integer",
150
+ "bigint",
151
+ "boolean"
152
+ ]);
153
+ /**
154
+ * Type guard that returns `true` when `type` is a scalar primitive schema type.
155
+ *
156
+ * Use this to check if a schema type can be directly assigned without wrapping (e.g., `string | number | boolean`).
157
+ */
158
+ function isScalarPrimitive(type) {
159
+ return SCALAR_PRIMITIVE_TYPES.has(type);
160
+ }
161
+ /**
162
+ * HTTP method identifiers used by operation nodes.
163
+ *
164
+ * Includes all standard HTTP methods (GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS, TRACE).
165
+ */
42
166
  const httpMethods = {
43
167
  get: "GET",
44
168
  post: "POST",
@@ -49,6 +173,12 @@ const httpMethods = {
49
173
  options: "OPTIONS",
50
174
  trace: "TRACE"
51
175
  };
176
+ /**
177
+ * Common MIME types used in request/response content negotiation.
178
+ *
179
+ * Covers JSON, XML, form data, PDFs, images, audio, and video formats.
180
+ * Use these as keys when serializing request/response bodies.
181
+ */
52
182
  const mediaTypes = {
53
183
  applicationJson: "application/json",
54
184
  applicationXml: "application/xml",
@@ -71,196 +201,7 @@ const mediaTypes = {
71
201
  videoMp4: "video/mp4"
72
202
  };
73
203
  //#endregion
74
- //#region src/factory.ts
75
- /**
76
- * Creates a `RootNode`.
77
- */
78
- function createRoot(overrides = {}) {
79
- return {
80
- schemas: [],
81
- operations: [],
82
- ...overrides,
83
- kind: "Root"
84
- };
85
- }
86
- /**
87
- * Creates an `OperationNode`.
88
- */
89
- function createOperation(props) {
90
- return {
91
- tags: [],
92
- parameters: [],
93
- responses: [],
94
- ...props,
95
- kind: "Operation"
96
- };
97
- }
98
- function createSchema(props) {
99
- if (props["type"] === "object") return {
100
- properties: [],
101
- ...props,
102
- kind: "Schema"
103
- };
104
- return {
105
- ...props,
106
- kind: "Schema"
107
- };
108
- }
109
- /**
110
- * Creates a `PropertyNode`. `required` defaults to `false`.
111
- */
112
- function createProperty(props) {
113
- return {
114
- required: false,
115
- ...props,
116
- kind: "Property"
117
- };
118
- }
119
- /**
120
- * Creates a `ParameterNode`. `required` defaults to `false`.
121
- */
122
- function createParameter(props) {
123
- return {
124
- required: false,
125
- ...props,
126
- kind: "Parameter"
127
- };
128
- }
129
- /**
130
- * Creates a `ResponseNode`.
131
- */
132
- function createResponse(props) {
133
- return {
134
- ...props,
135
- kind: "Response"
136
- };
137
- }
138
- //#endregion
139
- //#region src/guards.ts
140
- /**
141
- * Narrows a `SchemaNode` to the specific variant matching `type`.
142
- */
143
- function narrowSchema(node, type) {
144
- return node?.type === type ? node : void 0;
145
- }
146
- function isKind(kind) {
147
- return (node) => node.kind === kind;
148
- }
149
- /**
150
- * Type guard for `RootNode`.
151
- */
152
- const isRootNode = isKind("Root");
153
- /**
154
- * Type guard for `OperationNode`.
155
- */
156
- const isOperationNode = isKind("Operation");
157
- /**
158
- * Type guard for `SchemaNode`.
159
- */
160
- const isSchemaNode = isKind("Schema");
161
- /**
162
- * Type guard for `PropertyNode`.
163
- */
164
- const isPropertyNode = isKind("Property");
165
- /**
166
- * Type guard for `ParameterNode`.
167
- */
168
- const isParameterNode = isKind("Parameter");
169
- /**
170
- * Type guard for `ResponseNode`.
171
- */
172
- const isResponseNode = isKind("Response");
173
- //#endregion
174
- //#region src/printer.ts
175
- /**
176
- * Creates a named printer factory. Mirrors the `createPlugin` / `createAdapter` pattern
177
- * from `@kubb/core` — wraps a builder to make options optional and separates raw options
178
- * from resolved options.
179
- *
180
- * The builder receives resolved options and returns:
181
- * - `name` — a unique identifier for the printer
182
- * - `options` — options stored on the returned printer instance
183
- * - `nodes` — a map of `SchemaType` → handler functions that convert a `SchemaNode` to `TOutput`
184
- * - `print` _(optional)_ — a root-level override that becomes the public `printer.print`.
185
- * Inside it, `this.print(node)` still dispatches to the `nodes` map — safe recursion, no infinite loop.
186
- *
187
- * When no `print` override is provided, `printer.print` is the node-level dispatcher directly.
188
- *
189
- * @example Basic usage — Zod schema printer
190
- * ```ts
191
- * type ZodPrinter = PrinterFactoryOptions<'zod', { strict?: boolean }, string>
192
- *
193
- * export const zodPrinter = definePrinter<ZodPrinter>((options) => ({
194
- * name: 'zod',
195
- * options: { strict: options.strict ?? true },
196
- * nodes: {
197
- * string: () => 'z.string()',
198
- * object(node) {
199
- * const props = node.properties.map(p => `${p.name}: ${this.print(p.schema)}`).join(', ')
200
- * return `z.object({ ${props} })`
201
- * },
202
- * },
203
- * }))
204
- * ```
205
- *
206
- * @example With a root-level `print` override to wrap output in a full declaration
207
- * ```ts
208
- * type TsPrinter = PrinterFactoryOptions<'ts', { typeName?: string }, ts.TypeNode, ts.Node>
209
- *
210
- * export const printerTs = definePrinter<TsPrinter>((options) => ({
211
- * name: 'ts',
212
- * options,
213
- * nodes: { string: () => factory.keywordTypeNodes.string },
214
- * print(node) {
215
- * const type = this.print(node) // calls the node-level dispatcher
216
- * if (!type || !this.options.typeName) return type
217
- * return factory.createTypeAliasDeclaration(this.options.typeName, type)
218
- * },
219
- * }))
220
- * ```
221
- */
222
- function definePrinter(build) {
223
- return (options) => {
224
- const { name, options: resolvedOptions, nodes, print: printOverride } = build(options ?? {});
225
- const context = {
226
- options: resolvedOptions,
227
- print: (node) => {
228
- const handler = nodes[node.type];
229
- if (!handler) return void 0;
230
- return handler.call(context, node);
231
- }
232
- };
233
- return {
234
- name,
235
- options: resolvedOptions,
236
- print: printOverride ? printOverride.bind(context) : context.print
237
- };
238
- };
239
- }
240
- //#endregion
241
- //#region src/refs.ts
242
- /**
243
- * Indexes named schemas from `root.schemas` by name. Unnamed schemas are skipped.
244
- */
245
- function buildRefMap(root) {
246
- const map = /* @__PURE__ */ new Map();
247
- for (const schema of root.schemas) if (schema.name) map.set(schema.name, schema);
248
- return map;
249
- }
250
- /**
251
- * Looks up a schema by name. Prefer over `RefMap.get()` to keep the resolution strategy swappable.
252
- */
253
- function resolveRef(refMap, ref) {
254
- return refMap.get(ref);
255
- }
256
- /**
257
- * Converts a `RefMap` to a plain object.
258
- */
259
- function refMapToObject(refMap) {
260
- return Object.fromEntries(refMap);
261
- }
262
- //#endregion
263
- //#region ../../internals/utils/dist/index.js
204
+ //#region ../../internals/utils/src/casing.ts
264
205
  /**
265
206
  * Shared implementation for camelCase and PascalCase conversion.
266
207
  * Splits on common word boundaries (spaces, hyphens, underscores, dots, slashes, colons)
@@ -279,10 +220,19 @@ function toCamelOrPascal(text, pascal) {
279
220
  * Splits `text` on `.` and applies `transformPart` to each segment.
280
221
  * The last segment receives `isLast = true`, all earlier segments receive `false`.
281
222
  * Segments are joined with `/` to form a file path.
223
+ *
224
+ * Only splits on dots followed by a letter so that version numbers
225
+ * embedded in operationIds (e.g. `v2025.0`) are kept intact.
226
+ *
227
+ * Empty segments are filtered before joining. They arise when the text starts with
228
+ * a dot followed immediately by a letter (e.g. `..Schema` splits into `['..', 'Schema']`
229
+ * and `'..'` transforms to an empty string). Without this filter the join would produce
230
+ * a leading `/`, which `path.resolve` would interpret as an absolute path, allowing
231
+ * generated files to escape the configured output directory.
282
232
  */
283
233
  function applyToFileParts(text, transformPart) {
284
- const parts = text.split(".");
285
- return parts.map((part, i) => transformPart(part, i === parts.length - 1)).join("/");
234
+ const parts = text.split(/\.(?=[a-zA-Z])/);
235
+ return parts.map((part, i) => transformPart(part, i === parts.length - 1)).filter(Boolean).join("/");
286
236
  }
287
237
  /**
288
238
  * Converts `text` to camelCase.
@@ -299,303 +249,274 @@ function camelCase(text, { isFile, prefix = "", suffix = "" } = {}) {
299
249
  } : {}));
300
250
  return toCamelOrPascal(`${prefix} ${text} ${suffix}`, false);
301
251
  }
302
- /** Returns a `CLIAdapter` with type inference. Pass a different adapter to `createCLI` to swap the CLI engine. */
303
- function defineCLIAdapter(adapter) {
304
- return adapter;
305
- }
306
252
  /**
307
- * Serializes `CommandDefinition[]` to a plain, JSON-serializable structure.
308
- * Use to expose CLI capabilities to AI agents or MCP tools.
253
+ * Converts `text` to PascalCase.
254
+ * When `isFile` is `true`, the last dot-separated segment is PascalCased and earlier segments are camelCased.
255
+ *
256
+ * @example
257
+ * pascalCase('hello-world') // 'HelloWorld'
258
+ * pascalCase('pet.petId', { isFile: true }) // 'pet/PetId'
309
259
  */
310
- function getCommandSchema(defs) {
311
- return defs.map(serializeCommand);
312
- }
313
- function serializeCommand(def) {
314
- return {
315
- name: def.name,
316
- description: def.description,
317
- arguments: def.arguments,
318
- options: serializeOptions(def.options ?? {}),
319
- subCommands: def.subCommands ? def.subCommands.map(serializeCommand) : []
320
- };
321
- }
322
- function serializeOptions(options) {
323
- return Object.entries(options).map(([name, opt]) => {
324
- return {
325
- name,
326
- flags: `${opt.short ? `-${opt.short}, ` : ""}--${name}${opt.type === "string" ? ` <${opt.hint ?? name}>` : ""}`,
327
- type: opt.type,
328
- description: opt.description,
329
- ...opt.default !== void 0 ? { default: opt.default } : {},
330
- ...opt.hint ? { hint: opt.hint } : {},
331
- ...opt.enum ? { enum: opt.enum } : {},
332
- ...opt.required ? { required: opt.required } : {}
333
- };
334
- });
335
- }
336
- /** Prints formatted help output for a command using its `CommandDefinition`. */
337
- function renderHelp(def, parentName) {
338
- const schema = getCommandSchema([def])[0];
339
- const programName = parentName ? `${parentName} ${schema.name}` : schema.name;
340
- const argsPart = schema.arguments?.length ? ` ${schema.arguments.join(" ")}` : "";
341
- const subCmdPart = schema.subCommands.length ? " <command>" : "";
342
- console.log(`\n${styleText("bold", "Usage:")} ${programName}${argsPart}${subCmdPart} [options]\n`);
343
- if (schema.description) console.log(` ${schema.description}\n`);
344
- if (schema.subCommands.length) {
345
- console.log(styleText("bold", "Commands:"));
346
- for (const sub of schema.subCommands) console.log(` ${styleText("cyan", sub.name.padEnd(16))}${sub.description}`);
347
- console.log();
348
- }
349
- const options = [...schema.options, {
350
- name: "help",
351
- flags: "-h, --help",
352
- type: "boolean",
353
- description: "Show help"
354
- }];
355
- console.log(styleText("bold", "Options:"));
356
- for (const opt of options) {
357
- const flags = styleText("cyan", opt.flags.padEnd(30));
358
- const defaultPart = opt.default !== void 0 ? styleText("dim", ` (default: ${opt.default})`) : "";
359
- console.log(` ${flags}${opt.description}${defaultPart}`);
360
- }
361
- console.log();
362
- }
363
- function buildParseOptions(def) {
364
- const result = { help: {
365
- type: "boolean",
366
- short: "h"
367
- } };
368
- for (const [name, opt] of Object.entries(def.options ?? {})) result[name] = {
369
- type: opt.type,
370
- ...opt.short ? { short: opt.short } : {},
371
- ...opt.default !== void 0 ? { default: opt.default } : {}
372
- };
373
- return result;
374
- }
375
- async function runCommand(def, argv, parentName) {
376
- const parseOptions = buildParseOptions(def);
377
- let parsed;
378
- try {
379
- const result = parseArgs({
380
- args: argv,
381
- options: parseOptions,
382
- allowPositionals: true,
383
- strict: false
384
- });
385
- parsed = {
386
- values: result.values,
387
- positionals: result.positionals
388
- };
389
- } catch {
390
- renderHelp(def, parentName);
391
- process.exit(1);
392
- }
393
- if (parsed.values["help"]) {
394
- renderHelp(def, parentName);
395
- process.exit(0);
396
- }
397
- for (const [name, opt] of Object.entries(def.options ?? {})) if (opt.required && parsed.values[name] === void 0) {
398
- console.error(styleText("red", `Error: --${name} is required`));
399
- renderHelp(def, parentName);
400
- process.exit(1);
401
- }
402
- if (!def.run) {
403
- renderHelp(def, parentName);
404
- process.exit(0);
405
- }
406
- try {
407
- await def.run(parsed);
408
- } catch (err) {
409
- console.error(styleText("red", `Error: ${err instanceof Error ? err.message : String(err)}`));
410
- renderHelp(def, parentName);
411
- process.exit(1);
412
- }
413
- }
414
- function printRootHelp(programName, version, defs) {
415
- console.log(`\n${styleText("bold", "Usage:")} ${programName} <command> [options]\n`);
416
- console.log(` Kubb generation — v${version}\n`);
417
- console.log(styleText("bold", "Commands:"));
418
- for (const def of defs) console.log(` ${styleText("cyan", def.name.padEnd(16))}${def.description}`);
419
- console.log();
420
- console.log(styleText("bold", "Options:"));
421
- console.log(` ${styleText("cyan", "-v, --version".padEnd(30))}Show version number`);
422
- console.log(` ${styleText("cyan", "-h, --help".padEnd(30))}Show help`);
423
- console.log();
424
- console.log(`Run ${styleText("cyan", `${programName} <command> --help`)} for command-specific help.\n`);
425
- }
426
- defineCLIAdapter({
427
- renderHelp(def, parentName) {
428
- renderHelp(def, parentName);
429
- },
430
- async run(defs, argv, opts) {
431
- const { programName, defaultCommandName, version } = opts;
432
- const args = argv.length >= 2 && argv[0]?.includes("node") ? argv.slice(2) : argv;
433
- if (args[0] === "--version" || args[0] === "-v") {
434
- console.log(version);
435
- process.exit(0);
436
- }
437
- if (args[0] === "--help" || args[0] === "-h") {
438
- printRootHelp(programName, version, defs);
439
- process.exit(0);
440
- }
441
- if (args.length === 0) {
442
- const defaultDef = defs.find((d) => d.name === defaultCommandName);
443
- if (defaultDef?.run) await runCommand(defaultDef, [], programName);
444
- else printRootHelp(programName, version, defs);
445
- return;
446
- }
447
- const [first, ...rest] = args;
448
- const isKnownSubcommand = defs.some((d) => d.name === first);
449
- let def;
450
- let commandArgv;
451
- let parentName;
452
- if (isKnownSubcommand) {
453
- def = defs.find((d) => d.name === first);
454
- commandArgv = rest;
455
- parentName = programName;
456
- } else {
457
- def = defs.find((d) => d.name === defaultCommandName);
458
- commandArgv = args;
459
- parentName = programName;
460
- }
461
- if (!def) {
462
- console.error(`Unknown command: ${first}`);
463
- printRootHelp(programName, version, defs);
464
- process.exit(1);
465
- }
466
- if (def.subCommands?.length) {
467
- const [subName, ...subRest] = commandArgv;
468
- const subDef = def.subCommands.find((s) => s.name === subName);
469
- if (subName === "--help" || subName === "-h") {
470
- renderHelp(def, parentName);
471
- process.exit(0);
472
- }
473
- if (!subDef) {
474
- renderHelp(def, parentName);
475
- process.exit(subName ? 1 : 0);
476
- }
477
- await runCommand(subDef, subRest, `${parentName} ${def.name}`);
478
- return;
479
- }
480
- await runCommand(def, commandArgv, parentName);
481
- }
482
- });
483
- /**
484
- * Parses a CSS hex color string (`#RGB`) into its RGB channels.
485
- * Falls back to `255` for any channel that cannot be parsed.
486
- */
487
- function parseHex(color) {
488
- const int = Number.parseInt(color.replace("#", ""), 16);
489
- return Number.isNaN(int) ? {
490
- r: 255,
491
- g: 255,
492
- b: 255
493
- } : {
494
- r: int >> 16 & 255,
495
- g: int >> 8 & 255,
496
- b: int & 255
497
- };
260
+ function pascalCase(text, { isFile, prefix = "", suffix = "" } = {}) {
261
+ if (isFile) return applyToFileParts(text, (part, isLast) => isLast ? pascalCase(part, {
262
+ prefix,
263
+ suffix
264
+ }) : camelCase(part));
265
+ return toCamelOrPascal(`${prefix} ${text} ${suffix}`, true);
498
266
  }
267
+ //#endregion
268
+ //#region ../../internals/utils/src/reserved.ts
499
269
  /**
500
- * Returns a function that wraps a string in a 24-bit ANSI true-color escape sequence
501
- * for the given hex color.
270
+ * JavaScript and Java reserved words.
271
+ * @link https://github.com/jonschlinkert/reserved/blob/master/index.js
502
272
  */
503
- function hex(color) {
504
- const { r, g, b } = parseHex(color);
505
- return (text) => `\x1b[38;2;${r};${g};${b}m${text}\x1b[0m`;
506
- }
507
- hex("#F55A17"), hex("#F5A217"), hex("#F58517"), hex("#B45309"), hex("#FFFFFF"), hex("#adadc6"), hex("#FDA4AF");
273
+ const reservedWords = new Set([
274
+ "abstract",
275
+ "arguments",
276
+ "boolean",
277
+ "break",
278
+ "byte",
279
+ "case",
280
+ "catch",
281
+ "char",
282
+ "class",
283
+ "const",
284
+ "continue",
285
+ "debugger",
286
+ "default",
287
+ "delete",
288
+ "do",
289
+ "double",
290
+ "else",
291
+ "enum",
292
+ "eval",
293
+ "export",
294
+ "extends",
295
+ "false",
296
+ "final",
297
+ "finally",
298
+ "float",
299
+ "for",
300
+ "function",
301
+ "goto",
302
+ "if",
303
+ "implements",
304
+ "import",
305
+ "in",
306
+ "instanceof",
307
+ "int",
308
+ "interface",
309
+ "let",
310
+ "long",
311
+ "native",
312
+ "new",
313
+ "null",
314
+ "package",
315
+ "private",
316
+ "protected",
317
+ "public",
318
+ "return",
319
+ "short",
320
+ "static",
321
+ "super",
322
+ "switch",
323
+ "synchronized",
324
+ "this",
325
+ "throw",
326
+ "throws",
327
+ "transient",
328
+ "true",
329
+ "try",
330
+ "typeof",
331
+ "var",
332
+ "void",
333
+ "volatile",
334
+ "while",
335
+ "with",
336
+ "yield",
337
+ "Array",
338
+ "Date",
339
+ "hasOwnProperty",
340
+ "Infinity",
341
+ "isFinite",
342
+ "isNaN",
343
+ "isPrototypeOf",
344
+ "length",
345
+ "Math",
346
+ "name",
347
+ "NaN",
348
+ "Number",
349
+ "Object",
350
+ "prototype",
351
+ "String",
352
+ "toString",
353
+ "undefined",
354
+ "valueOf"
355
+ ]);
508
356
  /**
509
357
  * Returns `true` when `name` is a syntactically valid JavaScript variable name.
358
+ *
359
+ * @example
360
+ * ```ts
361
+ * isValidVarName('status') // true
362
+ * isValidVarName('class') // false (reserved word)
363
+ * isValidVarName('42foo') // false (starts with digit)
364
+ * ```
510
365
  */
511
366
  function isValidVarName(name) {
512
- try {
513
- new Function(`var ${name}`);
514
- } catch {
515
- return false;
516
- }
517
- return true;
367
+ if (!name || reservedWords.has(name)) return false;
368
+ return /^[a-zA-Z_$][a-zA-Z0-9_$]*$/.test(name);
518
369
  }
519
370
  //#endregion
520
- //#region src/utils.ts
521
- const plainStringTypes = new Set([
522
- "string",
523
- "uuid",
524
- "email",
525
- "url",
526
- "datetime"
527
- ]);
371
+ //#region ../../internals/utils/src/string.ts
528
372
  /**
529
- * Returns `true` when a schema node will be represented as a plain string in generated code.
373
+ * Strips the file extension from a path or file name.
374
+ * Only removes the last `.ext` segment when the dot is not part of a directory name.
530
375
  *
531
- * - `string`, `uuid`, `email`, `url`, `datetime` are always plain strings.
532
- * - `date` and `time` are plain strings when their `representation` is `'string'` rather than `'date'`.
376
+ * @example
377
+ * trimExtName('petStore.ts') // 'petStore'
378
+ * trimExtName('/src/models/pet.ts') // '/src/models/pet'
379
+ * trimExtName('/project.v2/gen/pet.ts') // '/project.v2/gen/pet'
380
+ * trimExtName('noExtension') // 'noExtension'
533
381
  */
534
- function isPlainStringType(node) {
535
- if (plainStringTypes.has(node.type)) return true;
536
- const temporal = narrowSchema(node, "date") ?? narrowSchema(node, "time");
537
- if (temporal) return temporal.representation !== "date";
538
- return false;
382
+ function trimExtName(text) {
383
+ const dotIndex = text.lastIndexOf(".");
384
+ if (dotIndex > 0 && !text.includes("/", dotIndex)) return text.slice(0, dotIndex);
385
+ return text;
539
386
  }
387
+ //#endregion
388
+ //#region src/guards.ts
540
389
  /**
541
- * Transforms the `name` field of each parameter node according to the given casing strategy.
542
- *
543
- * The original `params` array is never mutated — a new array of cloned nodes is returned.
544
- * When no `casing` is provided the original array is returned as-is.
390
+ * Narrows a `SchemaNode` to the variant that matches `type`.
545
391
  *
546
- * Use this before passing parameters to schema builders so that property keys
547
- * in the generated output match the desired casing while the original
548
- * `OperationNode.parameters` array remains untouched for other consumers.
392
+ * @example
393
+ * ```ts
394
+ * const schema = createSchema({ type: 'string' })
395
+ * const stringNode = narrowSchema(schema, 'string') // StringSchemaNode | undefined
396
+ * ```
549
397
  */
550
- function applyParamsCasing(params, casing) {
551
- if (!casing) return params;
552
- return params.map((param) => {
553
- const transformed = casing === "camelcase" || !isValidVarName(param.name) ? camelCase(param.name) : param.name;
554
- return {
555
- ...param,
556
- name: transformed
557
- };
558
- });
398
+ function narrowSchema(node, type) {
399
+ return node?.type === type ? node : void 0;
400
+ }
401
+ function isKind(kind) {
402
+ return (node) => node.kind === kind;
559
403
  }
560
- //#endregion
561
- //#region src/visitor.ts
562
404
  /**
563
- * Creates a concurrency-limiting wrapper. At most `concurrency` promises may be
564
- * in-flight simultaneously; additional calls are queued and dispatched as slots free.
405
+ * Returns `true` when the input is an `InputNode`.
406
+ *
407
+ * @example
408
+ * ```ts
409
+ * if (isInputNode(node)) {
410
+ * console.log(node.schemas.length)
411
+ * }
412
+ * ```
565
413
  */
566
- function createLimit(concurrency) {
567
- let active = 0;
568
- const queue = [];
569
- function next() {
570
- if (active < concurrency && queue.length > 0) {
571
- active++;
572
- queue.shift()();
573
- }
574
- }
575
- return function limit(fn) {
576
- return new Promise((resolve, reject) => {
577
- queue.push(() => {
578
- Promise.resolve(fn()).then(resolve, reject).finally(() => {
579
- active--;
580
- next();
581
- });
582
- });
583
- next();
584
- });
585
- };
586
- }
414
+ const isInputNode = isKind("Input");
587
415
  /**
588
- * Returns the immediate traversable children of `node`.
416
+ * Returns `true` when the input is an `OutputNode`.
589
417
  *
590
- * For `Schema` nodes, children (properties, items, members) are only included
591
- * when `recurse` is `true`; shallow traversal omits them entirely.
418
+ * @example
419
+ * ```ts
420
+ * if (isOutputNode(node)) {
421
+ * console.log(node.files.length)
422
+ * }
423
+ * ```
592
424
  */
593
- function getChildren(node, recurse) {
425
+ const isOutputNode = isKind("Output");
426
+ /**
427
+ * Returns `true` when the input is an `OperationNode`.
428
+ *
429
+ * @example
430
+ * ```ts
431
+ * if (isOperationNode(node)) {
432
+ * console.log(node.operationId)
433
+ * }
434
+ * ```
435
+ */
436
+ const isOperationNode = isKind("Operation");
437
+ /**
438
+ * Returns `true` when the input is a `SchemaNode`.
439
+ *
440
+ * @example
441
+ * ```ts
442
+ * if (isSchemaNode(node)) {
443
+ * console.log(node.type)
444
+ * }
445
+ * ```
446
+ */
447
+ const isSchemaNode = isKind("Schema");
448
+ //#endregion
449
+ //#region src/refs.ts
450
+ /**
451
+ * Returns the last path segment of a reference string.
452
+ *
453
+ * Example: `#/components/schemas/Pet` becomes `Pet`.
454
+ *
455
+ * @example
456
+ * ```ts
457
+ * extractRefName('#/components/schemas/Pet') // 'Pet'
458
+ * ```
459
+ */
460
+ function extractRefName(ref) {
461
+ return ref.split("/").at(-1) ?? ref;
462
+ }
463
+ //#endregion
464
+ //#region src/visitor.ts
465
+ /**
466
+ * Creates a small async concurrency limiter.
467
+ *
468
+ * At most `concurrency` tasks are in flight at once. Extra tasks are queued.
469
+ *
470
+ * @example
471
+ * ```ts
472
+ * const limit = createLimit(2)
473
+ * for (const task of [taskA, taskB, taskC]) {
474
+ * await limit(() => task())
475
+ * }
476
+ * // only 2 tasks run at the same time
477
+ * ```
478
+ */
479
+ function createLimit(concurrency) {
480
+ let active = 0;
481
+ const queue = [];
482
+ function next() {
483
+ if (active < concurrency && queue.length > 0) {
484
+ active++;
485
+ queue.shift()();
486
+ }
487
+ }
488
+ return function limit(fn) {
489
+ return new Promise((resolve, reject) => {
490
+ queue.push(() => {
491
+ Promise.resolve(fn()).then(resolve, reject).finally(() => {
492
+ active--;
493
+ next();
494
+ });
495
+ });
496
+ next();
497
+ });
498
+ };
499
+ }
500
+ /**
501
+ * Returns the immediate traversable children of `node`.
502
+ *
503
+ * For `Schema` nodes, children (`properties`, `items`, `members`, and non-boolean
504
+ * `additionalProperties`) are only included
505
+ * when `recurse` is `true`; shallow mode skips them.
506
+ *
507
+ * @example
508
+ * ```ts
509
+ * const children = getChildren(operationNode, true)
510
+ * // returns parameters, requestBody schema (if present), and responses
511
+ * ```
512
+ */
513
+ function getChildren(node, recurse) {
594
514
  switch (node.kind) {
595
- case "Root": return [...node.schemas, ...node.operations];
515
+ case "Input": return [...node.schemas, ...node.operations];
516
+ case "Output": return [];
596
517
  case "Operation": return [
597
518
  ...node.parameters,
598
- ...node.requestBody ? [node.requestBody] : [],
519
+ ...node.requestBody?.content?.flatMap((c) => c.schema ? [c.schema] : []) ?? [],
599
520
  ...node.responses
600
521
  ];
601
522
  case "Schema": {
@@ -604,143 +525,1673 @@ function getChildren(node, recurse) {
604
525
  if ("properties" in node && node.properties.length > 0) children.push(...node.properties);
605
526
  if ("items" in node && node.items) children.push(...node.items);
606
527
  if ("members" in node && node.members) children.push(...node.members);
528
+ if ("additionalProperties" in node && node.additionalProperties && node.additionalProperties !== true) children.push(node.additionalProperties);
607
529
  return children;
608
530
  }
609
531
  case "Property": return [node.schema];
610
532
  case "Parameter": return [node.schema];
611
533
  case "Response": return node.schema ? [node.schema] : [];
534
+ case "FunctionParameter":
535
+ case "ParameterGroup":
536
+ case "FunctionParameters":
537
+ case "Type": return [];
538
+ default: return [];
612
539
  }
613
540
  }
614
541
  /**
615
542
  * Depth-first traversal for side effects. Visitor return values are ignored.
616
- * Sibling nodes at each level are visited concurrently up to `options.concurrency` (default: 30).
543
+ * Sibling nodes at each level are visited concurrently up to `options.concurrency`
544
+ * (default: `WALK_CONCURRENCY`).
545
+ *
546
+ * @example
547
+ * ```ts
548
+ * await walk(root, {
549
+ * operation(node) {
550
+ * console.log(node.operationId)
551
+ * },
552
+ * })
553
+ * ```
554
+ *
555
+ * @example
556
+ * ```ts
557
+ * // Visit only the current node
558
+ * await walk(root, { depth: 'shallow', root: () => {} })
559
+ * ```
617
560
  */
618
- async function walk(node, visitor, options = {}) {
619
- return _walk(node, visitor, (options.depth ?? visitorDepths.deep) === visitorDepths.deep, createLimit(options.concurrency ?? 30));
561
+ async function walk(node, options) {
562
+ return _walk(node, options, (options.depth ?? visitorDepths.deep) === visitorDepths.deep, createLimit(options.concurrency ?? 30), void 0);
620
563
  }
621
- /**
622
- * Internal recursive walk implementation — calls visitor then recurses into children.
623
- */
624
- async function _walk(node, visitor, recurse, limit) {
564
+ async function _walk(node, visitor, recurse, limit, parent) {
625
565
  switch (node.kind) {
626
- case "Root":
627
- await limit(() => visitor.root?.(node));
566
+ case "Input":
567
+ await limit(() => visitor.input?.(node, { parent }));
568
+ break;
569
+ case "Output":
570
+ await limit(() => visitor.output?.(node, { parent }));
628
571
  break;
629
572
  case "Operation":
630
- await limit(() => visitor.operation?.(node));
573
+ await limit(() => visitor.operation?.(node, { parent }));
631
574
  break;
632
575
  case "Schema":
633
- await limit(() => visitor.schema?.(node));
576
+ await limit(() => visitor.schema?.(node, { parent }));
634
577
  break;
635
578
  case "Property":
636
- await limit(() => visitor.property?.(node));
579
+ await limit(() => visitor.property?.(node, { parent }));
637
580
  break;
638
581
  case "Parameter":
639
- await limit(() => visitor.parameter?.(node));
582
+ await limit(() => visitor.parameter?.(node, { parent }));
640
583
  break;
641
584
  case "Response":
642
- await limit(() => visitor.response?.(node));
585
+ await limit(() => visitor.response?.(node, { parent }));
643
586
  break;
587
+ case "FunctionParameter":
588
+ case "ParameterGroup":
589
+ case "FunctionParameters": break;
644
590
  }
645
591
  const children = getChildren(node, recurse);
646
- await Promise.all(children.map((child) => _walk(child, visitor, recurse, limit)));
592
+ for (const child of children) await _walk(child, visitor, recurse, limit, node);
647
593
  }
648
- function transform(node, visitor, options = {}) {
649
- const recurse = (options.depth ?? visitorDepths.deep) === visitorDepths.deep;
594
+ function transform(node, options) {
595
+ const { depth, parent, ...visitor } = options;
596
+ const recurse = (depth ?? visitorDepths.deep) === visitorDepths.deep;
650
597
  switch (node.kind) {
651
- case "Root": {
652
- let root = node;
653
- const replaced = visitor.root?.(root);
654
- if (replaced) root = replaced;
598
+ case "Input": {
599
+ let input = node;
600
+ const replaced = visitor.input?.(input, { parent });
601
+ if (replaced) input = replaced;
655
602
  return {
656
- ...root,
657
- schemas: root.schemas.map((s) => transform(s, visitor, options)),
658
- operations: root.operations.map((op) => transform(op, visitor, options))
603
+ ...input,
604
+ schemas: input.schemas.map((s) => transform(s, {
605
+ ...options,
606
+ parent: input
607
+ })),
608
+ operations: input.operations.map((op) => transform(op, {
609
+ ...options,
610
+ parent: input
611
+ }))
659
612
  };
660
613
  }
614
+ case "Output": {
615
+ let output = node;
616
+ const replaced = visitor.output?.(output, { parent });
617
+ if (replaced) output = replaced;
618
+ return output;
619
+ }
661
620
  case "Operation": {
662
621
  let op = node;
663
- const replaced = visitor.operation?.(op);
622
+ const replaced = visitor.operation?.(op, { parent });
664
623
  if (replaced) op = replaced;
665
624
  return {
666
625
  ...op,
667
- parameters: op.parameters.map((p) => transform(p, visitor, options)),
668
- requestBody: op.requestBody ? transform(op.requestBody, visitor, options) : void 0,
669
- responses: op.responses.map((r) => transform(r, visitor, options))
626
+ parameters: op.parameters.map((p) => transform(p, {
627
+ ...options,
628
+ parent: op
629
+ })),
630
+ requestBody: op.requestBody ? {
631
+ ...op.requestBody,
632
+ content: op.requestBody.content?.map((c) => ({
633
+ ...c,
634
+ schema: c.schema ? transform(c.schema, {
635
+ ...options,
636
+ parent: op
637
+ }) : void 0
638
+ }))
639
+ } : void 0,
640
+ responses: op.responses.map((r) => transform(r, {
641
+ ...options,
642
+ parent: op
643
+ }))
670
644
  };
671
645
  }
672
646
  case "Schema": {
673
647
  let schema = node;
674
- const replaced = visitor.schema?.(schema);
648
+ const replaced = visitor.schema?.(schema, { parent });
675
649
  if (replaced) schema = replaced;
650
+ const childOptions = {
651
+ ...options,
652
+ parent: schema
653
+ };
676
654
  return {
677
655
  ...schema,
678
- ..."properties" in schema && recurse ? { properties: schema.properties.map((p) => transform(p, visitor, options)) } : {},
679
- ..."items" in schema && recurse ? { items: schema.items?.map((i) => transform(i, visitor, options)) } : {},
680
- ..."members" in schema && recurse ? { members: schema.members?.map((m) => transform(m, visitor, options)) } : {}
656
+ ..."properties" in schema && recurse ? { properties: schema.properties.map((p) => transform(p, childOptions)) } : {},
657
+ ..."items" in schema && recurse ? { items: schema.items?.map((i) => transform(i, childOptions)) } : {},
658
+ ..."members" in schema && recurse ? { members: schema.members?.map((m) => transform(m, childOptions)) } : {},
659
+ ..."additionalProperties" in schema && recurse && schema.additionalProperties && schema.additionalProperties !== true ? { additionalProperties: transform(schema.additionalProperties, childOptions) } : {}
681
660
  };
682
661
  }
683
662
  case "Property": {
684
663
  let prop = node;
685
- const replaced = visitor.property?.(prop);
664
+ const replaced = visitor.property?.(prop, { parent });
686
665
  if (replaced) prop = replaced;
687
- return {
666
+ return createProperty({
688
667
  ...prop,
689
- schema: transform(prop.schema, visitor, options)
690
- };
668
+ schema: transform(prop.schema, {
669
+ ...options,
670
+ parent: prop
671
+ })
672
+ });
691
673
  }
692
674
  case "Parameter": {
693
675
  let param = node;
694
- const replaced = visitor.parameter?.(param);
676
+ const replaced = visitor.parameter?.(param, { parent });
695
677
  if (replaced) param = replaced;
696
- return {
678
+ return createParameter({
697
679
  ...param,
698
- schema: transform(param.schema, visitor, options)
699
- };
680
+ schema: transform(param.schema, {
681
+ ...options,
682
+ parent: param
683
+ })
684
+ });
700
685
  }
701
686
  case "Response": {
702
687
  let response = node;
703
- const replaced = visitor.response?.(response);
688
+ const replaced = visitor.response?.(response, { parent });
704
689
  if (replaced) response = replaced;
705
690
  return {
706
691
  ...response,
707
- schema: transform(response.schema, visitor, options)
692
+ schema: transform(response.schema, {
693
+ ...options,
694
+ parent: response
695
+ })
708
696
  };
709
697
  }
698
+ case "FunctionParameter":
699
+ case "ParameterGroup":
700
+ case "FunctionParameters":
701
+ case "Type": return node;
702
+ default: return node;
710
703
  }
711
704
  }
712
705
  /**
713
- * Depth-first synchronous reduction. Collects non-`undefined` visitor return values into an array.
706
+ * Runs a depth-first synchronous collection pass.
707
+ *
708
+ * Non-`undefined` values returned by visitor callbacks are appended to the result.
709
+ *
710
+ * @example
711
+ * ```ts
712
+ * const ids = collect(root, {
713
+ * operation(node) {
714
+ * return node.operationId
715
+ * },
716
+ * })
717
+ * ```
718
+ *
719
+ * @example
720
+ * ```ts
721
+ * // Collect from only the current node
722
+ * const values = collect(root, { depth: 'shallow', root: () => 'root' })
723
+ * ```
714
724
  */
715
- function collect(node, visitor, options = {}) {
716
- const recurse = (options.depth ?? visitorDepths.deep) === visitorDepths.deep;
725
+ function collect(node, options) {
726
+ const { depth, parent, ...visitor } = options;
727
+ const recurse = (depth ?? visitorDepths.deep) === visitorDepths.deep;
717
728
  const results = [];
718
729
  let v;
719
730
  switch (node.kind) {
720
- case "Root":
721
- v = visitor.root?.(node);
731
+ case "Input":
732
+ v = visitor.input?.(node, { parent });
733
+ break;
734
+ case "Output":
735
+ v = visitor.output?.(node, { parent });
722
736
  break;
723
737
  case "Operation":
724
- v = visitor.operation?.(node);
738
+ v = visitor.operation?.(node, { parent });
725
739
  break;
726
740
  case "Schema":
727
- v = visitor.schema?.(node);
741
+ v = visitor.schema?.(node, { parent });
728
742
  break;
729
743
  case "Property":
730
- v = visitor.property?.(node);
744
+ v = visitor.property?.(node, { parent });
731
745
  break;
732
746
  case "Parameter":
733
- v = visitor.parameter?.(node);
747
+ v = visitor.parameter?.(node, { parent });
734
748
  break;
735
749
  case "Response":
736
- v = visitor.response?.(node);
750
+ v = visitor.response?.(node, { parent });
737
751
  break;
752
+ case "FunctionParameter":
753
+ case "ParameterGroup":
754
+ case "FunctionParameters": break;
738
755
  }
739
756
  if (v !== void 0) results.push(v);
740
- for (const child of getChildren(node, recurse)) for (const item of collect(child, visitor, options)) results.push(item);
757
+ for (const child of getChildren(node, recurse)) for (const item of collect(child, {
758
+ ...options,
759
+ parent: node
760
+ })) results.push(item);
741
761
  return results;
742
762
  }
743
763
  //#endregion
744
- export { applyParamsCasing, buildRefMap, collect, createOperation, createParameter, createProperty, createResponse, createRoot, createSchema, definePrinter, httpMethods, isOperationNode, isParameterNode, isPlainStringType, isPropertyNode, isResponseNode, isRootNode, isSchemaNode, mediaTypes, narrowSchema, nodeKinds, refMapToObject, resolveRef, schemaTypes, transform, walk };
764
+ //#region src/utils.ts
765
+ const plainStringTypes = new Set([
766
+ "string",
767
+ "uuid",
768
+ "email",
769
+ "url",
770
+ "datetime"
771
+ ]);
772
+ /**
773
+ * Merges a ref node with its resolved schema, giving usage-site fields precedence.
774
+ *
775
+ * Usage-site fields (`description`, `readOnly`, `nullable`, `deprecated`) on the ref node
776
+ * override the same fields in the resolved `node.schema`. Non-ref nodes are returned unchanged.
777
+ *
778
+ * @example
779
+ * ```ts
780
+ * // Ref with description override
781
+ * const ref = createSchema({ type: 'ref', ref: '#/components/schemas/Pet', description: 'A cute pet' })
782
+ * const merged = syncSchemaRef(ref) // merges with resolved Pet schema
783
+ * ```
784
+ */
785
+ function syncSchemaRef(node) {
786
+ const ref = narrowSchema(node, "ref");
787
+ if (!ref) return node;
788
+ if (!ref.schema) return node;
789
+ const { kind: _kind, type: _type, name: _name, ref: _ref, schema: _schema, ...overrides } = ref;
790
+ const definedOverrides = Object.fromEntries(Object.entries(overrides).filter(([, v]) => v !== void 0));
791
+ return createSchema({
792
+ ...ref.schema,
793
+ ...definedOverrides
794
+ });
795
+ }
796
+ /**
797
+ * Type guard that returns `true` when a schema emits as a plain `string` type.
798
+ *
799
+ * Covers `string`, `uuid`, `email`, `url`, and `datetime` types. For `date` and `time`
800
+ * types, returns `true` only when `representation` is `'string'` rather than `'date'`.
801
+ */
802
+ function isStringType(node) {
803
+ if (plainStringTypes.has(node.type)) return true;
804
+ const temporal = narrowSchema(node, "date") ?? narrowSchema(node, "time");
805
+ if (temporal) return temporal.representation !== "date";
806
+ return false;
807
+ }
808
+ /**
809
+ * Applies casing rules to parameter names and returns a new parameter array.
810
+ *
811
+ * Use this before passing parameters to schema builders so output property keys match
812
+ * the desired casing while preserving `OperationNode.parameters` for other consumers.
813
+ * The input array is not mutated. When `casing` is not set, the original array is returned unchanged.
814
+ */
815
+ function caseParams(params, casing) {
816
+ if (!casing) return params;
817
+ return params.map((param) => {
818
+ const transformed = casing === "camelcase" || !isValidVarName(param.name) ? camelCase(param.name) : param.name;
819
+ return {
820
+ ...param,
821
+ name: transformed
822
+ };
823
+ });
824
+ }
825
+ /**
826
+ * Creates a single-property object schema used as a discriminator literal.
827
+ *
828
+ * @example
829
+ * ```ts
830
+ * createDiscriminantNode({ propertyName: 'type', value: 'dog' })
831
+ * // -> { type: 'object', properties: [{ name: 'type', required: true, schema: enum('dog') }] }
832
+ * ```
833
+ */
834
+ function createDiscriminantNode({ propertyName, value }) {
835
+ return createSchema({
836
+ type: "object",
837
+ primitive: "object",
838
+ properties: [createProperty({
839
+ name: propertyName,
840
+ schema: createSchema({
841
+ type: "enum",
842
+ primitive: "string",
843
+ enumValues: [value]
844
+ }),
845
+ required: true
846
+ })]
847
+ });
848
+ }
849
+ function resolveParamsType({ node, param, resolver }) {
850
+ if (!resolver) return createParamsType({
851
+ variant: "reference",
852
+ name: param.schema.primitive ?? "unknown"
853
+ });
854
+ const individualName = resolver.resolveParamName(node, param);
855
+ const groupLocation = param.in === "path" || param.in === "query" || param.in === "header" ? param.in : void 0;
856
+ const groupResolvers = {
857
+ path: resolver.resolvePathParamsName,
858
+ query: resolver.resolveQueryParamsName,
859
+ header: resolver.resolveHeaderParamsName
860
+ };
861
+ const groupName = groupLocation ? groupResolvers[groupLocation].call(resolver, node, param) : void 0;
862
+ if (groupName && groupName !== individualName) return createParamsType({
863
+ variant: "member",
864
+ base: groupName,
865
+ key: param.name
866
+ });
867
+ return createParamsType({
868
+ variant: "reference",
869
+ name: individualName
870
+ });
871
+ }
872
+ /**
873
+ * Converts an `OperationNode` into function parameters for code generation.
874
+ *
875
+ * Centralizes parameter grouping logic for all plugins. Provide a `resolver` for type name resolution
876
+ * and `extraParams` for plugin-specific trailing parameters (e.g., `options` objects).
877
+ * Supports three grouping modes: `object` (single destructured param), `inline` (separate params),
878
+ * and `inlineSpread` (rest parameter). Use `CreateOperationParamsOptions` to fine-tune output.
879
+ */
880
+ function createOperationParams(node, options) {
881
+ const { paramsType, pathParamsType, paramsCasing, resolver, pathParamsDefault, extraParams = [], paramNames, typeWrapper } = options;
882
+ const dataName = paramNames?.data ?? "data";
883
+ const paramsName = paramNames?.params ?? "params";
884
+ const headersName = paramNames?.headers ?? "headers";
885
+ const pathName = paramNames?.path ?? "pathParams";
886
+ const wrapType = (type) => createParamsType({
887
+ variant: "reference",
888
+ name: typeWrapper ? typeWrapper(type) : type
889
+ });
890
+ const wrapTypeNode = (type) => type.kind === "ParamsType" && type.variant === "reference" ? wrapType(type.name) : type;
891
+ const casedParams = caseParams(node.parameters, paramsCasing);
892
+ const pathParams = casedParams.filter((p) => p.in === "path");
893
+ const queryParams = casedParams.filter((p) => p.in === "query");
894
+ const headerParams = casedParams.filter((p) => p.in === "header");
895
+ const bodyType = node.requestBody?.content?.[0]?.schema ? wrapType(resolver?.resolveDataName(node) ?? "unknown") : void 0;
896
+ const bodyRequired = node.requestBody?.required ?? false;
897
+ const queryGroupType = resolver ? resolveGroupType({
898
+ node,
899
+ params: queryParams,
900
+ groupMethod: resolver.resolveQueryParamsName,
901
+ resolver
902
+ }) : void 0;
903
+ const headerGroupType = resolver ? resolveGroupType({
904
+ node,
905
+ params: headerParams,
906
+ groupMethod: resolver.resolveHeaderParamsName,
907
+ resolver
908
+ }) : void 0;
909
+ const params = [];
910
+ if (paramsType === "object") {
911
+ const children = [
912
+ ...pathParams.map((p) => {
913
+ const type = resolveParamsType({
914
+ node,
915
+ param: p,
916
+ resolver
917
+ });
918
+ return createFunctionParameter({
919
+ name: p.name,
920
+ type: wrapTypeNode(type),
921
+ optional: !p.required
922
+ });
923
+ }),
924
+ ...bodyType ? [createFunctionParameter({
925
+ name: dataName,
926
+ type: bodyType,
927
+ optional: !bodyRequired
928
+ })] : [],
929
+ ...buildGroupParam({
930
+ name: paramsName,
931
+ node,
932
+ params: queryParams,
933
+ groupType: queryGroupType,
934
+ resolver,
935
+ wrapType
936
+ }),
937
+ ...buildGroupParam({
938
+ name: headersName,
939
+ node,
940
+ params: headerParams,
941
+ groupType: headerGroupType,
942
+ resolver,
943
+ wrapType
944
+ })
945
+ ];
946
+ if (children.length) params.push(createParameterGroup({
947
+ properties: children,
948
+ default: children.every((c) => c.optional) ? "{}" : void 0
949
+ }));
950
+ } else {
951
+ if (pathParams.length) if (pathParamsType === "inlineSpread") {
952
+ const spreadType = resolver?.resolvePathParamsName(node, pathParams[0]) ?? void 0;
953
+ params.push(createFunctionParameter({
954
+ name: pathName,
955
+ type: spreadType ? wrapType(spreadType) : void 0,
956
+ rest: true
957
+ }));
958
+ } else {
959
+ const pathChildren = pathParams.map((p) => {
960
+ const type = resolveParamsType({
961
+ node,
962
+ param: p,
963
+ resolver
964
+ });
965
+ return createFunctionParameter({
966
+ name: p.name,
967
+ type: wrapTypeNode(type),
968
+ optional: !p.required
969
+ });
970
+ });
971
+ params.push(createParameterGroup({
972
+ properties: pathChildren,
973
+ inline: pathParamsType === "inline",
974
+ default: pathParamsDefault ?? (pathChildren.every((c) => c.optional) ? "{}" : void 0)
975
+ }));
976
+ }
977
+ if (bodyType) params.push(createFunctionParameter({
978
+ name: dataName,
979
+ type: bodyType,
980
+ optional: !bodyRequired
981
+ }));
982
+ params.push(...buildGroupParam({
983
+ name: paramsName,
984
+ node,
985
+ params: queryParams,
986
+ groupType: queryGroupType,
987
+ resolver,
988
+ wrapType
989
+ }));
990
+ params.push(...buildGroupParam({
991
+ name: headersName,
992
+ node,
993
+ params: headerParams,
994
+ groupType: headerGroupType,
995
+ resolver,
996
+ wrapType
997
+ }));
998
+ }
999
+ params.push(...extraParams);
1000
+ return createFunctionParameters({ params });
1001
+ }
1002
+ /**
1003
+ * Builds a single {@link FunctionParameterNode} for a query or header group.
1004
+ * Returns an empty array when there are no params to emit.
1005
+ *
1006
+ * If a pre-resolved `groupType` is provided it emits `name: GroupType`.
1007
+ * Otherwise, it builds an inline struct from the individual params.
1008
+ */
1009
+ function buildGroupParam({ name, node, params, groupType, resolver, wrapType }) {
1010
+ if (groupType) return [createFunctionParameter({
1011
+ name,
1012
+ type: groupType.type.kind === "ParamsType" && groupType.type.variant === "reference" ? wrapType(groupType.type.name) : groupType.type,
1013
+ optional: groupType.optional
1014
+ })];
1015
+ if (params.length) return [createFunctionParameter({
1016
+ name,
1017
+ type: toStructType({
1018
+ node,
1019
+ params,
1020
+ resolver
1021
+ }),
1022
+ optional: params.every((p) => !p.required)
1023
+ })];
1024
+ return [];
1025
+ }
1026
+ /**
1027
+ * Derives a {@link ParamGroupType} from the resolver's group method.
1028
+ * Returns `undefined` when the group name equals the individual param name (no real group).
1029
+ */
1030
+ function resolveGroupType({ node, params, groupMethod, resolver }) {
1031
+ if (!params.length) return;
1032
+ const firstParam = params[0];
1033
+ const groupName = groupMethod.call(resolver, node, firstParam);
1034
+ if (groupName === resolver.resolveParamName(node, firstParam)) return;
1035
+ const allOptional = params.every((p) => !p.required);
1036
+ return {
1037
+ type: createParamsType({
1038
+ variant: "reference",
1039
+ name: groupName
1040
+ }),
1041
+ optional: allOptional
1042
+ };
1043
+ }
1044
+ /**
1045
+ * Builds a {@link TypeNode} with `variant: 'struct'` for an inline anonymous type grouping named fields.
1046
+ *
1047
+ * Used when query or header parameters have no dedicated group type name.
1048
+ * Each language printer renders this appropriately (TypeScript: `{ petId: string; name?: string }`).
1049
+ */
1050
+ function toStructType({ node, params, resolver }) {
1051
+ return createParamsType({
1052
+ variant: "struct",
1053
+ properties: params.map((p) => ({
1054
+ name: p.name,
1055
+ optional: !p.required,
1056
+ type: resolveParamsType({
1057
+ node,
1058
+ param: p,
1059
+ resolver
1060
+ })
1061
+ }))
1062
+ });
1063
+ }
1064
+ function sourceKey(source) {
1065
+ return `${source.name ?? extractStringsFromNodes(source.nodes)}:${source.isExportable ?? false}:${source.isTypeOnly ?? false}`;
1066
+ }
1067
+ function pathTypeKey(path, isTypeOnly) {
1068
+ return `${path}:${isTypeOnly ?? false}`;
1069
+ }
1070
+ function exportKey(path, name, isTypeOnly, asAlias) {
1071
+ return `${path}:${name ?? ""}:${isTypeOnly ?? false}:${asAlias ?? ""}`;
1072
+ }
1073
+ function importKey(path, name, isTypeOnly) {
1074
+ return `${path}:${name ?? ""}:${isTypeOnly ?? false}`;
1075
+ }
1076
+ /**
1077
+ * Computes a multi-level sort key for exports and imports:
1078
+ * non-array names first (wildcards/namespace aliases); type-only before value; alphabetical path; unnamed before named.
1079
+ */
1080
+ function sortKey(node) {
1081
+ const isArray = Array.isArray(node.name) ? "1" : "0";
1082
+ const typeOnly = node.isTypeOnly ? "0" : "1";
1083
+ const hasName = node.name != null ? "1" : "0";
1084
+ const name = Array.isArray(node.name) ? [...node.name].sort().join("\0") : node.name ?? "";
1085
+ return `${isArray}:${typeOnly}:${node.path}:${hasName}:${name}`;
1086
+ }
1087
+ /**
1088
+ * Deduplicates and merges `SourceNode` objects by `name + isExportable + isTypeOnly`.
1089
+ *
1090
+ * Unnamed sources are deduplicated by object reference. Returns a deduplicated array in original order.
1091
+ */
1092
+ function combineSources(sources) {
1093
+ const seen = /* @__PURE__ */ new Map();
1094
+ for (const source of sources) {
1095
+ const key = sourceKey(source);
1096
+ if (!seen.has(key)) seen.set(key, source);
1097
+ }
1098
+ return [...seen.values()];
1099
+ }
1100
+ /**
1101
+ * Deduplicates and merges `ExportNode` objects by path and type.
1102
+ *
1103
+ * Named exports with the same path and `isTypeOnly` flag have their names merged into a single export.
1104
+ * Non-array exports are deduplicated by exact identity. Returns a sorted, deduplicated array.
1105
+ */
1106
+ function combineExports(exports) {
1107
+ const result = [];
1108
+ const namedByPath = /* @__PURE__ */ new Map();
1109
+ const seen = /* @__PURE__ */ new Set();
1110
+ const keyed = exports.map((node) => ({
1111
+ node,
1112
+ key: sortKey(node)
1113
+ }));
1114
+ keyed.sort((a, b) => a.key < b.key ? -1 : a.key > b.key ? 1 : 0);
1115
+ for (const { node: curr } of keyed) {
1116
+ const { name, path, isTypeOnly, asAlias } = curr;
1117
+ if (Array.isArray(name)) {
1118
+ if (!name.length) continue;
1119
+ const key = pathTypeKey(path, isTypeOnly);
1120
+ const existing = namedByPath.get(key);
1121
+ if (existing && Array.isArray(existing.name)) {
1122
+ const merged = new Set(existing.name);
1123
+ for (const n of name) merged.add(n);
1124
+ existing.name = [...merged];
1125
+ } else {
1126
+ const newItem = {
1127
+ ...curr,
1128
+ name: [...new Set(name)]
1129
+ };
1130
+ result.push(newItem);
1131
+ namedByPath.set(key, newItem);
1132
+ }
1133
+ } else {
1134
+ const key = exportKey(path, name, isTypeOnly, asAlias);
1135
+ if (!seen.has(key)) {
1136
+ result.push(curr);
1137
+ seen.add(key);
1138
+ }
1139
+ }
1140
+ }
1141
+ return result;
1142
+ }
1143
+ /**
1144
+ * Deduplicates and merges `ImportNode` objects, filtering out unused imports.
1145
+ *
1146
+ * Retains imports that are referenced in `source` or re-exported. Imports with the same path and
1147
+ * `isTypeOnly` flag have their names merged. Returns a sorted, deduplicated, filtered array.
1148
+ *
1149
+ * @note Use this when combining imports from multiple files to avoid duplicate declarations.
1150
+ */
1151
+ function combineImports(imports, exports, source) {
1152
+ const exportedNames = new Set(exports.flatMap((e) => Array.isArray(e.name) ? e.name : e.name ? [e.name] : []));
1153
+ const isUsed = (importName) => !source || source.includes(importName) || exportedNames.has(importName);
1154
+ const importNameMemo = /* @__PURE__ */ new Map();
1155
+ const canonicalizeName = (n) => {
1156
+ if (typeof n === "string") return n;
1157
+ const key = `${n.propertyName}:${n.name ?? ""}`;
1158
+ if (!importNameMemo.has(key)) importNameMemo.set(key, n);
1159
+ return importNameMemo.get(key);
1160
+ };
1161
+ const result = [];
1162
+ const namedByPath = /* @__PURE__ */ new Map();
1163
+ const seen = /* @__PURE__ */ new Set();
1164
+ const keyed = imports.map((node) => ({
1165
+ node,
1166
+ key: sortKey(node)
1167
+ }));
1168
+ keyed.sort((a, b) => a.key < b.key ? -1 : a.key > b.key ? 1 : 0);
1169
+ for (const { node: curr } of keyed) {
1170
+ if (curr.path === curr.root) continue;
1171
+ const { path, isTypeOnly } = curr;
1172
+ let { name } = curr;
1173
+ if (Array.isArray(name)) {
1174
+ name = [...new Set(name.map(canonicalizeName))].filter((item) => typeof item === "string" ? isUsed(item) : isUsed(item.name ?? item.propertyName));
1175
+ if (!name.length) continue;
1176
+ const key = pathTypeKey(path, isTypeOnly);
1177
+ const existing = namedByPath.get(key);
1178
+ if (existing && Array.isArray(existing.name)) {
1179
+ const merged = new Set(existing.name);
1180
+ for (const n of name) merged.add(n);
1181
+ existing.name = [...merged];
1182
+ } else {
1183
+ const newItem = {
1184
+ ...curr,
1185
+ name
1186
+ };
1187
+ result.push(newItem);
1188
+ namedByPath.set(key, newItem);
1189
+ }
1190
+ } else {
1191
+ if (name && !isUsed(name)) continue;
1192
+ const key = importKey(path, name, isTypeOnly);
1193
+ if (!seen.has(key)) {
1194
+ result.push(curr);
1195
+ seen.add(key);
1196
+ }
1197
+ }
1198
+ }
1199
+ return result;
1200
+ }
1201
+ /**
1202
+ * Extracts all string content from a `CodeNode` tree recursively.
1203
+ *
1204
+ * Collects text node values, identifier references in string fields (`params`, `generics`, `returnType`, `type`),
1205
+ * and nested node content. Used internally to build the full source string for import filtering.
1206
+ */
1207
+ function extractStringsFromNodes(nodes) {
1208
+ if (!nodes?.length) return "";
1209
+ return nodes.map((node) => {
1210
+ if (typeof node === "string") return node;
1211
+ if (node.kind === "Text") return node.value;
1212
+ if (node.kind === "Break") return "";
1213
+ if (node.kind === "Jsx") return node.value;
1214
+ const parts = [];
1215
+ if ("params" in node && node.params) parts.push(node.params);
1216
+ if ("generics" in node && node.generics) parts.push(Array.isArray(node.generics) ? node.generics.join(", ") : node.generics);
1217
+ if ("returnType" in node && node.returnType) parts.push(node.returnType);
1218
+ if ("type" in node && typeof node.type === "string") parts.push(node.type);
1219
+ const nested = extractStringsFromNodes(node.nodes);
1220
+ if (nested) parts.push(nested);
1221
+ return parts.join("\n");
1222
+ }).filter(Boolean).join("\n");
1223
+ }
1224
+ /**
1225
+ * Resolves the schema name of a ref node, falling back through `ref` → `name` → nested `schema.name`.
1226
+ *
1227
+ * Returns `undefined` for non-ref nodes or when no name can be resolved. Use this to get a schema's
1228
+ * identifier for type definitions or error messages.
1229
+ *
1230
+ * @example
1231
+ * ```ts
1232
+ * resolveRefName({ kind: 'Schema', type: 'ref', ref: '#/components/schemas/Pet' })
1233
+ * // => 'Pet'
1234
+ * ```
1235
+ */
1236
+ function resolveRefName(node) {
1237
+ if (!node || node.type !== "ref") return void 0;
1238
+ if (node.ref) return extractRefName(node.ref) ?? node.name ?? node.schema?.name ?? void 0;
1239
+ return node.name ?? node.schema?.name ?? void 0;
1240
+ }
1241
+ /**
1242
+ * Collects every named schema referenced (transitively) from a node via ref edges.
1243
+ *
1244
+ * Refs are followed by name only — the resolved `node.schema` is not traversed inline.
1245
+ * Use this to determine schema dependencies, build reference graphs, or detect what schemas need to be emitted.
1246
+ *
1247
+ * @example Collect refs from a single schema
1248
+ * ```ts
1249
+ * const names = collectReferencedSchemaNames(petSchema)
1250
+ * // → Set { 'Category', 'Tag' }
1251
+ * ```
1252
+ *
1253
+ * @example Accumulate refs from multiple schemas into one set
1254
+ * ```ts
1255
+ * const out = new Set<string>()
1256
+ * for (const schema of schemas) {
1257
+ * collectReferencedSchemaNames(schema, out)
1258
+ * }
1259
+ * ```
1260
+ */
1261
+ function collectReferencedSchemaNames(node, out = /* @__PURE__ */ new Set()) {
1262
+ if (!node) return out;
1263
+ collect(node, { schema(child) {
1264
+ if (child.type === "ref") {
1265
+ const name = resolveRefName(child);
1266
+ if (name) out.add(name);
1267
+ }
1268
+ } });
1269
+ return out;
1270
+ }
1271
+ /**
1272
+ * Collects the names of all top-level schemas transitively used by a set of operations.
1273
+ *
1274
+ * An operation uses a schema when any of its parameters, request body content, or responses
1275
+ * reference it — directly or indirectly through other named schemas.
1276
+ * The walk is iterative and safe against reference cycles.
1277
+ *
1278
+ * Use this together with `include` filters to determine which schemas from `components/schemas`
1279
+ * are reachable from the allowed operations, so that schemas used only by excluded operations
1280
+ * are not generated.
1281
+ *
1282
+ * @example Only generate schemas referenced by included operations
1283
+ * ```ts
1284
+ * const includedOps = inputNode.operations.filter(op => resolver.resolveOptions(op, { options, include }) !== null)
1285
+ * const allowed = collectUsedSchemaNames(includedOps, inputNode.schemas)
1286
+ *
1287
+ * for (const schema of inputNode.schemas) {
1288
+ * if (schema.name && !allowed.has(schema.name)) continue
1289
+ * // … generate schema
1290
+ * }
1291
+ * ```
1292
+ *
1293
+ * @example Check whether a specific schema is needed
1294
+ * ```ts
1295
+ * const allowed = collectUsedSchemaNames(includedOps, inputNode.schemas)
1296
+ * allowed.has('OrderStatus') // false when no included operation references OrderStatus
1297
+ * ```
1298
+ */
1299
+ function collectUsedSchemaNames(operations, schemas) {
1300
+ const schemaMap = /* @__PURE__ */ new Map();
1301
+ for (const schema of schemas) if (schema.name) schemaMap.set(schema.name, schema);
1302
+ const result = /* @__PURE__ */ new Set();
1303
+ function visitSchema(schema) {
1304
+ const directRefs = collectReferencedSchemaNames(schema);
1305
+ for (const name of directRefs) if (!result.has(name)) {
1306
+ result.add(name);
1307
+ const namedSchema = schemaMap.get(name);
1308
+ if (namedSchema) visitSchema(namedSchema);
1309
+ }
1310
+ }
1311
+ for (const op of operations) for (const schema of collect(op, {
1312
+ depth: "shallow",
1313
+ schema: (node) => node
1314
+ })) visitSchema(schema);
1315
+ return result;
1316
+ }
1317
+ /**
1318
+ * Identifies all schemas that participate in circular dependency chains, including direct self-loops.
1319
+ *
1320
+ * Returns a Set of schema names with circular dependencies. Use this to wrap recursive schema positions
1321
+ * in deferred constructs (lazy getter, `z.lazy(() => …)`) to prevent infinite recursion when generated code runs.
1322
+ * Refs are followed by name only, keeping the algorithm linear in the schema graph size.
1323
+ *
1324
+ * @note Call this once on the full schema graph, then use `containsCircularRef()` to check individual schemas.
1325
+ */
1326
+ function findCircularSchemas(schemas) {
1327
+ const graph = /* @__PURE__ */ new Map();
1328
+ for (const schema of schemas) {
1329
+ if (!schema.name) continue;
1330
+ graph.set(schema.name, collectReferencedSchemaNames(schema));
1331
+ }
1332
+ const circular = /* @__PURE__ */ new Set();
1333
+ for (const start of graph.keys()) {
1334
+ const visited = /* @__PURE__ */ new Set();
1335
+ const stack = [...graph.get(start) ?? []];
1336
+ while (stack.length > 0) {
1337
+ const node = stack.pop();
1338
+ if (node === start) {
1339
+ circular.add(start);
1340
+ break;
1341
+ }
1342
+ if (visited.has(node)) continue;
1343
+ visited.add(node);
1344
+ const next = graph.get(node);
1345
+ if (next) for (const r of next) stack.push(r);
1346
+ }
1347
+ }
1348
+ return circular;
1349
+ }
1350
+ /**
1351
+ * Type guard returning `true` when a schema or anything nested within it contains a ref to a circular schema.
1352
+ *
1353
+ * Use `excludeName` to ignore refs to specific schemas (useful when self-references are handled separately).
1354
+ * Commonly used with `findCircularSchemas()` to detect where lazy wrappers are needed in code generation.
1355
+ *
1356
+ * @note Returns `true` for the first matching circular ref found; use for fast dependency checks.
1357
+ */
1358
+ function containsCircularRef(node, { circularSchemas, excludeName }) {
1359
+ if (!node || circularSchemas.size === 0) return false;
1360
+ return collect(node, { schema(child) {
1361
+ if (child.type !== "ref") return void 0;
1362
+ const name = resolveRefName(child);
1363
+ return name && name !== excludeName && circularSchemas.has(name) ? true : void 0;
1364
+ } }).length > 0;
1365
+ }
1366
+ //#endregion
1367
+ //#region src/factory.ts
1368
+ /**
1369
+ * Syncs property/parameter schema optionality flags from `required` and `schema.nullable`.
1370
+ *
1371
+ * - `optional` is set for non-required, non-nullable schemas.
1372
+ * - `nullish` is set for non-required, nullable schemas.
1373
+ */
1374
+ function syncOptionality(schema, required) {
1375
+ const nullable = schema.nullable ?? false;
1376
+ return {
1377
+ ...schema,
1378
+ optional: !required && !nullable ? true : void 0,
1379
+ nullish: !required && nullable ? true : void 0
1380
+ };
1381
+ }
1382
+ /**
1383
+ * Creates an `InputNode` with stable defaults for `schemas` and `operations`.
1384
+ *
1385
+ * @example
1386
+ * ```ts
1387
+ * const input = createInput()
1388
+ * // { kind: 'Input', schemas: [], operations: [] }
1389
+ * ```
1390
+ *
1391
+ * @example
1392
+ * ```ts
1393
+ * const input = createInput({ schemas: [petSchema] })
1394
+ * // keeps default operations: []
1395
+ * ```
1396
+ */
1397
+ function createInput(overrides = {}) {
1398
+ return {
1399
+ schemas: [],
1400
+ operations: [],
1401
+ ...overrides,
1402
+ kind: "Input"
1403
+ };
1404
+ }
1405
+ /**
1406
+ * Creates an `OutputNode` with a stable default for `files`.
1407
+ *
1408
+ * @example
1409
+ * ```ts
1410
+ * const output = createOutput()
1411
+ * // { kind: 'Output', files: [] }
1412
+ * ```
1413
+ *
1414
+ * @example
1415
+ * ```ts
1416
+ * const output = createOutput({ files: [petFile] })
1417
+ * ```
1418
+ */
1419
+ function createOutput(overrides = {}) {
1420
+ return {
1421
+ files: [],
1422
+ ...overrides,
1423
+ kind: "Output"
1424
+ };
1425
+ }
1426
+ /**
1427
+ * Creates an `OperationNode` with default empty arrays for `tags`, `parameters`, and `responses`.
1428
+ *
1429
+ * @example
1430
+ * ```ts
1431
+ * const operation = createOperation({
1432
+ * operationId: 'getPetById',
1433
+ * method: 'GET',
1434
+ * path: '/pet/{petId}',
1435
+ * })
1436
+ * // tags, parameters, and responses are []
1437
+ * ```
1438
+ *
1439
+ * @example
1440
+ * ```ts
1441
+ * const operation = createOperation({
1442
+ * operationId: 'findPets',
1443
+ * method: 'GET',
1444
+ * path: '/pet/findByStatus',
1445
+ * tags: ['pet'],
1446
+ * })
1447
+ * ```
1448
+ */
1449
+ function createOperation(props) {
1450
+ return {
1451
+ tags: [],
1452
+ parameters: [],
1453
+ responses: [],
1454
+ ...props,
1455
+ kind: "Operation"
1456
+ };
1457
+ }
1458
+ /**
1459
+ * Maps schema `type` to its underlying `primitive`.
1460
+ * Primitive types map to themselves; special string formats map to `'string'`.
1461
+ * Complex types (`ref`, `enum`, `union`, `intersection`, `tuple`, `blob`) are left unset.
1462
+ */
1463
+ const TYPE_TO_PRIMITIVE = {
1464
+ string: "string",
1465
+ number: "number",
1466
+ integer: "integer",
1467
+ bigint: "bigint",
1468
+ boolean: "boolean",
1469
+ null: "null",
1470
+ any: "any",
1471
+ unknown: "unknown",
1472
+ void: "void",
1473
+ never: "never",
1474
+ object: "object",
1475
+ array: "array",
1476
+ date: "date",
1477
+ uuid: "string",
1478
+ email: "string",
1479
+ url: "string",
1480
+ datetime: "string",
1481
+ time: "string"
1482
+ };
1483
+ function createSchema(props) {
1484
+ const inferredPrimitive = TYPE_TO_PRIMITIVE[props.type];
1485
+ if (props["type"] === "object") return {
1486
+ properties: [],
1487
+ primitive: "object",
1488
+ ...props,
1489
+ kind: "Schema"
1490
+ };
1491
+ return {
1492
+ primitive: inferredPrimitive,
1493
+ ...props,
1494
+ kind: "Schema"
1495
+ };
1496
+ }
1497
+ /**
1498
+ * Creates a `PropertyNode`.
1499
+ *
1500
+ * `required` defaults to `false`.
1501
+ * `schema.optional` and `schema.nullish` are derived from `required` and `schema.nullable`.
1502
+ *
1503
+ * @example
1504
+ * ```ts
1505
+ * const property = createProperty({
1506
+ * name: 'status',
1507
+ * schema: createSchema({ type: 'string' }),
1508
+ * })
1509
+ * // required=false, schema.optional=true
1510
+ * ```
1511
+ *
1512
+ * @example
1513
+ * ```ts
1514
+ * const property = createProperty({
1515
+ * name: 'status',
1516
+ * required: true,
1517
+ * schema: createSchema({ type: 'string', nullable: true }),
1518
+ * })
1519
+ * // required=true, no optional/nullish
1520
+ * ```
1521
+ */
1522
+ function createProperty(props) {
1523
+ const required = props.required ?? false;
1524
+ return {
1525
+ ...props,
1526
+ kind: "Property",
1527
+ required,
1528
+ schema: syncOptionality(props.schema, required)
1529
+ };
1530
+ }
1531
+ /**
1532
+ * Creates a `ParameterNode`.
1533
+ *
1534
+ * `required` defaults to `false`.
1535
+ * Nested schema flags are set from `required` and `schema.nullable`.
1536
+ *
1537
+ * @example
1538
+ * ```ts
1539
+ * const param = createParameter({
1540
+ * name: 'petId',
1541
+ * in: 'path',
1542
+ * required: true,
1543
+ * schema: createSchema({ type: 'string' }),
1544
+ * })
1545
+ * ```
1546
+ *
1547
+ * @example
1548
+ * ```ts
1549
+ * const param = createParameter({
1550
+ * name: 'status',
1551
+ * in: 'query',
1552
+ * schema: createSchema({ type: 'string', nullable: true }),
1553
+ * })
1554
+ * // required=false, schema.nullish=true
1555
+ * ```
1556
+ */
1557
+ function createParameter(props) {
1558
+ const required = props.required ?? false;
1559
+ return {
1560
+ ...props,
1561
+ kind: "Parameter",
1562
+ required,
1563
+ schema: syncOptionality(props.schema, required)
1564
+ };
1565
+ }
1566
+ /**
1567
+ * Creates a `ResponseNode`.
1568
+ *
1569
+ * @example
1570
+ * ```ts
1571
+ * const response = createResponse({
1572
+ * statusCode: '200',
1573
+ * description: 'Success',
1574
+ * schema: createSchema({ type: 'object', properties: [] }),
1575
+ * })
1576
+ * ```
1577
+ */
1578
+ function createResponse(props) {
1579
+ return {
1580
+ ...props,
1581
+ kind: "Response"
1582
+ };
1583
+ }
1584
+ /**
1585
+ * Creates a `FunctionParameterNode`.
1586
+ *
1587
+ * `optional` defaults to `false`.
1588
+ *
1589
+ * @example Required typed param
1590
+ * ```ts
1591
+ * createFunctionParameter({ name: 'petId', type: createParamsType({ variant: 'reference', name: 'string' }) })
1592
+ * // → petId: string
1593
+ * ```
1594
+ *
1595
+ * @example Optional param
1596
+ * ```ts
1597
+ * createFunctionParameter({ name: 'params', type: createParamsType({ variant: 'reference', name: 'QueryParams' }), optional: true })
1598
+ * // → params?: QueryParams
1599
+ * ```
1600
+ *
1601
+ * @example Param with default (implicitly optional; cannot combine with `optional: true`)
1602
+ * ```ts
1603
+ * createFunctionParameter({ name: 'config', type: createParamsType({ variant: 'reference', name: 'RequestConfig' }), default: '{}' })
1604
+ * // → config: RequestConfig = {}
1605
+ * ```
1606
+ */
1607
+ function createFunctionParameter(props) {
1608
+ return {
1609
+ optional: false,
1610
+ ...props,
1611
+ kind: "FunctionParameter"
1612
+ };
1613
+ }
1614
+ /**
1615
+ * Creates a {@link TypeNode} representing a language-agnostic structured type expression.
1616
+ *
1617
+ * Use `variant: 'struct'` for inline anonymous types and `variant: 'member'` for a single
1618
+ * named field accessed from a group type. Each language's printer renders the variant
1619
+ * into its own syntax (TypeScript, Python, C#, Kotlin, …).
1620
+ *
1621
+ * @example Reference type (TypeScript: `QueryParams`)
1622
+ * ```ts
1623
+ * createParamsType({ variant: 'reference', name: 'QueryParams' })
1624
+ * ```
1625
+ *
1626
+ * @example Struct type (TypeScript: `{ petId: string }`)
1627
+ * ```ts
1628
+ * createParamsType({ variant: 'struct', properties: [{ name: 'petId', optional: false, type: createParamsType({ variant: 'reference', name: 'string' }) }] })
1629
+ * ```
1630
+ *
1631
+ * @example Member type (TypeScript: `DeletePetPathParams['petId']`)
1632
+ * ```ts
1633
+ * createParamsType({ variant: 'member', base: 'DeletePetPathParams', key: 'petId' })
1634
+ * ```
1635
+ */
1636
+ function createParamsType(props) {
1637
+ return {
1638
+ ...props,
1639
+ kind: "ParamsType"
1640
+ };
1641
+ }
1642
+ /**
1643
+ * Creates a `ParameterGroupNode` representing a group of related parameters treated as a unit.
1644
+ *
1645
+ * @example Grouped param (TypeScript declaration)
1646
+ * ```ts
1647
+ * createParameterGroup({
1648
+ * properties: [
1649
+ * createFunctionParameter({ name: 'id', type: createParamsType({ variant: 'reference', name: 'string' }), optional: false }),
1650
+ * createFunctionParameter({ name: 'name', type: createParamsType({ variant: 'reference', name: 'string' }), optional: true }),
1651
+ * ],
1652
+ * default: '{}',
1653
+ * })
1654
+ * // declaration → { id, name? }: { id: string; name?: string } = {}
1655
+ * // call → { id, name }
1656
+ * ```
1657
+ *
1658
+ * @example Inline (spread) — children emitted as individual top-level parameters
1659
+ * ```ts
1660
+ * createParameterGroup({
1661
+ * properties: [createFunctionParameter({ name: 'petId', type: createParamsType({ variant: 'reference', name: 'string' }), optional: false })],
1662
+ * inline: true,
1663
+ * })
1664
+ * // declaration → petId: string
1665
+ * // call → petId
1666
+ * ```
1667
+ */
1668
+ function createParameterGroup(props) {
1669
+ return {
1670
+ ...props,
1671
+ kind: "ParameterGroup"
1672
+ };
1673
+ }
1674
+ /**
1675
+ * Creates a `FunctionParametersNode` from an ordered list of parameters.
1676
+ *
1677
+ * @example
1678
+ * ```ts
1679
+ * createFunctionParameters({
1680
+ * params: [
1681
+ * createFunctionParameter({ name: 'petId', type: createParamsType({ variant: 'reference', name: 'string' }), optional: false }),
1682
+ * createFunctionParameter({ name: 'config', type: createParamsType({ variant: 'reference', name: 'RequestConfig' }), optional: false, default: '{}' }),
1683
+ * ],
1684
+ * })
1685
+ * ```
1686
+ *
1687
+ * @example
1688
+ * ```ts
1689
+ * const empty = createFunctionParameters()
1690
+ * // { kind: 'FunctionParameters', params: [] }
1691
+ * ```
1692
+ */
1693
+ function createFunctionParameters(props = {}) {
1694
+ return {
1695
+ params: [],
1696
+ ...props,
1697
+ kind: "FunctionParameters"
1698
+ };
1699
+ }
1700
+ /**
1701
+ * Creates an `ImportNode` representing a language-agnostic import/dependency declaration.
1702
+ *
1703
+ * @example Named import
1704
+ * ```ts
1705
+ * createImport({ name: ['useState'], path: 'react' })
1706
+ * // import { useState } from 'react'
1707
+ * ```
1708
+ *
1709
+ * @example Type-only import
1710
+ * ```ts
1711
+ * createImport({ name: ['FC'], path: 'react', isTypeOnly: true })
1712
+ * // import type { FC } from 'react'
1713
+ * ```
1714
+ */
1715
+ function createImport(props) {
1716
+ return {
1717
+ ...props,
1718
+ kind: "Import"
1719
+ };
1720
+ }
1721
+ /**
1722
+ * Creates an `ExportNode` representing a language-agnostic export/public API declaration.
1723
+ *
1724
+ * @example Named export
1725
+ * ```ts
1726
+ * createExport({ name: ['Pet'], path: './Pet' })
1727
+ * // export { Pet } from './Pet'
1728
+ * ```
1729
+ *
1730
+ * @example Wildcard export
1731
+ * ```ts
1732
+ * createExport({ path: './utils' })
1733
+ * // export * from './utils'
1734
+ * ```
1735
+ */
1736
+ function createExport(props) {
1737
+ return {
1738
+ ...props,
1739
+ kind: "Export"
1740
+ };
1741
+ }
1742
+ /**
1743
+ * Creates a `SourceNode` representing a fragment of source code within a file.
1744
+ *
1745
+ * @example
1746
+ * ```ts
1747
+ * createSource({ name: 'Pet', nodes: [createText('export type Pet = { id: number }')], isExportable: true })
1748
+ * ```
1749
+ */
1750
+ function createSource(props) {
1751
+ return {
1752
+ ...props,
1753
+ kind: "Source"
1754
+ };
1755
+ }
1756
+ /**
1757
+ * Creates a fully resolved `FileNode` from a file input descriptor.
1758
+ *
1759
+ * Computes:
1760
+ * - `id` — SHA256 hash of the file path
1761
+ * - `name` — `baseName` without extension
1762
+ * - `extname` — extension extracted from `baseName`
1763
+ *
1764
+ * Deduplicates:
1765
+ * - `sources` via `combineSources`
1766
+ * - `exports` via `combineExports`
1767
+ * - `imports` via `combineImports` (also filters unused imports)
1768
+ *
1769
+ * @throws {Error} when `baseName` has no extension.
1770
+ *
1771
+ * @example
1772
+ * ```ts
1773
+ * const file = createFile({
1774
+ * baseName: 'petStore.ts',
1775
+ * path: 'src/models/petStore.ts',
1776
+ * sources: [createSource({ name: 'Pet', nodes: [createText('export type Pet = { id: number }')] })],
1777
+ * imports: [createImport({ name: ['z'], path: 'zod' })],
1778
+ * exports: [createExport({ name: ['Pet'], path: './petStore' })],
1779
+ * })
1780
+ * // file.id = SHA256 hash of 'src/models/petStore.ts'
1781
+ * // file.name = 'petStore'
1782
+ * // file.extname = '.ts'
1783
+ * ```
1784
+ */
1785
+ function createFile(input) {
1786
+ const extname = path.extname(input.baseName) || (input.baseName.startsWith(".") ? input.baseName : "");
1787
+ if (!extname) throw new Error(`No extname found for ${input.baseName}`);
1788
+ const source = (input.sources ?? []).flatMap((item) => item.nodes ?? []).map((node) => extractStringsFromNodes([node])).filter(Boolean).join("\n\n");
1789
+ const resolvedExports = input.exports?.length ? combineExports(input.exports) : [];
1790
+ const resolvedImports = input.imports?.length ? combineImports(input.imports, resolvedExports, source || void 0) : [];
1791
+ const resolvedSources = input.sources?.length ? combineSources(input.sources) : [];
1792
+ return {
1793
+ kind: "File",
1794
+ ...input,
1795
+ id: createHash("sha256").update(input.path).digest("hex"),
1796
+ name: trimExtName(input.baseName),
1797
+ extname,
1798
+ imports: resolvedImports,
1799
+ exports: resolvedExports,
1800
+ sources: resolvedSources,
1801
+ meta: input.meta ?? {}
1802
+ };
1803
+ }
1804
+ /**
1805
+ * Creates a `ConstNode` representing a TypeScript `const` declaration.
1806
+ *
1807
+ * Mirrors the `Const` component from `@kubb/renderer-jsx`.
1808
+ * The component's `children` are represented as `nodes`.
1809
+ *
1810
+ * @example Simple constant
1811
+ * ```ts
1812
+ * createConst({ name: 'pet' })
1813
+ * // const pet = ...
1814
+ * ```
1815
+ *
1816
+ * @example Exported constant with type and `as const`
1817
+ * ```ts
1818
+ * createConst({ name: 'pets', export: true, type: 'Pet[]', asConst: true })
1819
+ * // export const pets: Pet[] = ... as const
1820
+ * ```
1821
+ *
1822
+ * @example With JSDoc and child nodes
1823
+ * ```ts
1824
+ * createConst({
1825
+ * name: 'config',
1826
+ * export: true,
1827
+ * JSDoc: { comments: ['@description App configuration'] },
1828
+ * nodes: [],
1829
+ * })
1830
+ * ```
1831
+ */
1832
+ function createConst(props) {
1833
+ return {
1834
+ ...props,
1835
+ kind: "Const"
1836
+ };
1837
+ }
1838
+ /**
1839
+ * Creates a `TypeNode` representing a TypeScript `type` alias declaration.
1840
+ *
1841
+ * Mirrors the `Type` component from `@kubb/renderer-jsx`.
1842
+ * The component's `children` are represented as `nodes`.
1843
+ *
1844
+ * @example Simple type alias
1845
+ * ```ts
1846
+ * createType({ name: 'Pet' })
1847
+ * // type Pet = ...
1848
+ * ```
1849
+ *
1850
+ * @example Exported type with JSDoc
1851
+ * ```ts
1852
+ * createType({
1853
+ * name: 'PetStatus',
1854
+ * export: true,
1855
+ * JSDoc: { comments: ['@description Status of a pet'] },
1856
+ * })
1857
+ * // export type PetStatus = ...
1858
+ * ```
1859
+ */
1860
+ function createType(props) {
1861
+ return {
1862
+ ...props,
1863
+ kind: "Type"
1864
+ };
1865
+ }
1866
+ /**
1867
+ * Creates a `FunctionNode` representing a TypeScript `function` declaration.
1868
+ *
1869
+ * Mirrors the `Function` component from `@kubb/renderer-jsx`.
1870
+ * The component's `children` are represented as `nodes`.
1871
+ *
1872
+ * @example Simple function
1873
+ * ```ts
1874
+ * createFunction({ name: 'getPet' })
1875
+ * // function getPet() { ... }
1876
+ * ```
1877
+ *
1878
+ * @example Exported async function with return type
1879
+ * ```ts
1880
+ * createFunction({ name: 'fetchPet', export: true, async: true, returnType: 'Pet' })
1881
+ * // export async function fetchPet(): Promise<Pet> { ... }
1882
+ * ```
1883
+ *
1884
+ * @example Function with generics and params
1885
+ * ```ts
1886
+ * createFunction({
1887
+ * name: 'identity',
1888
+ * export: true,
1889
+ * generics: ['T'],
1890
+ * params: 'value: T',
1891
+ * returnType: 'T',
1892
+ * })
1893
+ * // export function identity<T>(value: T): T { ... }
1894
+ * ```
1895
+ */
1896
+ function createFunction(props) {
1897
+ return {
1898
+ ...props,
1899
+ kind: "Function"
1900
+ };
1901
+ }
1902
+ /**
1903
+ * Creates an `ArrowFunctionNode` representing a TypeScript arrow function.
1904
+ *
1905
+ * Mirrors the `Function.Arrow` component from `@kubb/renderer-jsx`.
1906
+ * The component's `children` are represented as `nodes`.
1907
+ *
1908
+ * @example Simple arrow function
1909
+ * ```ts
1910
+ * createArrowFunction({ name: 'getPet' })
1911
+ * // const getPet = () => { ... }
1912
+ * ```
1913
+ *
1914
+ * @example Single-line exported arrow function
1915
+ * ```ts
1916
+ * createArrowFunction({ name: 'double', export: true, params: 'n: number', singleLine: true })
1917
+ * // export const double = (n: number) => ...
1918
+ * ```
1919
+ *
1920
+ * @example Async arrow function with generics
1921
+ * ```ts
1922
+ * createArrowFunction({
1923
+ * name: 'fetchPet',
1924
+ * export: true,
1925
+ * async: true,
1926
+ * generics: ['T'],
1927
+ * params: 'id: string',
1928
+ * returnType: 'T',
1929
+ * })
1930
+ * // export const fetchPet = async <T>(id: string): Promise<T> => { ... }
1931
+ * ```
1932
+ */
1933
+ function createArrowFunction(props) {
1934
+ return {
1935
+ ...props,
1936
+ kind: "ArrowFunction"
1937
+ };
1938
+ }
1939
+ /**
1940
+ * Creates a {@link TextNode} representing a raw string fragment in the source output.
1941
+ *
1942
+ * Use this instead of bare strings when building `nodes` arrays so that every
1943
+ * entry in the array is a typed {@link CodeNode}.
1944
+ *
1945
+ * @example
1946
+ * ```ts
1947
+ * createText('return fetch(id)')
1948
+ * // { kind: 'Text', value: 'return fetch(id)' }
1949
+ * ```
1950
+ */
1951
+ function createText(value) {
1952
+ return {
1953
+ value,
1954
+ kind: "Text"
1955
+ };
1956
+ }
1957
+ /**
1958
+ * Creates a {@link BreakNode} representing a line break in the source output.
1959
+ *
1960
+ * Corresponds to `<br/>` in JSX components. Prints as an empty string which,
1961
+ * when joined with `\n` by `printNodes`, produces a blank line.
1962
+ *
1963
+ * @example
1964
+ * ```ts
1965
+ * createBreak()
1966
+ * // { kind: 'Break' }
1967
+ * ```
1968
+ */
1969
+ function createBreak() {
1970
+ return { kind: "Break" };
1971
+ }
1972
+ /**
1973
+ * Creates a {@link JsxNode} representing a raw JSX fragment in the source output.
1974
+ *
1975
+ * Use this to embed JSX markup (including fragments `<>…</>`) directly in generated code.
1976
+ *
1977
+ * @example
1978
+ * ```ts
1979
+ * createJsx('<>\n <a href={href}>Open</a>\n</>')
1980
+ * // { kind: 'Jsx', value: '<>\n <a href={href}>Open</a>\n</>' }
1981
+ * ```
1982
+ */
1983
+ function createJsx(value) {
1984
+ return {
1985
+ value,
1986
+ kind: "Jsx"
1987
+ };
1988
+ }
1989
+ //#endregion
1990
+ //#region src/printer.ts
1991
+ /**
1992
+ * Creates a schema printer factory.
1993
+ *
1994
+ * This function wraps a builder and makes options optional at call sites.
1995
+ *
1996
+ * The builder receives resolved options and returns:
1997
+ * - `name` — a unique identifier for the printer
1998
+ * - `options` — options stored on the returned printer instance
1999
+ * - `nodes` — a map of `SchemaType` → handler functions that convert a `SchemaNode` to `TOutput`
2000
+ * - `print` _(optional)_ — top-level override exposed as `printer.print`
2001
+ * - Inside this function, use `this.transform(node)` to dispatch to the `nodes` map
2002
+ * - This keeps recursion safe and avoids self-calls
2003
+ *
2004
+ * When no `print` override is provided, `printer.print` falls back to `printer.transform` (the node-level dispatcher).
2005
+ *
2006
+ * @example Basic usage — Zod schema printer
2007
+ * ```ts
2008
+ * type PrinterZod = PrinterFactoryOptions<'zod', { strict?: boolean }, string>
2009
+ *
2010
+ * export const zodPrinter = definePrinter<PrinterZod>((options) => ({
2011
+ * name: 'zod',
2012
+ * options: { strict: options.strict ?? true },
2013
+ * nodes: {
2014
+ * string: () => 'z.string()',
2015
+ * object(node) {
2016
+ * const props = node.properties.map(p => `${p.name}: ${this.transform(p.schema)}`).join(', ')
2017
+ * return `z.object({ ${props} })`
2018
+ * },
2019
+ * },
2020
+ * }))
2021
+ * ```
2022
+ */
2023
+ function definePrinter(build) {
2024
+ return createPrinterFactory((node) => node.type)(build);
2025
+ }
2026
+ /**
2027
+ * Generic printer-factory function used by `definePrinter` and `defineFunctionPrinter`.
2028
+ **
2029
+ * @example
2030
+ * ```ts
2031
+ * export const defineFunctionPrinter = createPrinterFactory<FunctionNode, FunctionNodeType, FunctionNodeByType>(
2032
+ * (node) => kindToHandlerKey[node.kind],
2033
+ * )
2034
+ * ```
2035
+ */
2036
+ function createPrinterFactory(getKey) {
2037
+ return function(build) {
2038
+ return (options) => {
2039
+ const { name, options: resolvedOptions, nodes, print: printOverride } = build(options ?? {});
2040
+ const context = {
2041
+ options: resolvedOptions,
2042
+ transform: (node) => {
2043
+ const key = getKey(node);
2044
+ if (key === void 0) return null;
2045
+ const handler = nodes[key];
2046
+ if (!handler) return null;
2047
+ return handler.call(context, node);
2048
+ }
2049
+ };
2050
+ return {
2051
+ name,
2052
+ options: resolvedOptions,
2053
+ transform: context.transform,
2054
+ print: printOverride ? printOverride.bind(context) : context.transform
2055
+ };
2056
+ };
2057
+ };
2058
+ }
2059
+ //#endregion
2060
+ //#region src/resolvers.ts
2061
+ function findDiscriminator(mapping, ref) {
2062
+ if (!mapping || !ref) return null;
2063
+ return Object.entries(mapping).find(([, value]) => value === ref)?.[0] ?? null;
2064
+ }
2065
+ function childName(parentName, propName) {
2066
+ return parentName ? pascalCase([parentName, propName].join(" ")) : null;
2067
+ }
2068
+ function enumPropName(parentName, propName, enumSuffix) {
2069
+ return pascalCase([
2070
+ parentName,
2071
+ propName,
2072
+ enumSuffix
2073
+ ].filter(Boolean).join(" "));
2074
+ }
2075
+ /**
2076
+ * Collects import entries for all `ref` schema nodes in `node`.
2077
+ */
2078
+ function collectImports({ node, nameMapping, resolve }) {
2079
+ return collect(node, { schema(schemaNode) {
2080
+ const schemaRef = narrowSchema(schemaNode, "ref");
2081
+ if (!schemaRef?.ref) return;
2082
+ const rawName = extractRefName(schemaRef.ref);
2083
+ const result = resolve(nameMapping.get(rawName) ?? rawName);
2084
+ if (!result) return;
2085
+ return result;
2086
+ } });
2087
+ }
2088
+ //#endregion
2089
+ //#region src/transformers.ts
2090
+ /**
2091
+ * Replaces a discriminator property's schema with a string enum of allowed values.
2092
+ *
2093
+ * If `node` is not an object schema, or if the property does not exist, the input
2094
+ * node is returned as-is.
2095
+ *
2096
+ * @example
2097
+ * ```ts
2098
+ * const schema = createSchema({
2099
+ * type: 'object',
2100
+ * properties: [createProperty({ name: 'type', required: true, schema: createSchema({ type: 'string' }) })],
2101
+ * })
2102
+ * const result = setDiscriminatorEnum({ node: schema, propertyName: 'type', values: ['dog', 'cat'] })
2103
+ * ```
2104
+ */
2105
+ function setDiscriminatorEnum({ node, propertyName, values, enumName }) {
2106
+ const objectNode = narrowSchema(node, "object");
2107
+ if (!objectNode?.properties?.length) return node;
2108
+ if (!objectNode.properties.some((prop) => prop.name === propertyName)) return node;
2109
+ return createSchema({
2110
+ ...objectNode,
2111
+ properties: objectNode.properties.map((prop) => {
2112
+ if (prop.name !== propertyName) return prop;
2113
+ return createProperty({
2114
+ ...prop,
2115
+ schema: createSchema({
2116
+ type: "enum",
2117
+ primitive: "string",
2118
+ enumValues: values,
2119
+ name: enumName,
2120
+ readOnly: prop.schema.readOnly,
2121
+ writeOnly: prop.schema.writeOnly
2122
+ })
2123
+ });
2124
+ })
2125
+ });
2126
+ }
2127
+ /**
2128
+ * Merges adjacent anonymous object members into a single anonymous object member.
2129
+ *
2130
+ * @example
2131
+ * ```ts
2132
+ * const merged = mergeAdjacentObjects([
2133
+ * createSchema({ type: 'object', properties: [createProperty({ name: 'a', schema: createSchema({ type: 'string' }) })] }),
2134
+ * createSchema({ type: 'object', properties: [createProperty({ name: 'b', schema: createSchema({ type: 'number' }) })] }),
2135
+ * ])
2136
+ * ```
2137
+ */
2138
+ function mergeAdjacentObjects(members) {
2139
+ return members.reduce((acc, member) => {
2140
+ const objectMember = narrowSchema(member, "object");
2141
+ if (objectMember && !objectMember.name) {
2142
+ const previous = acc.at(-1);
2143
+ const previousObject = previous ? narrowSchema(previous, "object") : void 0;
2144
+ if (previousObject && !previousObject.name) {
2145
+ acc[acc.length - 1] = createSchema({
2146
+ ...previousObject,
2147
+ properties: [...previousObject.properties ?? [], ...objectMember.properties ?? []]
2148
+ });
2149
+ return acc;
2150
+ }
2151
+ }
2152
+ acc.push(member);
2153
+ return acc;
2154
+ }, []);
2155
+ }
2156
+ /**
2157
+ * Removes enum members that are covered by broader scalar primitives in the same union.
2158
+ *
2159
+ * @example
2160
+ * ```ts
2161
+ * const simplified = simplifyUnion([
2162
+ * createSchema({ type: 'enum', primitive: 'string', enumValues: ['active'] }),
2163
+ * createSchema({ type: 'string' }),
2164
+ * ])
2165
+ * // keeps only string member
2166
+ * ```
2167
+ */
2168
+ function simplifyUnion(members) {
2169
+ const scalarPrimitives = new Set(members.filter((member) => isScalarPrimitive(member.type)).map((m) => m.type));
2170
+ if (!scalarPrimitives.size) return members;
2171
+ return members.filter((member) => {
2172
+ const enumNode = narrowSchema(member, "enum");
2173
+ if (!enumNode) return true;
2174
+ const primitive = enumNode.primitive;
2175
+ if (!primitive) return true;
2176
+ if ((enumNode.namedEnumValues?.length ?? enumNode.enumValues?.length ?? 0) <= 1) return true;
2177
+ if (scalarPrimitives.has(primitive)) return false;
2178
+ if ((primitive === "integer" || primitive === "number") && (scalarPrimitives.has("integer") || scalarPrimitives.has("number"))) return false;
2179
+ return true;
2180
+ });
2181
+ }
2182
+ function setEnumName(propNode, parentName, propName, enumSuffix) {
2183
+ const enumNode = narrowSchema(propNode, "enum");
2184
+ if (enumNode?.primitive === "boolean") return {
2185
+ ...propNode,
2186
+ name: void 0
2187
+ };
2188
+ if (enumNode) return {
2189
+ ...propNode,
2190
+ name: enumPropName(parentName, propName, enumSuffix)
2191
+ };
2192
+ return propNode;
2193
+ }
2194
+ //#endregion
2195
+ export { caseParams, childName, collect, collectImports, collectReferencedSchemaNames, collectUsedSchemaNames, containsCircularRef, createArrowFunction, createBreak, createConst, createDiscriminantNode, createExport, createFile, createFunction, createFunctionParameter, createFunctionParameters, createImport, createInput, createJsx, createOperation, createOperationParams, createOutput, createParameter, createParameterGroup, createParamsType, createPrinterFactory, createProperty, createResponse, createSchema, createSource, createText, createType, definePrinter, enumPropName, extractRefName, extractStringsFromNodes, findCircularSchemas, findDiscriminator, httpMethods, isInputNode, isOperationNode, isOutputNode, isScalarPrimitive, isSchemaNode, isStringType, mediaTypes, mergeAdjacentObjects, narrowSchema, nodeKinds, resolveRefName, schemaTypes, setDiscriminatorEnum, setEnumName, simplifyUnion, syncOptionality, syncSchemaRef, transform, walk };
745
2196
 
746
2197
  //# sourceMappingURL=index.js.map