@kubb/kit 5.0.0-beta.100

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 ADDED
@@ -0,0 +1,537 @@
1
+ import "./rolldown-runtime-C0LytTxp.js";
2
+ import { ast, ast as ast$1 } from "@kubb/ast";
3
+ import { Diagnostics, Hookable, Resolver, createAdapter, createRenderer, createResolver, createStorage, defineGenerator, defineParser, definePlugin, fsStorage, memoryStorage } from "@kubb/core";
4
+ //#region ../../internals/utils/src/casing.ts
5
+ /**
6
+ * Shared implementation for camelCase and PascalCase conversion.
7
+ * Splits on common word boundaries (spaces, hyphens, underscores, dots, slashes, colons)
8
+ * and capitalizes each word according to `pascal`.
9
+ *
10
+ * When `pascal` is `true` the first word is also capitalized (PascalCase), otherwise only subsequent words are.
11
+ */
12
+ function toCamelOrPascal(text, pascal) {
13
+ return text.trim().replace(/([a-z\d])([A-Z])/g, "$1 $2").replace(/([A-Z]+)([A-Z][a-z])/g, "$1 $2").replace(/(\d)([a-z])/g, "$1 $2").split(/[\s\-_./\\:]+/).filter(Boolean).map((word, i) => {
14
+ if (word.length > 1 && word === word.toUpperCase()) return word;
15
+ return (i === 0 && !pascal ? word.charAt(0).toLowerCase() : word.charAt(0).toUpperCase()) + word.slice(1);
16
+ }).join("").replace(/[^a-zA-Z0-9]/g, "");
17
+ }
18
+ /**
19
+ * Converts `text` to camelCase.
20
+ *
21
+ * @example Word boundaries
22
+ * `camelCase('hello-world') // 'helloWorld'`
23
+ *
24
+ * @example With a prefix
25
+ * `camelCase('tag', { prefix: 'create' }) // 'createTag'`
26
+ */
27
+ function camelCase(text, { prefix = "", suffix = "" } = {}) {
28
+ return toCamelOrPascal(`${prefix} ${text} ${suffix}`, false);
29
+ }
30
+ /**
31
+ * Converts `text` to PascalCase.
32
+ *
33
+ * @example Word boundaries
34
+ * `pascalCase('hello-world') // 'HelloWorld'`
35
+ *
36
+ * @example With a suffix
37
+ * `pascalCase('tag', { suffix: 'schema' }) // 'TagSchema'`
38
+ */
39
+ function pascalCase(text, { prefix = "", suffix = "" } = {}) {
40
+ return toCamelOrPascal(`${prefix} ${text} ${suffix}`, true);
41
+ }
42
+ //#endregion
43
+ //#region ../../internals/utils/src/reserved.ts
44
+ /**
45
+ * JavaScript and Java reserved words.
46
+ * @link https://github.com/jonschlinkert/reserved/blob/master/index.js
47
+ */
48
+ const reservedWords = /* @__PURE__ */ new Set([
49
+ "abstract",
50
+ "arguments",
51
+ "boolean",
52
+ "break",
53
+ "byte",
54
+ "case",
55
+ "catch",
56
+ "char",
57
+ "class",
58
+ "const",
59
+ "continue",
60
+ "debugger",
61
+ "default",
62
+ "delete",
63
+ "do",
64
+ "double",
65
+ "else",
66
+ "enum",
67
+ "eval",
68
+ "export",
69
+ "extends",
70
+ "false",
71
+ "final",
72
+ "finally",
73
+ "float",
74
+ "for",
75
+ "function",
76
+ "goto",
77
+ "if",
78
+ "implements",
79
+ "import",
80
+ "in",
81
+ "instanceof",
82
+ "int",
83
+ "interface",
84
+ "let",
85
+ "long",
86
+ "native",
87
+ "new",
88
+ "null",
89
+ "package",
90
+ "private",
91
+ "protected",
92
+ "public",
93
+ "return",
94
+ "short",
95
+ "static",
96
+ "super",
97
+ "switch",
98
+ "synchronized",
99
+ "this",
100
+ "throw",
101
+ "throws",
102
+ "transient",
103
+ "true",
104
+ "try",
105
+ "typeof",
106
+ "var",
107
+ "void",
108
+ "volatile",
109
+ "while",
110
+ "with",
111
+ "yield",
112
+ "Array",
113
+ "Date",
114
+ "hasOwnProperty",
115
+ "Infinity",
116
+ "isFinite",
117
+ "isNaN",
118
+ "isPrototypeOf",
119
+ "length",
120
+ "Math",
121
+ "name",
122
+ "NaN",
123
+ "Number",
124
+ "Object",
125
+ "prototype",
126
+ "String",
127
+ "toString",
128
+ "undefined",
129
+ "valueOf"
130
+ ]);
131
+ /**
132
+ * Returns `true` when `name` is a syntactically valid JavaScript variable name.
133
+ *
134
+ * @example
135
+ * ```ts
136
+ * isValidVarName('status') // true
137
+ * isValidVarName('class') // false (reserved word)
138
+ * isValidVarName('42foo') // false (starts with digit)
139
+ * ```
140
+ */
141
+ function isValidVarName(name) {
142
+ if (!name || reservedWords.has(name)) return false;
143
+ return isIdentifier(name);
144
+ }
145
+ /**
146
+ * Returns `true` when `name` is syntactically a valid identifier, ignoring reserved words.
147
+ *
148
+ * Reserved words and globals (`class`, `name`, `Date`, …) are valid as bare object-literal keys
149
+ * even though they are not valid variable names, so use this (not {@link isValidVarName}) when
150
+ * deciding whether an object key needs quoting.
151
+ *
152
+ * @example
153
+ * ```ts
154
+ * isIdentifier('name') // true
155
+ * isIdentifier('x-total')// false
156
+ * ```
157
+ */
158
+ function isIdentifier(name) {
159
+ return /^[a-zA-Z_$][a-zA-Z0-9_$]*$/.test(name);
160
+ }
161
+ //#endregion
162
+ //#region ../../internals/utils/src/Url.ts
163
+ function transformParam(raw) {
164
+ return isValidVarName(raw) ? raw : camelCase(raw);
165
+ }
166
+ /**
167
+ * Renders how a grouped `path` object's member is accessed: dot access for a valid
168
+ * identifier, bracket access with the raw name otherwise.
169
+ */
170
+ function groupedAccessor(name) {
171
+ return isValidVarName(name) ? `.${name}` : `[${JSON.stringify(name)}]`;
172
+ }
173
+ function toParamsObject(path, { replacer } = {}) {
174
+ const params = {};
175
+ for (const match of path.matchAll(/\{([^}]+)\}/g)) {
176
+ const param = transformParam(match[1]);
177
+ const key = replacer ? replacer(param) : param;
178
+ params[key] = key;
179
+ }
180
+ return Object.keys(params).length > 0 ? params : null;
181
+ }
182
+ /**
183
+ * Helpers for OpenAPI/Swagger paths, plus a thin wrapper over the native `URL`.
184
+ */
185
+ var Url = class Url {
186
+ /**
187
+ * Converts an OpenAPI/Swagger path to Express-style colon syntax.
188
+ *
189
+ * @example
190
+ * Url.toPath('/pet/{petId}') // '/pet/:petId'
191
+ */
192
+ static toPath(path) {
193
+ return path.replace(/\{([^}]+)\}/g, ":$1");
194
+ }
195
+ /**
196
+ * Converts an OpenAPI/Swagger path to a TypeScript template literal string.
197
+ * `prefix` is prepended inside the literal, and `replacer` transforms each parameter name.
198
+ *
199
+ * @example
200
+ * Url.toTemplateString('/pet/{petId}') // '`/pet/${petId}`'
201
+ *
202
+ * @example
203
+ * Url.toTemplateString('/pet/{petId}', { prefix: 'https://api' }) // '`https://api/pet/${petId}`'
204
+ */
205
+ static toTemplateString(path, { prefix, replacer } = {}) {
206
+ const result = path.split(/\{([^}]+)\}/).map((part, i) => {
207
+ if (i % 2 === 0) return part;
208
+ const param = transformParam(part);
209
+ return `\${${replacer ? replacer(param) : param}}`;
210
+ }).join("");
211
+ return `\`${prefix ?? ""}${result}\``;
212
+ }
213
+ /**
214
+ * Converts an OpenAPI/Swagger path to a template literal that reads each parameter off a
215
+ * grouped `path` request option, e.g. `/pet/{petId}` becomes `` `/pet/${path.petId}` ``.
216
+ * Parameter names are kept exactly as they appear in the OpenAPI path; a name falls back to
217
+ * bracket access (`` path['pet-id'] ``) only when it isn't a valid JS identifier.
218
+ * `prefix` is prepended inside the literal. Shared by generators that pass a grouped `path` object.
219
+ *
220
+ * @example
221
+ * Url.toGroupedTemplateString('/pet/{petId}') // '`/pet/${path.petId}`'
222
+ *
223
+ * @example
224
+ * Url.toGroupedTemplateString('/user/{monetary-account-id}') // '`/user/${path["monetary-account-id"]}`'
225
+ */
226
+ static toGroupedTemplateString(path, { prefix } = {}) {
227
+ const result = path.split(/\{([^}]+)\}/).map((part, i) => i % 2 === 0 ? part : `\${path${groupedAccessor(part)}}`).join("");
228
+ return `\`${prefix ?? ""}${result}\``;
229
+ }
230
+ /**
231
+ * Returns the path and its extracted params as a structured `URLObject`, or as a stringified
232
+ * expression when `stringify` is set.
233
+ *
234
+ * @example
235
+ * Url.toObject('/pet/{petId}')
236
+ * // { url: '/pet/:petId', params: { petId: 'petId' } }
237
+ */
238
+ static toObject(path, { type = "path", replacer, stringify } = {}) {
239
+ const object = {
240
+ url: type === "path" ? Url.toPath(path) : Url.toTemplateString(path, { replacer }),
241
+ params: toParamsObject(path, { replacer })
242
+ };
243
+ if (stringify) {
244
+ if (type === "template") return JSON.stringify(object).replaceAll("'", "").replaceAll(`"`, "");
245
+ if (object.params) return `{ url: '${object.url}', params: ${JSON.stringify(object.params).replaceAll("'", "").replaceAll(`"`, "")} }`;
246
+ return `{ url: '${object.url}' }`;
247
+ }
248
+ return object;
249
+ }
250
+ };
251
+ //#endregion
252
+ //#region src/macros/macroDiscriminatorEnum.ts
253
+ /**
254
+ * Builds a macro that replaces a discriminator property's schema with a string enum of the given
255
+ * values. Object schemas that lack the property are returned unchanged.
256
+ *
257
+ * @example
258
+ * ```ts
259
+ * const macro = macroDiscriminatorEnum({ propertyName: 'type', values: ['dog', 'cat'] })
260
+ * const next = applyMacros(objectSchema, [macro], { depth: 'shallow' })
261
+ * ```
262
+ */
263
+ function macroDiscriminatorEnum({ propertyName, values, enumName }) {
264
+ return ast$1.defineMacro({
265
+ name: "discriminator-enum",
266
+ schema(node) {
267
+ const objectNode = ast$1.narrowSchema(node, "object");
268
+ if (!objectNode?.properties?.length) return void 0;
269
+ if (!objectNode.properties.some((prop) => prop.name === propertyName)) return void 0;
270
+ return ast$1.factory.createSchema({
271
+ ...objectNode,
272
+ properties: objectNode.properties.map((prop) => {
273
+ if (prop.name !== propertyName) return prop;
274
+ return ast$1.factory.createProperty({
275
+ ...prop,
276
+ schema: ast$1.factory.createSchema({
277
+ type: "enum",
278
+ primitive: "string",
279
+ enumValues: values,
280
+ name: enumName,
281
+ readOnly: prop.schema.readOnly,
282
+ writeOnly: prop.schema.writeOnly
283
+ })
284
+ });
285
+ })
286
+ });
287
+ }
288
+ });
289
+ }
290
+ //#endregion
291
+ //#region src/utils/refs.ts
292
+ const plainStringTypes = /* @__PURE__ */ new Set([
293
+ "string",
294
+ "uuid",
295
+ "email",
296
+ "url",
297
+ "datetime"
298
+ ]);
299
+ /**
300
+ * Returns the last path segment of a reference string.
301
+ *
302
+ * @example
303
+ * `extractRefName('#/components/schemas/Pet') // 'Pet'`
304
+ */
305
+ function extractRefName(ref) {
306
+ return ref.split("/").at(-1) ?? ref;
307
+ }
308
+ /**
309
+ * Builds a PascalCase child schema name by joining a parent name and property name.
310
+ * Returns `null` when there is no parent to nest under.
311
+ *
312
+ * @example Nested under a parent
313
+ * `childName('Order', 'shipping_address') // 'OrderShippingAddress'`
314
+ *
315
+ * @example No parent
316
+ * `childName(undefined, 'params') // null`
317
+ */
318
+ function childName(parentName, propName) {
319
+ return parentName ? pascalCase([parentName, propName].join(" ")) : null;
320
+ }
321
+ /**
322
+ * Builds a PascalCase enum name from the parent name, property name, and a suffix, skipping any
323
+ * empty parts.
324
+ *
325
+ * @example
326
+ * `enumPropName('Order', 'status', 'enum') // 'OrderStatusEnum'`
327
+ */
328
+ function enumPropName(parentName, propName, enumSuffix) {
329
+ return pascalCase([
330
+ parentName,
331
+ propName,
332
+ enumSuffix
333
+ ].filter(Boolean).join(" "));
334
+ }
335
+ /**
336
+ * Merges a ref node with its resolved schema, giving usage-site fields precedence.
337
+ *
338
+ * Every field set on the ref node except `kind`, `type`, `name`, `ref`, and `schema` overrides the
339
+ * same field in the resolved `node.schema` (for example `description`, `nullable`, `readOnly`,
340
+ * `deprecated`). Fields left `undefined` on the ref do not shadow the resolved schema. Non-ref
341
+ * nodes and refs without a resolved `schema` are returned unchanged.
342
+ *
343
+ * @example
344
+ * ```ts
345
+ * const ref = ast.factory.createSchema({ type: 'ref', ref: '#/components/schemas/Pet', description: 'A cute pet' })
346
+ * const merged = syncSchemaRef(ref) // merges with resolved Pet schema
347
+ * ```
348
+ */
349
+ function syncSchemaRef(node) {
350
+ const ref = ast$1.narrowSchema(node, "ref");
351
+ if (!ref) return node;
352
+ if (!ref.schema) return node;
353
+ const { kind: _kind, type: _type, name: _name, ref: _ref, schema: _schema, ...overrides } = ref;
354
+ const definedOverrides = Object.fromEntries(Object.entries(overrides).filter(([, v]) => v !== void 0));
355
+ return ast$1.factory.createSchema({
356
+ ...ref.schema,
357
+ ...definedOverrides
358
+ });
359
+ }
360
+ /**
361
+ * Returns `true` when a schema emits as a plain `string` type.
362
+ *
363
+ * Covers `string`, `uuid`, `email`, `url`, and `datetime` types. For `date` and `time`
364
+ * types, returns `true` only when `representation` is `'string'` rather than `'date'`.
365
+ */
366
+ function isStringType(node) {
367
+ if (plainStringTypes.has(node.type)) return true;
368
+ const temporal = ast$1.narrowSchema(node, "date") ?? ast$1.narrowSchema(node, "time");
369
+ if (temporal) return temporal.representation !== "date";
370
+ return false;
371
+ }
372
+ //#endregion
373
+ //#region src/macros/macroEnumName.ts
374
+ /**
375
+ * Builds a macro that names an inline enum schema from its parent and property name. Boolean enums
376
+ * are left anonymous. Non-enum nodes are returned unchanged.
377
+ *
378
+ * @example
379
+ * ```ts
380
+ * const macro = macroEnumName({ parentName: 'Pet', propName: 'status', enumSuffix: 'enum' })
381
+ * const named = applyMacros(propSchema, [macro], { depth: 'shallow' })
382
+ * ```
383
+ */
384
+ function macroEnumName({ parentName, propName, enumSuffix }) {
385
+ return ast$1.defineMacro({
386
+ name: "enum-name",
387
+ schema(node) {
388
+ const enumNode = ast$1.narrowSchema(node, "enum");
389
+ if (enumNode?.primitive === "boolean") return {
390
+ ...node,
391
+ name: null
392
+ };
393
+ if (enumNode) return {
394
+ ...node,
395
+ name: enumPropName(parentName, propName, enumSuffix)
396
+ };
397
+ }
398
+ });
399
+ }
400
+ //#endregion
401
+ //#region src/macros/macroRenameSchema.ts
402
+ /**
403
+ * Builds a macro that renames a schema consistently: the declaration (`name`) and every ref
404
+ * pointing at it (`targetName`) change together, so imports and printed references stay in
405
+ * sync. Renaming only one side by hand produces imports for files that are never generated.
406
+ *
407
+ * @example
408
+ * `const macro = macroRenameSchema({ from: 'Order', to: 'StoreOrder' })`
409
+ */
410
+ function macroRenameSchema({ from, to }) {
411
+ return ast$1.defineMacro({
412
+ name: "rename-schema",
413
+ schema(node) {
414
+ const refNode = ast$1.narrowSchema(node, "ref");
415
+ if (!refNode) return node.name === from ? {
416
+ ...node,
417
+ name: to
418
+ } : void 0;
419
+ const renamesDeclaration = refNode.name === from;
420
+ const renamesTarget = ast$1.resolveRefName(refNode) === from;
421
+ if (!renamesDeclaration && !renamesTarget) return void 0;
422
+ return {
423
+ ...refNode,
424
+ ...renamesDeclaration ? { name: to } : {},
425
+ ...renamesTarget ? { targetName: to } : {}
426
+ };
427
+ }
428
+ });
429
+ }
430
+ //#endregion
431
+ //#region src/macros/macroSimplifyUnion.ts
432
+ /**
433
+ * Scalar primitive schema types used for union simplification and type narrowing.
434
+ */
435
+ const SCALAR_PRIMITIVE_TYPES = /* @__PURE__ */ new Set([
436
+ "string",
437
+ "number",
438
+ "integer",
439
+ "bigint",
440
+ "boolean"
441
+ ]);
442
+ function isScalarPrimitive(type) {
443
+ return SCALAR_PRIMITIVE_TYPES.has(type);
444
+ }
445
+ /**
446
+ * Filters union members, dropping enum members that a broader scalar primitive already covers.
447
+ */
448
+ function simplifyUnionMembers(members) {
449
+ const scalarPrimitives = new Set(members.filter((member) => isScalarPrimitive(member.type)).map((m) => m.type));
450
+ if (!scalarPrimitives.size) return members;
451
+ return members.filter((member) => {
452
+ const enumNode = ast$1.narrowSchema(member, "enum");
453
+ if (!enumNode) return true;
454
+ const primitive = enumNode.primitive;
455
+ if (!primitive) return true;
456
+ if ((enumNode.namedEnumValues?.length ?? enumNode.enumValues?.length ?? 0) <= 1) return true;
457
+ if (scalarPrimitives.has(primitive)) return false;
458
+ if ((primitive === "integer" || primitive === "number") && (scalarPrimitives.has("integer") || scalarPrimitives.has("number"))) return false;
459
+ return true;
460
+ });
461
+ }
462
+ /**
463
+ * Removes union members a broader scalar primitive already covers, such as a multi-value string enum
464
+ * sitting next to a plain `string`. Single-value enums are kept.
465
+ *
466
+ * @example
467
+ * ```ts
468
+ * const next = applyMacros(unionSchema, [macroSimplifyUnion], { depth: 'shallow' })
469
+ * ```
470
+ */
471
+ const macroSimplifyUnion = ast$1.defineMacro({
472
+ name: "simplify-union",
473
+ schema(node) {
474
+ const unionNode = ast$1.narrowSchema(node, "union");
475
+ if (!unionNode?.members?.length) return void 0;
476
+ const simplified = simplifyUnionMembers(unionNode.members);
477
+ if (simplified.length === unionNode.members.length) return void 0;
478
+ return {
479
+ ...unionNode,
480
+ members: simplified
481
+ };
482
+ }
483
+ });
484
+ //#endregion
485
+ //#region src/utils/mergeAdjacentSchemas.ts
486
+ /**
487
+ * Merges a run of adjacent anonymous object members into one. Named or non-object members break the
488
+ * run and pass through unchanged. The merge follows member order, so callers control which members
489
+ * combine by where they place them in the sequence.
490
+ *
491
+ * @example
492
+ * ```ts
493
+ * const merged = [...mergeAdjacentObjectsLazy([objectA, objectB])]
494
+ * ```
495
+ */
496
+ function* mergeAdjacentObjectsLazy(members) {
497
+ let acc;
498
+ for (const member of members) {
499
+ const objectMember = ast$1.narrowSchema(member, "object");
500
+ if (objectMember && !objectMember.name && acc !== void 0) {
501
+ const accObject = ast$1.narrowSchema(acc, "object");
502
+ if (accObject && !accObject.name) {
503
+ acc = ast$1.factory.createSchema({
504
+ ...accObject,
505
+ properties: [...accObject.properties ?? [], ...objectMember.properties ?? []]
506
+ });
507
+ continue;
508
+ }
509
+ }
510
+ if (acc !== void 0) yield acc;
511
+ acc = member;
512
+ }
513
+ if (acc !== void 0) yield acc;
514
+ }
515
+ //#endregion
516
+ //#region src/utils/schemaGraph.ts
517
+ /**
518
+ * Returns `true` when a schema, or anything nested inside it, references a circular schema.
519
+ *
520
+ * Pass `excludeName` to skip refs to a specific schema, which helps when self-references are handled
521
+ * on their own. Pair it with `ast.findCircularSchemas()` to decide where lazy wrappers go.
522
+ *
523
+ * @note Stops at the first matching circular ref.
524
+ */
525
+ function containsCircularRef(node, { circularSchemas, excludeName }) {
526
+ if (!node || circularSchemas.size === 0) return false;
527
+ for (const _ of ast$1.collect(node, { schema(child) {
528
+ if (child.type !== "ref") return null;
529
+ const name = ast$1.resolveRefName(child);
530
+ return name && name !== excludeName && circularSchemas.has(name) ? true : null;
531
+ } })) return true;
532
+ return false;
533
+ }
534
+ //#endregion
535
+ export { Diagnostics, Hookable, Resolver, Url, ast, childName, containsCircularRef, createAdapter, createRenderer, createResolver, createStorage, defineGenerator, defineParser, definePlugin, enumPropName, extractRefName, fsStorage, isStringType, macroDiscriminatorEnum, macroEnumName, macroRenameSchema, macroSimplifyUnion, memoryStorage, mergeAdjacentObjectsLazy, syncSchemaRef };
536
+
537
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":["ast","ast","ast","ast","ast","ast","ast"],"sources":["../../../internals/utils/src/casing.ts","../../../internals/utils/src/reserved.ts","../../../internals/utils/src/Url.ts","../src/macros/macroDiscriminatorEnum.ts","../src/utils/refs.ts","../src/macros/macroEnumName.ts","../src/macros/macroRenameSchema.ts","../src/macros/macroSimplifyUnion.ts","../src/utils/mergeAdjacentSchemas.ts","../src/utils/schemaGraph.ts"],"sourcesContent":["type Options = {\n /**\n * Text prepended before casing is applied.\n */\n prefix?: string\n /**\n * Text appended before casing is applied.\n */\n suffix?: string\n}\n\n/**\n * Shared implementation for camelCase and PascalCase conversion.\n * Splits on common word boundaries (spaces, hyphens, underscores, dots, slashes, colons)\n * and capitalizes each word according to `pascal`.\n *\n * When `pascal` is `true` the first word is also capitalized (PascalCase), otherwise only subsequent words are.\n */\nfunction toCamelOrPascal(text: string, pascal: boolean): string {\n return text\n .trim()\n .replace(/([a-z\\d])([A-Z])/g, '$1 $2')\n .replace(/([A-Z]+)([A-Z][a-z])/g, '$1 $2')\n .replace(/(\\d)([a-z])/g, '$1 $2')\n .split(/[\\s\\-_./\\\\:]+/)\n .filter(Boolean)\n .map((word, i) => {\n if (word.length > 1 && word === word.toUpperCase()) return word\n const head = i === 0 && !pascal ? word.charAt(0).toLowerCase() : word.charAt(0).toUpperCase()\n return head + word.slice(1)\n })\n .join('')\n .replace(/[^a-zA-Z0-9]/g, '')\n}\n\n/**\n * Converts `text` to camelCase.\n *\n * @example Word boundaries\n * `camelCase('hello-world') // 'helloWorld'`\n *\n * @example With a prefix\n * `camelCase('tag', { prefix: 'create' }) // 'createTag'`\n */\nexport function camelCase(text: string, { prefix = '', suffix = '' }: Options = {}): string {\n return toCamelOrPascal(`${prefix} ${text} ${suffix}`, false)\n}\n\n/**\n * Converts `text` to PascalCase.\n *\n * @example Word boundaries\n * `pascalCase('hello-world') // 'HelloWorld'`\n *\n * @example With a suffix\n * `pascalCase('tag', { suffix: 'schema' }) // 'TagSchema'`\n */\nexport function pascalCase(text: string, { prefix = '', suffix = '' }: Options = {}): string {\n return toCamelOrPascal(`${prefix} ${text} ${suffix}`, true)\n}\n","/**\n * JavaScript and Java reserved words.\n * @link https://github.com/jonschlinkert/reserved/blob/master/index.js\n */\nconst reservedWords = new Set([\n 'abstract',\n 'arguments',\n 'boolean',\n 'break',\n 'byte',\n 'case',\n 'catch',\n 'char',\n 'class',\n 'const',\n 'continue',\n 'debugger',\n 'default',\n 'delete',\n 'do',\n 'double',\n 'else',\n 'enum',\n 'eval',\n 'export',\n 'extends',\n 'false',\n 'final',\n 'finally',\n 'float',\n 'for',\n 'function',\n 'goto',\n 'if',\n 'implements',\n 'import',\n 'in',\n 'instanceof',\n 'int',\n 'interface',\n 'let',\n 'long',\n 'native',\n 'new',\n 'null',\n 'package',\n 'private',\n 'protected',\n 'public',\n 'return',\n 'short',\n 'static',\n 'super',\n 'switch',\n 'synchronized',\n 'this',\n 'throw',\n 'throws',\n 'transient',\n 'true',\n 'try',\n 'typeof',\n 'var',\n 'void',\n 'volatile',\n 'while',\n 'with',\n 'yield',\n 'Array',\n 'Date',\n 'hasOwnProperty',\n 'Infinity',\n 'isFinite',\n 'isNaN',\n 'isPrototypeOf',\n 'length',\n 'Math',\n 'name',\n 'NaN',\n 'Number',\n 'Object',\n 'prototype',\n 'String',\n 'toString',\n 'undefined',\n 'valueOf',\n] as const)\n\n/**\n * Returns `true` when `name` is a syntactically valid JavaScript variable name.\n *\n * @example\n * ```ts\n * isValidVarName('status') // true\n * isValidVarName('class') // false (reserved word)\n * isValidVarName('42foo') // false (starts with digit)\n * ```\n */\nexport function isValidVarName(name: string): boolean {\n if (!name || reservedWords.has(name as 'valueOf')) {\n return false\n }\n return isIdentifier(name)\n}\n\n/**\n * Returns `true` when `name` is syntactically a valid identifier, ignoring reserved words.\n *\n * Reserved words and globals (`class`, `name`, `Date`, …) are valid as bare object-literal keys\n * even though they are not valid variable names, so use this (not {@link isValidVarName}) when\n * deciding whether an object key needs quoting.\n *\n * @example\n * ```ts\n * isIdentifier('name') // true\n * isIdentifier('x-total')// false\n * ```\n */\nexport function isIdentifier(name: string): boolean {\n return /^[a-zA-Z_$][a-zA-Z0-9_$]*$/.test(name)\n}\n","import { camelCase } from './casing.ts'\nimport { isValidVarName } from './reserved.ts'\n\ntype URLObject = {\n /**\n * The resolved URL string (Express-style or template literal, depending on context).\n */\n url: string\n /**\n * Extracted path parameters as a key-value map, or `null` when the path has none.\n */\n params: Record<string, string> | null\n}\n\ntype TemplateOptions = {\n /**\n * Literal text prepended inside the template literal, e.g. a base URL.\n */\n prefix?: string | null\n /**\n * Transform applied to each extracted parameter name before interpolation.\n */\n replacer?: (pathParam: string) => string\n}\n\ntype ObjectOptions = {\n /**\n * Controls whether the `url` is rendered as an Express path or a template literal.\n * @default 'path'\n */\n type?: 'path' | 'template'\n /**\n * Transform applied to each extracted parameter name.\n */\n replacer?: (pathParam: string) => string\n /**\n * When `true`, the result is serialized to a string expression instead of a plain object.\n */\n stringify?: boolean\n}\n\nfunction transformParam(raw: string): string {\n return isValidVarName(raw) ? raw : camelCase(raw)\n}\n\n/**\n * Renders how a grouped `path` object's member is accessed: dot access for a valid\n * identifier, bracket access with the raw name otherwise.\n */\nfunction groupedAccessor(name: string): string {\n return isValidVarName(name) ? `.${name}` : `[${JSON.stringify(name)}]`\n}\n\nfunction toParamsObject(path: string, { replacer }: { replacer?: (pathParam: string) => string } = {}): Record<string, string> | null {\n const params: Record<string, string> = {}\n\n for (const match of path.matchAll(/\\{([^}]+)\\}/g)) {\n const param = transformParam(match[1]!)\n const key = replacer ? replacer(param) : param\n params[key] = key\n }\n\n return Object.keys(params).length > 0 ? params : null\n}\n\n/**\n * Helpers for OpenAPI/Swagger paths, plus a thin wrapper over the native `URL`.\n */\nexport class Url {\n /**\n * Converts an OpenAPI/Swagger path to Express-style colon syntax.\n *\n * @example\n * Url.toPath('/pet/{petId}') // '/pet/:petId'\n */\n static toPath(path: string): string {\n return path.replace(/\\{([^}]+)\\}/g, ':$1')\n }\n\n /**\n * Converts an OpenAPI/Swagger path to a TypeScript template literal string.\n * `prefix` is prepended inside the literal, and `replacer` transforms each parameter name.\n *\n * @example\n * Url.toTemplateString('/pet/{petId}') // '`/pet/${petId}`'\n *\n * @example\n * Url.toTemplateString('/pet/{petId}', { prefix: 'https://api' }) // '`https://api/pet/${petId}`'\n */\n static toTemplateString(path: string, { prefix, replacer }: TemplateOptions = {}): string {\n const parts = path.split(/\\{([^}]+)\\}/)\n const result = parts\n .map((part, i) => {\n if (i % 2 === 0) return part\n const param = transformParam(part)\n return `\\${${replacer ? replacer(param) : param}}`\n })\n .join('')\n\n return `\\`${prefix ?? ''}${result}\\``\n }\n\n /**\n * Converts an OpenAPI/Swagger path to a template literal that reads each parameter off a\n * grouped `path` request option, e.g. `/pet/{petId}` becomes `` `/pet/${path.petId}` ``.\n * Parameter names are kept exactly as they appear in the OpenAPI path; a name falls back to\n * bracket access (`` path['pet-id'] ``) only when it isn't a valid JS identifier.\n * `prefix` is prepended inside the literal. Shared by generators that pass a grouped `path` object.\n *\n * @example\n * Url.toGroupedTemplateString('/pet/{petId}') // '`/pet/${path.petId}`'\n *\n * @example\n * Url.toGroupedTemplateString('/user/{monetary-account-id}') // '`/user/${path[\"monetary-account-id\"]}`'\n */\n static toGroupedTemplateString(path: string, { prefix }: { prefix?: string | null } = {}): string {\n const parts = path.split(/\\{([^}]+)\\}/)\n const result = parts.map((part, i) => (i % 2 === 0 ? part : `\\${path${groupedAccessor(part)}}`)).join('')\n\n return `\\`${prefix ?? ''}${result}\\``\n }\n\n /**\n * Returns the path and its extracted params as a structured `URLObject`, or as a stringified\n * expression when `stringify` is set.\n *\n * @example\n * Url.toObject('/pet/{petId}')\n * // { url: '/pet/:petId', params: { petId: 'petId' } }\n */\n static toObject(path: string, { type = 'path', replacer, stringify }: ObjectOptions = {}): URLObject | string {\n const object: URLObject = {\n url: type === 'path' ? Url.toPath(path) : Url.toTemplateString(path, { replacer }),\n params: toParamsObject(path, { replacer }),\n }\n\n if (stringify) {\n if (type === 'template') {\n return JSON.stringify(object).replaceAll(\"'\", '').replaceAll(`\"`, '')\n }\n\n if (object.params) {\n return `{ url: '${object.url}', params: ${JSON.stringify(object.params).replaceAll(\"'\", '').replaceAll(`\"`, '')} }`\n }\n\n return `{ url: '${object.url}' }`\n }\n\n return object\n }\n}\n","import { ast } from '@kubb/ast'\n\ntype Props = {\n propertyName: string\n values: Array<string>\n enumName?: string\n}\n\n/**\n * Builds a macro that replaces a discriminator property's schema with a string enum of the given\n * values. Object schemas that lack the property are returned unchanged.\n *\n * @example\n * ```ts\n * const macro = macroDiscriminatorEnum({ propertyName: 'type', values: ['dog', 'cat'] })\n * const next = applyMacros(objectSchema, [macro], { depth: 'shallow' })\n * ```\n */\nexport function macroDiscriminatorEnum({ propertyName, values, enumName }: Props) {\n return ast.defineMacro({\n name: 'discriminator-enum',\n schema(node) {\n const objectNode = ast.narrowSchema(node, 'object')\n if (!objectNode?.properties?.length) return undefined\n if (!objectNode.properties.some((prop) => prop.name === propertyName)) return undefined\n\n return ast.factory.createSchema({\n ...objectNode,\n properties: objectNode.properties.map((prop) => {\n if (prop.name !== propertyName) return prop\n\n return ast.factory.createProperty({\n ...prop,\n schema: ast.factory.createSchema({\n type: 'enum',\n primitive: 'string',\n enumValues: values,\n name: enumName,\n readOnly: prop.schema.readOnly,\n writeOnly: prop.schema.writeOnly,\n }),\n })\n }),\n })\n },\n })\n}\n","import { ast } from '@kubb/ast'\nimport type { SchemaNode, SchemaType } from '@kubb/ast'\nimport { pascalCase } from '@internals/utils'\n\nconst plainStringTypes = new Set<SchemaType>(['string', 'uuid', 'email', 'url', 'datetime'] as const)\n\n/**\n * Returns the last path segment of a reference string.\n *\n * @example\n * `extractRefName('#/components/schemas/Pet') // 'Pet'`\n */\nexport function extractRefName(ref: string): string {\n return ref.split('/').at(-1) ?? ref\n}\n\n/**\n * Builds a PascalCase child schema name by joining a parent name and property name.\n * Returns `null` when there is no parent to nest under.\n *\n * @example Nested under a parent\n * `childName('Order', 'shipping_address') // 'OrderShippingAddress'`\n *\n * @example No parent\n * `childName(undefined, 'params') // null`\n */\nexport function childName(parentName: string | null | undefined, propName: string): string | null {\n return parentName ? pascalCase([parentName, propName].join(' ')) : null\n}\n\n/**\n * Builds a PascalCase enum name from the parent name, property name, and a suffix, skipping any\n * empty parts.\n *\n * @example\n * `enumPropName('Order', 'status', 'enum') // 'OrderStatusEnum'`\n */\nexport function enumPropName(parentName: string | null | undefined, propName: string, enumSuffix: string): string {\n return pascalCase([parentName, propName, enumSuffix].filter(Boolean).join(' '))\n}\n\n/**\n * Merges a ref node with its resolved schema, giving usage-site fields precedence.\n *\n * Every field set on the ref node except `kind`, `type`, `name`, `ref`, and `schema` overrides the\n * same field in the resolved `node.schema` (for example `description`, `nullable`, `readOnly`,\n * `deprecated`). Fields left `undefined` on the ref do not shadow the resolved schema. Non-ref\n * nodes and refs without a resolved `schema` are returned unchanged.\n *\n * @example\n * ```ts\n * const ref = ast.factory.createSchema({ type: 'ref', ref: '#/components/schemas/Pet', description: 'A cute pet' })\n * const merged = syncSchemaRef(ref) // merges with resolved Pet schema\n * ```\n */\nexport function syncSchemaRef(node: SchemaNode): SchemaNode {\n const ref = ast.narrowSchema(node, 'ref')\n\n if (!ref) return node\n if (!ref.schema) return node\n\n const { kind: _kind, type: _type, name: _name, ref: _ref, schema: _schema, ...overrides } = ref\n\n // Filter out undefined override values so they don't shadow the resolved schema's fields.\n const definedOverrides = Object.fromEntries(Object.entries(overrides).filter(([, v]) => v !== undefined))\n\n return ast.factory.createSchema({ ...ref.schema, ...definedOverrides })\n}\n\n/**\n * Returns `true` when a schema emits as a plain `string` type.\n *\n * Covers `string`, `uuid`, `email`, `url`, and `datetime` types. For `date` and `time`\n * types, returns `true` only when `representation` is `'string'` rather than `'date'`.\n */\nexport function isStringType(node: SchemaNode): boolean {\n if (plainStringTypes.has(node.type)) {\n return true\n }\n\n const temporal = ast.narrowSchema(node, 'date') ?? ast.narrowSchema(node, 'time')\n if (temporal) {\n return temporal.representation !== 'date'\n }\n\n return false\n}\n","import { ast } from '@kubb/ast'\nimport { enumPropName } from '../utils/refs.ts'\n\ntype Props = {\n parentName: string | null | undefined\n propName: string\n enumSuffix: string\n}\n\n/**\n * Builds a macro that names an inline enum schema from its parent and property name. Boolean enums\n * are left anonymous. Non-enum nodes are returned unchanged.\n *\n * @example\n * ```ts\n * const macro = macroEnumName({ parentName: 'Pet', propName: 'status', enumSuffix: 'enum' })\n * const named = applyMacros(propSchema, [macro], { depth: 'shallow' })\n * ```\n */\nexport function macroEnumName({ parentName, propName, enumSuffix }: Props) {\n return ast.defineMacro({\n name: 'enum-name',\n schema(node) {\n const enumNode = ast.narrowSchema(node, 'enum')\n\n if (enumNode?.primitive === 'boolean') return { ...node, name: null }\n if (enumNode) return { ...node, name: enumPropName(parentName, propName, enumSuffix) }\n\n return undefined\n },\n })\n}\n","import { ast } from '@kubb/ast'\n\ntype Props = {\n from: string\n to: string\n}\n\n/**\n * Builds a macro that renames a schema consistently: the declaration (`name`) and every ref\n * pointing at it (`targetName`) change together, so imports and printed references stay in\n * sync. Renaming only one side by hand produces imports for files that are never generated.\n *\n * @example\n * `const macro = macroRenameSchema({ from: 'Order', to: 'StoreOrder' })`\n */\nexport function macroRenameSchema({ from, to }: Props) {\n return ast.defineMacro({\n name: 'rename-schema',\n schema(node) {\n const refNode = ast.narrowSchema(node, 'ref')\n\n if (!refNode) {\n return node.name === from ? { ...node, name: to } : undefined\n }\n\n const renamesDeclaration = refNode.name === from\n const renamesTarget = ast.resolveRefName(refNode) === from\n if (!renamesDeclaration && !renamesTarget) return undefined\n\n return {\n ...refNode,\n ...(renamesDeclaration ? { name: to } : {}),\n ...(renamesTarget ? { targetName: to } : {}),\n }\n },\n })\n}\n","import { ast } from '@kubb/ast'\nimport type { SchemaNode } from '@kubb/ast'\n\ntype ScalarPrimitive = 'string' | 'number' | 'integer' | 'bigint' | 'boolean'\n\n/**\n * Scalar primitive schema types used for union simplification and type narrowing.\n */\nconst SCALAR_PRIMITIVE_TYPES = new Set<ScalarPrimitive>(['string', 'number', 'integer', 'bigint', 'boolean'])\n\nfunction isScalarPrimitive(type: string): type is ScalarPrimitive {\n return SCALAR_PRIMITIVE_TYPES.has(type as ScalarPrimitive)\n}\n\n/**\n * Filters union members, dropping enum members that a broader scalar primitive already covers.\n */\nfunction simplifyUnionMembers(members: Array<SchemaNode>): Array<SchemaNode> {\n const scalarPrimitives = new Set(members.filter((member) => isScalarPrimitive(member.type)).map((m) => m.type))\n if (!scalarPrimitives.size) return members\n\n return members.filter((member) => {\n const enumNode = ast.narrowSchema(member, 'enum')\n if (!enumNode) return true\n\n const primitive = enumNode.primitive\n if (!primitive) return true\n\n const enumValueCount = enumNode.namedEnumValues?.length ?? enumNode.enumValues?.length ?? 0\n if (enumValueCount <= 1) return true\n\n if (scalarPrimitives.has(primitive)) return false\n if ((primitive === 'integer' || primitive === 'number') && (scalarPrimitives.has('integer') || scalarPrimitives.has('number'))) return false\n\n return true\n })\n}\n\n/**\n * Removes union members a broader scalar primitive already covers, such as a multi-value string enum\n * sitting next to a plain `string`. Single-value enums are kept.\n *\n * @example\n * ```ts\n * const next = applyMacros(unionSchema, [macroSimplifyUnion], { depth: 'shallow' })\n * ```\n */\nexport const macroSimplifyUnion = ast.defineMacro({\n name: 'simplify-union',\n schema(node) {\n const unionNode = ast.narrowSchema(node, 'union')\n if (!unionNode?.members?.length) return undefined\n\n const simplified = simplifyUnionMembers(unionNode.members)\n if (simplified.length === unionNode.members.length) return undefined\n\n return { ...unionNode, members: simplified }\n },\n})\n","import { ast } from '@kubb/ast'\nimport type { SchemaNode } from '@kubb/ast'\n\n/**\n * Merges a run of adjacent anonymous object members into one. Named or non-object members break the\n * run and pass through unchanged. The merge follows member order, so callers control which members\n * combine by where they place them in the sequence.\n *\n * @example\n * ```ts\n * const merged = [...mergeAdjacentObjectsLazy([objectA, objectB])]\n * ```\n */\nexport function* mergeAdjacentObjectsLazy(members: Iterable<SchemaNode>): Generator<SchemaNode, void, undefined> {\n let acc: SchemaNode | undefined\n\n for (const member of members) {\n const objectMember = ast.narrowSchema(member, 'object')\n if (objectMember && !objectMember.name && acc !== undefined) {\n const accObject = ast.narrowSchema(acc, 'object')\n if (accObject && !accObject.name) {\n acc = ast.factory.createSchema({\n ...accObject,\n properties: [...(accObject.properties ?? []), ...(objectMember.properties ?? [])],\n })\n continue\n }\n }\n if (acc !== undefined) yield acc\n acc = member\n }\n\n if (acc !== undefined) yield acc\n}\n","import { ast } from '@kubb/ast'\nimport type { SchemaNode } from '@kubb/ast'\n\n/**\n * Returns `true` when a schema, or anything nested inside it, references a circular schema.\n *\n * Pass `excludeName` to skip refs to a specific schema, which helps when self-references are handled\n * on their own. Pair it with `ast.findCircularSchemas()` to decide where lazy wrappers go.\n *\n * @note Stops at the first matching circular ref.\n */\nexport function containsCircularRef(\n node: SchemaNode | undefined,\n { circularSchemas, excludeName }: { circularSchemas: ReadonlySet<string>; excludeName?: string },\n): boolean {\n if (!node || circularSchemas.size === 0) return false\n\n for (const _ of ast.collect<true>(node, {\n schema(child) {\n if (child.type !== 'ref') return null\n const name = ast.resolveRefName(child)\n return name && name !== excludeName && circularSchemas.has(name) ? true : null\n },\n })) {\n return true\n }\n\n return false\n}\n"],"mappings":"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"}
@@ -0,0 +1,8 @@
1
+ //#region \0rolldown/runtime.js
2
+ var __defProp = Object.defineProperty;
3
+ var __name = (target, value) => __defProp(target, "name", {
4
+ value,
5
+ configurable: true
6
+ });
7
+ //#endregion
8
+ export { __name as t };
@@ -0,0 +1,9 @@
1
+ var _kubb_core_mocks = require("@kubb/core/mocks");
2
+ Object.keys(_kubb_core_mocks).forEach(function(k) {
3
+ if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
4
+ enumerable: true,
5
+ get: function() {
6
+ return _kubb_core_mocks[k];
7
+ }
8
+ });
9
+ });
@@ -0,0 +1 @@
1
+ export * from "@kubb/core/mocks";
@@ -0,0 +1,2 @@
1
+ export * from "@kubb/core/mocks";
2
+ export {};