@kubb/plugin-vue-query 5.1.0 → 5.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +4 -4
- package/package.json +8 -4
package/dist/index.d.ts
CHANGED
|
@@ -310,7 +310,7 @@ declare global {
|
|
|
310
310
|
* Canonical plugin name for `@kubb/plugin-vue-query`. Used for driver lookups
|
|
311
311
|
* and cross-plugin dependency references.
|
|
312
312
|
*/
|
|
313
|
-
declare const pluginVueQueryName = "plugin-vue-query";
|
|
313
|
+
export declare const pluginVueQueryName = "plugin-vue-query";
|
|
314
314
|
/**
|
|
315
315
|
* Generates one TanStack Query composable per OpenAPI operation for Vue's
|
|
316
316
|
* Composition API. Queries become `useFoo` (and optionally
|
|
@@ -335,7 +335,7 @@ declare const pluginVueQueryName = "plugin-vue-query";
|
|
|
335
335
|
* })
|
|
336
336
|
* ```
|
|
337
337
|
*/
|
|
338
|
-
declare const pluginVueQuery: (options?: Options | undefined) => import("kubb/kit").Plugin<PluginVueQuery>;
|
|
338
|
+
export declare const pluginVueQuery: (options?: Options | undefined) => import("kubb/kit").Plugin<PluginVueQuery>;
|
|
339
339
|
//#endregion
|
|
340
340
|
//#region src/resolvers/resolverVueQuery.d.ts
|
|
341
341
|
/**
|
|
@@ -356,7 +356,7 @@ declare const pluginVueQuery: (options?: Options | undefined) => import("kubb/ki
|
|
|
356
356
|
* resolverVueQuery.query.optionsName(operationNode) // 'getPetByIdQueryOptions'
|
|
357
357
|
* ```
|
|
358
358
|
*/
|
|
359
|
-
declare const resolverVueQuery: ResolverVueQuery;
|
|
359
|
+
export declare const resolverVueQuery: ResolverVueQuery;
|
|
360
360
|
//#endregion
|
|
361
|
-
export { type PluginVueQuery, type ResolverVueQuery, pluginVueQuery as default
|
|
361
|
+
export { type PluginVueQuery, type ResolverVueQuery, pluginVueQuery as default };
|
|
362
362
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-vue-query",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.1",
|
|
4
4
|
"description": "Generate type-safe TanStack Query (Vue Query) composables with Kubb. Covers useQuery, useMutation, useInfiniteQuery, and queryOptions with Vue 3 Composition API support.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"code-generation",
|
|
@@ -35,6 +35,10 @@
|
|
|
35
35
|
{
|
|
36
36
|
"type": "opencollective",
|
|
37
37
|
"url": "https://opencollective.com/kubb"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "custom",
|
|
41
|
+
"url": "https://kubb.dev/sponsors"
|
|
38
42
|
}
|
|
39
43
|
],
|
|
40
44
|
"files": [
|
|
@@ -71,17 +75,17 @@
|
|
|
71
75
|
"registry": "https://registry.npmjs.org/"
|
|
72
76
|
},
|
|
73
77
|
"dependencies": {
|
|
74
|
-
"@kubb/plugin-ts": "^5.0.
|
|
78
|
+
"@kubb/plugin-ts": "^5.0.2"
|
|
75
79
|
},
|
|
76
80
|
"devDependencies": {
|
|
77
81
|
"@internals/client": "0.0.0",
|
|
78
82
|
"@internals/shared": "0.0.0",
|
|
79
83
|
"@internals/tanstack-query": "0.0.0",
|
|
80
84
|
"@internals/utils": "0.0.0",
|
|
81
|
-
"kubb": "^5.
|
|
85
|
+
"kubb": "^5.2.0"
|
|
82
86
|
},
|
|
83
87
|
"peerDependencies": {
|
|
84
|
-
"kubb": "^5.
|
|
88
|
+
"kubb": "^5.2.0"
|
|
85
89
|
},
|
|
86
90
|
"engines": {
|
|
87
91
|
"node": ">=22"
|