@kubb/plugin-react-query 3.0.0-alpha.3 → 3.0.0-alpha.30

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 (81) hide show
  1. package/README.md +13 -4
  2. package/dist/chunk-2D27Y6L5.js +618 -0
  3. package/dist/chunk-2D27Y6L5.js.map +1 -0
  4. package/dist/chunk-C2H3KPHM.cjs +658 -0
  5. package/dist/chunk-C2H3KPHM.cjs.map +1 -0
  6. package/dist/chunk-JW3GZUSC.cjs +627 -0
  7. package/dist/chunk-JW3GZUSC.cjs.map +1 -0
  8. package/dist/chunk-Y3DM2P6L.js +647 -0
  9. package/dist/chunk-Y3DM2P6L.js.map +1 -0
  10. package/dist/components.cjs +39 -14
  11. package/dist/components.cjs.map +1 -1
  12. package/dist/components.d.cts +161 -7
  13. package/dist/components.d.ts +161 -7
  14. package/dist/components.js +2 -14
  15. package/dist/components.js.map +1 -1
  16. package/dist/generators.cjs +25 -0
  17. package/dist/generators.cjs.map +1 -0
  18. package/dist/generators.d.cts +14 -0
  19. package/dist/generators.d.ts +14 -0
  20. package/dist/generators.js +4 -0
  21. package/dist/generators.js.map +1 -0
  22. package/dist/index.cjs +75 -154
  23. package/dist/index.cjs.map +1 -1
  24. package/dist/index.d.cts +1 -5
  25. package/dist/index.d.ts +1 -5
  26. package/dist/index.js +54 -140
  27. package/dist/index.js.map +1 -1
  28. package/dist/types-rJasmoxy.d.cts +187 -0
  29. package/dist/types-rJasmoxy.d.ts +187 -0
  30. package/package.json +22 -17
  31. package/src/components/InfiniteQuery.tsx +129 -0
  32. package/src/components/InfiniteQueryOptions.tsx +130 -0
  33. package/src/components/Mutation.tsx +138 -322
  34. package/src/components/MutationKey.tsx +48 -0
  35. package/src/components/Query.tsx +91 -598
  36. package/src/components/QueryKey.tsx +51 -178
  37. package/src/components/QueryOptions.tsx +72 -466
  38. package/src/components/SuspenseQuery.tsx +129 -0
  39. package/src/components/index.ts +4 -1
  40. package/src/generators/__snapshots__/clientDataReturnTypeFull.ts +51 -0
  41. package/src/generators/__snapshots__/clientGetImportPath.ts +51 -0
  42. package/src/generators/__snapshots__/clientPostImportPath.ts +44 -0
  43. package/src/generators/__snapshots__/findByTags.ts +51 -0
  44. package/src/generators/__snapshots__/findByTagsPathParamsObject.ts +51 -0
  45. package/src/generators/__snapshots__/findByTagsWithCustomQueryKey.ts +51 -0
  46. package/src/generators/__snapshots__/findByTagsWithZod.ts +51 -0
  47. package/src/generators/__snapshots__/findInfiniteByTags.ts +57 -0
  48. package/src/generators/__snapshots__/findInfiniteByTagsCursor.ts +57 -0
  49. package/src/generators/__snapshots__/getAsMutation.ts +31 -0
  50. package/src/generators/__snapshots__/postAsQuery.ts +50 -0
  51. package/src/generators/__snapshots__/updatePetById.ts +44 -0
  52. package/src/generators/__snapshots__/updatePetByIdPathParamsObject.ts +46 -0
  53. package/src/generators/index.ts +4 -0
  54. package/src/generators/infiniteQueryGenerator.tsx +124 -0
  55. package/src/generators/mutationGenerator.tsx +108 -0
  56. package/src/generators/queryGenerator.tsx +121 -0
  57. package/src/generators/suspenseQueryGenerator.tsx +120 -0
  58. package/src/plugin.ts +51 -75
  59. package/src/types.ts +49 -88
  60. package/dist/chunk-5IL6M74X.js +0 -1504
  61. package/dist/chunk-5IL6M74X.js.map +0 -1
  62. package/dist/chunk-JFX7DCS7.cjs +0 -1504
  63. package/dist/chunk-JFX7DCS7.cjs.map +0 -1
  64. package/dist/index-C9fwRDH7.d.cts +0 -579
  65. package/dist/index-C9fwRDH7.d.ts +0 -579
  66. package/src/OperationGenerator.tsx +0 -86
  67. package/src/__snapshots__/mutateAsQuery/updatePetWithForm.ts +0 -64
  68. package/src/__snapshots__/pathParamsTypeInline/getPetById.ts +0 -57
  69. package/src/__snapshots__/pathParamsTypeObject/getPetById.ts +0 -63
  70. package/src/__snapshots__/queryOptions/getPetById.ts +0 -37
  71. package/src/__snapshots__/queryWithoutQueryOptions/getPetById.ts +0 -47
  72. package/src/__snapshots__/upload/UploadFile.ts +0 -67
  73. package/src/__snapshots__/uploadMutation/UploadFile.ts +0 -44
  74. package/src/__snapshots__/variablesTypeMutate/deletePet.ts +0 -21
  75. package/src/components/Operations.tsx +0 -74
  76. package/src/components/QueryImports.tsx +0 -167
  77. package/src/components/SchemaType.tsx +0 -55
  78. package/src/components/__snapshots__/gen/showPetById.ts +0 -57
  79. package/src/components/__snapshots__/gen/useCreatePets.ts +0 -46
  80. package/src/components/__snapshots__/gen/useCreatePetsMutate.ts +0 -47
  81. package/src/utils.ts +0 -96
