api.fluff4.me 1.0.288 → 1.0.289
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 -1
- package/openapi.json +6 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -405,7 +405,8 @@ export interface ReactionType {
|
|
|
405
405
|
|
|
406
406
|
export interface ManifestNotificationTypes {
|
|
407
407
|
report: NotificationType
|
|
408
|
-
comment: NotificationType
|
|
408
|
+
"comment-chapter": NotificationType
|
|
409
|
+
"comment-reply": NotificationType
|
|
409
410
|
roles: NotificationType
|
|
410
411
|
}
|
|
411
412
|
|
package/openapi.json
CHANGED
|
@@ -2080,7 +2080,10 @@
|
|
|
2080
2080
|
"report": {
|
|
2081
2081
|
"$ref": "#/components/schema/NotificationType"
|
|
2082
2082
|
},
|
|
2083
|
-
"comment": {
|
|
2083
|
+
"comment-chapter": {
|
|
2084
|
+
"$ref": "#/components/schema/NotificationType"
|
|
2085
|
+
},
|
|
2086
|
+
"comment-reply": {
|
|
2084
2087
|
"$ref": "#/components/schema/NotificationType"
|
|
2085
2088
|
},
|
|
2086
2089
|
"roles": {
|
|
@@ -2089,7 +2092,8 @@
|
|
|
2089
2092
|
},
|
|
2090
2093
|
"required": [
|
|
2091
2094
|
"report",
|
|
2092
|
-
"comment",
|
|
2095
|
+
"comment-chapter",
|
|
2096
|
+
"comment-reply",
|
|
2093
2097
|
"roles"
|
|
2094
2098
|
]
|
|
2095
2099
|
},
|
package/package.json
CHANGED