@kubb/plugin-react-query 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 (52) hide show
  1. package/LICENSE +17 -10
  2. package/README.md +1 -3
  3. package/dist/components-DTGLu4UV.js +1451 -0
  4. package/dist/components-DTGLu4UV.js.map +1 -0
  5. package/dist/components-dAKJEn9b.cjs +1571 -0
  6. package/dist/components-dAKJEn9b.cjs.map +1 -0
  7. package/dist/components.cjs +1 -1
  8. package/dist/components.d.ts +105 -161
  9. package/dist/components.js +1 -1
  10. package/dist/generators-CWEQsdO9.cjs +1502 -0
  11. package/dist/generators-CWEQsdO9.cjs.map +1 -0
  12. package/dist/generators-C_fbcjpG.js +1460 -0
  13. package/dist/generators-C_fbcjpG.js.map +1 -0
  14. package/dist/generators.cjs +1 -1
  15. package/dist/generators.d.ts +9 -476
  16. package/dist/generators.js +1 -1
  17. package/dist/index.cjs +114 -126
  18. package/dist/index.cjs.map +1 -1
  19. package/dist/index.d.ts +4 -4
  20. package/dist/index.js +110 -126
  21. package/dist/index.js.map +1 -1
  22. package/dist/{types-D5S7Ny9r.d.ts → types-DfaFRSBf.d.ts} +100 -86
  23. package/package.json +59 -62
  24. package/src/components/InfiniteQuery.tsx +75 -139
  25. package/src/components/InfiniteQueryOptions.tsx +62 -164
  26. package/src/components/Mutation.tsx +58 -113
  27. package/src/components/MutationOptions.tsx +61 -80
  28. package/src/components/Query.tsx +67 -140
  29. package/src/components/QueryOptions.tsx +75 -135
  30. package/src/components/SuspenseInfiniteQuery.tsx +75 -139
  31. package/src/components/SuspenseInfiniteQueryOptions.tsx +62 -164
  32. package/src/components/SuspenseQuery.tsx +67 -150
  33. package/src/generators/customHookOptionsFileGenerator.tsx +33 -45
  34. package/src/generators/hookOptionsGenerator.tsx +115 -175
  35. package/src/generators/infiniteQueryGenerator.tsx +183 -176
  36. package/src/generators/mutationGenerator.tsx +127 -138
  37. package/src/generators/queryGenerator.tsx +141 -141
  38. package/src/generators/suspenseInfiniteQueryGenerator.tsx +175 -155
  39. package/src/generators/suspenseQueryGenerator.tsx +149 -148
  40. package/src/index.ts +1 -1
  41. package/src/plugin.ts +133 -183
  42. package/src/resolvers/resolverReactQuery.ts +22 -0
  43. package/src/types.ts +67 -45
  44. package/src/utils.ts +40 -0
  45. package/dist/components-BHQT9ZLc.cjs +0 -1634
  46. package/dist/components-BHQT9ZLc.cjs.map +0 -1
  47. package/dist/components-CpyHYGOw.js +0 -1520
  48. package/dist/components-CpyHYGOw.js.map +0 -1
  49. package/dist/generators-DP07m3rH.cjs +0 -1469
  50. package/dist/generators-DP07m3rH.cjs.map +0 -1
  51. package/dist/generators-DkQwKTc2.js +0 -1427
  52. package/dist/generators-DkQwKTc2.js.map +0 -1
@@ -1,494 +1,27 @@
1
1
  import { t as __name } from "./chunk--u3MIqq1.js";
2
- import { r as PluginReactQuery } from "./types-D5S7Ny9r.js";
3
- import { AsyncEventEmitter, Config, FileMetaBase, Generator, Group, KubbEvents, Output, Plugin, PluginDriver, PluginFactoryOptions, ResolveNameParams } from "@kubb/core";
4
- import { HttpMethod, Oas, Operation, SchemaObject, contentType } from "@kubb/oas";
5
- import { FabricReactNode } from "@kubb/react-fabric/types";
6
- import { Fabric, KubbFile } from "@kubb/fabric-core/types";
2
+ import { r as PluginReactQuery } from "./types-DfaFRSBf.js";
3
+ import * as _$_kubb_core0 from "@kubb/core";
7
4
 
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
5
  //#region src/generators/customHookOptionsFileGenerator.d.ts
473
- declare const customHookOptionsFileGenerator: ReactGenerator<PluginReactQuery>;
6
+ declare const customHookOptionsFileGenerator: _$_kubb_core0.Generator<PluginReactQuery, unknown>;
474
7
  //#endregion
475
8
  //#region src/generators/hookOptionsGenerator.d.ts
476
- declare const hookOptionsGenerator: ReactGenerator<PluginReactQuery>;
9
+ declare const hookOptionsGenerator: _$_kubb_core0.Generator<PluginReactQuery, unknown>;
477
10
  //#endregion
478
11
  //#region src/generators/infiniteQueryGenerator.d.ts
479
- declare const infiniteQueryGenerator: ReactGenerator<PluginReactQuery>;
12
+ declare const infiniteQueryGenerator: _$_kubb_core0.Generator<PluginReactQuery, unknown>;
480
13
  //#endregion
481
14
  //#region src/generators/mutationGenerator.d.ts
482
- declare const mutationGenerator: ReactGenerator<PluginReactQuery>;
15
+ declare const mutationGenerator: _$_kubb_core0.Generator<PluginReactQuery, unknown>;
483
16
  //#endregion
484
17
  //#region src/generators/queryGenerator.d.ts
485
- declare const queryGenerator: ReactGenerator<PluginReactQuery>;
18
+ declare const queryGenerator: _$_kubb_core0.Generator<PluginReactQuery, unknown>;
486
19
  //#endregion
487
20
  //#region src/generators/suspenseInfiniteQueryGenerator.d.ts
488
- declare const suspenseInfiniteQueryGenerator: ReactGenerator<PluginReactQuery>;
21
+ declare const suspenseInfiniteQueryGenerator: _$_kubb_core0.Generator<PluginReactQuery, unknown>;
489
22
  //#endregion
490
23
  //#region src/generators/suspenseQueryGenerator.d.ts
491
- declare const suspenseQueryGenerator: ReactGenerator<PluginReactQuery>;
24
+ declare const suspenseQueryGenerator: _$_kubb_core0.Generator<PluginReactQuery, unknown>;
492
25
  //#endregion
493
26
  export { customHookOptionsFileGenerator, hookOptionsGenerator, infiniteQueryGenerator, mutationGenerator, queryGenerator, suspenseInfiniteQueryGenerator, suspenseQueryGenerator };
494
27
  //# sourceMappingURL=generators.d.ts.map
@@ -1,2 +1,2 @@
1
- import { a as infiniteQueryGenerator, i as mutationGenerator, n as suspenseInfiniteQueryGenerator, o as hookOptionsGenerator, r as queryGenerator, s as customHookOptionsFileGenerator, t as suspenseQueryGenerator } from "./generators-DkQwKTc2.js";
1
+ import { a as infiniteQueryGenerator, i as mutationGenerator, n as suspenseInfiniteQueryGenerator, o as hookOptionsGenerator, r as queryGenerator, s as customHookOptionsFileGenerator, t as suspenseQueryGenerator } from "./generators-C_fbcjpG.js";
2
2
  export { customHookOptionsFileGenerator, hookOptionsGenerator, infiniteQueryGenerator, mutationGenerator, queryGenerator, suspenseInfiniteQueryGenerator, suspenseQueryGenerator };