@kubb/plugin-vue-query 5.0.0-beta.95 → 5.0.0-beta.98
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.cjs +2 -2
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -28,12 +28,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
28
28
|
enumerable: true
|
|
29
29
|
}) : target, mod));
|
|
30
30
|
//#endregion
|
|
31
|
+
let node_path = require("node:path");
|
|
32
|
+
node_path = __toESM(node_path, 1);
|
|
31
33
|
let kubb_kit = require("kubb/kit");
|
|
32
34
|
let _kubb_plugin_ts = require("@kubb/plugin-ts");
|
|
33
35
|
let kubb_jsx = require("kubb/jsx");
|
|
34
36
|
let kubb_jsx_jsx_runtime = require("kubb/jsx/jsx-runtime");
|
|
35
|
-
let node_path = require("node:path");
|
|
36
|
-
node_path = __toESM(node_path, 1);
|
|
37
37
|
//#region ../../internals/utils/src/casing.ts
|
|
38
38
|
/**
|
|
39
39
|
* Shared implementation for camelCase and PascalCase conversion.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { t as __name } from "./rolldown-runtime-C0LytTxp.js";
|
|
2
2
|
import { Exclude, Group, Include, Output, OutputOptions, Override, PluginFactoryOptions, Resolver, ResolverPatch, ast } from "kubb/kit";
|
|
3
|
+
import "@kubb/plugin-ts";
|
|
4
|
+
import "kubb/jsx";
|
|
5
|
+
import "@kubb/plugin-zod";
|
|
3
6
|
//#region ../../internals/client/src/resolveClient.d.ts
|
|
4
7
|
/**
|
|
5
8
|
* Resolves which client plugin a consumer (react-query, vue-query, swr, mcp) should call for an
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { t as __name } from "./rolldown-runtime-C0LytTxp.js";
|
|
2
|
+
import path from "node:path";
|
|
2
3
|
import { Resolver, ast, createResolver, defineGenerator, definePlugin } from "kubb/kit";
|
|
3
4
|
import { createFunctionParameter, createFunctionParameters, createObjectBindingPattern, createTypeLiteral, functionPrinter, pluginTsName } from "@kubb/plugin-ts";
|
|
4
5
|
import { File, Function, Type, jsxRenderer } from "kubb/jsx";
|
|
5
6
|
import { Fragment, jsx, jsxs } from "kubb/jsx/jsx-runtime";
|
|
6
|
-
import path from "node:path";
|
|
7
7
|
//#region ../../internals/utils/src/casing.ts
|
|
8
8
|
/**
|
|
9
9
|
* Shared implementation for camelCase and PascalCase conversion.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-vue-query",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.98",
|
|
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",
|
|
@@ -59,17 +59,17 @@
|
|
|
59
59
|
"registry": "https://registry.npmjs.org/"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@kubb/plugin-ts": "5.0.0-beta.
|
|
62
|
+
"@kubb/plugin-ts": "5.0.0-beta.98"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"kubb": "5.0.0-beta.
|
|
65
|
+
"kubb": "5.0.0-beta.97",
|
|
66
66
|
"@internals/client": "0.0.0",
|
|
67
67
|
"@internals/shared": "0.0.0",
|
|
68
68
|
"@internals/tanstack-query": "0.0.0",
|
|
69
69
|
"@internals/utils": "0.0.0"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
|
-
"kubb": "5.0.0-beta.
|
|
72
|
+
"kubb": "5.0.0-beta.97"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
75
|
"node": ">=22"
|