api.fluff4.me 1.0.283 → 1.0.285
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 +4 -2
- package/openapi.json +9 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -409,7 +409,9 @@ export interface ManifestNotificationTypes {
|
|
|
409
409
|
Roles: NotificationType
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
-
export interface NotificationType
|
|
412
|
+
export interface NotificationType {
|
|
413
|
+
type: string
|
|
414
|
+
}
|
|
413
415
|
|
|
414
416
|
export type Notifications = Notification[]
|
|
415
417
|
|
|
@@ -422,7 +424,7 @@ export interface Notification {
|
|
|
422
424
|
author?: Author | null
|
|
423
425
|
work?: Work | null
|
|
424
426
|
chapter?: ChapterLite | null
|
|
425
|
-
comment?:
|
|
427
|
+
comment?: CommentResolved | null
|
|
426
428
|
}
|
|
427
429
|
|
|
428
430
|
export interface NotificationCount {
|
package/openapi.json
CHANGED
|
@@ -2095,7 +2095,14 @@
|
|
|
2095
2095
|
},
|
|
2096
2096
|
"NotificationType": {
|
|
2097
2097
|
"type": "object",
|
|
2098
|
-
"properties": {
|
|
2098
|
+
"properties": {
|
|
2099
|
+
"type": {
|
|
2100
|
+
"type": "string"
|
|
2101
|
+
}
|
|
2102
|
+
},
|
|
2103
|
+
"required": [
|
|
2104
|
+
"type"
|
|
2105
|
+
]
|
|
2099
2106
|
},
|
|
2100
2107
|
"Notifications": {
|
|
2101
2108
|
"type": "array",
|
|
@@ -2168,7 +2175,7 @@
|
|
|
2168
2175
|
"comment": {
|
|
2169
2176
|
"anyOf": [
|
|
2170
2177
|
{
|
|
2171
|
-
"$ref": "#/components/schema/
|
|
2178
|
+
"$ref": "#/components/schema/CommentResolved"
|
|
2172
2179
|
},
|
|
2173
2180
|
{
|
|
2174
2181
|
"type": "null"
|
package/package.json
CHANGED