api.fluff4.me 1.0.1039 → 1.0.1040
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
|
@@ -787,6 +787,7 @@ export interface ManifestNotificationTypes {
|
|
|
787
787
|
"patreon-needs-reauth": NotificationType
|
|
788
788
|
"work-recommendation": NotificationType
|
|
789
789
|
"recommendation-mention": NotificationType
|
|
790
|
+
"author-marked-suspicious": NotificationType
|
|
790
791
|
}
|
|
791
792
|
|
|
792
793
|
export interface NotificationType {
|
package/openapi.json
CHANGED
|
@@ -4586,6 +4586,9 @@
|
|
|
4586
4586
|
},
|
|
4587
4587
|
"recommendation-mention": {
|
|
4588
4588
|
"$ref": "#/components/schema/NotificationType"
|
|
4589
|
+
},
|
|
4590
|
+
"author-marked-suspicious": {
|
|
4591
|
+
"$ref": "#/components/schema/NotificationType"
|
|
4589
4592
|
}
|
|
4590
4593
|
},
|
|
4591
4594
|
"required": [
|
|
@@ -4610,7 +4613,8 @@
|
|
|
4610
4613
|
"chapter-censored",
|
|
4611
4614
|
"patreon-needs-reauth",
|
|
4612
4615
|
"work-recommendation",
|
|
4613
|
-
"recommendation-mention"
|
|
4616
|
+
"recommendation-mention",
|
|
4617
|
+
"author-marked-suspicious"
|
|
4614
4618
|
]
|
|
4615
4619
|
},
|
|
4616
4620
|
"NotificationType": {
|
package/package.json
CHANGED