@kubb/plugin-ts 5.0.0-alpha.2 → 5.0.0-alpha.20
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/Type-B70QnSzH.cjs +688 -0
- package/dist/Type-B70QnSzH.cjs.map +1 -0
- package/dist/Type-CMC7L-38.js +671 -0
- package/dist/Type-CMC7L-38.js.map +1 -0
- package/dist/casing-Cp-jbC_k.js +84 -0
- package/dist/casing-Cp-jbC_k.js.map +1 -0
- package/dist/casing-D2uQKLWS.cjs +144 -0
- package/dist/casing-D2uQKLWS.cjs.map +1 -0
- package/dist/components.cjs +3 -2
- package/dist/components.d.ts +41 -11
- package/dist/components.js +2 -2
- package/dist/generators-BFkr7ecU.js +556 -0
- package/dist/generators-BFkr7ecU.js.map +1 -0
- package/dist/generators-xHWQCNd9.cjs +560 -0
- package/dist/generators-xHWQCNd9.cjs.map +1 -0
- package/dist/generators.cjs +2 -2
- package/dist/generators.d.ts +3 -491
- package/dist/generators.js +1 -1
- package/dist/index.cjs +146 -3
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +145 -1
- package/dist/index.js.map +1 -0
- package/dist/resolvers-DsKabI0F.js +184 -0
- package/dist/resolvers-DsKabI0F.js.map +1 -0
- package/dist/resolvers-YIpeP5YD.cjs +194 -0
- package/dist/resolvers-YIpeP5YD.cjs.map +1 -0
- package/dist/resolvers.cjs +4 -0
- package/dist/resolvers.d.ts +52 -0
- package/dist/resolvers.js +2 -0
- package/dist/types-zqLMbIqZ.d.ts +340 -0
- package/package.json +15 -8
- package/src/components/Enum.tsx +83 -0
- package/src/components/Type.tsx +25 -144
- package/src/components/index.ts +1 -0
- package/src/constants.ts +29 -0
- package/src/factory.ts +14 -16
- package/src/generators/typeGenerator.tsx +221 -414
- package/src/generators/utils.ts +308 -0
- package/src/index.ts +1 -1
- package/src/plugin.ts +74 -87
- package/src/presets.ts +23 -0
- package/src/printer.ts +256 -92
- package/src/resolvers/index.ts +2 -0
- package/src/resolvers/resolverTs.ts +104 -0
- package/src/resolvers/resolverTsLegacy.ts +87 -0
- package/src/types.ts +234 -63
- package/dist/components-9wydyqUx.cjs +0 -848
- package/dist/components-9wydyqUx.cjs.map +0 -1
- package/dist/components-LmqJfxMv.js +0 -721
- package/dist/components-LmqJfxMv.js.map +0 -1
- package/dist/plugin-CNkzbtpl.cjs +0 -508
- package/dist/plugin-CNkzbtpl.cjs.map +0 -1
- package/dist/plugin-DoLrDl9P.js +0 -476
- package/dist/plugin-DoLrDl9P.js.map +0 -1
- package/dist/types-BpeKGgCn.d.ts +0 -170
- package/src/parser.ts +0 -396
package/dist/generators.d.ts
CHANGED
|
@@ -1,497 +1,9 @@
|
|
|
1
1
|
import { t as __name } from "./chunk--u3MIqq1.js";
|
|
2
|
-
import { n as PluginTs } from "./types-
|
|
3
|
-
import
|
|
4
|
-
import { Fabric } from "@kubb/react-fabric";
|
|
5
|
-
import { HttpMethod, Oas, Operation, SchemaObject, contentType } from "@kubb/oas";
|
|
6
|
-
import { FabricReactNode } from "@kubb/react-fabric/types";
|
|
7
|
-
import { OperationNode, SchemaNode } from "@kubb/ast/types";
|
|
8
|
-
import { KubbFile } from "@kubb/fabric-core/types";
|
|
2
|
+
import { n as PluginTs } from "./types-zqLMbIqZ.js";
|
|
3
|
+
import * as _kubb_core0 from "@kubb/core";
|
|
9
4
|
|
|
10
|
-
//#region ../plugin-oas/src/types.d.ts
|
|
11
|
-
type GetOasOptions = {
|
|
12
|
-
validate?: boolean;
|
|
13
|
-
};
|
|
14
|
-
type Context$2 = {
|
|
15
|
-
getOas(options?: GetOasOptions): Promise<Oas>;
|
|
16
|
-
getBaseURL(): Promise<string | undefined>;
|
|
17
|
-
};
|
|
18
|
-
declare global {
|
|
19
|
-
namespace Kubb {
|
|
20
|
-
interface PluginContext extends Context$2 {}
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* `propertyName` is the ref name + resolved with the nameResolver
|
|
25
|
-
* @example import { Pet } from './Pet'
|
|
26
|
-
*
|
|
27
|
-
* `originalName` is the original name used(in PascalCase), only used to remove duplicates
|
|
28
|
-
*
|
|
29
|
-
* `pluginName` can be used to override the current plugin being used, handy when you want to import a type/schema out of another plugin
|
|
30
|
-
* @example import a type(plugin-ts) for a mock file(swagger-faker)
|
|
31
|
-
*/
|
|
32
|
-
type Ref = {
|
|
33
|
-
propertyName: string;
|
|
34
|
-
originalName: string;
|
|
35
|
-
path: KubbFile.Path;
|
|
36
|
-
pluginName?: string;
|
|
37
|
-
};
|
|
38
|
-
type Refs = Record<string, Ref>;
|
|
39
|
-
type OperationSchema = {
|
|
40
|
-
/**
|
|
41
|
-
* Converted name, contains already `PathParams`, `QueryParams`, ...
|
|
42
|
-
*/
|
|
43
|
-
name: string;
|
|
44
|
-
schema: SchemaObject;
|
|
45
|
-
operation?: Operation;
|
|
46
|
-
/**
|
|
47
|
-
* OperationName in PascalCase, only being used in OperationGenerator
|
|
48
|
-
*/
|
|
49
|
-
operationName: string;
|
|
50
|
-
description?: string;
|
|
51
|
-
statusCode?: number;
|
|
52
|
-
keys?: string[];
|
|
53
|
-
keysToOmit?: string[];
|
|
54
|
-
withData?: boolean;
|
|
55
|
-
};
|
|
56
|
-
type OperationSchemas = {
|
|
57
|
-
pathParams?: OperationSchema & {
|
|
58
|
-
keysToOmit?: never;
|
|
59
|
-
};
|
|
60
|
-
queryParams?: OperationSchema & {
|
|
61
|
-
keysToOmit?: never;
|
|
62
|
-
};
|
|
63
|
-
headerParams?: OperationSchema & {
|
|
64
|
-
keysToOmit?: never;
|
|
65
|
-
};
|
|
66
|
-
request?: OperationSchema;
|
|
67
|
-
response: OperationSchema;
|
|
68
|
-
responses: Array<OperationSchema>;
|
|
69
|
-
statusCodes?: Array<OperationSchema>;
|
|
70
|
-
errors?: Array<OperationSchema>;
|
|
71
|
-
};
|
|
72
|
-
type ByTag = {
|
|
73
|
-
type: 'tag';
|
|
74
|
-
pattern: string | RegExp;
|
|
75
|
-
};
|
|
76
|
-
type ByOperationId = {
|
|
77
|
-
type: 'operationId';
|
|
78
|
-
pattern: string | RegExp;
|
|
79
|
-
};
|
|
80
|
-
type ByPath = {
|
|
81
|
-
type: 'path';
|
|
82
|
-
pattern: string | RegExp;
|
|
83
|
-
};
|
|
84
|
-
type ByMethod = {
|
|
85
|
-
type: 'method';
|
|
86
|
-
pattern: HttpMethod | RegExp;
|
|
87
|
-
};
|
|
88
|
-
type BySchemaName = {
|
|
89
|
-
type: 'schemaName';
|
|
90
|
-
pattern: string | RegExp;
|
|
91
|
-
};
|
|
92
|
-
type ByContentType = {
|
|
93
|
-
type: 'contentType';
|
|
94
|
-
pattern: string | RegExp;
|
|
95
|
-
};
|
|
96
|
-
type Exclude = ByTag | ByOperationId | ByPath | ByMethod | ByContentType;
|
|
97
|
-
type Include = ByTag | ByOperationId | ByPath | ByMethod | ByContentType;
|
|
98
|
-
type Override<TOptions> = (ByTag | ByOperationId | ByPath | ByMethod | BySchemaName | ByContentType) & {
|
|
99
|
-
options: Partial<TOptions>;
|
|
100
|
-
};
|
|
101
|
-
//#endregion
|
|
102
|
-
//#region ../plugin-oas/src/OperationGenerator.d.ts
|
|
103
|
-
type Context$1<TOptions, TPluginOptions extends PluginFactoryOptions> = {
|
|
104
|
-
fabric: Fabric;
|
|
105
|
-
oas: Oas;
|
|
106
|
-
exclude: Array<Exclude> | undefined;
|
|
107
|
-
include: Array<Include> | undefined;
|
|
108
|
-
override: Array<Override<TOptions>> | undefined;
|
|
109
|
-
contentType: contentType | undefined;
|
|
110
|
-
pluginManager: PluginManager;
|
|
111
|
-
events?: AsyncEventEmitter<KubbEvents>;
|
|
112
|
-
/**
|
|
113
|
-
* Current plugin
|
|
114
|
-
*/
|
|
115
|
-
plugin: Plugin<TPluginOptions>;
|
|
116
|
-
mode: KubbFile.Mode;
|
|
117
|
-
UNSTABLE_NAMING?: true;
|
|
118
|
-
};
|
|
119
|
-
declare class OperationGenerator<TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions, TFileMeta extends FileMetaBase = FileMetaBase> {
|
|
120
|
-
#private;
|
|
121
|
-
constructor(options: TPluginOptions['resolvedOptions'], context: Context$1<TPluginOptions['resolvedOptions'], TPluginOptions>);
|
|
122
|
-
get options(): TPluginOptions['resolvedOptions'];
|
|
123
|
-
set options(options: TPluginOptions['resolvedOptions']);
|
|
124
|
-
get context(): Context$1<TPluginOptions['resolvedOptions'], TPluginOptions>;
|
|
125
|
-
getOptions(operation: Operation, method: HttpMethod): Partial<TPluginOptions['resolvedOptions']>;
|
|
126
|
-
getSchemas(operation: Operation, {
|
|
127
|
-
resolveName
|
|
128
|
-
}?: {
|
|
129
|
-
resolveName?: (name: string) => string;
|
|
130
|
-
}): OperationSchemas;
|
|
131
|
-
getOperations(): Promise<Array<{
|
|
132
|
-
path: string;
|
|
133
|
-
method: HttpMethod;
|
|
134
|
-
operation: Operation;
|
|
135
|
-
}>>;
|
|
136
|
-
build(...generators: Array<Generator<TPluginOptions, Version>>): Promise<Array<KubbFile.File<TFileMeta>>>;
|
|
137
|
-
}
|
|
138
|
-
//#endregion
|
|
139
|
-
//#region ../plugin-oas/src/SchemaMapper.d.ts
|
|
140
|
-
type SchemaKeywordMapper = {
|
|
141
|
-
object: {
|
|
142
|
-
keyword: 'object';
|
|
143
|
-
args: {
|
|
144
|
-
properties: {
|
|
145
|
-
[x: string]: Schema[];
|
|
146
|
-
};
|
|
147
|
-
additionalProperties: Schema[];
|
|
148
|
-
patternProperties?: Record<string, Schema[]>;
|
|
149
|
-
strict?: boolean;
|
|
150
|
-
};
|
|
151
|
-
};
|
|
152
|
-
url: {
|
|
153
|
-
keyword: 'url';
|
|
154
|
-
};
|
|
155
|
-
readOnly: {
|
|
156
|
-
keyword: 'readOnly';
|
|
157
|
-
};
|
|
158
|
-
writeOnly: {
|
|
159
|
-
keyword: 'writeOnly';
|
|
160
|
-
};
|
|
161
|
-
uuid: {
|
|
162
|
-
keyword: 'uuid';
|
|
163
|
-
};
|
|
164
|
-
email: {
|
|
165
|
-
keyword: 'email';
|
|
166
|
-
};
|
|
167
|
-
firstName: {
|
|
168
|
-
keyword: 'firstName';
|
|
169
|
-
};
|
|
170
|
-
lastName: {
|
|
171
|
-
keyword: 'lastName';
|
|
172
|
-
};
|
|
173
|
-
phone: {
|
|
174
|
-
keyword: 'phone';
|
|
175
|
-
};
|
|
176
|
-
password: {
|
|
177
|
-
keyword: 'password';
|
|
178
|
-
};
|
|
179
|
-
date: {
|
|
180
|
-
keyword: 'date';
|
|
181
|
-
args: {
|
|
182
|
-
type?: 'date' | 'string';
|
|
183
|
-
};
|
|
184
|
-
};
|
|
185
|
-
time: {
|
|
186
|
-
keyword: 'time';
|
|
187
|
-
args: {
|
|
188
|
-
type?: 'date' | 'string';
|
|
189
|
-
};
|
|
190
|
-
};
|
|
191
|
-
datetime: {
|
|
192
|
-
keyword: 'datetime';
|
|
193
|
-
args: {
|
|
194
|
-
offset?: boolean;
|
|
195
|
-
local?: boolean;
|
|
196
|
-
};
|
|
197
|
-
};
|
|
198
|
-
tuple: {
|
|
199
|
-
keyword: 'tuple';
|
|
200
|
-
args: {
|
|
201
|
-
items: Schema[];
|
|
202
|
-
min?: number;
|
|
203
|
-
max?: number;
|
|
204
|
-
rest?: Schema;
|
|
205
|
-
};
|
|
206
|
-
};
|
|
207
|
-
array: {
|
|
208
|
-
keyword: 'array';
|
|
209
|
-
args: {
|
|
210
|
-
items: Schema[];
|
|
211
|
-
min?: number;
|
|
212
|
-
max?: number;
|
|
213
|
-
unique?: boolean;
|
|
214
|
-
};
|
|
215
|
-
};
|
|
216
|
-
enum: {
|
|
217
|
-
keyword: 'enum';
|
|
218
|
-
args: {
|
|
219
|
-
name: string;
|
|
220
|
-
typeName: string;
|
|
221
|
-
asConst: boolean;
|
|
222
|
-
items: Array<{
|
|
223
|
-
name: string | number;
|
|
224
|
-
format: 'string' | 'number' | 'boolean';
|
|
225
|
-
value?: string | number | boolean;
|
|
226
|
-
}>;
|
|
227
|
-
};
|
|
228
|
-
};
|
|
229
|
-
and: {
|
|
230
|
-
keyword: 'and';
|
|
231
|
-
args: Schema[];
|
|
232
|
-
};
|
|
233
|
-
const: {
|
|
234
|
-
keyword: 'const';
|
|
235
|
-
args: {
|
|
236
|
-
name: string | number;
|
|
237
|
-
format: 'string' | 'number' | 'boolean';
|
|
238
|
-
value?: string | number | boolean;
|
|
239
|
-
};
|
|
240
|
-
};
|
|
241
|
-
union: {
|
|
242
|
-
keyword: 'union';
|
|
243
|
-
args: Schema[];
|
|
244
|
-
};
|
|
245
|
-
ref: {
|
|
246
|
-
keyword: 'ref';
|
|
247
|
-
args: {
|
|
248
|
-
name: string;
|
|
249
|
-
$ref: string;
|
|
250
|
-
/**
|
|
251
|
-
* Full qualified path.
|
|
252
|
-
*/
|
|
253
|
-
path: KubbFile.Path;
|
|
254
|
-
/**
|
|
255
|
-
* When true `File.Import` is used.
|
|
256
|
-
* When false a reference is used inside the current file.
|
|
257
|
-
*/
|
|
258
|
-
isImportable: boolean;
|
|
259
|
-
};
|
|
260
|
-
};
|
|
261
|
-
matches: {
|
|
262
|
-
keyword: 'matches';
|
|
263
|
-
args?: string;
|
|
264
|
-
};
|
|
265
|
-
boolean: {
|
|
266
|
-
keyword: 'boolean';
|
|
267
|
-
};
|
|
268
|
-
default: {
|
|
269
|
-
keyword: 'default';
|
|
270
|
-
args: string | number | boolean;
|
|
271
|
-
};
|
|
272
|
-
string: {
|
|
273
|
-
keyword: 'string';
|
|
274
|
-
};
|
|
275
|
-
integer: {
|
|
276
|
-
keyword: 'integer';
|
|
277
|
-
};
|
|
278
|
-
bigint: {
|
|
279
|
-
keyword: 'bigint';
|
|
280
|
-
};
|
|
281
|
-
number: {
|
|
282
|
-
keyword: 'number';
|
|
283
|
-
};
|
|
284
|
-
max: {
|
|
285
|
-
keyword: 'max';
|
|
286
|
-
args: number;
|
|
287
|
-
};
|
|
288
|
-
min: {
|
|
289
|
-
keyword: 'min';
|
|
290
|
-
args: number;
|
|
291
|
-
};
|
|
292
|
-
exclusiveMaximum: {
|
|
293
|
-
keyword: 'exclusiveMaximum';
|
|
294
|
-
args: number;
|
|
295
|
-
};
|
|
296
|
-
exclusiveMinimum: {
|
|
297
|
-
keyword: 'exclusiveMinimum';
|
|
298
|
-
args: number;
|
|
299
|
-
};
|
|
300
|
-
describe: {
|
|
301
|
-
keyword: 'describe';
|
|
302
|
-
args: string;
|
|
303
|
-
};
|
|
304
|
-
example: {
|
|
305
|
-
keyword: 'example';
|
|
306
|
-
args: string;
|
|
307
|
-
};
|
|
308
|
-
deprecated: {
|
|
309
|
-
keyword: 'deprecated';
|
|
310
|
-
};
|
|
311
|
-
optional: {
|
|
312
|
-
keyword: 'optional';
|
|
313
|
-
};
|
|
314
|
-
undefined: {
|
|
315
|
-
keyword: 'undefined';
|
|
316
|
-
};
|
|
317
|
-
nullish: {
|
|
318
|
-
keyword: 'nullish';
|
|
319
|
-
};
|
|
320
|
-
nullable: {
|
|
321
|
-
keyword: 'nullable';
|
|
322
|
-
};
|
|
323
|
-
null: {
|
|
324
|
-
keyword: 'null';
|
|
325
|
-
};
|
|
326
|
-
any: {
|
|
327
|
-
keyword: 'any';
|
|
328
|
-
};
|
|
329
|
-
unknown: {
|
|
330
|
-
keyword: 'unknown';
|
|
331
|
-
};
|
|
332
|
-
void: {
|
|
333
|
-
keyword: 'void';
|
|
334
|
-
};
|
|
335
|
-
blob: {
|
|
336
|
-
keyword: 'blob';
|
|
337
|
-
};
|
|
338
|
-
schema: {
|
|
339
|
-
keyword: 'schema';
|
|
340
|
-
args: {
|
|
341
|
-
type: 'string' | 'number' | 'integer' | 'boolean' | 'array' | 'object';
|
|
342
|
-
format?: string;
|
|
343
|
-
};
|
|
344
|
-
};
|
|
345
|
-
name: {
|
|
346
|
-
keyword: 'name';
|
|
347
|
-
args: string;
|
|
348
|
-
};
|
|
349
|
-
catchall: {
|
|
350
|
-
keyword: 'catchall';
|
|
351
|
-
};
|
|
352
|
-
interface: {
|
|
353
|
-
keyword: 'interface';
|
|
354
|
-
};
|
|
355
|
-
};
|
|
356
|
-
type Schema = {
|
|
357
|
-
keyword: string;
|
|
358
|
-
} | SchemaKeywordMapper[keyof SchemaKeywordMapper];
|
|
359
|
-
//#endregion
|
|
360
|
-
//#region ../plugin-oas/src/SchemaGenerator.d.ts
|
|
361
|
-
type Context<TOptions, TPluginOptions extends PluginFactoryOptions> = {
|
|
362
|
-
fabric: Fabric;
|
|
363
|
-
oas: Oas;
|
|
364
|
-
pluginManager: PluginManager;
|
|
365
|
-
events?: AsyncEventEmitter<KubbEvents>;
|
|
366
|
-
/**
|
|
367
|
-
* Current plugin
|
|
368
|
-
*/
|
|
369
|
-
plugin: Plugin<TPluginOptions>;
|
|
370
|
-
mode: KubbFile.Mode;
|
|
371
|
-
include?: Array<'schemas' | 'responses' | 'requestBodies'>;
|
|
372
|
-
override: Array<Override<TOptions>> | undefined;
|
|
373
|
-
contentType?: contentType;
|
|
374
|
-
output?: string;
|
|
375
|
-
};
|
|
376
|
-
type SchemaGeneratorOptions = {
|
|
377
|
-
dateType: false | 'string' | 'stringOffset' | 'stringLocal' | 'date';
|
|
378
|
-
integerType?: 'number' | 'bigint';
|
|
379
|
-
unknownType: 'any' | 'unknown' | 'void';
|
|
380
|
-
emptySchemaType: 'any' | 'unknown' | 'void';
|
|
381
|
-
enumType?: 'enum' | 'asConst' | 'asPascalConst' | 'constEnum' | 'literal' | 'inlineLiteral';
|
|
382
|
-
enumSuffix?: string;
|
|
383
|
-
/**
|
|
384
|
-
* @deprecated Will be removed in v5. Use `collisionDetection: true` instead to prevent enum name collisions.
|
|
385
|
-
* When `collisionDetection` is enabled, the rootName-based approach eliminates the need for numeric suffixes.
|
|
386
|
-
* @internal
|
|
387
|
-
*/
|
|
388
|
-
usedEnumNames?: Record<string, number>;
|
|
389
|
-
mapper?: Record<string, string>;
|
|
390
|
-
typed?: boolean;
|
|
391
|
-
transformers: {
|
|
392
|
-
/**
|
|
393
|
-
* Customize the names based on the type that is provided by the plugin.
|
|
394
|
-
*/
|
|
395
|
-
name?: (name: ResolveNameParams['name'], type?: ResolveNameParams['type']) => string;
|
|
396
|
-
/**
|
|
397
|
-
* Receive schema and name(propertyName) and return Schema array.
|
|
398
|
-
* Return `undefined` to fall through to default schema generation.
|
|
399
|
-
* @beta
|
|
400
|
-
*/
|
|
401
|
-
schema?: (schemaProps: SchemaProps$1, defaultSchemas: Schema[]) => Array<Schema> | undefined;
|
|
402
|
-
};
|
|
403
|
-
};
|
|
404
|
-
type SchemaProps$1 = {
|
|
405
|
-
schema: SchemaObject | null;
|
|
406
|
-
name: string | null;
|
|
407
|
-
parentName: string | null;
|
|
408
|
-
rootName?: string | null;
|
|
409
|
-
};
|
|
410
|
-
declare class SchemaGenerator<TOptions extends SchemaGeneratorOptions = SchemaGeneratorOptions, TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions, TFileMeta extends FileMetaBase = FileMetaBase> {
|
|
411
|
-
#private;
|
|
412
|
-
constructor(options: TOptions, context: Context<TOptions, TPluginOptions>);
|
|
413
|
-
get options(): TOptions;
|
|
414
|
-
set options(options: TOptions);
|
|
415
|
-
get context(): Context<TOptions, TPluginOptions>;
|
|
416
|
-
refs: Refs;
|
|
417
|
-
/**
|
|
418
|
-
* Creates a type node from a given schema.
|
|
419
|
-
* Delegates to getBaseTypeFromSchema internally and
|
|
420
|
-
* optionally adds a union with null.
|
|
421
|
-
*/
|
|
422
|
-
parse(props: SchemaProps$1): Schema[];
|
|
423
|
-
static deepSearch<T extends keyof SchemaKeywordMapper>(tree: Schema[] | undefined, keyword: T): Array<SchemaKeywordMapper[T]>;
|
|
424
|
-
static find<T extends keyof SchemaKeywordMapper>(tree: Schema[] | undefined, keyword: T): SchemaKeywordMapper[T] | undefined;
|
|
425
|
-
static combineObjects(tree: Schema[] | undefined): Schema[];
|
|
426
|
-
build(...generators: Array<Generator<TPluginOptions, Version>>): Promise<Array<KubbFile.File<TFileMeta>>>;
|
|
427
|
-
}
|
|
428
|
-
//#endregion
|
|
429
|
-
//#region ../plugin-oas/src/generators/createGenerator.d.ts
|
|
430
|
-
type CoreGenerator<TOptions extends PluginFactoryOptions, TVersion extends Version> = {
|
|
431
|
-
name: string;
|
|
432
|
-
type: 'core';
|
|
433
|
-
version: TVersion;
|
|
434
|
-
operations: (props: OperationsProps<TOptions, TVersion>) => Promise<KubbFile.File[]>;
|
|
435
|
-
operation: (props: OperationProps<TOptions, TVersion>) => Promise<KubbFile.File[]>;
|
|
436
|
-
schema: (props: SchemaProps<TOptions, TVersion>) => Promise<KubbFile.File[]>;
|
|
437
|
-
};
|
|
438
|
-
//#endregion
|
|
439
|
-
//#region ../plugin-oas/src/generators/types.d.ts
|
|
440
|
-
type Version = '1' | '2';
|
|
441
|
-
type OperationsV1Props<TOptions extends PluginFactoryOptions> = {
|
|
442
|
-
config: Config;
|
|
443
|
-
generator: Omit<OperationGenerator<TOptions>, 'build'>;
|
|
444
|
-
plugin: Plugin<TOptions>;
|
|
445
|
-
operations: Array<Operation>;
|
|
446
|
-
};
|
|
447
|
-
type OperationsV2Props<TOptions extends PluginFactoryOptions> = {
|
|
448
|
-
config: Config;
|
|
449
|
-
plugin: Plugin<TOptions>;
|
|
450
|
-
nodes: Array<OperationNode>;
|
|
451
|
-
};
|
|
452
|
-
type OperationV1Props<TOptions extends PluginFactoryOptions> = {
|
|
453
|
-
config: Config;
|
|
454
|
-
generator: Omit<OperationGenerator<TOptions>, 'build'>;
|
|
455
|
-
plugin: Plugin<TOptions>;
|
|
456
|
-
operation: Operation;
|
|
457
|
-
};
|
|
458
|
-
type OperationV2Props<TOptions extends PluginFactoryOptions> = {
|
|
459
|
-
config: Config;
|
|
460
|
-
plugin: Plugin<TOptions>;
|
|
461
|
-
node: OperationNode;
|
|
462
|
-
};
|
|
463
|
-
type OperationsProps<TOptions extends PluginFactoryOptions, TVersion extends Version = '1'> = TVersion extends '2' ? OperationsV2Props<TOptions> : OperationsV1Props<TOptions>;
|
|
464
|
-
type OperationProps<TOptions extends PluginFactoryOptions, TVersion extends Version = '1'> = TVersion extends '2' ? OperationV2Props<TOptions> : OperationV1Props<TOptions>;
|
|
465
|
-
type SchemaV1Props<TOptions extends PluginFactoryOptions> = {
|
|
466
|
-
config: Config;
|
|
467
|
-
generator: Omit<SchemaGenerator<SchemaGeneratorOptions, TOptions>, 'build'>;
|
|
468
|
-
plugin: Plugin<TOptions>;
|
|
469
|
-
schema: {
|
|
470
|
-
name: string;
|
|
471
|
-
tree: Array<Schema>;
|
|
472
|
-
value: SchemaObject;
|
|
473
|
-
};
|
|
474
|
-
};
|
|
475
|
-
type SchemaV2Props<TOptions extends PluginFactoryOptions> = {
|
|
476
|
-
config: Config;
|
|
477
|
-
plugin: Plugin<TOptions>;
|
|
478
|
-
node: SchemaNode;
|
|
479
|
-
};
|
|
480
|
-
type SchemaProps<TOptions extends PluginFactoryOptions, TVersion extends Version = '1'> = TVersion extends '2' ? SchemaV2Props<TOptions> : SchemaV1Props<TOptions>;
|
|
481
|
-
type Generator<TOptions extends PluginFactoryOptions, TVersion extends Version = Version> = CoreGenerator<TOptions, TVersion> | ReactGenerator<TOptions, TVersion>;
|
|
482
|
-
//#endregion
|
|
483
|
-
//#region ../plugin-oas/src/generators/createReactGenerator.d.ts
|
|
484
|
-
type ReactGenerator<TOptions extends PluginFactoryOptions, TVersion extends Version> = {
|
|
485
|
-
name: string;
|
|
486
|
-
type: 'react';
|
|
487
|
-
version: TVersion;
|
|
488
|
-
Operations: (props: OperationsProps<TOptions, TVersion>) => FabricReactNode;
|
|
489
|
-
Operation: (props: OperationProps<TOptions, TVersion>) => FabricReactNode;
|
|
490
|
-
Schema: (props: SchemaProps<TOptions, TVersion>) => FabricReactNode;
|
|
491
|
-
};
|
|
492
|
-
//#endregion
|
|
493
5
|
//#region src/generators/typeGenerator.d.ts
|
|
494
|
-
declare const typeGenerator:
|
|
6
|
+
declare const typeGenerator: _kubb_core0.ReactGeneratorV2<PluginTs>;
|
|
495
7
|
//#endregion
|
|
496
8
|
export { typeGenerator };
|
|
497
9
|
//# sourceMappingURL=generators.d.ts.map
|
package/dist/generators.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { t as typeGenerator } from "./generators-BFkr7ecU.js";
|
|
2
2
|
export { typeGenerator };
|
package/dist/index.cjs
CHANGED
|
@@ -1,4 +1,147 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
const require_casing = require("./casing-D2uQKLWS.cjs");
|
|
3
|
+
const require_generators = require("./generators-xHWQCNd9.cjs");
|
|
4
|
+
const require_resolvers = require("./resolvers-YIpeP5YD.cjs");
|
|
5
|
+
let node_path = require("node:path");
|
|
6
|
+
node_path = require_casing.__toESM(node_path);
|
|
7
|
+
let _kubb_ast = require("@kubb/ast");
|
|
8
|
+
let _kubb_core = require("@kubb/core");
|
|
9
|
+
//#region src/presets.ts
|
|
10
|
+
const presets = (0, _kubb_core.definePresets)({
|
|
11
|
+
default: (0, _kubb_core.definePreset)("default", { resolvers: [require_resolvers.resolverTs] }),
|
|
12
|
+
kubbV4: (0, _kubb_core.definePreset)("kubbV4", { resolvers: [require_resolvers.resolverTsLegacy] })
|
|
13
|
+
});
|
|
14
|
+
function getPreset(preset, { resolvers, transformers } = {}) {
|
|
15
|
+
return (0, _kubb_core.getPreset)({
|
|
16
|
+
preset,
|
|
17
|
+
presets,
|
|
18
|
+
resolvers: [require_resolvers.resolverTs, ...resolvers ?? []],
|
|
19
|
+
transformers
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
//#endregion
|
|
23
|
+
//#region src/plugin.ts
|
|
24
|
+
const pluginTsName = "plugin-ts";
|
|
25
|
+
const pluginTs = (0, _kubb_core.createPlugin)((options) => {
|
|
26
|
+
const { output = {
|
|
27
|
+
path: "types",
|
|
28
|
+
barrelType: "named"
|
|
29
|
+
}, group, exclude = [], include, override = [], enumType = "asConst", enumKeyCasing = "none", optionalType = "questionToken", arrayType = "array", syntaxType = "type", paramsCasing, generators = [require_generators.typeGenerator].filter(Boolean), compatibilityPreset = "default", resolvers: userResolvers, transformers: userTransformers = [] } = options;
|
|
30
|
+
const { baseResolver, resolver, transformers } = getPreset(compatibilityPreset, {
|
|
31
|
+
resolvers: userResolvers,
|
|
32
|
+
transformers: userTransformers
|
|
33
|
+
});
|
|
34
|
+
let resolveNameWarning = false;
|
|
35
|
+
return {
|
|
36
|
+
name: pluginTsName,
|
|
37
|
+
options: {
|
|
38
|
+
output,
|
|
39
|
+
optionalType,
|
|
40
|
+
arrayType,
|
|
41
|
+
enumType,
|
|
42
|
+
enumKeyCasing,
|
|
43
|
+
syntaxType,
|
|
44
|
+
group,
|
|
45
|
+
override,
|
|
46
|
+
paramsCasing,
|
|
47
|
+
compatibilityPreset,
|
|
48
|
+
baseResolver,
|
|
49
|
+
resolver,
|
|
50
|
+
transformers
|
|
51
|
+
},
|
|
52
|
+
resolvePath(baseName, pathMode, options) {
|
|
53
|
+
const root = node_path.default.resolve(this.config.root, this.config.output.path);
|
|
54
|
+
if ((pathMode ?? (0, _kubb_core.getMode)(node_path.default.resolve(root, output.path))) === "single")
|
|
55
|
+
/**
|
|
56
|
+
* when output is a file then we will always append to the same file(output file), see fileManager.addOrAppend
|
|
57
|
+
* Other plugins then need to call addOrAppend instead of just add from the fileManager class
|
|
58
|
+
*/
|
|
59
|
+
return node_path.default.resolve(root, output.path);
|
|
60
|
+
if (group && (options?.group?.path || options?.group?.tag)) {
|
|
61
|
+
const groupName = group?.name ? group.name : (ctx) => {
|
|
62
|
+
if (group?.type === "path") return `${ctx.group.split("/")[1]}`;
|
|
63
|
+
return `${require_casing.camelCase(ctx.group)}Controller`;
|
|
64
|
+
};
|
|
65
|
+
return node_path.default.resolve(root, output.path, groupName({ group: group.type === "path" ? options.group.path : options.group.tag }), baseName);
|
|
66
|
+
}
|
|
67
|
+
return node_path.default.resolve(root, output.path, baseName);
|
|
68
|
+
},
|
|
69
|
+
resolveName(name, type) {
|
|
70
|
+
if (!resolveNameWarning) {
|
|
71
|
+
this.driver.events.emit("warn", "Do not use resolveName for pluginTs, use resolverTs instead");
|
|
72
|
+
resolveNameWarning = true;
|
|
73
|
+
}
|
|
74
|
+
return resolver.default(name, type);
|
|
75
|
+
},
|
|
76
|
+
async install() {
|
|
77
|
+
const { config, fabric, plugin, adapter, rootNode, driver, openInStudio } = this;
|
|
78
|
+
const root = node_path.default.resolve(config.root, config.output.path);
|
|
79
|
+
const mode = (0, _kubb_core.getMode)(node_path.default.resolve(root, output.path));
|
|
80
|
+
if (!adapter) throw new Error("Plugin cannot work without adapter being set");
|
|
81
|
+
await openInStudio({ ast: true });
|
|
82
|
+
await (0, _kubb_ast.walk)(rootNode, {
|
|
83
|
+
depth: "shallow",
|
|
84
|
+
async schema(schemaNode) {
|
|
85
|
+
const writeTasks = generators.map(async (generator) => {
|
|
86
|
+
if (generator.type === "react" && generator.version === "2") {
|
|
87
|
+
const options = resolver.resolveOptions(schemaNode, {
|
|
88
|
+
options: plugin.options,
|
|
89
|
+
exclude,
|
|
90
|
+
include,
|
|
91
|
+
override
|
|
92
|
+
});
|
|
93
|
+
if (options === null) return;
|
|
94
|
+
await (0, _kubb_core.renderSchema)(schemaNode, {
|
|
95
|
+
options,
|
|
96
|
+
adapter,
|
|
97
|
+
config,
|
|
98
|
+
fabric,
|
|
99
|
+
Component: generator.Schema,
|
|
100
|
+
plugin,
|
|
101
|
+
driver,
|
|
102
|
+
mode
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
await Promise.all(writeTasks);
|
|
107
|
+
},
|
|
108
|
+
async operation(operationNode) {
|
|
109
|
+
const writeTasks = generators.map(async (generator) => {
|
|
110
|
+
if (generator.type === "react" && generator.version === "2") {
|
|
111
|
+
const options = resolver.resolveOptions(operationNode, {
|
|
112
|
+
options: plugin.options,
|
|
113
|
+
exclude,
|
|
114
|
+
include,
|
|
115
|
+
override
|
|
116
|
+
});
|
|
117
|
+
if (options === null) return;
|
|
118
|
+
await (0, _kubb_core.renderOperation)(operationNode, {
|
|
119
|
+
options,
|
|
120
|
+
adapter,
|
|
121
|
+
config,
|
|
122
|
+
fabric,
|
|
123
|
+
Component: generator.Operation,
|
|
124
|
+
plugin,
|
|
125
|
+
driver,
|
|
126
|
+
mode
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
});
|
|
130
|
+
await Promise.all(writeTasks);
|
|
131
|
+
}
|
|
132
|
+
});
|
|
133
|
+
const barrelFiles = await (0, _kubb_core.getBarrelFiles)(this.fabric.files, {
|
|
134
|
+
type: output.barrelType ?? "named",
|
|
135
|
+
root,
|
|
136
|
+
output,
|
|
137
|
+
meta: { pluginName: this.plugin.name }
|
|
138
|
+
});
|
|
139
|
+
await this.upsertFile(...barrelFiles);
|
|
140
|
+
}
|
|
141
|
+
};
|
|
142
|
+
});
|
|
143
|
+
//#endregion
|
|
144
|
+
exports.pluginTs = pluginTs;
|
|
145
|
+
exports.pluginTsName = pluginTsName;
|
|
146
|
+
|
|
147
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["resolverTs","resolverTsLegacy","typeGenerator","path","camelCase"],"sources":["../src/presets.ts","../src/plugin.ts"],"sourcesContent":["import type { Visitor } from '@kubb/ast/types'\nimport { type CompatibilityPreset, definePreset, definePresets, getPreset as getCorePreset } from '@kubb/core'\nimport { resolverTs, resolverTsLegacy } from './resolvers/index.ts'\nimport type { ResolverTs } from './types.ts'\n\nexport const presets = definePresets<ResolverTs>({\n default: definePreset('default', { resolvers: [resolverTs] }),\n kubbV4: definePreset('kubbV4', { resolvers: [resolverTsLegacy] }),\n})\n\ntype GetPresetOptions = {\n resolvers?: Array<ResolverTs>\n transformers?: Array<Visitor>\n}\n\nexport function getPreset(preset: CompatibilityPreset, { resolvers, transformers }: GetPresetOptions = {}) {\n return getCorePreset({\n preset,\n presets,\n resolvers: [resolverTs, ...(resolvers ?? [])],\n transformers,\n })\n}\n","import path from 'node:path'\nimport { camelCase } from '@internals/utils'\nimport { walk } from '@kubb/ast'\nimport { createPlugin, type Group, getBarrelFiles, getMode, renderOperation, renderSchema } from '@kubb/core'\nimport { typeGenerator } from './generators/index.ts'\nimport { getPreset } from './presets.ts'\nimport type { PluginTs } from './types.ts'\n\nexport const pluginTsName = 'plugin-ts' satisfies PluginTs['name']\n\nexport const pluginTs = createPlugin<PluginTs>((options) => {\n const {\n output = { path: 'types', barrelType: 'named' },\n group,\n exclude = [],\n include,\n override = [],\n enumType = 'asConst',\n enumKeyCasing = 'none',\n optionalType = 'questionToken',\n arrayType = 'array',\n syntaxType = 'type',\n paramsCasing,\n generators = [typeGenerator].filter(Boolean),\n compatibilityPreset = 'default',\n resolvers: userResolvers,\n transformers: userTransformers = [],\n } = options\n\n const { baseResolver, resolver, transformers } = getPreset(compatibilityPreset, {\n resolvers: userResolvers,\n transformers: userTransformers,\n })\n\n let resolveNameWarning = false\n\n return {\n name: pluginTsName,\n options: {\n output,\n optionalType,\n arrayType,\n enumType,\n enumKeyCasing,\n syntaxType,\n group,\n override,\n paramsCasing,\n compatibilityPreset,\n baseResolver,\n resolver,\n transformers,\n },\n resolvePath(baseName, pathMode, options) {\n const root = path.resolve(this.config.root, this.config.output.path)\n const mode = pathMode ?? getMode(path.resolve(root, output.path))\n\n if (mode === 'single') {\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.path)\n }\n\n if (group && (options?.group?.path || options?.group?.tag)) {\n const groupName: Group['name'] = group?.name\n ? group.name\n : (ctx) => {\n if (group?.type === 'path') {\n return `${ctx.group.split('/')[1]}`\n }\n return `${camelCase(ctx.group)}Controller`\n }\n\n return path.resolve(\n root,\n output.path,\n groupName({\n group: group.type === 'path' ? options.group.path! : options.group.tag!,\n }),\n baseName,\n )\n }\n\n return path.resolve(root, output.path, baseName)\n },\n resolveName(name, type) {\n if (!resolveNameWarning) {\n this.driver.events.emit('warn', 'Do not use resolveName for pluginTs, use resolverTs instead')\n resolveNameWarning = true\n }\n\n return resolver.default(name, type)\n },\n async install() {\n const { config, fabric, plugin, adapter, rootNode, driver, openInStudio } = this\n\n const root = path.resolve(config.root, config.output.path)\n const mode = getMode(path.resolve(root, output.path))\n\n if (!adapter) {\n throw new Error('Plugin cannot work without adapter being set')\n }\n\n await openInStudio({ ast: true })\n\n await walk(rootNode, {\n depth: 'shallow',\n async schema(schemaNode) {\n const writeTasks = generators.map(async (generator) => {\n if (generator.type === 'react' && generator.version === '2') {\n const options = resolver.resolveOptions(schemaNode, { options: plugin.options, exclude, include, override })\n\n if (options === null) {\n return\n }\n\n await renderSchema(schemaNode, {\n options,\n adapter,\n config,\n fabric,\n Component: generator.Schema,\n plugin,\n driver,\n mode,\n })\n }\n })\n\n await Promise.all(writeTasks)\n },\n async operation(operationNode) {\n const writeTasks = generators.map(async (generator) => {\n if (generator.type === 'react' && generator.version === '2') {\n const options = resolver.resolveOptions(operationNode, { options: plugin.options, exclude, include, override })\n\n if (options === null) {\n return\n }\n\n await renderOperation(operationNode, {\n options,\n adapter,\n config,\n fabric,\n Component: generator.Operation,\n plugin,\n driver,\n mode,\n })\n }\n })\n\n await Promise.all(writeTasks)\n },\n })\n\n const barrelFiles = await getBarrelFiles(this.fabric.files, {\n type: output.barrelType ?? 'named',\n root,\n output,\n meta: {\n pluginName: this.plugin.name,\n },\n })\n\n await this.upsertFile(...barrelFiles)\n },\n }\n})\n"],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { t as __name } from "./chunk--u3MIqq1.js";
|
|
2
|
-
import { n as PluginTs, t as Options } from "./types-
|
|
2
|
+
import { n as PluginTs, r as ResolverTs, t as Options } from "./types-zqLMbIqZ.js";
|
|
3
3
|
import * as _kubb_core0 from "@kubb/core";
|
|
4
4
|
|
|
5
5
|
//#region src/plugin.d.ts
|
|
6
6
|
declare const pluginTsName = "plugin-ts";
|
|
7
7
|
declare const pluginTs: (options?: Options | undefined) => _kubb_core0.UserPluginWithLifeCycle<PluginTs>;
|
|
8
8
|
//#endregion
|
|
9
|
-
export { type PluginTs, pluginTs, pluginTsName };
|
|
9
|
+
export { type PluginTs, type ResolverTs, pluginTs, pluginTsName };
|
|
10
10
|
//# sourceMappingURL=index.d.ts.map
|