@kubb/plugin-ts 3.14.1 → 3.14.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": "3.14.1",
3
+ "version": "3.14.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",
@@ -61,20 +61,20 @@
61
61
  "!/**/__tests__/**"
62
62
  ],
63
63
  "dependencies": {
64
- "@kubb/core": "3.14.1",
65
- "@kubb/oas": "3.14.1",
66
- "@kubb/parser-ts": "3.14.1",
67
- "@kubb/plugin-oas": "3.14.1",
68
- "@kubb/react": "3.14.1"
64
+ "@kubb/core": "3.14.4",
65
+ "@kubb/oas": "3.14.4",
66
+ "@kubb/parser-ts": "3.14.4",
67
+ "@kubb/plugin-oas": "3.14.4",
68
+ "@kubb/react": "3.14.4"
69
69
  },
70
70
  "devDependencies": {
71
71
  "@types/react": "^18.3.23",
72
72
  "react": "^18.3.1",
73
73
  "tsup": "^8.5.0",
74
74
  "typescript": "^5.8.3",
75
- "@kubb/config-ts": "3.14.1",
76
- "@kubb/config-tsup": "3.14.1",
77
- "@kubb/plugin-oas": "3.14.1"
75
+ "@kubb/config-ts": "3.14.4",
76
+ "@kubb/config-tsup": "3.14.4",
77
+ "@kubb/plugin-oas": "3.14.4"
78
78
  },
79
79
  "peerDependencies": {
80
80
  "@kubb/react": "^3.0.0"
@@ -11,6 +11,10 @@ export type CreatePets201 = error & {
11
11
  * @type object | undefined
12
12
  */
13
13
  name?: errorCode
14
+ /**
15
+ * @type string
16
+ */
17
+ message: string
14
18
  }
15
19
 
16
20
  /**
@@ -11,6 +11,10 @@ export type CreatePets201 = error & {
11
11
  * @type object | undefined
12
12
  */
13
13
  name?: errorCode
14
+ /**
15
+ * @type string
16
+ */
17
+ message: string
14
18
  }
15
19
 
16
20
  /**
@@ -11,6 +11,10 @@ export type CreatePets201 = error & {
11
11
  * @type object | undefined
12
12
  */
13
13
  name?: errorCode
14
+ /**
15
+ * @type string
16
+ */
17
+ message: string
14
18
  }
15
19
 
16
20
  /**
@@ -11,6 +11,10 @@ export type CreatePets201 = error & {
11
11
  * @type object | undefined
12
12
  */
13
13
  name?: errorCode
14
+ /**
15
+ * @type string
16
+ */
17
+ message: string
14
18
  }
15
19
 
16
20
  /**
@@ -11,6 +11,10 @@ export type CreatePets201 = error & {
11
11
  * @type object | undefined
12
12
  */
13
13
  name?: errorCode
14
+ /**
15
+ * @type string
16
+ */
17
+ message: string
14
18
  }
15
19
 
16
20
  /**
@@ -3,7 +3,14 @@
3
3
  * Do not edit manually.
4
4
  */
5
5
 
6
- export type notification = {
6
+ export type notification = (
7
+ | (documentDisapprovedNotification & {
8
+ notificationType: 'DOCUMENT_DISAPPROVED'
9
+ })
10
+ | (documentApprovedNotification & {
11
+ notificationType: 'DOCUMENT_APPROVED'
12
+ })
13
+ ) & {
7
14
  /**
8
15
  * @type integer
9
16
  */
@@ -16,11 +23,4 @@ export type notification = {
16
23
  * @type boolean
17
24
  */
18
25
  isSeen: boolean
19
- } & (
20
- | (documentDisapprovedNotification & {
21
- notificationType: 'DOCUMENT_DISAPPROVED'
22
- })
23
- | (documentApprovedNotification & {
24
- notificationType: 'DOCUMENT_APPROVED'
25
- })
26
- )
26
+ }