@kubb/plugin-ts 4.27.2 → 4.27.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-ts",
3
- "version": "4.27.2",
3
+ "version": "4.27.3",
4
4
  "description": "TypeScript code generation plugin for Kubb, transforming OpenAPI schemas into TypeScript interfaces, types, and utility functions.",
5
5
  "keywords": [
6
6
  "typescript",
@@ -73,9 +73,9 @@
73
73
  "natural-orderby": "^5.0.0",
74
74
  "remeda": "^2.33.6",
75
75
  "typescript": "5.9.3",
76
- "@kubb/core": "4.27.2",
77
- "@kubb/oas": "4.27.2",
78
- "@kubb/plugin-oas": "4.27.2"
76
+ "@kubb/core": "4.27.3",
77
+ "@kubb/oas": "4.27.3",
78
+ "@kubb/plugin-oas": "4.27.3"
79
79
  },
80
80
  "peerDependencies": {
81
81
  "@kubb/react-fabric": "0.12.11",
@@ -22,5 +22,14 @@ export type pet = {
22
22
  /**
23
23
  * @type object | undefined
24
24
  */
25
- category?: category
25
+ category?: {
26
+ /**
27
+ * @type integer | undefined, int64
28
+ */
29
+ id?: bigint
30
+ /**
31
+ * @type string | undefined
32
+ */
33
+ name?: string
34
+ }
26
35
  }
@@ -22,5 +22,16 @@ export type pet = {
22
22
  /**
23
23
  * @type object | undefined
24
24
  */
25
- category?: category | undefined
25
+ category?:
26
+ | {
27
+ /**
28
+ * @type integer | undefined, int64
29
+ */
30
+ id?: bigint | undefined
31
+ /**
32
+ * @type string | undefined
33
+ */
34
+ name?: string | undefined
35
+ }
36
+ | undefined
26
37
  }
@@ -22,5 +22,16 @@ export type pet = {
22
22
  /**
23
23
  * @type object | undefined
24
24
  */
25
- category: category | undefined
25
+ category:
26
+ | {
27
+ /**
28
+ * @type integer | undefined, int64
29
+ */
30
+ id: bigint | undefined
31
+ /**
32
+ * @type string | undefined
33
+ */
34
+ name: string | undefined
35
+ }
36
+ | undefined
26
37
  }