@kubb/plugin-ts 4.12.2 → 4.12.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.12.2",
3
+ "version": "4.12.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",
@@ -69,12 +69,12 @@
69
69
  "natural-orderby": "^5.0.0",
70
70
  "remeda": "^2.32.0",
71
71
  "typescript": "5.9.3",
72
- "@kubb/core": "4.12.2",
73
- "@kubb/oas": "4.12.2",
74
- "@kubb/plugin-oas": "4.12.2"
72
+ "@kubb/core": "4.12.3",
73
+ "@kubb/oas": "4.12.3",
74
+ "@kubb/plugin-oas": "4.12.3"
75
75
  },
76
76
  "devDependencies": {
77
- "@kubb/plugin-oas": "4.12.2"
77
+ "@kubb/plugin-oas": "4.12.3"
78
78
  },
79
79
  "peerDependencies": {
80
80
  "@kubb/react-fabric": "0.7.0",
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Generated by Kubb (https://kubb.dev/).
3
+ * Do not edit manually.
4
+ */
5
+
6
+ /**
7
+ * @example [object Object]
8
+ */
9
+ export type SystemsQueryParams = {
10
+ [key: string]: string
11
+ }
12
+
13
+ /**
14
+ * @description OK
15
+ */
16
+ export type Systems200 = object
17
+
18
+ export type SystemsQueryResponse = systems200
19
+
20
+ export type systemsQuery = {
21
+ Response: systems200
22
+ QueryParams: systemsQueryParams
23
+ Errors: any
24
+ }