api.fluff4.me 1.0.294 → 1.0.296
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 +1 -0
- package/openapi.json +5 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -432,6 +432,7 @@ export interface Notification {
|
|
|
432
432
|
export interface NotificationCount {
|
|
433
433
|
unread_notification_count: number
|
|
434
434
|
notification_time_last_modified: string
|
|
435
|
+
notification_time_last_modified_or_state_changed: string
|
|
435
436
|
}
|
|
436
437
|
|
|
437
438
|
export interface NotificationsBody {
|
package/openapi.json
CHANGED
|
@@ -2205,11 +2205,15 @@
|
|
|
2205
2205
|
},
|
|
2206
2206
|
"notification_time_last_modified": {
|
|
2207
2207
|
"type": "string"
|
|
2208
|
+
},
|
|
2209
|
+
"notification_time_last_modified_or_state_changed": {
|
|
2210
|
+
"type": "string"
|
|
2208
2211
|
}
|
|
2209
2212
|
},
|
|
2210
2213
|
"required": [
|
|
2211
2214
|
"unread_notification_count",
|
|
2212
|
-
"notification_time_last_modified"
|
|
2215
|
+
"notification_time_last_modified",
|
|
2216
|
+
"notification_time_last_modified_or_state_changed"
|
|
2213
2217
|
]
|
|
2214
2218
|
},
|
|
2215
2219
|
"NotificationsBody": {
|
package/package.json
CHANGED