@kevisual/query 0.0.51 → 0.0.52

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/query-api.js CHANGED
@@ -14082,7 +14082,6 @@ var createQueryByRoutes = (list, options) => {
14082
14082
  export { queryApi };`;
14083
14083
  const code = `${before}
14084
14084
  const api = ${generateApiCode(obj)} as const;
14085
- const queryApi = createQueryApi({ api });
14086
14085
  ${after}
14087
14086
  `;
14088
14087
  return code;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevisual/query",
3
- "version": "0.0.51",
3
+ "version": "0.0.52",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "npm run clean && bun run bun.config.ts",
@@ -71,7 +71,6 @@ export const createQueryByRoutes = (list: RouteInfo[], options?: CreateQueryOpti
71
71
  export { queryApi };`;
72
72
  const code = `${before}
73
73
  const api = ${generateApiCode(obj)} as const;
74
- const queryApi = createQueryApi({ api });
75
74
  ${after}
76
75
  `
77
76
  return code;