@kubb/plugin-faker 5.0.0-alpha.8 → 5.0.0-beta.3

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.
Files changed (43) hide show
  1. package/LICENSE +17 -10
  2. package/README.md +1 -4
  3. package/dist/Faker-BgleOzVN.cjs +486 -0
  4. package/dist/Faker-BgleOzVN.cjs.map +1 -0
  5. package/dist/Faker-CdyPfOPg.d.ts +27 -0
  6. package/dist/Faker-fcQEB9i5.js +384 -0
  7. package/dist/Faker-fcQEB9i5.js.map +1 -0
  8. package/dist/components.cjs +2 -2
  9. package/dist/components.d.ts +2 -31
  10. package/dist/components.js +1 -1
  11. package/dist/fakerGenerator-C3Ho3BaI.d.ts +9 -0
  12. package/dist/fakerGenerator-D7daHCh6.js +516 -0
  13. package/dist/fakerGenerator-D7daHCh6.js.map +1 -0
  14. package/dist/fakerGenerator-VJEVzLjc.cjs +526 -0
  15. package/dist/fakerGenerator-VJEVzLjc.cjs.map +1 -0
  16. package/dist/generators.cjs +1 -1
  17. package/dist/generators.d.ts +2 -476
  18. package/dist/generators.js +1 -1
  19. package/dist/index.cjs +136 -84
  20. package/dist/index.cjs.map +1 -1
  21. package/dist/index.d.ts +28 -4
  22. package/dist/index.js +128 -83
  23. package/dist/index.js.map +1 -1
  24. package/dist/printerFaker-CJiwzoto.d.ts +206 -0
  25. package/package.json +52 -50
  26. package/src/components/Faker.tsx +124 -78
  27. package/src/generators/fakerGenerator.tsx +235 -134
  28. package/src/index.ts +7 -2
  29. package/src/plugin.ts +60 -121
  30. package/src/printers/printerFaker.ts +341 -0
  31. package/src/resolvers/resolverFaker.ts +92 -0
  32. package/src/types.ts +127 -81
  33. package/src/utils.ts +356 -0
  34. package/dist/components-BkBIov4R.js +0 -419
  35. package/dist/components-BkBIov4R.js.map +0 -1
  36. package/dist/components-IdP8GXXX.cjs +0 -461
  37. package/dist/components-IdP8GXXX.cjs.map +0 -1
  38. package/dist/fakerGenerator-CYUCNH3Q.cjs +0 -204
  39. package/dist/fakerGenerator-CYUCNH3Q.cjs.map +0 -1
  40. package/dist/fakerGenerator-M5oCrPmy.js +0 -200
  41. package/dist/fakerGenerator-M5oCrPmy.js.map +0 -1
  42. package/dist/types-r7BubMLO.d.ts +0 -132
  43. package/src/parser.ts +0 -453
