api.fluff4.me 1.0.638 → 1.0.640
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 +10 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -727,6 +727,7 @@ export interface NotificationCount {
|
|
|
727
727
|
unread_notification_count: number
|
|
728
728
|
notification_time_last_modified: string
|
|
729
729
|
notification_time_last_modified_or_state_changed: string
|
|
730
|
+
reports_time_last_update?: number | null
|
|
730
731
|
}
|
|
731
732
|
|
|
732
733
|
export interface NotificationsBody {
|
package/openapi.json
CHANGED
|
@@ -4049,6 +4049,16 @@
|
|
|
4049
4049
|
},
|
|
4050
4050
|
"notification_time_last_modified_or_state_changed": {
|
|
4051
4051
|
"type": "string"
|
|
4052
|
+
},
|
|
4053
|
+
"reports_time_last_update": {
|
|
4054
|
+
"anyOf": [
|
|
4055
|
+
{
|
|
4056
|
+
"type": "number"
|
|
4057
|
+
},
|
|
4058
|
+
{
|
|
4059
|
+
"type": "null"
|
|
4060
|
+
}
|
|
4061
|
+
]
|
|
4052
4062
|
}
|
|
4053
4063
|
},
|
|
4054
4064
|
"required": [
|
package/package.json
CHANGED