@kubb/plugin-ts 4.7.3 → 4.7.4

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.7.3",
3
+ "version": "4.7.4",
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",
@@ -68,12 +68,12 @@
68
68
  "@kubb/react-fabric": "0.5.2",
69
69
  "remeda": "^2.32.0",
70
70
  "typescript": "5.9.3",
71
- "@kubb/core": "4.7.3",
72
- "@kubb/oas": "4.7.3",
73
- "@kubb/plugin-oas": "4.7.3"
71
+ "@kubb/core": "4.7.4",
72
+ "@kubb/oas": "4.7.4",
73
+ "@kubb/plugin-oas": "4.7.4"
74
74
  },
75
75
  "devDependencies": {
76
- "@kubb/plugin-oas": "4.7.3"
76
+ "@kubb/plugin-oas": "4.7.4"
77
77
  },
78
78
  "peerDependencies": {
79
79
  "@kubb/react-fabric": "0.5.2"
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Generated by Kubb (https://kubb.dev/).
3
+ * Do not edit manually.
4
+ */
5
+
6
+ export type ACHDetailsResponse = {
7
+ /**
8
+ * @type string
9
+ */
10
+ type: paymentDetailsTypeResponse
11
+ /**
12
+ * @type string
13
+ */
14
+ routing_number: string
15
+ /**
16
+ * @type string
17
+ */
18
+ account_number: string
19
+ }
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Generated by Kubb (https://kubb.dev/).
3
+ * Do not edit manually.
4
+ */
5
+
6
+ export type paymentAccountDetailsResponse =
7
+ | (ACHDetailsResponse & {
8
+ type: 'ACH'
9
+ })
10
+ | (domesticWireDetailsResponse & {
11
+ type: 'DOMESTIC_WIRE'
12
+ })