@@ -1,476 +1,2 @@
1
- import { t as __name } from "./chunk--u3MIqq1.js";
2
- import { n as PluginFaker } from "./types-r7BubMLO.js";
3
- import { AsyncEventEmitter, Config, FileMetaBase, Generator, Group, KubbEvents, Output, Plugin, PluginDriver, PluginFactoryOptions, ResolveNameParams } from "@kubb/core";
4
- import { FabricReactNode } from "@kubb/react-fabric/types";
5
- import { HttpMethod, Oas, Operation, SchemaObject, contentType } from "@kubb/oas";
6
- import { Fabric, KubbFile } from "@kubb/fabric-core/types";
7
-
8
- //#region ../plugin-oas/src/types.d.ts
9
- type GetOasOptions = {
10
- validate?: boolean;
11
- };
12
- type Context$2 = {
13
- getOas(options?: GetOasOptions): Promise<Oas>;
14
- getBaseURL(): Promise<string | undefined>;
15
- };
16
- declare global {
17
- namespace Kubb {
18
- interface PluginContext extends Context$2 {}
19
- }
20
- }
21
- /**
22
- * `propertyName` is the ref name + resolved with the nameResolver
23
- * @example import { Pet } from './Pet'
24
- *
25
- * `originalName` is the original name used(in PascalCase), only used to remove duplicates
26
- *
27
- * `pluginName` can be used to override the current plugin being used, handy when you want to import a type/schema out of another plugin
28
- * @example import a type(plugin-ts) for a mock file(swagger-faker)
29
- */
30
- type Ref = {
31
- propertyName: string;
32
- originalName: string;
33
- path: KubbFile.Path;
34
- pluginName?: string;
35
- };
36
- type Refs = Record<string, Ref>;
37
- type OperationSchema = {
38
- /**
39
- * Converted name, contains already `PathParams`, `QueryParams`, ...
40
- */
41
- name: string;
42
- schema: SchemaObject;
43
- operation?: Operation;
44
- /**
45
- * OperationName in PascalCase, only being used in OperationGenerator
46
- */
47
- operationName: string;
48
- description?: string;
49
- statusCode?: number;
50
- keys?: string[];
51
- keysToOmit?: string[];
52
- withData?: boolean;
53
- };
54
- type OperationSchemas = {
55
- pathParams?: OperationSchema & {
56
- keysToOmit?: never;
57
- };
58
- queryParams?: OperationSchema & {
59
- keysToOmit?: never;
60
- };
61
- headerParams?: OperationSchema & {
62
- keysToOmit?: never;
63
- };
64
- request?: OperationSchema;
65
- response: OperationSchema;
66
- responses: Array<OperationSchema>;
67
- statusCodes?: Array<OperationSchema>;
68
- errors?: Array<OperationSchema>;
69
- };
70
- type ByTag = {
71
- type: 'tag';
72
- pattern: string | RegExp;
73
- };
74
- type ByOperationId = {
75
- type: 'operationId';
76
- pattern: string | RegExp;
77
- };
78
- type ByPath = {
79
- type: 'path';
80
- pattern: string | RegExp;
81
- };
82
- type ByMethod = {
83
- type: 'method';
84
- pattern: HttpMethod | RegExp;
85
- };
86
- type BySchemaName = {
87
- type: 'schemaName';
88
- pattern: string | RegExp;
89
- };
90
- type ByContentType = {
91
- type: 'contentType';
92
- pattern: string | RegExp;
93
- };
94
- type Exclude = ByTag | ByOperationId | ByPath | ByMethod | ByContentType | BySchemaName;
95
- type Include = ByTag | ByOperationId | ByPath | ByMethod | ByContentType | BySchemaName;
96
- type Override<TOptions> = (ByTag | ByOperationId | ByPath | ByMethod | BySchemaName | ByContentType) & {
97
- options: Partial<TOptions>;
98
- };
99
- //#endregion
100
- //#region ../plugin-oas/src/OperationGenerator.d.ts
101
- type Context$1<TOptions, TPluginOptions extends PluginFactoryOptions> = {
102
- fabric: Fabric;
103
- oas: Oas;
104
- exclude: Array<Exclude> | undefined;
105
- include: Array<Include> | undefined;
106
- override: Array<Override<TOptions>> | undefined;
107
- contentType: contentType | undefined;
108
- driver: PluginDriver;
109
- events?: AsyncEventEmitter<KubbEvents>;
110
- /**
111
- * Current plugin
112
- */
113
- plugin: Plugin<TPluginOptions>;
114
- mode: KubbFile.Mode;
115
- UNSTABLE_NAMING?: true;
116
- };
117
- declare class OperationGenerator<TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions, TFileMeta extends FileMetaBase = FileMetaBase> {
118
- #private;
119
- constructor(options: TPluginOptions['resolvedOptions'], context: Context$1<TPluginOptions['resolvedOptions'], TPluginOptions>);
120
- get options(): TPluginOptions['resolvedOptions'];
121
- set options(options: TPluginOptions['resolvedOptions']);
122
- get context(): Context$1<TPluginOptions['resolvedOptions'], TPluginOptions>;
123
- getOptions(operation: Operation, method: HttpMethod): Partial<TPluginOptions['resolvedOptions']>;
124
- getSchemas(operation: Operation, {
125
- resolveName
126
- }?: {
127
- resolveName?: (name: string) => string;
128
- }): OperationSchemas;
129
- getOperations(): Promise<Array<{
130
- path: string;
131
- method: HttpMethod;
132
- operation: Operation;
133
- }>>;
134
- build(...generators: Array<Generator$1<TPluginOptions>>): Promise<Array<KubbFile.File<TFileMeta>>>;
135
- }
136
- //#endregion
137
- //#region ../plugin-oas/src/SchemaMapper.d.ts
138
- type SchemaKeywordMapper = {
139
- object: {
140
- keyword: 'object';
141
- args: {
142
- properties: {
143
- [x: string]: Schema[];
144
- };
145
- additionalProperties: Schema[];
146
- patternProperties?: Record<string, Schema[]>;
147
- strict?: boolean;
148
- };
149
- };
150
- url: {
151
- keyword: 'url';
152
- };
153
- readOnly: {
154
- keyword: 'readOnly';
155
- };
156
- writeOnly: {
157
- keyword: 'writeOnly';
158
- };
159
- uuid: {
160
- keyword: 'uuid';
161
- };
162
- email: {
163
- keyword: 'email';
164
- };
165
- firstName: {
166
- keyword: 'firstName';
167
- };
168
- lastName: {
169
- keyword: 'lastName';
170
- };
171
- phone: {
172
- keyword: 'phone';
173
- };
174
- password: {
175
- keyword: 'password';
176
- };
177
- date: {
178
- keyword: 'date';
179
- args: {
180
- type?: 'date' | 'string';
181
- };
182
- };
183
- time: {
184
- keyword: 'time';
185
- args: {
186
- type?: 'date' | 'string';
187
- };
188
- };
189
- datetime: {
190
- keyword: 'datetime';
191
- args: {
192
- offset?: boolean;
193
- local?: boolean;
194
- };
195
- };
196
- tuple: {
197
- keyword: 'tuple';
198
- args: {
199
- items: Schema[];
200
- min?: number;
201
- max?: number;
202
- rest?: Schema;
203
- };
204
- };
205
- array: {
206
- keyword: 'array';
207
- args: {
208
- items: Schema[];
209
- min?: number;
210
- max?: number;
211
- unique?: boolean;
212
- };
213
- };
214
- enum: {
215
- keyword: 'enum';
216
- args: {
217
- name: string;
218
- typeName: string;
219
- asConst: boolean;
220
- items: Array<{
221
- name: string | number;
222
- format: 'string' | 'number' | 'boolean';
223
- value?: string | number | boolean;
224
- }>;
225
- };
226
- };
227
- and: {
228
- keyword: 'and';
229
- args: Schema[];
230
- };
231
- const: {
232
- keyword: 'const';
233
- args: {
234
- name: string | number;
235
- format: 'string' | 'number' | 'boolean';
236
- value?: string | number | boolean;
237
- };
238
- };
239
- union: {
240
- keyword: 'union';
241
- args: Schema[];
242
- };
243
- ref: {
244
- keyword: 'ref';
245
- args: {
246
- name: string;
247
- $ref: string;
248
- /**
249
- * Full qualified path.
250
- */
251
- path: KubbFile.Path;
252
- /**
253
- * When true `File.Import` is used.
254
- * When false a reference is used inside the current file.
255
- */
256
- isImportable: boolean;
257
- };
258
- };
259
- matches: {
260
- keyword: 'matches';
261
- args?: string;
262
- };
263
- boolean: {
264
- keyword: 'boolean';
265
- };
266
- default: {
267
- keyword: 'default';
268
- args: string | number | boolean;
269
- };
270
- string: {
271
- keyword: 'string';
272
- };
273
- integer: {
274
- keyword: 'integer';
275
- };
276
- bigint: {
277
- keyword: 'bigint';
278
- };
279
- number: {
280
- keyword: 'number';
281
- };
282
- max: {
283
- keyword: 'max';
284
- args: number;
285
- };
286
- min: {
287
- keyword: 'min';
288
- args: number;
289
- };
290
- exclusiveMaximum: {
291
- keyword: 'exclusiveMaximum';
292
- args: number;
293
- };
294
- exclusiveMinimum: {
295
- keyword: 'exclusiveMinimum';
296
- args: number;
297
- };
298
- describe: {
299
- keyword: 'describe';
300
- args: string;
301
- };
302
- example: {
303
- keyword: 'example';
304
- args: string;
305
- };
306
- deprecated: {
307
- keyword: 'deprecated';
308
- };
309
- optional: {
310
- keyword: 'optional';
311
- };
312
- undefined: {
313
- keyword: 'undefined';
314
- };
315
- nullish: {
316
- keyword: 'nullish';
317
- };
318
- nullable: {
319
- keyword: 'nullable';
320
- };
321
- null: {
322
- keyword: 'null';
323
- };
324
- any: {
325
- keyword: 'any';
326
- };
327
- unknown: {
328
- keyword: 'unknown';
329
- };
330
- void: {
331
- keyword: 'void';
332
- };
333
- blob: {
334
- keyword: 'blob';
335
- };
336
- schema: {
337
- keyword: 'schema';
338
- args: {
339
- type: 'string' | 'number' | 'integer' | 'boolean' | 'array' | 'object';
340
- format?: string;
341
- };
342
- };
343
- name: {
344
- keyword: 'name';
345
- args: string;
346
- };
347
- catchall: {
348
- keyword: 'catchall';
349
- };
350
- interface: {
351
- keyword: 'interface';
352
- };
353
- };
354
- type Schema = {
355
- keyword: string;
356
- } | SchemaKeywordMapper[keyof SchemaKeywordMapper];
357
- //#endregion
358
- //#region ../plugin-oas/src/SchemaGenerator.d.ts
359
- type Context<TOptions, TPluginOptions extends PluginFactoryOptions> = {
360
- fabric: Fabric;
361
- oas: Oas;
362
- driver: PluginDriver;
363
- events?: AsyncEventEmitter<KubbEvents>;
364
- /**
365
- * Current plugin
366
- */
367
- plugin: Plugin<TPluginOptions>;
368
- mode: KubbFile.Mode;
369
- include?: Array<'schemas' | 'responses' | 'requestBodies'>;
370
- override: Array<Override<TOptions>> | undefined;
371
- contentType?: contentType;
372
- output?: string;
373
- };
374
- type SchemaGeneratorOptions = {
375
- dateType: false | 'string' | 'stringOffset' | 'stringLocal' | 'date';
376
- integerType?: 'number' | 'bigint';
377
- unknownType: 'any' | 'unknown' | 'void';
378
- emptySchemaType: 'any' | 'unknown' | 'void';
379
- enumType?: 'enum' | 'asConst' | 'asPascalConst' | 'constEnum' | 'literal' | 'inlineLiteral';
380
- enumSuffix?: string;
381
- /**
382
- * @deprecated Will be removed in v5. Use `collisionDetection: true` instead to prevent enum name collisions.
383
- * When `collisionDetection` is enabled, the rootName-based approach eliminates the need for numeric suffixes.
384
- * @internal
385
- */
386
- usedEnumNames?: Record<string, number>;
387
- mapper?: Record<string, string>;
388
- typed?: boolean;
389
- transformers: {
390
- /**
391
- * Customize the names based on the type that is provided by the plugin.
392
- */
393
- name?: (name: ResolveNameParams['name'], type?: ResolveNameParams['type']) => string;
394
- /**
395
- * Receive schema and name(propertyName) and return Schema array.
396
- * Return `undefined` to fall through to default schema generation.
397
- * @beta
398
- */
399
- schema?: (schemaProps: SchemaProps$1, defaultSchemas: Schema[]) => Array<Schema> | undefined;
400
- };
401
- };
402
- type SchemaProps$1 = {
403
- schema: SchemaObject | null;
404
- name: string | null;
405
- parentName: string | null;
406
- rootName?: string | null;
407
- };
408
- declare class SchemaGenerator<TOptions extends SchemaGeneratorOptions = SchemaGeneratorOptions, TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions, TFileMeta extends FileMetaBase = FileMetaBase> {
409
- #private;
410
- constructor(options: TOptions, context: Context<TOptions, TPluginOptions>);
411
- get options(): TOptions;
412
- set options(options: TOptions);
413
- get context(): Context<TOptions, TPluginOptions>;
414
- refs: Refs;
415
- /**
416
- * Creates a type node from a given schema.
417
- * Delegates to getBaseTypeFromSchema internally and
418
- * optionally adds a union with null.
419
- */
420
- parse(props: SchemaProps$1): Schema[];
421
- static deepSearch<T extends keyof SchemaKeywordMapper>(tree: Schema[] | undefined, keyword: T): Array<SchemaKeywordMapper[T]>;
422
- static find<T extends keyof SchemaKeywordMapper>(tree: Schema[] | undefined, keyword: T): SchemaKeywordMapper[T] | undefined;
423
- static combineObjects(tree: Schema[] | undefined): Schema[];
424
- build(...generators: Array<Generator$1<TPluginOptions>>): Promise<Array<KubbFile.File<TFileMeta>>>;
425
- }
426
- //#endregion
427
- //#region ../plugin-oas/src/generators/createGenerator.d.ts
428
- type CoreGenerator<TOptions extends PluginFactoryOptions> = {
429
- name: string;
430
- type: 'core';
431
- version: '1';
432
- operations: (props: OperationsProps<TOptions>) => Promise<KubbFile.File[]>;
433
- operation: (props: OperationProps<TOptions>) => Promise<KubbFile.File[]>;
434
- schema: (props: SchemaProps<TOptions>) => Promise<KubbFile.File[]>;
435
- };
436
- //#endregion
437
- //#region ../plugin-oas/src/generators/types.d.ts
438
- type OperationsProps<TOptions extends PluginFactoryOptions> = {
439
- config: Config;
440
- generator: Omit<OperationGenerator<TOptions>, 'build'>;
441
- plugin: Plugin<TOptions>;
442
- operations: Array<Operation>;
443
- };
444
- type OperationProps<TOptions extends PluginFactoryOptions> = {
445
- config: Config;
446
- generator: Omit<OperationGenerator<TOptions>, 'build'>;
447
- plugin: Plugin<TOptions>;
448
- operation: Operation;
449
- };
450
- type SchemaProps<TOptions extends PluginFactoryOptions> = {
451
- config: Config;
452
- generator: Omit<SchemaGenerator<SchemaGeneratorOptions, TOptions>, 'build'>;
453
- plugin: Plugin<TOptions>;
454
- schema: {
455
- name: string;
456
- tree: Array<Schema>;
457
- value: SchemaObject;
458
- };
459
- };
460
- type Generator$1<TOptions extends PluginFactoryOptions> = CoreGenerator<TOptions> | ReactGenerator<TOptions> | Generator<TOptions>;
461
- //#endregion
462
- //#region ../plugin-oas/src/generators/createReactGenerator.d.ts
463
- type ReactGenerator<TOptions extends PluginFactoryOptions> = {
464
- name: string;
465
- type: 'react';
466
- version: '1';
467
- Operations: (props: OperationsProps<TOptions>) => FabricReactNode;
468
- Operation: (props: OperationProps<TOptions>) => FabricReactNode;
469
- Schema: (props: SchemaProps<TOptions>) => FabricReactNode;
470
- };
471
- //#endregion
472
- //#region src/generators/fakerGenerator.d.ts
473
- declare const fakerGenerator: ReactGenerator<PluginFaker>;
474
- //#endregion
475
- export { fakerGenerator };
476
- //# sourceMappingURL=generators.d.ts.map
1
+ import { t as fakerGenerator } from "./fakerGenerator-C3Ho3BaI.js";
2
+ export { fakerGenerator };
@@ -1,2 +1,2 @@
1
- import { t as fakerGenerator } from "./fakerGenerator-M5oCrPmy.js";
1
+ import { t as fakerGenerator } from "./fakerGenerator-D7daHCh6.js";
2
2
  export { fakerGenerator };