@kubb/swagger-ts 1.15.0-canary.20231023T140739 → 1.15.0-canary.20231024T104451
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.cjs +103 -76
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -17
- package/dist/index.d.ts +20 -17
- package/dist/index.js +103 -77
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
4
4
|
|
5
|
-
var
|
5
|
+
var path = require('path');
|
6
6
|
var core = require('@kubb/core');
|
7
7
|
var swagger = require('@kubb/swagger');
|
8
8
|
var changeCase = require('change-case');
|
@@ -11,7 +11,7 @@ var ts = require('typescript');
|
|
11
11
|
|
12
12
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
13
13
|
|
14
|
-
var
|
14
|
+
var path__default = /*#__PURE__*/_interopDefault(path);
|
15
15
|
var ts__default = /*#__PURE__*/_interopDefault(ts);
|
16
16
|
|
17
17
|
// src/plugin.ts
|
@@ -27,24 +27,29 @@ var keywordTypeNodes = {
|
|
27
27
|
null: factory.createLiteralTypeNode(factory.createToken(ts__default.default.SyntaxKind.NullKeyword))
|
28
28
|
};
|
29
29
|
function resolve(props) {
|
30
|
-
return swagger.resolve({ ...props
|
30
|
+
return swagger.resolve({ pluginKey, ...props });
|
31
31
|
}
|
32
32
|
|
33
33
|
// src/generators/TypeGenerator.ts
|
34
34
|
var { factory: factory2 } = ts__default.default;
|
35
|
-
var TypeGenerator = class
|
36
|
-
// Collect the types of all referenced schemas so we can export them later
|
37
|
-
static usedEnumNames = {};
|
35
|
+
var TypeGenerator = class extends core.SchemaGenerator {
|
38
36
|
refs = {};
|
39
37
|
extraNodes = [];
|
40
38
|
aliases = [];
|
41
39
|
// Keep track of already used type aliases
|
42
|
-
usedAliasNames = {};
|
43
|
-
caseOptions = {
|
40
|
+
#usedAliasNames = {};
|
41
|
+
#caseOptions = {
|
44
42
|
delimiter: "",
|
45
43
|
stripRegexp: /[^A-Z0-9$]/gi
|
46
44
|
};
|
47
|
-
constructor(options = {
|
45
|
+
constructor(options = {
|
46
|
+
usedEnumNames: {},
|
47
|
+
withJSDocs: true,
|
48
|
+
resolveName: ({ name }) => name,
|
49
|
+
enumType: "asConst",
|
50
|
+
dateType: "string",
|
51
|
+
optionalType: "questionToken"
|
52
|
+
}) {
|
48
53
|
super(options);
|
49
54
|
return this;
|
50
55
|
}
|
@@ -61,7 +66,7 @@ var TypeGenerator = class _TypeGenerator extends core.SchemaGenerator {
|
|
61
66
|
}
|
62
67
|
const node = parser.createTypeAliasDeclaration({
|
63
68
|
modifiers: [parser.modifiers.export],
|
64
|
-
name: this.options.resolveName({ name: baseName
|
69
|
+
name: this.options.resolveName({ name: baseName }) || baseName,
|
65
70
|
type: keysToOmit?.length ? parser.createOmitDeclaration({ keys: keysToOmit, type, nonNullable: true }) : type
|
66
71
|
});
|
67
72
|
if (description) {
|
@@ -107,7 +112,7 @@ var TypeGenerator = class _TypeGenerator extends core.SchemaGenerator {
|
|
107
112
|
const members = Object.keys(properties).map((name) => {
|
108
113
|
const schema = properties[name];
|
109
114
|
const isRequired = required && required.includes(name);
|
110
|
-
let type = this.#getTypeFromSchema(schema, this.options.resolveName({ name: `${baseName || ""} ${name}
|
115
|
+
let type = this.#getTypeFromSchema(schema, this.options.resolveName({ name: `${baseName || ""} ${name}` }));
|
111
116
|
if (!type) {
|
112
117
|
return null;
|
113
118
|
}
|
@@ -146,14 +151,14 @@ var TypeGenerator = class _TypeGenerator extends core.SchemaGenerator {
|
|
146
151
|
/**
|
147
152
|
* Create a type alias for the schema referenced by the given ReferenceObject
|
148
153
|
*/
|
149
|
-
#getRefAlias(obj,
|
154
|
+
#getRefAlias(obj, _baseName) {
|
150
155
|
const { $ref } = obj;
|
151
156
|
let ref = this.refs[$ref];
|
152
157
|
if (ref) {
|
153
158
|
return factory2.createTypeReferenceNode(ref.propertyName, void 0);
|
154
159
|
}
|
155
|
-
const originalName = core.getUniqueName($ref.replace(/.+\//, ""), this
|
156
|
-
const propertyName = this.options.resolveName({ name: originalName
|
160
|
+
const originalName = core.getUniqueName($ref.replace(/.+\//, ""), this.#usedAliasNames);
|
161
|
+
const propertyName = this.options.resolveName({ name: originalName }) || originalName;
|
157
162
|
ref = this.refs[$ref] = {
|
158
163
|
propertyName,
|
159
164
|
originalName
|
@@ -223,7 +228,7 @@ var TypeGenerator = class _TypeGenerator extends core.SchemaGenerator {
|
|
223
228
|
return and;
|
224
229
|
}
|
225
230
|
if (schema.enum && baseName) {
|
226
|
-
const enumName = core.getUniqueName(baseName,
|
231
|
+
const enumName = core.getUniqueName(baseName, this.options.usedEnumNames);
|
227
232
|
let enums = [...new Set(schema.enum)].map((key) => [key, key]);
|
228
233
|
if ("x-enumNames" in schema) {
|
229
234
|
enums = [...new Set(schema["x-enumNames"])].map((key, index) => {
|
@@ -232,13 +237,13 @@ var TypeGenerator = class _TypeGenerator extends core.SchemaGenerator {
|
|
232
237
|
}
|
233
238
|
this.extraNodes.push(
|
234
239
|
...parser.createEnumDeclaration({
|
235
|
-
name: changeCase.camelCase(enumName, this
|
236
|
-
typeName: this.options.resolveName({ name: enumName
|
240
|
+
name: changeCase.camelCase(enumName, this.#caseOptions),
|
241
|
+
typeName: this.options.resolveName({ name: enumName }),
|
237
242
|
enums,
|
238
243
|
type: this.options.enumType
|
239
244
|
})
|
240
245
|
);
|
241
|
-
return factory2.createTypeReferenceNode(this.options.resolveName({ name: enumName
|
246
|
+
return factory2.createTypeReferenceNode(this.options.resolveName({ name: enumName }), void 0);
|
242
247
|
}
|
243
248
|
if (schema.enum) {
|
244
249
|
return parser.createUnionDeclaration({
|
@@ -295,15 +300,6 @@ var TypeGenerator = class _TypeGenerator extends core.SchemaGenerator {
|
|
295
300
|
};
|
296
301
|
|
297
302
|
// src/builders/TypeBuilder.ts
|
298
|
-
function refsSorter(a, b) {
|
299
|
-
if (Object.keys(a.import.refs)?.length < Object.keys(b.import.refs)?.length) {
|
300
|
-
return -1;
|
301
|
-
}
|
302
|
-
if (Object.keys(a.import.refs)?.length > Object.keys(b.import.refs)?.length) {
|
303
|
-
return 1;
|
304
|
-
}
|
305
|
-
return 0;
|
306
|
-
}
|
307
303
|
var TypeBuilder = class extends swagger.OasBuilder {
|
308
304
|
configure(options) {
|
309
305
|
if (options) {
|
@@ -318,6 +314,7 @@ var TypeBuilder = class extends swagger.OasBuilder {
|
|
318
314
|
const codes = [];
|
319
315
|
const generated = this.items.filter((operationSchema) => name ? operationSchema.name === name : true).sort(core.nameSorter).map((operationSchema) => {
|
320
316
|
const generator = new TypeGenerator({
|
317
|
+
usedEnumNames: this.options.usedEnumNames,
|
321
318
|
withJSDocs: this.options.withJSDocs,
|
322
319
|
resolveName: this.options.resolveName,
|
323
320
|
enumType: this.options.enumType,
|
@@ -337,7 +334,7 @@ var TypeBuilder = class extends swagger.OasBuilder {
|
|
337
334
|
},
|
338
335
|
sources
|
339
336
|
};
|
340
|
-
}).sort(refsSorter);
|
337
|
+
}).sort(swagger.refsSorter);
|
341
338
|
generated.forEach((item) => {
|
342
339
|
codes.push(parser.print(item.sources));
|
343
340
|
});
|
@@ -355,38 +352,39 @@ var TypeBuilder = class extends swagger.OasBuilder {
|
|
355
352
|
codes.unshift(parser.print(nodes));
|
356
353
|
}
|
357
354
|
}
|
358
|
-
return core.combineCodes(codes);
|
355
|
+
return core.transformers.combineCodes(codes);
|
359
356
|
}
|
360
357
|
};
|
361
358
|
var OperationGenerator = class extends swagger.OperationGenerator {
|
362
359
|
resolve(operation) {
|
363
|
-
const { pluginManager } = this.context;
|
360
|
+
const { pluginManager, plugin } = this.context;
|
364
361
|
return swagger.resolve({
|
365
362
|
operation,
|
366
363
|
resolveName: pluginManager.resolveName,
|
367
364
|
resolvePath: pluginManager.resolvePath,
|
368
|
-
|
365
|
+
pluginKey: plugin?.key
|
369
366
|
});
|
370
367
|
}
|
371
368
|
async all() {
|
372
369
|
return null;
|
373
370
|
}
|
374
371
|
async get(operation, schemas, options) {
|
375
|
-
const { mode, enumType, dateType, optionalType } = options;
|
376
|
-
const { pluginManager } = this.context;
|
372
|
+
const { mode, enumType, dateType, optionalType, usedEnumNames } = options;
|
373
|
+
const { pluginManager, plugin } = this.context;
|
377
374
|
const type = this.resolve(operation);
|
378
375
|
const fileResolver = (name) => {
|
379
|
-
const root = pluginManager.resolvePath({ baseName: type.baseName,
|
376
|
+
const root = pluginManager.resolvePath({ baseName: type.baseName, pluginKey: plugin?.key, options: { tag: operation.getTags()[0]?.name } });
|
380
377
|
const resolvedTypeId = pluginManager.resolvePath({
|
381
378
|
baseName: `${name}.ts`,
|
382
|
-
|
379
|
+
pluginKey: plugin?.key
|
383
380
|
});
|
384
381
|
return core.getRelativePath(root, resolvedTypeId);
|
385
382
|
};
|
386
383
|
const source = new TypeBuilder({
|
384
|
+
usedEnumNames,
|
387
385
|
fileResolver: mode === "file" ? void 0 : fileResolver,
|
388
386
|
withJSDocs: true,
|
389
|
-
resolveName: pluginManager.resolveName,
|
387
|
+
resolveName: (params) => pluginManager.resolveName({ ...params, pluginKey: plugin?.key }),
|
390
388
|
enumType,
|
391
389
|
optionalType,
|
392
390
|
dateType
|
@@ -396,27 +394,28 @@ var OperationGenerator = class extends swagger.OperationGenerator {
|
|
396
394
|
baseName: type.baseName,
|
397
395
|
source,
|
398
396
|
meta: {
|
399
|
-
|
397
|
+
pluginKey: plugin.key,
|
400
398
|
tag: operation.getTags()[0]?.name
|
401
399
|
}
|
402
400
|
};
|
403
401
|
}
|
404
402
|
async post(operation, schemas, options) {
|
405
|
-
const { mode, enumType, dateType, optionalType } = options;
|
406
|
-
const { pluginManager } = this.context;
|
403
|
+
const { mode, enumType, dateType, optionalType, usedEnumNames } = options;
|
404
|
+
const { pluginManager, plugin } = this.context;
|
407
405
|
const type = this.resolve(operation);
|
408
406
|
const fileResolver = (name) => {
|
409
|
-
const root = pluginManager.resolvePath({ baseName: type.baseName,
|
407
|
+
const root = pluginManager.resolvePath({ baseName: type.baseName, pluginKey: plugin?.key, options: { tag: operation.getTags()[0]?.name } });
|
410
408
|
const resolvedTypeId = pluginManager.resolvePath({
|
411
409
|
baseName: `${name}.ts`,
|
412
|
-
|
410
|
+
pluginKey: plugin?.key
|
413
411
|
});
|
414
412
|
return core.getRelativePath(root, resolvedTypeId);
|
415
413
|
};
|
416
414
|
const source = new TypeBuilder({
|
415
|
+
usedEnumNames,
|
417
416
|
fileResolver: mode === "file" ? void 0 : fileResolver,
|
418
417
|
withJSDocs: true,
|
419
|
-
resolveName: pluginManager.resolveName,
|
418
|
+
resolveName: (params) => pluginManager.resolveName({ ...params, pluginKey: plugin?.key }),
|
420
419
|
enumType,
|
421
420
|
optionalType,
|
422
421
|
dateType
|
@@ -426,7 +425,7 @@ var OperationGenerator = class extends swagger.OperationGenerator {
|
|
426
425
|
baseName: type.baseName,
|
427
426
|
source,
|
428
427
|
meta: {
|
429
|
-
|
428
|
+
pluginKey: plugin.key,
|
430
429
|
tag: operation.getTags()[0]?.name
|
431
430
|
}
|
432
431
|
};
|
@@ -444,6 +443,7 @@ var OperationGenerator = class extends swagger.OperationGenerator {
|
|
444
443
|
|
445
444
|
// src/plugin.ts
|
446
445
|
var pluginName = "swagger-ts";
|
446
|
+
var pluginKey = ["schema", pluginName];
|
447
447
|
var definePlugin = core.createPlugin((options) => {
|
448
448
|
const {
|
449
449
|
output = "types",
|
@@ -453,7 +453,8 @@ var definePlugin = core.createPlugin((options) => {
|
|
453
453
|
enumType = "asConst",
|
454
454
|
dateType = "string",
|
455
455
|
optionalType = "questionToken",
|
456
|
-
transformers = {}
|
456
|
+
transformers: transformers2 = {},
|
457
|
+
exportAs
|
457
458
|
} = options;
|
458
459
|
const template = groupBy?.output ? groupBy.output : `${output}/{{tag}}Controller`;
|
459
460
|
let pluginsOptions;
|
@@ -466,42 +467,44 @@ var definePlugin = core.createPlugin((options) => {
|
|
466
467
|
return true;
|
467
468
|
},
|
468
469
|
resolvePath(baseName, directory, options2) {
|
469
|
-
const root =
|
470
|
-
const mode = core.
|
470
|
+
const root = path__default.default.resolve(this.config.root, this.config.output.path);
|
471
|
+
const mode = core.FileManager.getMode(path__default.default.resolve(root, output));
|
471
472
|
if (mode === "file") {
|
472
|
-
return
|
473
|
+
return path__default.default.resolve(root, output);
|
473
474
|
}
|
474
475
|
if (options2?.tag && groupBy?.type === "tag") {
|
475
476
|
const tag = changeCase.camelCase(options2.tag, { delimiter: "", transform: changeCase.camelCaseTransformMerge });
|
476
|
-
return
|
477
|
+
return path__default.default.resolve(root, core.renderTemplate(template, { tag }), baseName);
|
477
478
|
}
|
478
|
-
return
|
479
|
+
return path__default.default.resolve(root, output, baseName);
|
479
480
|
},
|
480
481
|
resolveName(name) {
|
481
482
|
const resolvedName = changeCase.pascalCase(name, { delimiter: "", stripRegexp: /[^A-Z0-9$]/gi, transform: changeCase.pascalCaseTransformMerge });
|
482
|
-
return
|
483
|
+
return transformers2?.name?.(resolvedName) || resolvedName;
|
483
484
|
},
|
484
|
-
async writeFile(source,
|
485
|
-
if (!
|
485
|
+
async writeFile(source, writePath) {
|
486
|
+
if (!writePath.endsWith(".ts") || !source) {
|
486
487
|
return;
|
487
488
|
}
|
488
|
-
|
489
|
+
return this.fileManager.write(source, writePath);
|
489
490
|
},
|
490
491
|
async buildStart() {
|
491
492
|
const [swaggerPlugin] = pluginsOptions;
|
492
493
|
const oas = await swaggerPlugin.api.getOas();
|
493
494
|
const schemas = await swaggerPlugin.api.getSchemas();
|
494
|
-
const root =
|
495
|
-
const mode = core.
|
495
|
+
const root = path__default.default.resolve(this.config.root, this.config.output.path);
|
496
|
+
const mode = core.FileManager.getMode(path__default.default.resolve(root, output));
|
497
|
+
const usedEnumNames = {};
|
496
498
|
if (mode === "directory") {
|
497
499
|
const builder = await new TypeBuilder({
|
498
|
-
|
500
|
+
usedEnumNames,
|
501
|
+
resolveName: (params) => this.resolveName({ pluginKey: this.plugin.key, ...params }),
|
499
502
|
fileResolver: (name) => {
|
500
503
|
const resolvedTypeId = this.resolvePath({
|
501
504
|
baseName: `${name}.ts`,
|
502
|
-
|
505
|
+
pluginKey: this.plugin.key
|
503
506
|
});
|
504
|
-
const root2 = this.resolvePath({ baseName: ``,
|
507
|
+
const root2 = this.resolvePath({ baseName: ``, pluginKey: this.plugin.key });
|
505
508
|
return core.getRelativePath(root2, resolvedTypeId);
|
506
509
|
},
|
507
510
|
withJSDocs: true,
|
@@ -516,16 +519,16 @@ var definePlugin = core.createPlugin((options) => {
|
|
516
519
|
});
|
517
520
|
});
|
518
521
|
const mapFolderSchema = async ([name]) => {
|
519
|
-
const
|
520
|
-
if (!
|
522
|
+
const resolvedPath = this.resolvePath({ baseName: `${this.resolveName({ name, pluginKey: this.plugin.key })}.ts`, pluginKey: this.plugin.key });
|
523
|
+
if (!resolvedPath) {
|
521
524
|
return null;
|
522
525
|
}
|
523
526
|
return this.addFile({
|
524
|
-
path,
|
525
|
-
baseName: `${this.resolveName({ name,
|
527
|
+
path: resolvedPath,
|
528
|
+
baseName: `${this.resolveName({ name, pluginKey: this.plugin.key })}.ts`,
|
526
529
|
source: builder.print(name),
|
527
530
|
meta: {
|
528
|
-
|
531
|
+
pluginKey: this.plugin.key
|
529
532
|
}
|
530
533
|
});
|
531
534
|
};
|
@@ -534,7 +537,8 @@ var definePlugin = core.createPlugin((options) => {
|
|
534
537
|
}
|
535
538
|
if (mode === "file") {
|
536
539
|
const builder = new TypeBuilder({
|
537
|
-
|
540
|
+
usedEnumNames,
|
541
|
+
resolveName: (params) => this.resolveName({ pluginKey: this.plugin.key, ...params }),
|
538
542
|
withJSDocs: true,
|
539
543
|
enumType,
|
540
544
|
dateType,
|
@@ -546,16 +550,16 @@ var definePlugin = core.createPlugin((options) => {
|
|
546
550
|
name
|
547
551
|
});
|
548
552
|
});
|
549
|
-
const
|
550
|
-
if (!
|
553
|
+
const resolvedPath = this.resolvePath({ baseName: "", pluginKey: this.plugin.key });
|
554
|
+
if (!resolvedPath) {
|
551
555
|
return;
|
552
556
|
}
|
553
557
|
await this.addFile({
|
554
|
-
path,
|
555
|
-
baseName: `${this.resolveName({ name: output,
|
558
|
+
path: resolvedPath,
|
559
|
+
baseName: `${this.resolveName({ name: output, pluginKey: this.plugin.key })}.ts`,
|
556
560
|
source: builder.print(),
|
557
561
|
meta: {
|
558
|
-
|
562
|
+
pluginKey: this.plugin.key
|
559
563
|
}
|
560
564
|
});
|
561
565
|
}
|
@@ -564,11 +568,13 @@ var definePlugin = core.createPlugin((options) => {
|
|
564
568
|
mode,
|
565
569
|
enumType,
|
566
570
|
dateType,
|
567
|
-
optionalType
|
571
|
+
optionalType,
|
572
|
+
usedEnumNames
|
568
573
|
},
|
569
574
|
{
|
570
575
|
oas,
|
571
576
|
pluginManager: this.pluginManager,
|
577
|
+
plugin: this.plugin,
|
572
578
|
contentType: swaggerPlugin.api.contentType,
|
573
579
|
skipBy,
|
574
580
|
overrideBy
|
@@ -581,16 +587,36 @@ var definePlugin = core.createPlugin((options) => {
|
|
581
587
|
if (this.config.output.write === false) {
|
582
588
|
return;
|
583
589
|
}
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
590
|
+
const root = path__default.default.resolve(this.config.root, this.config.output.path);
|
591
|
+
await this.fileManager.addIndexes({
|
592
|
+
root,
|
593
|
+
extName: ".ts",
|
594
|
+
meta: { pluginKey: this.plugin.key },
|
595
|
+
options: {
|
596
|
+
map: (file) => {
|
597
|
+
return {
|
598
|
+
...file,
|
599
|
+
exports: file.exports?.map((item) => {
|
600
|
+
if (exportAs) {
|
601
|
+
return {
|
602
|
+
...item,
|
603
|
+
name: exportAs,
|
604
|
+
asAlias: !!exportAs
|
605
|
+
};
|
606
|
+
}
|
607
|
+
return item;
|
608
|
+
})
|
609
|
+
};
|
610
|
+
},
|
611
|
+
output,
|
612
|
+
isTypeOnly: true
|
613
|
+
}
|
614
|
+
});
|
589
615
|
}
|
590
616
|
};
|
591
617
|
});
|
592
618
|
function useResolve(props = {}) {
|
593
|
-
return swagger.useResolve({
|
619
|
+
return swagger.useResolve({ pluginKey, ...props });
|
594
620
|
}
|
595
621
|
|
596
622
|
// src/index.ts
|
@@ -602,6 +628,7 @@ exports.TypeGenerator = TypeGenerator;
|
|
602
628
|
exports.default = src_default;
|
603
629
|
exports.definePlugin = definePlugin;
|
604
630
|
exports.keywordTypeNodes = keywordTypeNodes;
|
631
|
+
exports.pluginKey = pluginKey;
|
605
632
|
exports.pluginName = pluginName;
|
606
633
|
exports.resolve = resolve;
|
607
634
|
exports.useResolve = useResolve;
|
package/dist/index.cjs.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/plugin.ts","../src/builders/TypeBuilder.ts","../src/generators/TypeGenerator.ts","../src/utils/keywordTypeNodes.ts","../src/utils/resolve.ts","../src/generators/OperationGenerator.ts","../src/hooks/useResolve.ts","../src/index.ts"],"names":["getRelativePath","camelCase","ts","factory","node","resolve","options","root"],"mappings":"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","sourcesContent":["import pathParser from 'node:path'\n\nimport { createPlugin, getDependedPlugins, getPathMode, getRelativePath, renderTemplate, timeout } from '@kubb/core'\nimport { pluginName as swaggerPluginName } from '@kubb/swagger'\n\nimport { camelCase, camelCaseTransformMerge, pascalCase, pascalCaseTransformMerge } from 'change-case'\n\nimport { TypeBuilder } from './builders/index.ts'\nimport { OperationGenerator } from './generators/index.ts'\n\nimport type { OpenAPIV3, PluginOptions as SwaggerPluginOptions } from '@kubb/swagger'\nimport type { PluginOptions } from './types.ts'\n\nexport const pluginName: PluginOptions['name'] = 'swagger-ts' as const\n\nexport const definePlugin = createPlugin<PluginOptions>((options) => {\n const {\n output = 'types',\n groupBy,\n skipBy = [],\n overrideBy = [],\n enumType = 'asConst',\n dateType = 'string',\n optionalType = 'questionToken',\n transformers = {},\n } = options\n const template = groupBy?.output ? groupBy.output : `${output}/{{tag}}Controller`\n let pluginsOptions: [SwaggerPluginOptions]\n\n return {\n name: pluginName,\n options,\n kind: 'schema',\n validate(plugins) {\n pluginsOptions = getDependedPlugins<SwaggerPluginOptions>(plugins, [swaggerPluginName])\n\n return true\n },\n resolvePath(baseName, directory, options) {\n const root = pathParser.resolve(this.config.root, this.config.output.path)\n const mode = getPathMode(pathParser.resolve(root, output))\n\n if (mode === 'file') {\n /**\n * when output is a file then we will always append to the same file(output file), see fileManager.addOrAppend\n * Other plugins then need to call addOrAppend instead of just add from the fileManager class\n */\n return pathParser.resolve(root, output)\n }\n\n if (options?.tag && groupBy?.type === 'tag') {\n const tag = camelCase(options.tag, { delimiter: '', transform: camelCaseTransformMerge })\n\n return pathParser.resolve(root, renderTemplate(template, { tag }), baseName)\n }\n\n return pathParser.resolve(root, output, baseName)\n },\n resolveName(name) {\n const resolvedName = pascalCase(name, { delimiter: '', stripRegexp: /[^A-Z0-9$]/gi, transform: pascalCaseTransformMerge })\n\n return transformers?.name?.(resolvedName) || resolvedName\n },\n async writeFile(source, path) {\n if (!path.endsWith('.ts') || !source) {\n return\n }\n\n await this.fileManager.write(source, path)\n },\n async buildStart() {\n const [swaggerPlugin] = pluginsOptions\n\n const oas = await swaggerPlugin.api.getOas()\n\n const schemas = await swaggerPlugin.api.getSchemas()\n const root = pathParser.resolve(this.config.root, this.config.output.path)\n const mode = getPathMode(pathParser.resolve(root, output))\n\n if (mode === 'directory') {\n const builder = await new TypeBuilder({\n resolveName: (params) => this.resolveName({ pluginName, ...params }),\n fileResolver: (name) => {\n const resolvedTypeId = this.resolvePath({\n baseName: `${name}.ts`,\n pluginName,\n })\n\n const root = this.resolvePath({ baseName: ``, pluginName })\n\n return getRelativePath(root, resolvedTypeId)\n },\n withJSDocs: true,\n enumType,\n dateType,\n optionalType,\n }).configure()\n Object.entries(schemas).forEach(([name, schema]: [string, OpenAPIV3.SchemaObject]) => {\n // generate and pass through new code back to the core so it can be write to that file\n return builder.add({\n schema,\n name,\n })\n })\n\n const mapFolderSchema = async ([name]: [string, OpenAPIV3.SchemaObject]) => {\n const path = this.resolvePath({ baseName: `${this.resolveName({ name, pluginName })}.ts`, pluginName })\n\n if (!path) {\n return null\n }\n\n return this.addFile({\n path,\n baseName: `${this.resolveName({ name, pluginName })}.ts`,\n source: builder.print(name),\n meta: {\n pluginName,\n },\n })\n }\n\n const promises = Object.entries(schemas).map(mapFolderSchema)\n\n await Promise.all(promises)\n }\n\n if (mode === 'file') {\n // outside the loop because we need to add files to just one instance to have the correct sorting, see refsSorter\n const builder = new TypeBuilder({\n resolveName: (params) => this.resolveName({ pluginName, ...params }),\n withJSDocs: true,\n enumType,\n dateType,\n optionalType,\n }).configure()\n Object.entries(schemas).forEach(([name, schema]: [string, OpenAPIV3.SchemaObject]) => {\n // generate and pass through new code back to the core so it can be write to that file\n return builder.add({\n schema,\n name,\n })\n })\n\n const path = this.resolvePath({ baseName: '', pluginName })\n if (!path) {\n return\n }\n\n await this.addFile({\n path,\n baseName: `${this.resolveName({ name: output, pluginName })}.ts`,\n source: builder.print(),\n meta: {\n pluginName,\n },\n })\n }\n\n const operationGenerator = new OperationGenerator(\n {\n mode,\n enumType,\n dateType,\n optionalType,\n },\n {\n oas,\n pluginManager: this.pluginManager,\n contentType: swaggerPlugin.api.contentType,\n skipBy,\n overrideBy,\n },\n )\n\n const files = await operationGenerator.build()\n await this.addFile(...files)\n },\n async buildEnd() {\n if (this.config.output.write === false) {\n return\n }\n\n while (this.fileManager.isExecuting) {\n await timeout(100)\n }\n\n const root = pathParser.resolve(this.config.root, this.config.output.path)\n\n await this.fileManager.addIndexes(root, '.ts')\n },\n }\n})\n","/* eslint-disable @typescript-eslint/explicit-module-boundary-types */\nimport { combineCodes, nameSorter } from '@kubb/core'\nimport { createImportDeclaration, print } from '@kubb/parser'\nimport { ImportsGenerator, OasBuilder } from '@kubb/swagger'\n\nimport { TypeGenerator } from '../generators/TypeGenerator.ts'\n\nimport type { PluginContext } from '@kubb/core'\nimport type { FileResolver, Refs } from '@kubb/swagger'\nimport type ts from 'typescript'\n\ntype Generated = { import: { refs: Refs; name: string }; sources: ts.Node[] }\ntype Options = {\n resolveName: PluginContext['resolveName']\n fileResolver?: FileResolver\n withJSDocs?: boolean\n withImports?: boolean\n enumType: 'enum' | 'asConst' | 'asPascalConst'\n dateType: 'string' | 'date'\n optionalType: 'questionToken' | 'undefined' | 'questionTokenAndUndefined'\n}\n\n// TODO create another function that sort based on the refs(first the ones without refs)\nfunction refsSorter(a: Generated, b: Generated) {\n if (Object.keys(a.import.refs)?.length < Object.keys(b.import.refs)?.length) {\n return -1\n }\n if (Object.keys(a.import.refs)?.length > Object.keys(b.import.refs)?.length) {\n return 1\n }\n return 0\n}\n\nexport class TypeBuilder extends OasBuilder<Options, never> {\n configure(options?: Options) {\n if (options) {\n this.options = options\n }\n\n if (this.options.fileResolver) {\n this.options.withImports = true\n }\n\n return this\n }\n\n print(name?: string): string {\n const codes: string[] = []\n\n const generated = this.items\n .filter((operationSchema) => (name ? operationSchema.name === name : true))\n .sort(nameSorter)\n .map((operationSchema) => {\n const generator = new TypeGenerator({\n withJSDocs: this.options.withJSDocs,\n resolveName: this.options.resolveName,\n enumType: this.options.enumType,\n dateType: this.options.dateType,\n optionalType: this.options.optionalType,\n })\n const sources = generator.build({\n schema: operationSchema.schema,\n baseName: operationSchema.name,\n description: operationSchema.description,\n keysToOmit: operationSchema.keysToOmit,\n })\n\n return {\n import: {\n refs: generator.refs,\n name: operationSchema.name,\n },\n sources,\n }\n })\n .sort(refsSorter)\n\n generated.forEach((item) => {\n codes.push(print(item.sources))\n })\n\n if (this.options.withImports) {\n const importsGenerator = new ImportsGenerator({ fileResolver: this.options.fileResolver })\n const importMeta = importsGenerator.build(generated.map((item) => item.import))\n\n if (importMeta) {\n const nodes = importMeta.map((item) => {\n return createImportDeclaration({\n name: [{ propertyName: item.ref.propertyName }],\n path: item.path,\n isTypeOnly: true,\n })\n })\n\n codes.unshift(print(nodes))\n }\n }\n\n return combineCodes(codes)\n }\n}\n","import { getUniqueName, SchemaGenerator } from '@kubb/core'\nimport {\n appendJSDocToNode,\n createEnumDeclaration,\n createIndexSignature,\n createIntersectionDeclaration,\n createOmitDeclaration,\n createPropertySignature,\n createTupleDeclaration,\n createTypeAliasDeclaration,\n createUnionDeclaration,\n modifiers,\n} from '@kubb/parser'\nimport { isReference } from '@kubb/swagger'\n\nimport { camelCase } from 'change-case'\nimport ts from 'typescript'\n\nimport { pluginName } from '../plugin.ts'\nimport { keywordTypeNodes } from '../utils/index.ts'\n\nimport type { PluginContext } from '@kubb/core'\nimport type { ArrayTwoOrMore } from '@kubb/parser'\nimport type { OpenAPIV3, Refs } from '@kubb/swagger'\nimport type { Options as CaseOptions } from 'change-case'\n\nconst { factory } = ts\n\n// based on https://github.com/cellular/oazapfts/blob/7ba226ebb15374e8483cc53e7532f1663179a22c/src/codegen/generate.ts#L398\n\ntype Options = {\n withJSDocs?: boolean\n resolveName: PluginContext['resolveName']\n enumType: 'enum' | 'asConst' | 'asPascalConst'\n dateType: 'string' | 'date'\n optionalType: 'questionToken' | 'undefined' | 'questionTokenAndUndefined'\n}\nexport class TypeGenerator extends SchemaGenerator<Options, OpenAPIV3.SchemaObject, ts.Node[]> {\n // Collect the types of all referenced schemas so we can export them later\n public static usedEnumNames: Record<string, number> = {}\n\n refs: Refs = {}\n\n extraNodes: ts.Node[] = []\n\n aliases: ts.TypeAliasDeclaration[] = []\n\n // Keep track of already used type aliases\n usedAliasNames: Record<string, number> = {}\n\n caseOptions: CaseOptions = {\n delimiter: '',\n stripRegexp: /[^A-Z0-9$]/gi,\n }\n\n constructor(\n options: Options = { withJSDocs: true, resolveName: ({ name }) => name, enumType: 'asConst', dateType: 'string', optionalType: 'questionToken' },\n ) {\n super(options)\n\n return this\n }\n\n build({\n schema,\n baseName,\n description,\n keysToOmit,\n }: {\n schema: OpenAPIV3.SchemaObject\n baseName: string\n description?: string\n keysToOmit?: string[]\n }): ts.Node[] {\n const nodes: ts.Node[] = []\n const type = this.#getTypeFromSchema(schema, baseName)\n\n if (!type) {\n return this.extraNodes\n }\n\n const node = createTypeAliasDeclaration({\n modifiers: [modifiers.export],\n name: this.options.resolveName({ name: baseName, pluginName }) || baseName,\n type: keysToOmit?.length ? createOmitDeclaration({ keys: keysToOmit, type, nonNullable: true }) : type,\n })\n\n if (description) {\n nodes.push(\n appendJSDocToNode({\n node,\n comments: [`@description ${description}`],\n }),\n )\n } else {\n nodes.push(node)\n }\n\n // filter out if the export name is the same as one that we already defined in extraNodes(see enum)\n const filterdNodes = nodes.filter(\n (node: ts.Node) =>\n !this.extraNodes.some(\n (extraNode: ts.Node) => (extraNode as ts.TypeAliasDeclaration)?.name?.escapedText === (node as ts.TypeAliasDeclaration)?.name?.escapedText,\n ),\n )\n\n return [...this.extraNodes, ...filterdNodes]\n }\n\n /**\n * Creates a type node from a given schema.\n * Delegates to getBaseTypeFromSchema internally and\n * optionally adds a union with null.\n */\n #getTypeFromSchema(schema?: OpenAPIV3.SchemaObject, name?: string): ts.TypeNode | null {\n const type = this.#getBaseTypeFromSchema(schema, name)\n\n if (!type) {\n return null\n }\n\n if (schema && !schema.nullable) {\n return type\n }\n\n return createUnionDeclaration({ nodes: [type, keywordTypeNodes.null] })\n }\n\n /**\n * Recursively creates a type literal with the given props.\n */\n #getTypeFromProperties(baseSchema?: OpenAPIV3.SchemaObject, baseName?: string) {\n const { optionalType } = this.options\n const properties = baseSchema?.properties || {}\n const required = baseSchema?.required\n const additionalProperties = baseSchema?.additionalProperties\n\n const members: Array<ts.TypeElement | null> = Object.keys(properties).map((name) => {\n const schema = properties[name] as OpenAPIV3.SchemaObject\n\n const isRequired = required && required.includes(name)\n let type = this.#getTypeFromSchema(schema, this.options.resolveName({ name: `${baseName || ''} ${name}`, pluginName }))\n\n if (!type) {\n return null\n }\n\n if (!isRequired && ['undefined', 'questionTokenAndUndefined'].includes(optionalType)) {\n type = createUnionDeclaration({ nodes: [type, keywordTypeNodes.undefined] })\n }\n const propertySignature = createPropertySignature({\n questionToken: ['questionToken', 'questionTokenAndUndefined'].includes(optionalType) && !isRequired,\n name,\n type: type as ts.TypeNode,\n readOnly: schema.readOnly,\n })\n if (this.options.withJSDocs) {\n return appendJSDocToNode({\n node: propertySignature,\n comments: [\n schema.description ? `@description ${schema.description}` : undefined,\n schema.type ? `@type ${schema.type}${isRequired ? '' : ' | undefined'} ${schema.format || ''}` : undefined,\n schema.example ? `@example ${schema.example as string}` : undefined,\n schema.deprecated ? `@deprecated` : undefined,\n schema.default !== undefined && typeof schema.default === 'string' ? `@default '${schema.default}'` : undefined,\n schema.default !== undefined && typeof schema.default !== 'string' ? `@default ${schema.default as string}` : undefined,\n ].filter(Boolean),\n })\n }\n\n return propertySignature\n })\n if (additionalProperties) {\n const type = additionalProperties === true ? keywordTypeNodes.any : this.#getTypeFromSchema(additionalProperties as OpenAPIV3.SchemaObject)\n\n if (type) {\n members.push(createIndexSignature(type))\n }\n }\n return factory.createTypeLiteralNode(members.filter(Boolean))\n }\n\n /**\n * Create a type alias for the schema referenced by the given ReferenceObject\n */\n #getRefAlias(obj: OpenAPIV3.ReferenceObject, baseName?: string) {\n const { $ref } = obj\n let ref = this.refs[$ref]\n\n if (ref) {\n return factory.createTypeReferenceNode(ref.propertyName, undefined)\n }\n\n const originalName = getUniqueName($ref.replace(/.+\\//, ''), this.usedAliasNames)\n const propertyName = this.options.resolveName({ name: originalName, pluginName }) || originalName\n\n ref = this.refs[$ref] = {\n propertyName,\n originalName,\n }\n\n return factory.createTypeReferenceNode(ref.propertyName, undefined)\n }\n\n /**\n * This is the very core of the OpenAPI to TS conversion - it takes a\n * schema and returns the appropriate type.\n */\n #getBaseTypeFromSchema(schema: OpenAPIV3.SchemaObject | OpenAPIV3.ReferenceObject | undefined, baseName?: string): ts.TypeNode | null {\n if (!schema) {\n return keywordTypeNodes.any\n }\n\n if (isReference(schema)) {\n return this.#getRefAlias(schema, baseName)\n }\n\n if (schema.oneOf) {\n // union\n const schemaWithoutOneOf = { ...schema, oneOf: undefined }\n\n const union = createUnionDeclaration({\n withParentheses: true,\n nodes: schema.oneOf\n .map((item: OpenAPIV3.SchemaObject | OpenAPIV3.ReferenceObject) => {\n return this.#getBaseTypeFromSchema(item)\n })\n .filter((item) => {\n return item && item !== keywordTypeNodes.any\n }) as ArrayTwoOrMore<ts.TypeNode>,\n })\n\n if (schemaWithoutOneOf.properties) {\n return createIntersectionDeclaration({\n nodes: [this.#getBaseTypeFromSchema(schemaWithoutOneOf, baseName), union].filter(Boolean) as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n return union\n }\n\n if (schema.anyOf) {\n const schemaWithoutAnyOf = { ...schema, anyOf: undefined }\n\n const union = createUnionDeclaration({\n withParentheses: true,\n nodes: schema.anyOf\n .map((item: OpenAPIV3.SchemaObject | OpenAPIV3.ReferenceObject) => {\n return this.#getBaseTypeFromSchema(item)\n })\n .filter((item) => {\n return item && item !== keywordTypeNodes.any\n }) as ArrayTwoOrMore<ts.TypeNode>,\n })\n\n if (schemaWithoutAnyOf.properties) {\n return createIntersectionDeclaration({\n nodes: [this.#getBaseTypeFromSchema(schemaWithoutAnyOf, baseName), union].filter(Boolean) as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n return union\n }\n if (schema.allOf) {\n // intersection/add\n const schemaWithoutAllOf = { ...schema, allOf: undefined }\n\n const and = createIntersectionDeclaration({\n withParentheses: true,\n nodes: schema.allOf\n .map((item: OpenAPIV3.SchemaObject | OpenAPIV3.ReferenceObject) => {\n return this.#getBaseTypeFromSchema(item)\n })\n .filter((item) => {\n return item && item !== keywordTypeNodes.any\n }) as ArrayTwoOrMore<ts.TypeNode>,\n })\n\n if (schemaWithoutAllOf.properties) {\n return createIntersectionDeclaration({\n nodes: [this.#getBaseTypeFromSchema(schemaWithoutAllOf, baseName), and].filter(Boolean) as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n return and\n }\n\n /**\n * Enum will be defined outside the baseType(hints the baseName check)\n */\n if (schema.enum && baseName) {\n const enumName = getUniqueName(baseName, TypeGenerator.usedEnumNames)\n\n let enums: [key: string, value: string | number][] = [...new Set(schema.enum)].map((key) => [key, key])\n\n if ('x-enumNames' in schema) {\n enums = [...new Set(schema['x-enumNames'] as string[])].map((key: string, index) => {\n return [key, schema.enum?.[index]]\n })\n }\n\n this.extraNodes.push(\n ...createEnumDeclaration({\n name: camelCase(enumName, this.caseOptions),\n typeName: this.options.resolveName({ name: enumName, pluginName }),\n enums,\n type: this.options.enumType,\n }),\n )\n return factory.createTypeReferenceNode(this.options.resolveName({ name: enumName, pluginName }), undefined)\n }\n\n if (schema.enum) {\n return createUnionDeclaration({\n nodes: schema.enum.map((name: string) => {\n return factory.createLiteralTypeNode(typeof name === 'number' ? factory.createNumericLiteral(name) : factory.createStringLiteral(`${name}`))\n }) as unknown as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n if ('items' in schema) {\n // items -> array\n const node = this.#getTypeFromSchema(schema.items as OpenAPIV3.SchemaObject, baseName)\n if (node) {\n return factory.createArrayTypeNode(node)\n }\n }\n /**\n * OpenAPI 3.1\n * @link https://json-schema.org/understanding-json-schema/reference/array.html#tuple-validation\n */\n if ('prefixItems' in schema) {\n const prefixItems = schema.prefixItems as OpenAPIV3.SchemaObject[]\n\n return createTupleDeclaration({\n nodes: prefixItems.map((item) => {\n // no baseType so we can fall back on an union when using enum\n return this.#getBaseTypeFromSchema(item, undefined)\n }) as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n if (schema.properties || schema.additionalProperties) {\n // properties -> literal type\n return this.#getTypeFromProperties(schema, baseName)\n }\n\n if (schema.type) {\n if (Array.isArray(schema.type)) {\n // OPENAPI v3.1.0: https://www.openapis.org/blog/2021/02/16/migrating-from-openapi-3-0-to-3-1-0\n const [type, nullable] = schema.type as Array<OpenAPIV3.NonArraySchemaObjectType>\n\n return createUnionDeclaration({\n nodes: [\n this.#getBaseTypeFromSchema(\n {\n ...schema,\n type,\n },\n baseName,\n ),\n nullable ? factory.createLiteralTypeNode(factory.createNull()) : undefined,\n ].filter(Boolean) as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n if (this.options.dateType === 'date' && ['date', 'date-time'].some((item) => item === schema.format)) {\n return factory.createTypeReferenceNode(factory.createIdentifier('Date'))\n }\n\n // string, boolean, null, number\n if (schema.type in keywordTypeNodes) {\n return keywordTypeNodes[schema.type as keyof typeof keywordTypeNodes]\n }\n }\n\n if (schema.format === 'binary') {\n return factory.createTypeReferenceNode('Blob', [])\n }\n\n return keywordTypeNodes.any\n }\n}\n","import ts from 'typescript'\n\nconst { factory } = ts\n\nexport const keywordTypeNodes = {\n any: factory.createKeywordTypeNode(ts.SyntaxKind.AnyKeyword),\n number: factory.createKeywordTypeNode(ts.SyntaxKind.NumberKeyword),\n integer: factory.createKeywordTypeNode(ts.SyntaxKind.NumberKeyword),\n object: factory.createKeywordTypeNode(ts.SyntaxKind.ObjectKeyword),\n string: factory.createKeywordTypeNode(ts.SyntaxKind.StringKeyword),\n boolean: factory.createKeywordTypeNode(ts.SyntaxKind.BooleanKeyword),\n undefined: factory.createKeywordTypeNode(ts.SyntaxKind.UndefinedKeyword),\n null: factory.createLiteralTypeNode(factory.createToken(ts.SyntaxKind.NullKeyword)),\n} as const\n","import { resolve as swaggerResolve } from '@kubb/swagger'\n\nimport { pluginName } from '../plugin.ts'\n\nimport type { ResolveProps, Resolver } from '@kubb/swagger'\n\ntype Props = ResolveProps & { pluginName?: never }\n\nexport function resolve(props: Props): Resolver {\n return swaggerResolve({ ...props, pluginName })\n}\n","import { getRelativePath } from '@kubb/core'\nimport { OperationGenerator as Generator, resolve } from '@kubb/swagger'\n\nimport { TypeBuilder } from '../builders/index.ts'\nimport { pluginName } from '../plugin.ts'\n\nimport type { KubbFile } from '@kubb/core'\nimport type { FileResolver, Operation, OperationSchemas, Resolver } from '@kubb/swagger'\nimport type { FileMeta, Options as PluginOptions } from '../types.ts'\n\ntype Options = {\n mode: KubbFile.Mode\n enumType: NonNullable<PluginOptions['enumType']>\n dateType: NonNullable<PluginOptions['dateType']>\n optionalType: NonNullable<PluginOptions['optionalType']>\n}\n\nexport class OperationGenerator extends Generator<Options> {\n resolve(operation: Operation): Resolver {\n const { pluginManager } = this.context\n\n return resolve({\n operation,\n resolveName: pluginManager.resolveName,\n resolvePath: pluginManager.resolvePath,\n pluginName,\n })\n }\n\n async all(): Promise<KubbFile.File | null> {\n return null\n }\n\n async get(operation: Operation, schemas: OperationSchemas, options: Options): Promise<KubbFile.File<FileMeta> | null> {\n const { mode, enumType, dateType, optionalType } = options\n const { pluginManager } = this.context\n\n const type = this.resolve(operation)\n\n const fileResolver: FileResolver = (name) => {\n // Used when a react-query type(request, response, params) has an import of a global type\n const root = pluginManager.resolvePath({ baseName: type.baseName, pluginName, options: { tag: operation.getTags()[0]?.name } })\n // refs import, will always been created with the SwaggerTS plugin, our global type\n const resolvedTypeId = pluginManager.resolvePath({\n baseName: `${name}.ts`,\n pluginName,\n })\n\n return getRelativePath(root, resolvedTypeId)\n }\n\n const source = new TypeBuilder({\n fileResolver: mode === 'file' ? undefined : fileResolver,\n withJSDocs: true,\n resolveName: pluginManager.resolveName,\n enumType,\n optionalType,\n dateType,\n })\n .add(schemas.pathParams)\n .add(schemas.queryParams)\n .add(schemas.headerParams)\n .add(schemas.response)\n .add(schemas.errors)\n .configure()\n .print()\n\n return {\n path: type.path,\n baseName: type.baseName,\n source,\n meta: {\n pluginName,\n tag: operation.getTags()[0]?.name,\n },\n }\n }\n\n async post(operation: Operation, schemas: OperationSchemas, options: Options): Promise<KubbFile.File<FileMeta> | null> {\n const { mode, enumType, dateType, optionalType } = options\n const { pluginManager } = this.context\n\n const type = this.resolve(operation)\n\n const fileResolver: FileResolver = (name) => {\n // Used when a react-query type(request, response, params) has an import of a global type\n const root = pluginManager.resolvePath({ baseName: type.baseName, pluginName, options: { tag: operation.getTags()[0]?.name } })\n // refs import, will always been created with the SwaggerTS plugin, our global type\n const resolvedTypeId = pluginManager.resolvePath({\n baseName: `${name}.ts`,\n pluginName,\n })\n\n return getRelativePath(root, resolvedTypeId)\n }\n\n const source = new TypeBuilder({\n fileResolver: mode === 'file' ? undefined : fileResolver,\n withJSDocs: true,\n resolveName: pluginManager.resolveName,\n enumType,\n optionalType,\n dateType,\n })\n .add(schemas.pathParams)\n .add(schemas.queryParams)\n .add(schemas.headerParams)\n .add(schemas.request)\n .add(schemas.response)\n .add(schemas.errors)\n .configure()\n .print()\n\n return {\n path: type.path,\n baseName: type.baseName,\n source,\n meta: {\n pluginName,\n tag: operation.getTags()[0]?.name,\n },\n }\n }\n\n async put(operation: Operation, schemas: OperationSchemas, options: Options): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas, options)\n }\n async patch(operation: Operation, schemas: OperationSchemas, options: Options): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas, options)\n }\n async delete(operation: Operation, schemas: OperationSchemas, options: Options): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas, options)\n }\n}\n","import { useResolve as useResolveSwagger } from '@kubb/swagger'\n\nimport { pluginName } from '../plugin.ts'\n\nimport type { Resolver, UseResolveProps } from '@kubb/swagger'\n\ntype Props = UseResolveProps & { pluginName?: never }\n\nexport function useResolve(props: Props = {}): Resolver {\n return useResolveSwagger({ pluginName, ...props })\n}\n","import { definePlugin } from './plugin.ts'\n\nexport * from './builders/index.ts'\nexport * from './generators/index.ts'\nexport * from './hooks/index.ts'\nexport * from './plugin.ts'\nexport * from './types.ts'\nexport * from './utils/index.ts'\n\nexport default definePlugin\n"]}
|
1
|
+
{"version":3,"sources":["../src/plugin.ts","../src/builders/TypeBuilder.ts","../src/generators/TypeGenerator.ts","../src/utils/keywordTypeNodes.ts","../src/utils/resolve.ts","../src/generators/OperationGenerator.ts","../src/hooks/useResolve.ts","../src/index.ts"],"names":["getRelativePath","camelCase","ts","factory","node","resolve","transformers","options","root"],"mappings":"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","sourcesContent":["import path from 'node:path'\n\nimport { createPlugin, FileManager, getDependedPlugins, getRelativePath, renderTemplate } from '@kubb/core'\nimport { pluginName as swaggerPluginName } from '@kubb/swagger'\n\nimport { camelCase, camelCaseTransformMerge, pascalCase, pascalCaseTransformMerge } from 'change-case'\n\nimport { TypeBuilder } from './builders/index.ts'\nimport { OperationGenerator } from './generators/index.ts'\n\nimport type { KubbPlugin } from '@kubb/core'\nimport type { OpenAPIV3, PluginOptions as SwaggerPluginOptions } from '@kubb/swagger'\nimport type { PluginOptions } from './types.ts'\n\nexport const pluginName = 'swagger-ts' satisfies PluginOptions['name']\nexport const pluginKey: PluginOptions['key'] = ['schema', pluginName] satisfies PluginOptions['key']\n\nexport const definePlugin = createPlugin<PluginOptions>((options) => {\n const {\n output = 'types',\n groupBy,\n skipBy = [],\n overrideBy = [],\n enumType = 'asConst',\n dateType = 'string',\n optionalType = 'questionToken',\n transformers = {},\n exportAs,\n } = options\n const template = groupBy?.output ? groupBy.output : `${output}/{{tag}}Controller`\n let pluginsOptions: [KubbPlugin<SwaggerPluginOptions>]\n\n return {\n name: pluginName,\n options,\n kind: 'schema',\n validate(plugins) {\n pluginsOptions = getDependedPlugins<SwaggerPluginOptions>(plugins, [swaggerPluginName])\n\n return true\n },\n resolvePath(baseName, directory, options) {\n const root = path.resolve(this.config.root, this.config.output.path)\n const mode = FileManager.getMode(path.resolve(root, output))\n\n if (mode === 'file') {\n /**\n * when output is a file then we will always append to the same file(output file), see fileManager.addOrAppend\n * Other plugins then need to call addOrAppend instead of just add from the fileManager class\n */\n return path.resolve(root, output)\n }\n\n if (options?.tag && groupBy?.type === 'tag') {\n const tag = camelCase(options.tag, { delimiter: '', transform: camelCaseTransformMerge })\n\n return path.resolve(root, renderTemplate(template, { tag }), baseName)\n }\n\n return path.resolve(root, output, baseName)\n },\n resolveName(name) {\n const resolvedName = pascalCase(name, { delimiter: '', stripRegexp: /[^A-Z0-9$]/gi, transform: pascalCaseTransformMerge })\n\n return transformers?.name?.(resolvedName) || resolvedName\n },\n async writeFile(source, writePath) {\n if (!writePath.endsWith('.ts') || !source) {\n return\n }\n\n return this.fileManager.write(source, writePath)\n },\n async buildStart() {\n const [swaggerPlugin] = pluginsOptions\n\n const oas = await swaggerPlugin.api.getOas()\n\n const schemas = await swaggerPlugin.api.getSchemas()\n const root = path.resolve(this.config.root, this.config.output.path)\n const mode = FileManager.getMode(path.resolve(root, output))\n // keep the used enumnames between TypeBuilder and OperationGenerator per plugin(pluginKey)\n const usedEnumNames = {}\n\n if (mode === 'directory') {\n const builder = await new TypeBuilder({\n usedEnumNames,\n resolveName: (params) => this.resolveName({ pluginKey: this.plugin.key, ...params }),\n fileResolver: (name) => {\n const resolvedTypeId = this.resolvePath({\n baseName: `${name}.ts`,\n pluginKey: this.plugin.key,\n })\n\n const root = this.resolvePath({ baseName: ``, pluginKey: this.plugin.key })\n\n return getRelativePath(root, resolvedTypeId)\n },\n withJSDocs: true,\n enumType,\n dateType,\n optionalType,\n }).configure()\n Object.entries(schemas).forEach(([name, schema]: [string, OpenAPIV3.SchemaObject]) => {\n // generate and pass through new code back to the core so it can be write to that file\n return builder.add({\n schema,\n name,\n })\n })\n\n const mapFolderSchema = async ([name]: [string, OpenAPIV3.SchemaObject]) => {\n const resolvedPath = this.resolvePath({ baseName: `${this.resolveName({ name, pluginKey: this.plugin.key })}.ts`, pluginKey: this.plugin.key })\n\n if (!resolvedPath) {\n return null\n }\n\n return this.addFile({\n path: resolvedPath,\n baseName: `${this.resolveName({ name, pluginKey: this.plugin.key })}.ts`,\n source: builder.print(name),\n meta: {\n pluginKey: this.plugin.key,\n },\n })\n }\n\n const promises = Object.entries(schemas).map(mapFolderSchema)\n\n await Promise.all(promises)\n }\n\n if (mode === 'file') {\n // outside the loop because we need to add files to just one instance to have the correct sorting, see refsSorter\n const builder = new TypeBuilder({\n usedEnumNames,\n resolveName: (params) => this.resolveName({ pluginKey: this.plugin.key, ...params }),\n withJSDocs: true,\n enumType,\n dateType,\n optionalType,\n }).configure()\n Object.entries(schemas).forEach(([name, schema]: [string, OpenAPIV3.SchemaObject]) => {\n // generate and pass through new code back to the core so it can be write to that file\n return builder.add({\n schema,\n name,\n })\n })\n\n const resolvedPath = this.resolvePath({ baseName: '', pluginKey: this.plugin.key })\n if (!resolvedPath) {\n return\n }\n\n await this.addFile({\n path: resolvedPath,\n baseName: `${this.resolveName({ name: output, pluginKey: this.plugin.key })}.ts`,\n source: builder.print(),\n meta: {\n pluginKey: this.plugin.key,\n },\n })\n }\n\n const operationGenerator = new OperationGenerator(\n {\n mode,\n enumType,\n dateType,\n optionalType,\n usedEnumNames,\n },\n {\n oas,\n pluginManager: this.pluginManager,\n plugin: this.plugin,\n contentType: swaggerPlugin.api.contentType,\n skipBy,\n overrideBy,\n },\n )\n\n const files = await operationGenerator.build()\n await this.addFile(...files)\n },\n async buildEnd() {\n if (this.config.output.write === false) {\n return\n }\n\n const root = path.resolve(this.config.root, this.config.output.path)\n\n await this.fileManager.addIndexes({\n root,\n extName: '.ts',\n meta: { pluginKey: this.plugin.key },\n options: {\n map: (file) => {\n return {\n ...file,\n exports: file.exports?.map((item) => {\n if (exportAs) {\n return {\n ...item,\n name: exportAs,\n asAlias: !!exportAs,\n }\n }\n return item\n }),\n }\n },\n output,\n isTypeOnly: true,\n },\n })\n },\n }\n})\n","/* eslint-disable @typescript-eslint/explicit-module-boundary-types */\nimport { nameSorter, transformers } from '@kubb/core'\nimport { createImportDeclaration, print } from '@kubb/parser'\nimport { ImportsGenerator, OasBuilder, refsSorter } from '@kubb/swagger'\n\nimport { TypeGenerator } from '../generators/TypeGenerator.ts'\n\nimport type { PluginContext } from '@kubb/core'\nimport type { FileResolver } from '@kubb/swagger'\n\ntype Options = {\n usedEnumNames: Record<string, number>\n\n resolveName: PluginContext['resolveName']\n fileResolver?: FileResolver\n withJSDocs?: boolean\n withImports?: boolean\n enumType: 'enum' | 'asConst' | 'asPascalConst'\n dateType: 'string' | 'date'\n optionalType: 'questionToken' | 'undefined' | 'questionTokenAndUndefined'\n}\n\nexport class TypeBuilder extends OasBuilder<Options, never> {\n configure(options?: Options) {\n if (options) {\n this.options = options\n }\n\n if (this.options.fileResolver) {\n this.options.withImports = true\n }\n\n return this\n }\n\n print(name?: string): string {\n const codes: string[] = []\n\n const generated = this.items\n .filter((operationSchema) => (name ? operationSchema.name === name : true))\n .sort(nameSorter)\n .map((operationSchema) => {\n const generator = new TypeGenerator({\n usedEnumNames: this.options.usedEnumNames,\n withJSDocs: this.options.withJSDocs,\n resolveName: this.options.resolveName,\n enumType: this.options.enumType,\n dateType: this.options.dateType,\n optionalType: this.options.optionalType,\n })\n const sources = generator.build({\n schema: operationSchema.schema,\n baseName: operationSchema.name,\n description: operationSchema.description,\n keysToOmit: operationSchema.keysToOmit,\n })\n\n return {\n import: {\n refs: generator.refs,\n name: operationSchema.name,\n },\n sources,\n }\n })\n .sort(refsSorter)\n\n generated.forEach((item) => {\n codes.push(print(item.sources))\n })\n\n if (this.options.withImports) {\n const importsGenerator = new ImportsGenerator({ fileResolver: this.options.fileResolver })\n const importMeta = importsGenerator.build(generated.map((item) => item.import))\n\n if (importMeta) {\n const nodes = importMeta.map((item) => {\n return createImportDeclaration({\n name: [{ propertyName: item.ref.propertyName }],\n path: item.path,\n isTypeOnly: true,\n })\n })\n\n codes.unshift(print(nodes))\n }\n }\n\n return transformers.combineCodes(codes)\n }\n}\n","import { getUniqueName, SchemaGenerator } from '@kubb/core'\nimport {\n appendJSDocToNode,\n createEnumDeclaration,\n createIndexSignature,\n createIntersectionDeclaration,\n createOmitDeclaration,\n createPropertySignature,\n createTupleDeclaration,\n createTypeAliasDeclaration,\n createUnionDeclaration,\n modifiers,\n} from '@kubb/parser'\nimport { isReference } from '@kubb/swagger'\n\nimport { camelCase } from 'change-case'\nimport ts from 'typescript'\n\nimport { keywordTypeNodes } from '../utils/index.ts'\n\nimport type { PluginContext } from '@kubb/core'\nimport type { ArrayTwoOrMore } from '@kubb/parser'\nimport type { OpenAPIV3, Refs } from '@kubb/swagger'\nimport type { Options as CaseOptions } from 'change-case'\n\nconst { factory } = ts\n\n// based on https://github.com/cellular/oazapfts/blob/7ba226ebb15374e8483cc53e7532f1663179a22c/src/codegen/generate.ts#L398\n\ntype Options = {\n usedEnumNames: Record<string, number>\n\n withJSDocs?: boolean\n resolveName: PluginContext['resolveName']\n enumType: 'enum' | 'asConst' | 'asPascalConst'\n dateType: 'string' | 'date'\n optionalType: 'questionToken' | 'undefined' | 'questionTokenAndUndefined'\n}\nexport class TypeGenerator extends SchemaGenerator<Options, OpenAPIV3.SchemaObject, ts.Node[]> {\n refs: Refs = {}\n\n extraNodes: ts.Node[] = []\n\n aliases: ts.TypeAliasDeclaration[] = []\n\n // Keep track of already used type aliases\n #usedAliasNames: Record<string, number> = {}\n\n #caseOptions: CaseOptions = {\n delimiter: '',\n stripRegexp: /[^A-Z0-9$]/gi,\n }\n\n constructor(\n options: Options = {\n usedEnumNames: {},\n withJSDocs: true,\n resolveName: ({ name }) => name,\n enumType: 'asConst',\n dateType: 'string',\n optionalType: 'questionToken',\n },\n ) {\n super(options)\n\n return this\n }\n\n build({\n schema,\n baseName,\n description,\n keysToOmit,\n }: {\n schema: OpenAPIV3.SchemaObject\n baseName: string\n description?: string\n keysToOmit?: string[]\n }): ts.Node[] {\n const nodes: ts.Node[] = []\n const type = this.#getTypeFromSchema(schema, baseName)\n\n if (!type) {\n return this.extraNodes\n }\n\n const node = createTypeAliasDeclaration({\n modifiers: [modifiers.export],\n name: this.options.resolveName({ name: baseName }) || baseName,\n type: keysToOmit?.length ? createOmitDeclaration({ keys: keysToOmit, type, nonNullable: true }) : type,\n })\n\n if (description) {\n nodes.push(\n appendJSDocToNode({\n node,\n comments: [`@description ${description}`],\n }),\n )\n } else {\n nodes.push(node)\n }\n\n // filter out if the export name is the same as one that we already defined in extraNodes(see enum)\n const filterdNodes = nodes.filter(\n (node: ts.Node) =>\n !this.extraNodes.some(\n (extraNode: ts.Node) => (extraNode as ts.TypeAliasDeclaration)?.name?.escapedText === (node as ts.TypeAliasDeclaration)?.name?.escapedText,\n ),\n )\n\n return [...this.extraNodes, ...filterdNodes]\n }\n\n /**\n * Creates a type node from a given schema.\n * Delegates to getBaseTypeFromSchema internally and\n * optionally adds a union with null.\n */\n #getTypeFromSchema(schema?: OpenAPIV3.SchemaObject, name?: string): ts.TypeNode | null {\n const type = this.#getBaseTypeFromSchema(schema, name)\n\n if (!type) {\n return null\n }\n\n if (schema && !schema.nullable) {\n return type\n }\n\n return createUnionDeclaration({ nodes: [type, keywordTypeNodes.null] })\n }\n\n /**\n * Recursively creates a type literal with the given props.\n */\n #getTypeFromProperties(baseSchema?: OpenAPIV3.SchemaObject, baseName?: string) {\n const { optionalType } = this.options\n const properties = baseSchema?.properties || {}\n const required = baseSchema?.required\n const additionalProperties = baseSchema?.additionalProperties\n\n const members: Array<ts.TypeElement | null> = Object.keys(properties).map((name) => {\n const schema = properties[name] as OpenAPIV3.SchemaObject\n\n const isRequired = required && required.includes(name)\n let type = this.#getTypeFromSchema(schema, this.options.resolveName({ name: `${baseName || ''} ${name}` }))\n\n if (!type) {\n return null\n }\n\n if (!isRequired && ['undefined', 'questionTokenAndUndefined'].includes(optionalType)) {\n type = createUnionDeclaration({ nodes: [type, keywordTypeNodes.undefined] })\n }\n const propertySignature = createPropertySignature({\n questionToken: ['questionToken', 'questionTokenAndUndefined'].includes(optionalType) && !isRequired,\n name,\n type: type as ts.TypeNode,\n readOnly: schema.readOnly,\n })\n if (this.options.withJSDocs) {\n return appendJSDocToNode({\n node: propertySignature,\n comments: [\n schema.description ? `@description ${schema.description}` : undefined,\n schema.type ? `@type ${schema.type}${isRequired ? '' : ' | undefined'} ${schema.format || ''}` : undefined,\n schema.example ? `@example ${schema.example as string}` : undefined,\n schema.deprecated ? `@deprecated` : undefined,\n schema.default !== undefined && typeof schema.default === 'string' ? `@default '${schema.default}'` : undefined,\n schema.default !== undefined && typeof schema.default !== 'string' ? `@default ${schema.default as string}` : undefined,\n ].filter(Boolean),\n })\n }\n\n return propertySignature\n })\n if (additionalProperties) {\n const type = additionalProperties === true ? keywordTypeNodes.any : this.#getTypeFromSchema(additionalProperties as OpenAPIV3.SchemaObject)\n\n if (type) {\n members.push(createIndexSignature(type))\n }\n }\n return factory.createTypeLiteralNode(members.filter(Boolean))\n }\n\n /**\n * Create a type alias for the schema referenced by the given ReferenceObject\n */\n #getRefAlias(obj: OpenAPIV3.ReferenceObject, _baseName?: string) {\n const { $ref } = obj\n let ref = this.refs[$ref]\n\n if (ref) {\n return factory.createTypeReferenceNode(ref.propertyName, undefined)\n }\n\n const originalName = getUniqueName($ref.replace(/.+\\//, ''), this.#usedAliasNames)\n const propertyName = this.options.resolveName({ name: originalName }) || originalName\n\n ref = this.refs[$ref] = {\n propertyName,\n originalName,\n }\n\n return factory.createTypeReferenceNode(ref.propertyName, undefined)\n }\n\n /**\n * This is the very core of the OpenAPI to TS conversion - it takes a\n * schema and returns the appropriate type.\n */\n #getBaseTypeFromSchema(schema: OpenAPIV3.SchemaObject | OpenAPIV3.ReferenceObject | undefined, baseName?: string): ts.TypeNode | null {\n if (!schema) {\n return keywordTypeNodes.any\n }\n\n if (isReference(schema)) {\n return this.#getRefAlias(schema, baseName)\n }\n\n if (schema.oneOf) {\n // union\n const schemaWithoutOneOf = { ...schema, oneOf: undefined }\n\n const union = createUnionDeclaration({\n withParentheses: true,\n nodes: schema.oneOf\n .map((item: OpenAPIV3.SchemaObject | OpenAPIV3.ReferenceObject) => {\n return this.#getBaseTypeFromSchema(item)\n })\n .filter((item) => {\n return item && item !== keywordTypeNodes.any\n }) as ArrayTwoOrMore<ts.TypeNode>,\n })\n\n if (schemaWithoutOneOf.properties) {\n return createIntersectionDeclaration({\n nodes: [this.#getBaseTypeFromSchema(schemaWithoutOneOf, baseName), union].filter(Boolean) as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n return union\n }\n\n if (schema.anyOf) {\n const schemaWithoutAnyOf = { ...schema, anyOf: undefined }\n\n const union = createUnionDeclaration({\n withParentheses: true,\n nodes: schema.anyOf\n .map((item: OpenAPIV3.SchemaObject | OpenAPIV3.ReferenceObject) => {\n return this.#getBaseTypeFromSchema(item)\n })\n .filter((item) => {\n return item && item !== keywordTypeNodes.any\n }) as ArrayTwoOrMore<ts.TypeNode>,\n })\n\n if (schemaWithoutAnyOf.properties) {\n return createIntersectionDeclaration({\n nodes: [this.#getBaseTypeFromSchema(schemaWithoutAnyOf, baseName), union].filter(Boolean) as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n return union\n }\n if (schema.allOf) {\n // intersection/add\n const schemaWithoutAllOf = { ...schema, allOf: undefined }\n\n const and = createIntersectionDeclaration({\n withParentheses: true,\n nodes: schema.allOf\n .map((item: OpenAPIV3.SchemaObject | OpenAPIV3.ReferenceObject) => {\n return this.#getBaseTypeFromSchema(item)\n })\n .filter((item) => {\n return item && item !== keywordTypeNodes.any\n }) as ArrayTwoOrMore<ts.TypeNode>,\n })\n\n if (schemaWithoutAllOf.properties) {\n return createIntersectionDeclaration({\n nodes: [this.#getBaseTypeFromSchema(schemaWithoutAllOf, baseName), and].filter(Boolean) as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n return and\n }\n\n /**\n * Enum will be defined outside the baseType(hints the baseName check)\n */\n if (schema.enum && baseName) {\n const enumName = getUniqueName(baseName, this.options.usedEnumNames)\n\n let enums: [key: string, value: string | number][] = [...new Set(schema.enum)].map((key) => [key, key])\n\n if ('x-enumNames' in schema) {\n enums = [...new Set(schema['x-enumNames'] as string[])].map((key: string, index) => {\n return [key, schema.enum?.[index]]\n })\n }\n\n this.extraNodes.push(\n ...createEnumDeclaration({\n name: camelCase(enumName, this.#caseOptions),\n typeName: this.options.resolveName({ name: enumName }),\n enums,\n type: this.options.enumType,\n }),\n )\n return factory.createTypeReferenceNode(this.options.resolveName({ name: enumName }), undefined)\n }\n\n if (schema.enum) {\n return createUnionDeclaration({\n nodes: schema.enum.map((name: string) => {\n return factory.createLiteralTypeNode(typeof name === 'number' ? factory.createNumericLiteral(name) : factory.createStringLiteral(`${name}`))\n }) as unknown as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n if ('items' in schema) {\n // items -> array\n const node = this.#getTypeFromSchema(schema.items as OpenAPIV3.SchemaObject, baseName)\n if (node) {\n return factory.createArrayTypeNode(node)\n }\n }\n /**\n * OpenAPI 3.1\n * @link https://json-schema.org/understanding-json-schema/reference/array.html#tuple-validation\n */\n if ('prefixItems' in schema) {\n const prefixItems = schema.prefixItems as OpenAPIV3.SchemaObject[]\n\n return createTupleDeclaration({\n nodes: prefixItems.map((item) => {\n // no baseType so we can fall back on an union when using enum\n return this.#getBaseTypeFromSchema(item, undefined)\n }) as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n if (schema.properties || schema.additionalProperties) {\n // properties -> literal type\n return this.#getTypeFromProperties(schema, baseName)\n }\n\n if (schema.type) {\n if (Array.isArray(schema.type)) {\n // OPENAPI v3.1.0: https://www.openapis.org/blog/2021/02/16/migrating-from-openapi-3-0-to-3-1-0\n const [type, nullable] = schema.type as Array<OpenAPIV3.NonArraySchemaObjectType>\n\n return createUnionDeclaration({\n nodes: [\n this.#getBaseTypeFromSchema(\n {\n ...schema,\n type,\n },\n baseName,\n ),\n nullable ? factory.createLiteralTypeNode(factory.createNull()) : undefined,\n ].filter(Boolean) as ArrayTwoOrMore<ts.TypeNode>,\n })\n }\n\n if (this.options.dateType === 'date' && ['date', 'date-time'].some((item) => item === schema.format)) {\n return factory.createTypeReferenceNode(factory.createIdentifier('Date'))\n }\n\n // string, boolean, null, number\n if (schema.type in keywordTypeNodes) {\n return keywordTypeNodes[schema.type as keyof typeof keywordTypeNodes]\n }\n }\n\n if (schema.format === 'binary') {\n return factory.createTypeReferenceNode('Blob', [])\n }\n\n return keywordTypeNodes.any\n }\n}\n","import ts from 'typescript'\n\nconst { factory } = ts\n\nexport const keywordTypeNodes = {\n any: factory.createKeywordTypeNode(ts.SyntaxKind.AnyKeyword),\n number: factory.createKeywordTypeNode(ts.SyntaxKind.NumberKeyword),\n integer: factory.createKeywordTypeNode(ts.SyntaxKind.NumberKeyword),\n object: factory.createKeywordTypeNode(ts.SyntaxKind.ObjectKeyword),\n string: factory.createKeywordTypeNode(ts.SyntaxKind.StringKeyword),\n boolean: factory.createKeywordTypeNode(ts.SyntaxKind.BooleanKeyword),\n undefined: factory.createKeywordTypeNode(ts.SyntaxKind.UndefinedKeyword),\n null: factory.createLiteralTypeNode(factory.createToken(ts.SyntaxKind.NullKeyword)),\n} as const\n","import { resolve as swaggerResolve } from '@kubb/swagger'\n\nimport { pluginKey } from '../plugin.ts'\n\nimport type { ResolveProps, Resolver } from '@kubb/swagger'\n\nexport function resolve(props: ResolveProps): Resolver {\n return swaggerResolve({ pluginKey, ...props })\n}\n","import { getRelativePath } from '@kubb/core'\nimport { OperationGenerator as Generator, resolve } from '@kubb/swagger'\n\nimport { TypeBuilder } from '../builders/index.ts'\n\nimport type { KubbFile } from '@kubb/core'\nimport type { FileResolver, Operation, OperationSchemas, Resolver } from '@kubb/swagger'\nimport type { FileMeta, Options as PluginOptions } from '../types.ts'\n\ntype Options = {\n usedEnumNames: Record<string, number>\n\n mode: KubbFile.Mode\n enumType: NonNullable<PluginOptions['enumType']>\n dateType: NonNullable<PluginOptions['dateType']>\n optionalType: NonNullable<PluginOptions['optionalType']>\n}\n\nexport class OperationGenerator extends Generator<Options> {\n resolve(operation: Operation): Resolver {\n const { pluginManager, plugin } = this.context\n\n return resolve({\n operation,\n resolveName: pluginManager.resolveName,\n resolvePath: pluginManager.resolvePath,\n pluginKey: plugin?.key,\n })\n }\n\n async all(): Promise<KubbFile.File | null> {\n return null\n }\n\n async get(operation: Operation, schemas: OperationSchemas, options: Options): Promise<KubbFile.File<FileMeta> | null> {\n const { mode, enumType, dateType, optionalType, usedEnumNames } = options\n const { pluginManager, plugin } = this.context\n\n const type = this.resolve(operation)\n\n const fileResolver: FileResolver = (name) => {\n // Used when a react-query type(request, response, params) has an import of a global type\n const root = pluginManager.resolvePath({ baseName: type.baseName, pluginKey: plugin?.key, options: { tag: operation.getTags()[0]?.name } })\n // refs import, will always been created with the SwaggerTS plugin, our global type\n const resolvedTypeId = pluginManager.resolvePath({\n baseName: `${name}.ts`,\n pluginKey: plugin?.key,\n })\n\n return getRelativePath(root, resolvedTypeId)\n }\n\n const source = new TypeBuilder({\n usedEnumNames,\n fileResolver: mode === 'file' ? undefined : fileResolver,\n withJSDocs: true,\n resolveName: (params) => pluginManager.resolveName({ ...params, pluginKey: plugin?.key }),\n enumType,\n optionalType,\n dateType,\n })\n .add(schemas.pathParams)\n .add(schemas.queryParams)\n .add(schemas.headerParams)\n .add(schemas.response)\n .add(schemas.errors)\n .configure()\n .print()\n\n return {\n path: type.path,\n baseName: type.baseName,\n source,\n meta: {\n pluginKey: plugin.key,\n tag: operation.getTags()[0]?.name,\n },\n }\n }\n\n async post(operation: Operation, schemas: OperationSchemas, options: Options): Promise<KubbFile.File<FileMeta> | null> {\n const { mode, enumType, dateType, optionalType, usedEnumNames } = options\n const { pluginManager, plugin } = this.context\n\n const type = this.resolve(operation)\n\n const fileResolver: FileResolver = (name) => {\n // Used when a react-query type(request, response, params) has an import of a global type\n const root = pluginManager.resolvePath({ baseName: type.baseName, pluginKey: plugin?.key, options: { tag: operation.getTags()[0]?.name } })\n // refs import, will always been created with the SwaggerTS plugin, our global type\n const resolvedTypeId = pluginManager.resolvePath({\n baseName: `${name}.ts`,\n pluginKey: plugin?.key,\n })\n\n return getRelativePath(root, resolvedTypeId)\n }\n\n const source = new TypeBuilder({\n usedEnumNames,\n fileResolver: mode === 'file' ? undefined : fileResolver,\n withJSDocs: true,\n resolveName: (params) => pluginManager.resolveName({ ...params, pluginKey: plugin?.key }),\n enumType,\n optionalType,\n dateType,\n })\n .add(schemas.pathParams)\n .add(schemas.queryParams)\n .add(schemas.headerParams)\n .add(schemas.request)\n .add(schemas.response)\n .add(schemas.errors)\n .configure()\n .print()\n\n return {\n path: type.path,\n baseName: type.baseName,\n source,\n meta: {\n pluginKey: plugin.key,\n tag: operation.getTags()[0]?.name,\n },\n }\n }\n\n async put(operation: Operation, schemas: OperationSchemas, options: Options): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas, options)\n }\n async patch(operation: Operation, schemas: OperationSchemas, options: Options): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas, options)\n }\n async delete(operation: Operation, schemas: OperationSchemas, options: Options): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas, options)\n }\n}\n","import { useResolve as useResolveSwagger } from '@kubb/swagger'\n\nimport { pluginKey } from '../plugin.ts'\n\nimport type { Resolver, UseResolveProps } from '@kubb/swagger'\n\nexport function useResolve(props: UseResolveProps = {}): Resolver {\n return useResolveSwagger({ pluginKey, ...props })\n}\n","import { definePlugin } from './plugin.ts'\n\nexport * from './builders/index.ts'\nexport * from './generators/index.ts'\nexport * from './hooks/index.ts'\nexport * from './plugin.ts'\nexport * from './types.ts'\nexport * from './utils/index.ts'\n\nexport default definePlugin\n"]}
|