@@ -1,579 +0,0 @@
1
- import { URLPath } from '@kubb/core/utils';
2
- import { HttpMethod } from '@kubb/oas';
3
- import { ReactNode, ComponentType, ComponentProps } from 'react';
4
- import { PluginFactoryOptions, ResolveNameParams } from '@kubb/core';
5
- import * as KubbFile from '@kubb/fs/types';
6
- import { ResolvePathOptions, Exclude, Include, Override } from '@kubb/plugin-oas';
7
- import { KubbNode } from '@kubb/react';
8
-
9
- type TemplateProps$5 = {
10
- /**
11
- * Name of the function
12
- */
13
- name: string;
14
- /**
15
- * Parameters/options/props that need to be used
16
- */
17
- params: string;
18
- mutateParams: string;
19
- /**
20
- * Options for JSdocs
21
- */
22
- JSDoc?: {
23
- comments: string[];
24
- };
25
- hook: {
26
- name: string;
27
- generics?: string;
28
- children?: string;
29
- };
30
- client: {
31
- generics: string;
32
- method: HttpMethod;
33
- path: URLPath;
34
- withQueryParams: boolean;
35
- withPathParams: boolean;
36
- withData: boolean;
37
- withHeaders: boolean;
38
- contentType: string;
39
- };
40
- dataReturnType: NonNullable<PluginReactQuery['options']['dataReturnType']>;
41
- };
42
- declare function Template$1({ name, params, mutateParams, JSDoc, client, hook, dataReturnType }: TemplateProps$5): ReactNode;
43
- type RootTemplateProps$1 = {
44
- children?: React.ReactNode;
45
- };
46
- declare function RootTemplate$1({ children }: RootTemplateProps$1): JSX.Element;
47
- declare const defaultTemplates$2: {
48
- readonly default: typeof Template$1;
49
- readonly root: typeof RootTemplate$1;
50
- };
51
- type Templates$2 = Partial<typeof defaultTemplates$2>;
52
- type MutationProps = {
53
- /**
54
- * This will make it possible to override the default behaviour.
55
- */
56
- Template?: ComponentType<ComponentProps<typeof Template$1>>;
57
- };
58
- declare function Mutation({ Template }: MutationProps): ReactNode;
59
- declare namespace Mutation {
60
- var File: ({ ...props }: FileProps$2) => ReactNode;
61
- var templates: {
62
- readonly default: typeof Template$1;
63
- readonly root: typeof RootTemplate$1;
64
- };
65
- }
66
- type FileProps$2 = {
67
- /**
68
- * This will make it possible to override the default behaviour.
69
- */
70
- templates?: Templates$2;
71
- };
72
-
73
- type TemplateProps$4 = {};
74
- declare function Template({}: TemplateProps$4): KubbNode;
75
- type RootTemplateProps = {
76
- children?: React.ReactNode;
77
- };
78
- declare function RootTemplate({ children }: RootTemplateProps): JSX.Element;
79
- declare const defaultTemplates$1: {
80
- readonly default: typeof Template;
81
- readonly root: typeof RootTemplate;
82
- };
83
- type Templates$1 = Partial<typeof defaultTemplates$1>;
84
- type Props$4 = {
85
- /**
86
- * This will make it possible to override the default behaviour.
87
- */
88
- Template?: ComponentType<ComponentProps<typeof Template>>;
89
- };
90
- declare function Operations({ Template }: Props$4): KubbNode;
91
- declare namespace Operations {
92
- var File: (props: FileProps$1) => KubbNode;
93
- var templates: {
94
- readonly default: typeof Template;
95
- readonly root: typeof RootTemplate;
96
- };
97
- }
98
- type FileProps$1 = {
99
- /**
100
- * This will make it possible to override the default behaviour.
101
- */
102
- templates?: Templates$1;
103
- };
104
-
105
- type TemplateProps$3 = {
106
- /**
107
- * Path to @tanstack-query
108
- */
109
- path: string;
110
- /**
111
- * Override the path of 'useQuery'
112
- * @default 'path'
113
- */
114
- hookPath: string | undefined;
115
- optionsType: string;
116
- queryOptions: string | undefined;
117
- resultType: string;
118
- hookName: string;
119
- isInfinite: boolean;
120
- };
121
- type FrameworkProps$3 = Partial<TemplateProps$3> & {
122
- context: {
123
- isInfinite: boolean;
124
- isSuspense: boolean;
125
- };
126
- };
127
- type Props$3 = {
128
- hookPath: string | undefined;
129
- isInfinite: boolean;
130
- /**
131
- * Only for React and v5
132
- */
133
- isSuspense: boolean;
134
- /**
135
- * This will make it possible to override the default behaviour.
136
- */
137
- Template?: React.ComponentType<FrameworkProps$3>;
138
- };
139
- declare function QueryImports({ hookPath, isInfinite, isSuspense, Template }: Props$3): ReactNode;
140
- declare namespace QueryImports {
141
- var templates: {
142
- readonly react: ({ context, hookPath, ...rest }: FrameworkProps$3) => ReactNode;
143
- readonly solid: ({ context, hookPath, ...rest }: FrameworkProps$3) => ReactNode;
144
- readonly svelte: ({ context, hookPath, ...rest }: FrameworkProps$3) => ReactNode;
145
- readonly vue: ({ context, hookPath, ...rest }: FrameworkProps$3) => ReactNode;
146
- };
147
- }
148
-
149
- type TemplateProps$2 = {
150
- /**
151
- * Name of the function
152
- */
153
- name: string;
154
- /**
155
- * TypeName of the function in PascalCase
156
- */
157
- typeName: string;
158
- /**
159
- * Parameters/options/props that need to be used
160
- */
161
- params: string;
162
- /**
163
- * Generics that needs to be added for TypeScript
164
- */
165
- generics?: string;
166
- /**
167
- * ReturnType(see async for adding Promise type)
168
- */
169
- returnType?: string;
170
- /**
171
- * Options for JSdocs
172
- */
173
- JSDoc?: {
174
- comments: string[];
175
- };
176
- keys?: string;
177
- };
178
- type FrameworkProps$2 = TemplateProps$2 & {
179
- context: {
180
- factory: {
181
- name: string;
182
- };
183
- };
184
- };
185
- type Props$2 = {
186
- name: string;
187
- typeName: string;
188
- keysFn: (keys: unknown[]) => unknown[];
189
- factory: {
190
- name: string;
191
- };
192
- /**
193
- * This will make it possible to override the default behaviour.
194
- */
195
- Template?: React.ComponentType<FrameworkProps$2>;
196
- };
197
- declare function QueryKey({ name, typeName, factory, keysFn, Template }: Props$2): ReactNode;
198
- declare namespace QueryKey {
199
- var templates: {
200
- readonly react: (props: FrameworkProps$2) => ReactNode;
201
- readonly solid: (props: FrameworkProps$2) => ReactNode;
202
- readonly svelte: (props: FrameworkProps$2) => ReactNode;
203
- readonly vue: ({ context, ...rest }: FrameworkProps$2) => ReactNode;
204
- };
205
- }
206
-
207
- type TemplateProps$1 = {
208
- /**
209
- * Name of the function
210
- */
211
- name: string;
212
- /**
213
- * Parameters/options/props that need to be used
214
- */
215
- params: string;
216
- /**
217
- * Generics that needs to be added for TypeScript
218
- */
219
- generics?: string;
220
- /**
221
- * ReturnType(see async for adding Promise type)
222
- */
223
- returnType?: string;
224
- /**
225
- * Options for JSdocs
226
- */
227
- JSDoc?: {
228
- comments: string[];
229
- };
230
- hook: {
231
- queryKey: string;
232
- children?: string;
233
- };
234
- client: {
235
- generics: string;
236
- method: HttpMethod;
237
- path: URLPath;
238
- withQueryParams: boolean;
239
- withPathParams: boolean;
240
- withData: boolean;
241
- withHeaders: boolean;
242
- contentType: string;
243
- };
244
- infinite: Infinite | false;
245
- dataReturnType: NonNullable<PluginReactQuery['options']['dataReturnType']>;
246
- parser: string | undefined;
247
- };
248
- type FrameworkProps$1 = TemplateProps$1 & {
249
- context: {
250
- factory: {
251
- name: string;
252
- };
253
- queryKey: string;
254
- };
255
- };
256
- type Props$1 = {
257
- infinite: Infinite | false;
258
- suspense: Suspense | false;
259
- factory: {
260
- name: string;
261
- };
262
- resultType: string;
263
- /**
264
- * This will make it possible to override the default behaviour.
265
- */
266
- Template?: React.ComponentType<FrameworkProps$1>;
267
- dataReturnType: NonNullable<PluginReactQuery['options']['dataReturnType']>;
268
- };
269
- declare function QueryOptions$1({ factory, infinite, suspense, resultType, dataReturnType, Template }: Props$1): ReactNode;
270
- declare namespace QueryOptions$1 {
271
- var templates: {
272
- readonly react: (props: FrameworkProps$1) => ReactNode;
273
- readonly solid: (props: FrameworkProps$1) => ReactNode;
274
- readonly svelte: (props: FrameworkProps$1) => ReactNode;
275
- readonly vue: ({ client, context, ...rest }: FrameworkProps$1) => ReactNode;
276
- };
277
- }
278
-
279
- type TemplateProps = {
280
- /**
281
- * Name of the function
282
- */
283
- name: string;
284
- /**
285
- * Parameters/options/props that need to be used
286
- */
287
- params: string;
288
- /**
289
- * Generics that needs to be added for TypeScript
290
- */
291
- generics?: string;
292
- /**
293
- * ReturnType(see async for adding Promise type)
294
- */
295
- returnType?: string;
296
- /**
297
- * Options for JSdocs
298
- */
299
- JSDoc?: {
300
- comments: string[];
301
- };
302
- hook: {
303
- name: string;
304
- generics?: string;
305
- queryKey: string;
306
- queryOptions: string;
307
- };
308
- infinite: Infinite | false;
309
- };
310
- type FrameworkProps = TemplateProps & {
311
- context: {
312
- factory: {
313
- name: string;
314
- };
315
- queryKey: string;
316
- };
317
- };
318
- declare const defaultTemplates: {
319
- readonly react: (props: FrameworkProps) => ReactNode;
320
- readonly solid: (props: FrameworkProps) => ReactNode;
321
- readonly svelte: (props: FrameworkProps) => ReactNode;
322
- readonly vue: ({ context, hook, ...rest }: FrameworkProps) => ReactNode;
323
- };
324
- type Props = {
325
- factory: {
326
- name: string;
327
- };
328
- resultType: string;
329
- hookName: string;
330
- optionsType: string;
331
- infinite: Infinite | false;
332
- query: Query | false;
333
- queryOptions: QueryOptions | false;
334
- suspense: Suspense | false;
335
- /**
336
- * This will make it possible to override the default behaviour.
337
- */
338
- Template?: React.ComponentType<FrameworkProps>;
339
- /**
340
- * This will make it possible to override the default behaviour.
341
- */
342
- QueryKeyTemplate?: React.ComponentType<React.ComponentProps<typeof QueryKey.templates.react>>;
343
- /**
344
- * This will make it possible to override the default behaviour.
345
- */
346
- QueryOptionsTemplate?: React.ComponentType<React.ComponentProps<typeof QueryOptions$1.templates.react>>;
347
- };
348
- declare function Query$1({ factory, optionsType, hookName, resultType, Template, QueryKeyTemplate, QueryOptionsTemplate, ...props }: Props): ReactNode;
349
- declare namespace Query$1 {
350
- var File: ({ templates }: FileProps) => ReactNode;
351
- var templates: {
352
- readonly react: (props: FrameworkProps) => ReactNode;
353
- readonly solid: (props: FrameworkProps) => ReactNode;
354
- readonly svelte: (props: FrameworkProps) => ReactNode;
355
- readonly vue: ({ context, hook, ...rest }: FrameworkProps) => ReactNode;
356
- };
357
- }
358
- type FileProps = {
359
- /**
360
- * This will make it possible to override the default behaviour.
361
- */
362
- templates?: {
363
- query: typeof defaultTemplates;
364
- queryKey: typeof QueryKey.templates;
365
- queryOptions: typeof QueryOptions$1.templates;
366
- queryImports: typeof QueryImports.templates;
367
- };
368
- };
369
-
370
- type Templates = {
371
- operations?: typeof Operations.templates | false;
372
- mutation?: typeof Mutation.templates | false;
373
- query?: typeof Query$1.templates | false;
374
- queryOptions?: typeof QueryOptions$1.templates | false;
375
- queryKey?: typeof QueryKey.templates | false;
376
- };
377
- type Suspense = object;
378
- type Query = {
379
- /**
380
- * Customize the queryKey, here you can specify a suffix.
381
- */
382
- queryKey: (key: unknown[]) => unknown[];
383
- /**
384
- * Define which HttpMethods can be used for queries
385
- * @default ['get']
386
- */
387
- methods: Array<HttpMethod>;
388
- /**
389
- * Path to the useQuery that will be used to do the useQuery functionality.
390
- * It will be used as `import { useQuery } from '${importPath}'`.
391
- * It allows both relative and absolute path.
392
- * the path will be applied as is, so relative path should be based on the file being generated.
393
- * @default '@tanstack/react-query'
394
- */
395
- importPath?: string;
396
- };
397
- type QueryOptions = object;
398
- type Mutate = {
399
- /**
400
- * Define the way of passing through the queryParams, headerParams and data.
401
- * @default `'hook'`
402
- */
403
- variablesType: 'mutate' | 'hook';
404
- /**
405
- * Define which HttpMethods can be used for mutations
406
- * @default ['post', 'put', 'delete']
407
- */
408
- methods: Array<HttpMethod>;
409
- /**
410
- * Path to the useQuery that will be used to do the useQuery functionality.
411
- * It will be used as `import { useQuery } from '${importPath}'`.
412
- * It allows both relative and absolute path.
413
- * the path will be applied as is, so relative path should be based on the file being generated.
414
- * @default '@tanstack/react-query'
415
- */
416
- importPath?: string;
417
- };
418
- type Infinite = {
419
- /**
420
- * Specify the params key used for `pageParam`.
421
- * Used inside `useInfiniteQuery`, `createInfiniteQueries`, `createInfiniteQuery`
422
- * @default `'id'`
423
- */
424
- queryParam: string;
425
- /**
426
- * Which field of the data will be used, set it to undefined when no cursor is known.
427
- */
428
- cursorParam?: string | undefined;
429
- /**
430
- * The initial value, the value of the first page.
431
- * @default `0`
432
- */
433
- initialPageParam: unknown;
434
- };
435
- type Options = {
436
- output?: {
437
- /**
438
- * Output to save the @tanstack/query hooks.
439
- * @default `"hooks"`
440
- */
441
- path: string;
442
- /**
443
- * Name to be used for the `export * as {{exportAs}} from './'`
444
- */
445
- exportAs?: string;
446
- /**
447
- * Add an extension to the generated imports and exports, default it will not use an extension
448
- */
449
- extName?: KubbFile.Extname;
450
- /**
451
- * Define what needs to exported, here you can also disable the export of barrel files
452
- * @default `'barrel'`
453
- */
454
- exportType?: 'barrel' | 'barrelNamed' | false;
455
- };
456
- /**
457
- * Group the @tanstack/query hooks based on the provided name.
458
- */
459
- group?: {
460
- /**
461
- * Tag will group based on the operation tag inside the Swagger file
462
- */
463
- type: 'tag';
464
- /**
465
- * Relative path to save the grouped @tanstack/query hooks.
466
- *
467
- * `{{tag}}` will be replaced by the current tagName.
468
- * @example `${output}/{{tag}}Controller` => `hooks/PetController`
469
- * @default `${output}/{{tag}}Controller`
470
- */
471
- output?: string;
472
- /**
473
- * Name to be used for the `export * as {{exportAs}} from './`
474
- * @default `"{{tag}}Hooks"`
475
- */
476
- exportAs?: string;
477
- };
478
- client?: {
479
- /**
480
- * Path to the client that will be used to do the API calls.
481
- * It will be used as `import client from '${client.importPath}'`.
482
- * It allows both relative and absolute path.
483
- * the path will be applied as is, so relative path should be based on the file being generated.
484
- * @default '@kubb/plugin-client/client'
485
- */
486
- importPath?: string;
487
- };
488
- /**
489
- * ReturnType that needs to be used when calling client().
490
- *
491
- * `Data` will return ResponseConfig[data].
492
- *
493
- * `Full` will return ResponseConfig.
494
- * @default `'data'`
495
- * @private
496
- */
497
- /**
498
- * ReturnType that needs to be used when calling client().
499
- *
500
- * `Data` will return ResponseConfig[data].
501
- *
502
- * `Full` will return ResponseConfig.
503
- * @default `'data'`
504
- * @private
505
- */
506
- dataReturnType?: 'data' | 'full';
507
- /**
508
- * How to pass your pathParams.
509
- *
510
- * `object` will return the pathParams as an object.
511
- *
512
- * `inline` will return the pathParams as comma separated params.
513
- * @default `'inline'`
514
- * @private
515
- */
516
- pathParamsType?: 'object' | 'inline';
517
- /**
518
- * Which parser can be used before returning the data to `@tanstack/query`.
519
- * `'zod'` will use `@kubb/plugin-zod` to parse the data.
520
- */
521
- parser?: 'zod';
522
- /**
523
- * Array containing exclude parameters to exclude/skip tags/operations/methods/paths.
524
- */
525
- exclude?: Array<Exclude>;
526
- /**
527
- * Array containing include parameters to include tags/operations/methods/paths.
528
- */
529
- include?: Array<Include>;
530
- /**
531
- * Array containing override parameters to override `options` based on tags/operations/methods/paths.
532
- */
533
- override?: Array<Override<ResolvedOptions>>;
534
- /**
535
- * When set, an infiniteQuery hooks will be added.
536
- */
537
- infinite?: Partial<Infinite> | false;
538
- /**
539
- * When set, a suspenseQuery hooks will be added.
540
- */
541
- suspense?: Partial<Suspense> | false;
542
- /**
543
- * Override some useQuery behaviours.
544
- */
545
- query?: Partial<Query> | false;
546
- queryOptions?: Partial<QueryOptions> | false;
547
- /**
548
- * Override some useMutation behaviours.
549
- */
550
- mutate?: Mutate | false;
551
- transformers?: {
552
- /**
553
- * Customize the names based on the type that is provided by the plugin.
554
- */
555
- name?: (name: ResolveNameParams['name'], type?: ResolveNameParams['type']) => string;
556
- };
557
- /**
558
- * Make it possible to override one of the templates
559
- */
560
- templates?: Partial<Templates>;
561
- };
562
- type ResolvedOptions = {
563
- client: Required<NonNullable<PluginReactQuery['options']['client']>>;
564
- dataReturnType: NonNullable<PluginReactQuery['options']['dataReturnType']>;
565
- pathParamsType: NonNullable<PluginReactQuery['options']['pathParamsType']>;
566
- parser: PluginReactQuery['options']['parser'];
567
- /**
568
- * Only used of infinite
569
- */
570
- infinite: Infinite | false;
571
- suspense: Suspense | false;
572
- query: Query | false;
573
- queryOptions: QueryOptions | false;
574
- mutate: Mutate | false;
575
- templates: NonNullable<Templates>;
576
- };
577
- type PluginReactQuery = PluginFactoryOptions<'plugin-react-query', Options, ResolvedOptions, never, ResolvePathOptions>;
578
-
579
- export { Mutation as M, type Options as O, type PluginReactQuery as P, Query$1 as Q, Operations as a, QueryKey as b, QueryOptions$1 as c };