@kubb/plugin-zod 3.0.10 → 3.0.12

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-zod",
3
- "version": "3.0.10",
3
+ "version": "3.0.12",
4
4
  "description": "Generator plugin-zod",
5
5
  "keywords": [
6
6
  "typescript",
@@ -58,18 +58,18 @@
58
58
  "!/**/__tests__/**"
59
59
  ],
60
60
  "dependencies": {
61
- "@kubb/core": "3.0.10",
62
- "@kubb/fs": "3.0.10",
63
- "@kubb/oas": "3.0.10",
64
- "@kubb/parser-ts": "3.0.10",
65
- "@kubb/plugin-oas": "3.0.10",
66
- "@kubb/plugin-ts": "3.0.10",
67
- "@kubb/react": "3.0.10"
61
+ "@kubb/core": "3.0.12",
62
+ "@kubb/fs": "3.0.12",
63
+ "@kubb/oas": "3.0.12",
64
+ "@kubb/parser-ts": "3.0.12",
65
+ "@kubb/plugin-oas": "3.0.12",
66
+ "@kubb/plugin-ts": "3.0.12",
67
+ "@kubb/react": "3.0.12"
68
68
  },
69
69
  "devDependencies": {
70
70
  "tsup": "^8.3.5",
71
- "@kubb/config-ts": "3.0.10",
72
- "@kubb/config-tsup": "3.0.10"
71
+ "@kubb/config-ts": "3.0.12",
72
+ "@kubb/config-tsup": "3.0.12"
73
73
  },
74
74
  "peerDependencies": {
75
75
  "@kubb/react": "^3.0.0"
@@ -1,4 +1,4 @@
1
- import { listPetsQueryResponse, listPetsQueryParams, createPetsMutationRequest, createPetsMutationResponse, showPetByIdQueryResponse, showPetByIdPathParams } from "./showPetById";
1
+ import { listPets200, listPetsQueryResponse, listPetsQueryParams, createPetsMutationRequest, createPets201, createPetsMutationResponse, showPetById200, showPetByIdQueryResponse, showPetByIdPathParams } from "./showPetById";
2
2
 
3
3
  export const operations = { "listPets": {
4
4
  request: undefined,
@@ -8,6 +8,7 @@ import { listPetsQueryResponse, listPetsQueryParams, createPetsMutationRequest,
8
8
  header: undefined
9
9
  },
10
10
  responses: {
11
+ 200: listPets200,
11
12
  default: listPetsQueryResponse
12
13
  },
13
14
  errors: {}
@@ -19,6 +20,7 @@ import { listPetsQueryResponse, listPetsQueryParams, createPetsMutationRequest,
19
20
  header: undefined
20
21
  },
21
22
  responses: {
23
+ 201: createPets201,
22
24
  default: createPetsMutationResponse
23
25
  },
24
26
  errors: {}
@@ -30,6 +32,7 @@ import { listPetsQueryResponse, listPetsQueryParams, createPetsMutationRequest,
30
32
  header: undefined
31
33
  },
32
34
  responses: {
35
+ 200: showPetById200,
33
36
  default: showPetByIdQueryResponse
34
37
  },
35
38
  errors: {}