@kubb/swagger-ts 1.13.0 → 1.14.0-canary.20231018T192933
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 +59 -51
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +18 -36
- package/dist/index.d.ts +18 -36
- package/dist/index.js +59 -51
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
@@ -2,9 +2,9 @@ import * as _kubb_core from '@kubb/core';
|
|
2
2
|
import { PluginFactoryOptions, SchemaGenerator, PluginContext, KubbFile } from '@kubb/core';
|
3
3
|
import { SkipBy, ResolvePathOptions, OpenAPIV3, Refs, OperationGenerator as OperationGenerator$1, Operation, Resolver, OperationSchemas, OasBuilder, FileResolver, ResolveProps, UseResolveProps } from '@kubb/swagger';
|
4
4
|
import ts from 'typescript';
|
5
|
-
import { Options as Options$
|
5
|
+
import { Options as Options$4 } from 'change-case';
|
6
6
|
|
7
|
-
type Options$
|
7
|
+
type Options$3 = {
|
8
8
|
/**
|
9
9
|
* Relative path to save the TypeScript types.
|
10
10
|
* When output is a file it will save all models inside that file else it will create a file per schema item.
|
@@ -58,60 +58,42 @@ type FileMeta = {
|
|
58
58
|
pluginName?: string;
|
59
59
|
tag?: string;
|
60
60
|
};
|
61
|
-
type PluginOptions = PluginFactoryOptions<'swagger-ts', Options$
|
61
|
+
type PluginOptions = PluginFactoryOptions<'swagger-ts', Options$3, false, unknown, ResolvePathOptions>;
|
62
62
|
|
63
63
|
declare const pluginName: PluginOptions['name'];
|
64
|
-
declare const definePlugin: (options: Options$
|
64
|
+
declare const definePlugin: (options: Options$3) => _kubb_core.KubbUserPlugin<PluginOptions>;
|
65
65
|
|
66
|
-
type Options$
|
66
|
+
type Options$2 = {
|
67
67
|
withJSDocs?: boolean;
|
68
68
|
resolveName: PluginContext['resolveName'];
|
69
69
|
enumType: 'enum' | 'asConst' | 'asPascalConst';
|
70
70
|
dateType: 'string' | 'date';
|
71
71
|
optionalType: 'questionToken' | 'undefined' | 'questionTokenAndUndefined';
|
72
72
|
};
|
73
|
-
declare class TypeGenerator extends SchemaGenerator<Options$
|
73
|
+
declare class TypeGenerator extends SchemaGenerator<Options$2, OpenAPIV3.SchemaObject, ts.Node[]> {
|
74
|
+
#private;
|
74
75
|
static usedEnumNames: Record<string, number>;
|
75
76
|
refs: Refs;
|
76
77
|
extraNodes: ts.Node[];
|
77
78
|
aliases: ts.TypeAliasDeclaration[];
|
78
79
|
usedAliasNames: Record<string, number>;
|
79
|
-
caseOptions: Options$
|
80
|
-
constructor(options?: Options$
|
80
|
+
caseOptions: Options$4;
|
81
|
+
constructor(options?: Options$2);
|
81
82
|
build({ schema, baseName, description, keysToOmit, }: {
|
82
83
|
schema: OpenAPIV3.SchemaObject;
|
83
84
|
baseName: string;
|
84
85
|
description?: string;
|
85
86
|
keysToOmit?: string[];
|
86
87
|
}): ts.Node[];
|
87
|
-
/**
|
88
|
-
* Creates a type node from a given schema.
|
89
|
-
* Delegates to getBaseTypeFromSchema internally and
|
90
|
-
* optionally adds a union with null.
|
91
|
-
*/
|
92
|
-
private getTypeFromSchema;
|
93
|
-
/**
|
94
|
-
* Recursively creates a type literal with the given props.
|
95
|
-
*/
|
96
|
-
private getTypeFromProperties;
|
97
|
-
/**
|
98
|
-
* Create a type alias for the schema referenced by the given ReferenceObject
|
99
|
-
*/
|
100
|
-
private getRefAlias;
|
101
|
-
/**
|
102
|
-
* This is the very core of the OpenAPI to TS conversion - it takes a
|
103
|
-
* schema and returns the appropriate type.
|
104
|
-
*/
|
105
|
-
private getBaseTypeFromSchema;
|
106
88
|
}
|
107
89
|
|
108
|
-
type Options = {
|
90
|
+
type Options$1 = {
|
109
91
|
mode: KubbFile.Mode;
|
110
|
-
enumType: NonNullable<Options$
|
111
|
-
dateType: NonNullable<Options$
|
112
|
-
optionalType: NonNullable<Options$
|
92
|
+
enumType: NonNullable<Options$3['enumType']>;
|
93
|
+
dateType: NonNullable<Options$3['dateType']>;
|
94
|
+
optionalType: NonNullable<Options$3['optionalType']>;
|
113
95
|
};
|
114
|
-
declare class OperationGenerator extends OperationGenerator$1<Options> {
|
96
|
+
declare class OperationGenerator extends OperationGenerator$1<Options$1> {
|
115
97
|
resolve(operation: Operation): Resolver;
|
116
98
|
all(): Promise<KubbFile.File | null>;
|
117
99
|
get(operation: Operation, schemas: OperationSchemas): Promise<KubbFile.File<FileMeta> | null>;
|
@@ -121,7 +103,7 @@ declare class OperationGenerator extends OperationGenerator$1<Options> {
|
|
121
103
|
delete(operation: Operation, schemas: OperationSchemas): Promise<KubbFile.File<FileMeta> | null>;
|
122
104
|
}
|
123
105
|
|
124
|
-
type
|
106
|
+
type Options = {
|
125
107
|
resolveName: PluginContext['resolveName'];
|
126
108
|
fileResolver?: FileResolver;
|
127
109
|
withJSDocs?: boolean;
|
@@ -130,8 +112,8 @@ type Config = {
|
|
130
112
|
dateType: 'string' | 'date';
|
131
113
|
optionalType: 'questionToken' | 'undefined' | 'questionTokenAndUndefined';
|
132
114
|
};
|
133
|
-
declare class TypeBuilder extends OasBuilder<
|
134
|
-
configure(
|
115
|
+
declare class TypeBuilder extends OasBuilder<Options, never> {
|
116
|
+
configure(options?: Options): this;
|
135
117
|
print(name?: string): string;
|
136
118
|
}
|
137
119
|
|
@@ -156,4 +138,4 @@ type Props = UseResolveProps & {
|
|
156
138
|
};
|
157
139
|
declare function useResolve(props?: Props): Resolver;
|
158
140
|
|
159
|
-
export { FileMeta, OperationGenerator, Options$
|
141
|
+
export { FileMeta, OperationGenerator, Options$3 as Options, PluginOptions, TypeBuilder, TypeGenerator, definePlugin as default, definePlugin, keywordTypeNodes, pluginName, resolve, useResolve };
|
package/dist/index.js
CHANGED
@@ -47,7 +47,7 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
47
47
|
keysToOmit
|
48
48
|
}) {
|
49
49
|
const nodes = [];
|
50
|
-
const type = this
|
50
|
+
const type = this.#getTypeFromSchema(schema, baseName);
|
51
51
|
if (!type) {
|
52
52
|
return this.extraNodes;
|
53
53
|
}
|
@@ -78,8 +78,8 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
78
78
|
* Delegates to getBaseTypeFromSchema internally and
|
79
79
|
* optionally adds a union with null.
|
80
80
|
*/
|
81
|
-
getTypeFromSchema(schema, name) {
|
82
|
-
const type = this
|
81
|
+
#getTypeFromSchema(schema, name) {
|
82
|
+
const type = this.#getBaseTypeFromSchema(schema, name);
|
83
83
|
if (!type) {
|
84
84
|
return null;
|
85
85
|
}
|
@@ -91,7 +91,7 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
91
91
|
/**
|
92
92
|
* Recursively creates a type literal with the given props.
|
93
93
|
*/
|
94
|
-
getTypeFromProperties(baseSchema, baseName) {
|
94
|
+
#getTypeFromProperties(baseSchema, baseName) {
|
95
95
|
const { optionalType } = this.options;
|
96
96
|
const properties = baseSchema?.properties || {};
|
97
97
|
const required = baseSchema?.required;
|
@@ -99,7 +99,7 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
99
99
|
const members = Object.keys(properties).map((name) => {
|
100
100
|
const schema = properties[name];
|
101
101
|
const isRequired = required && required.includes(name);
|
102
|
-
let type = this
|
102
|
+
let type = this.#getTypeFromSchema(schema, this.options.resolveName({ name: `${baseName || ""} ${name}`, pluginName }));
|
103
103
|
if (!type) {
|
104
104
|
return null;
|
105
105
|
}
|
@@ -128,7 +128,7 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
128
128
|
return propertySignature;
|
129
129
|
});
|
130
130
|
if (additionalProperties) {
|
131
|
-
const type = additionalProperties === true ? keywordTypeNodes.any : this
|
131
|
+
const type = additionalProperties === true ? keywordTypeNodes.any : this.#getTypeFromSchema(additionalProperties);
|
132
132
|
if (type) {
|
133
133
|
members.push(createIndexSignature(type));
|
134
134
|
}
|
@@ -138,7 +138,7 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
138
138
|
/**
|
139
139
|
* Create a type alias for the schema referenced by the given ReferenceObject
|
140
140
|
*/
|
141
|
-
getRefAlias(obj, baseName) {
|
141
|
+
#getRefAlias(obj, baseName) {
|
142
142
|
const { $ref } = obj;
|
143
143
|
let ref = this.refs[$ref];
|
144
144
|
if (ref) {
|
@@ -156,26 +156,26 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
156
156
|
* This is the very core of the OpenAPI to TS conversion - it takes a
|
157
157
|
* schema and returns the appropriate type.
|
158
158
|
*/
|
159
|
-
getBaseTypeFromSchema(schema, baseName) {
|
159
|
+
#getBaseTypeFromSchema(schema, baseName) {
|
160
160
|
if (!schema) {
|
161
161
|
return keywordTypeNodes.any;
|
162
162
|
}
|
163
163
|
if (isReference(schema)) {
|
164
|
-
return this
|
164
|
+
return this.#getRefAlias(schema, baseName);
|
165
165
|
}
|
166
166
|
if (schema.oneOf) {
|
167
167
|
const schemaWithoutOneOf = { ...schema, oneOf: void 0 };
|
168
168
|
const union = createUnionDeclaration({
|
169
169
|
withParentheses: true,
|
170
170
|
nodes: schema.oneOf.map((item) => {
|
171
|
-
return this
|
171
|
+
return this.#getBaseTypeFromSchema(item);
|
172
172
|
}).filter((item) => {
|
173
173
|
return item && item !== keywordTypeNodes.any;
|
174
174
|
})
|
175
175
|
});
|
176
176
|
if (schemaWithoutOneOf.properties) {
|
177
177
|
return createIntersectionDeclaration({
|
178
|
-
nodes: [this
|
178
|
+
nodes: [this.#getBaseTypeFromSchema(schemaWithoutOneOf, baseName), union].filter(Boolean)
|
179
179
|
});
|
180
180
|
}
|
181
181
|
return union;
|
@@ -185,14 +185,14 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
185
185
|
const union = createUnionDeclaration({
|
186
186
|
withParentheses: true,
|
187
187
|
nodes: schema.anyOf.map((item) => {
|
188
|
-
return this
|
188
|
+
return this.#getBaseTypeFromSchema(item);
|
189
189
|
}).filter((item) => {
|
190
190
|
return item && item !== keywordTypeNodes.any;
|
191
191
|
})
|
192
192
|
});
|
193
193
|
if (schemaWithoutAnyOf.properties) {
|
194
194
|
return createIntersectionDeclaration({
|
195
|
-
nodes: [this
|
195
|
+
nodes: [this.#getBaseTypeFromSchema(schemaWithoutAnyOf, baseName), union].filter(Boolean)
|
196
196
|
});
|
197
197
|
}
|
198
198
|
return union;
|
@@ -202,14 +202,14 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
202
202
|
const and = createIntersectionDeclaration({
|
203
203
|
withParentheses: true,
|
204
204
|
nodes: schema.allOf.map((item) => {
|
205
|
-
return this
|
205
|
+
return this.#getBaseTypeFromSchema(item);
|
206
206
|
}).filter((item) => {
|
207
207
|
return item && item !== keywordTypeNodes.any;
|
208
208
|
})
|
209
209
|
});
|
210
210
|
if (schemaWithoutAllOf.properties) {
|
211
211
|
return createIntersectionDeclaration({
|
212
|
-
nodes: [this
|
212
|
+
nodes: [this.#getBaseTypeFromSchema(schemaWithoutAllOf, baseName), and].filter(Boolean)
|
213
213
|
});
|
214
214
|
}
|
215
215
|
return and;
|
@@ -240,7 +240,7 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
240
240
|
});
|
241
241
|
}
|
242
242
|
if ("items" in schema) {
|
243
|
-
const node = this
|
243
|
+
const node = this.#getTypeFromSchema(schema.items, baseName);
|
244
244
|
if (node) {
|
245
245
|
return factory2.createArrayTypeNode(node);
|
246
246
|
}
|
@@ -249,19 +249,19 @@ var TypeGenerator = class _TypeGenerator extends SchemaGenerator {
|
|
249
249
|
const prefixItems = schema.prefixItems;
|
250
250
|
return createTupleDeclaration({
|
251
251
|
nodes: prefixItems.map((item) => {
|
252
|
-
return this
|
252
|
+
return this.#getBaseTypeFromSchema(item, void 0);
|
253
253
|
})
|
254
254
|
});
|
255
255
|
}
|
256
256
|
if (schema.properties || schema.additionalProperties) {
|
257
|
-
return this
|
257
|
+
return this.#getTypeFromProperties(schema, baseName);
|
258
258
|
}
|
259
259
|
if (schema.type) {
|
260
260
|
if (Array.isArray(schema.type)) {
|
261
261
|
const [type, nullable] = schema.type;
|
262
262
|
return createUnionDeclaration({
|
263
263
|
nodes: [
|
264
|
-
this
|
264
|
+
this.#getBaseTypeFromSchema(
|
265
265
|
{
|
266
266
|
...schema,
|
267
267
|
type
|
@@ -297,10 +297,12 @@ function refsSorter(a, b) {
|
|
297
297
|
return 0;
|
298
298
|
}
|
299
299
|
var TypeBuilder = class extends OasBuilder {
|
300
|
-
configure(
|
301
|
-
|
302
|
-
|
303
|
-
|
300
|
+
configure(options) {
|
301
|
+
if (options) {
|
302
|
+
this.options = options;
|
303
|
+
}
|
304
|
+
if (this.options.fileResolver) {
|
305
|
+
this.options.withImports = true;
|
304
306
|
}
|
305
307
|
return this;
|
306
308
|
}
|
@@ -308,11 +310,11 @@ var TypeBuilder = class extends OasBuilder {
|
|
308
310
|
const codes = [];
|
309
311
|
const generated = this.items.filter((operationSchema) => name ? operationSchema.name === name : true).sort(nameSorter).map((operationSchema) => {
|
310
312
|
const generator = new TypeGenerator({
|
311
|
-
withJSDocs: this.
|
312
|
-
resolveName: this.
|
313
|
-
enumType: this.
|
314
|
-
dateType: this.
|
315
|
-
optionalType: this.
|
313
|
+
withJSDocs: this.options.withJSDocs,
|
314
|
+
resolveName: this.options.resolveName,
|
315
|
+
enumType: this.options.enumType,
|
316
|
+
dateType: this.options.dateType,
|
317
|
+
optionalType: this.options.optionalType
|
316
318
|
});
|
317
319
|
const sources = generator.build({
|
318
320
|
schema: operationSchema.schema,
|
@@ -331,8 +333,8 @@ var TypeBuilder = class extends OasBuilder {
|
|
331
333
|
generated.forEach((item) => {
|
332
334
|
codes.push(print(item.sources));
|
333
335
|
});
|
334
|
-
if (this.
|
335
|
-
const importsGenerator = new ImportsGenerator({ fileResolver: this.
|
336
|
+
if (this.options.withImports) {
|
337
|
+
const importsGenerator = new ImportsGenerator({ fileResolver: this.options.fileResolver });
|
336
338
|
const importMeta = importsGenerator.build(generated.map((item) => item.import));
|
337
339
|
if (importMeta) {
|
338
340
|
const nodes = importMeta.map((item) => {
|
@@ -350,7 +352,7 @@ var TypeBuilder = class extends OasBuilder {
|
|
350
352
|
};
|
351
353
|
var OperationGenerator = class extends OperationGenerator$1 {
|
352
354
|
resolve(operation) {
|
353
|
-
const { pluginManager } = this.
|
355
|
+
const { pluginManager } = this.context;
|
354
356
|
return resolve$1({
|
355
357
|
operation,
|
356
358
|
resolveName: pluginManager.resolveName,
|
@@ -362,7 +364,8 @@ var OperationGenerator = class extends OperationGenerator$1 {
|
|
362
364
|
return null;
|
363
365
|
}
|
364
366
|
async get(operation, schemas) {
|
365
|
-
const {
|
367
|
+
const { mode, enumType, dateType, optionalType } = this.options;
|
368
|
+
const { pluginManager } = this.context;
|
366
369
|
const type = this.resolve(operation);
|
367
370
|
const fileResolver = (name) => {
|
368
371
|
const root = pluginManager.resolvePath({ baseName: type.baseName, pluginName, options: { tag: operation.getTags()[0]?.name } });
|
@@ -372,14 +375,14 @@ var OperationGenerator = class extends OperationGenerator$1 {
|
|
372
375
|
});
|
373
376
|
return getRelativePath(root, resolvedTypeId);
|
374
377
|
};
|
375
|
-
const source = new TypeBuilder(
|
378
|
+
const source = new TypeBuilder({
|
376
379
|
fileResolver: mode === "file" ? void 0 : fileResolver,
|
377
380
|
withJSDocs: true,
|
378
381
|
resolveName: pluginManager.resolveName,
|
379
382
|
enumType,
|
380
383
|
optionalType,
|
381
384
|
dateType
|
382
|
-
}).print();
|
385
|
+
}).add(schemas.pathParams).add(schemas.queryParams).add(schemas.headerParams).add(schemas.response).add(schemas.errors).configure().print();
|
383
386
|
return {
|
384
387
|
path: type.path,
|
385
388
|
baseName: type.baseName,
|
@@ -391,7 +394,8 @@ var OperationGenerator = class extends OperationGenerator$1 {
|
|
391
394
|
};
|
392
395
|
}
|
393
396
|
async post(operation, schemas) {
|
394
|
-
const {
|
397
|
+
const { mode, enumType, dateType, optionalType } = this.options;
|
398
|
+
const { pluginManager } = this.context;
|
395
399
|
const type = this.resolve(operation);
|
396
400
|
const fileResolver = (name) => {
|
397
401
|
const root = pluginManager.resolvePath({ baseName: type.baseName, pluginName, options: { tag: operation.getTags()[0]?.name } });
|
@@ -401,14 +405,14 @@ var OperationGenerator = class extends OperationGenerator$1 {
|
|
401
405
|
});
|
402
406
|
return getRelativePath(root, resolvedTypeId);
|
403
407
|
};
|
404
|
-
const source = new TypeBuilder(
|
408
|
+
const source = new TypeBuilder({
|
405
409
|
fileResolver: mode === "file" ? void 0 : fileResolver,
|
406
410
|
withJSDocs: true,
|
407
411
|
resolveName: pluginManager.resolveName,
|
408
412
|
enumType,
|
409
413
|
optionalType,
|
410
414
|
dateType
|
411
|
-
}).print();
|
415
|
+
}).add(schemas.pathParams).add(schemas.queryParams).add(schemas.headerParams).add(schemas.request).add(schemas.response).add(schemas.errors).configure().print();
|
412
416
|
return {
|
413
417
|
path: type.path,
|
414
418
|
baseName: type.baseName,
|
@@ -473,7 +477,7 @@ var definePlugin = createPlugin((options) => {
|
|
473
477
|
const root = pathParser.resolve(this.config.root, this.config.output.path);
|
474
478
|
const mode = getPathMode(pathParser.resolve(root, output));
|
475
479
|
if (mode === "directory") {
|
476
|
-
const builder = await new TypeBuilder(
|
480
|
+
const builder = await new TypeBuilder({
|
477
481
|
resolveName: (params) => this.resolveName({ pluginName, ...params }),
|
478
482
|
fileResolver: (name) => {
|
479
483
|
const resolvedTypeId = this.resolvePath({
|
@@ -487,7 +491,7 @@ var definePlugin = createPlugin((options) => {
|
|
487
491
|
enumType,
|
488
492
|
dateType,
|
489
493
|
optionalType
|
490
|
-
});
|
494
|
+
}).configure();
|
491
495
|
Object.entries(schemas).forEach(([name, schema]) => {
|
492
496
|
return builder.add({
|
493
497
|
schema,
|
@@ -512,13 +516,13 @@ var definePlugin = createPlugin((options) => {
|
|
512
516
|
await Promise.all(promises);
|
513
517
|
}
|
514
518
|
if (mode === "file") {
|
515
|
-
const builder = new TypeBuilder(
|
519
|
+
const builder = new TypeBuilder({
|
516
520
|
resolveName: (params) => this.resolveName({ pluginName, ...params }),
|
517
521
|
withJSDocs: true,
|
518
522
|
enumType,
|
519
523
|
dateType,
|
520
524
|
optionalType
|
521
|
-
});
|
525
|
+
}).configure();
|
522
526
|
Object.entries(schemas).forEach(([name, schema]) => {
|
523
527
|
return builder.add({
|
524
528
|
schema,
|
@@ -538,16 +542,20 @@ var definePlugin = createPlugin((options) => {
|
|
538
542
|
}
|
539
543
|
});
|
540
544
|
}
|
541
|
-
const operationGenerator = new OperationGenerator(
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
545
|
+
const operationGenerator = new OperationGenerator(
|
546
|
+
{
|
547
|
+
mode,
|
548
|
+
enumType,
|
549
|
+
dateType,
|
550
|
+
optionalType
|
551
|
+
},
|
552
|
+
{
|
553
|
+
oas,
|
554
|
+
pluginManager: this.pluginManager,
|
555
|
+
contentType: swaggerPlugin.api.contentType,
|
556
|
+
skipBy
|
557
|
+
}
|
558
|
+
);
|
551
559
|
const files = await operationGenerator.build();
|
552
560
|
await this.addFile(...files);
|
553
561
|
},
|
package/dist/index.js.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, getIndexes, 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 { output = 'models', groupBy, skipBy = [], enumType = 'asConst', dateType = 'string', optionalType = 'questionToken', transformers = {} } = 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(oas).configure({\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 })\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(oas).configure({\n resolveName: (params) => this.resolveName({ pluginName, ...params }),\n withJSDocs: true,\n enumType,\n dateType,\n optionalType,\n })\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 oas,\n pluginManager: this.pluginManager,\n contentType: swaggerPlugin.api.contentType,\n skipBy,\n mode,\n enumType,\n dateType,\n optionalType,\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 const files = await getIndexes(root, { extensions: /\\.ts/, exclude: [/schemas/, /json/] })\n\n if (files) {\n await this.addFile(...files)\n }\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 Config = {\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<Config> {\n configure(config: Config) {\n this.config = config\n\n if (this.config.fileResolver) {\n this.config.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.config.withJSDocs,\n resolveName: this.config.resolveName,\n enumType: this.config.enumType,\n dateType: this.config.dateType,\n optionalType: this.config.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.config.withImports) {\n const importsGenerator = new ImportsGenerator({ fileResolver: this.config.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 private 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 private 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 private 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 private 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.options\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): Promise<KubbFile.File<FileMeta> | null> {\n const { pluginManager, mode, oas, enumType, dateType, optionalType } = this.options\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(oas)\n .add(schemas.pathParams)\n .add(schemas.queryParams)\n .add(schemas.headerParams)\n .add(schemas.response)\n .add(schemas.errors)\n .configure({\n fileResolver: mode === 'file' ? undefined : fileResolver,\n withJSDocs: true,\n resolveName: pluginManager.resolveName,\n enumType,\n optionalType,\n dateType,\n })\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): Promise<KubbFile.File<FileMeta> | null> {\n const { pluginManager, mode, oas, enumType, dateType, optionalType } = this.options\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(oas)\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 fileResolver: mode === 'file' ? undefined : fileResolver,\n withJSDocs: true,\n resolveName: pluginManager.resolveName,\n enumType,\n optionalType,\n dateType,\n })\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): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas)\n }\n async patch(operation: Operation, schemas: OperationSchemas): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas)\n }\n async delete(operation: Operation, schemas: OperationSchemas): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas)\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 './plugin.ts'\nexport * from './types.ts'\n\nexport * from './generators/index.ts'\nexport * from './builders/index.ts'\nexport * from './utils/index.ts'\nexport * from './hooks/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","options","root"],"mappings":"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","sourcesContent":["import pathParser from 'node:path'\n\nimport { createPlugin, getDependedPlugins, getIndexes, 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 { output = 'models', groupBy, skipBy = [], enumType = 'asConst', dateType = 'string', optionalType = 'questionToken', transformers = {} } = 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 },\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 const files = await getIndexes(root, { extensions: /\\.ts/, exclude: [/schemas/, /json/] })\n\n if (files) {\n await this.addFile(...files)\n }\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): Promise<KubbFile.File<FileMeta> | null> {\n const { mode, enumType, dateType, optionalType } = this.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): Promise<KubbFile.File<FileMeta> | null> {\n const { mode, enumType, dateType, optionalType } = this.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): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas)\n }\n async patch(operation: Operation, schemas: OperationSchemas): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas)\n }\n async delete(operation: Operation, schemas: OperationSchemas): Promise<KubbFile.File<FileMeta> | null> {\n return this.post(operation, schemas)\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 './plugin.ts'\nexport * from './types.ts'\n\nexport * from './generators/index.ts'\nexport * from './builders/index.ts'\nexport * from './utils/index.ts'\nexport * from './hooks/index.ts'\n\nexport default definePlugin\n"]}
|