@kubb/plugin-solid-query 3.18.2 → 3.18.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kubb/plugin-solid-query",
3
- "version": "3.18.2",
3
+ "version": "3.18.3",
4
4
  "description": "Solid Query hooks generator plugin for Kubb, creating type-safe API client hooks from OpenAPI specifications for Solid.js applications.",
5
5
  "keywords": [
6
6
  "solid-query",
@@ -62,20 +62,20 @@
62
62
  ],
63
63
  "dependencies": {
64
64
  "remeda": "^2.30.0",
65
- "@kubb/core": "3.18.2",
66
- "@kubb/oas": "3.18.2",
67
- "@kubb/plugin-client": "3.18.2",
68
- "@kubb/plugin-oas": "3.18.2",
69
- "@kubb/plugin-ts": "3.18.2",
70
- "@kubb/plugin-zod": "3.18.2",
71
- "@kubb/react": "3.18.2"
65
+ "@kubb/core": "3.18.3",
66
+ "@kubb/oas": "3.18.3",
67
+ "@kubb/plugin-client": "3.18.3",
68
+ "@kubb/plugin-oas": "3.18.3",
69
+ "@kubb/plugin-ts": "3.18.3",
70
+ "@kubb/plugin-zod": "3.18.3",
71
+ "@kubb/react": "3.18.3"
72
72
  },
73
73
  "devDependencies": {
74
74
  "@types/react": "^18.3.24",
75
75
  "react": "^18.3.1",
76
76
  "tsdown": "^0.14.2",
77
77
  "typescript": "^5.9.2",
78
- "@kubb/config-ts": "3.18.2"
78
+ "@kubb/config-ts": "3.18.3"
79
79
  },
80
80
  "peerDependencies": {
81
81
  "@kubb/react": "^3.0.0"
@@ -28,6 +28,7 @@ export async function updatePetWithForm(
28
28
  const { client: request = fetch, ...requestConfig } = config
29
29
 
30
30
  const requestData = updatePetWithFormMutationRequest.parse(data)
31
+
31
32
  const res = await request<UpdatePetWithFormMutationResponse, ResponseErrorConfig<UpdatePetWithForm405>, UpdatePetWithFormMutationRequest>({
32
33
  method: 'POST',
33
34
  url: `/pet/${petId}`,