api.fluff4.me 1.0.293 → 1.0.295
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/index.d.ts +2 -0
- package/openapi.json +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -417,6 +417,7 @@ export interface NotificationType {
|
|
|
417
417
|
export type Notifications = Notification[]
|
|
418
418
|
|
|
419
419
|
export interface Notification {
|
|
420
|
+
id: string
|
|
420
421
|
type: string
|
|
421
422
|
created_time: string
|
|
422
423
|
read: boolean
|
|
@@ -431,6 +432,7 @@ export interface Notification {
|
|
|
431
432
|
export interface NotificationCount {
|
|
432
433
|
unread_notification_count: number
|
|
433
434
|
notification_time_last_modified: string
|
|
435
|
+
notification_time_last_modified_or_state_changed: string
|
|
434
436
|
}
|
|
435
437
|
|
|
436
438
|
export interface NotificationsBody {
|
package/openapi.json
CHANGED
|
@@ -2117,6 +2117,9 @@
|
|
|
2117
2117
|
"Notification": {
|
|
2118
2118
|
"type": "object",
|
|
2119
2119
|
"properties": {
|
|
2120
|
+
"id": {
|
|
2121
|
+
"type": "string"
|
|
2122
|
+
},
|
|
2120
2123
|
"type": {
|
|
2121
2124
|
"type": "string"
|
|
2122
2125
|
},
|
|
@@ -2188,6 +2191,7 @@
|
|
|
2188
2191
|
}
|
|
2189
2192
|
},
|
|
2190
2193
|
"required": [
|
|
2194
|
+
"id",
|
|
2191
2195
|
"type",
|
|
2192
2196
|
"created_time",
|
|
2193
2197
|
"read"
|
|
@@ -2201,11 +2205,15 @@
|
|
|
2201
2205
|
},
|
|
2202
2206
|
"notification_time_last_modified": {
|
|
2203
2207
|
"type": "string"
|
|
2208
|
+
},
|
|
2209
|
+
"notification_time_last_modified_or_state_changed": {
|
|
2210
|
+
"type": "string"
|
|
2204
2211
|
}
|
|
2205
2212
|
},
|
|
2206
2213
|
"required": [
|
|
2207
2214
|
"unread_notification_count",
|
|
2208
|
-
"notification_time_last_modified"
|
|
2215
|
+
"notification_time_last_modified",
|
|
2216
|
+
"notification_time_last_modified_or_state_changed"
|
|
2209
2217
|
]
|
|
2210
2218
|
},
|
|
2211
2219
|
"NotificationsBody": {
|
package/package.json
CHANGED