api.fluff4.me 1.0.712 → 1.0.714
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 +7 -1
- package/openapi.json +27 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -685,6 +685,12 @@ export interface ManifestNotificationTypes {
|
|
|
685
685
|
"report-inadequate-tags": NotificationType
|
|
686
686
|
"report-tos-violation": NotificationType
|
|
687
687
|
"report-inappropriate": NotificationType
|
|
688
|
+
"report-work-unlock": NotificationType
|
|
689
|
+
"work-locked": NotificationType
|
|
690
|
+
"work-unlocked": NotificationType
|
|
691
|
+
"author-censored": NotificationType
|
|
692
|
+
"work-censored": NotificationType
|
|
693
|
+
"chapter-censored": NotificationType
|
|
688
694
|
}
|
|
689
695
|
|
|
690
696
|
export interface NotificationType {
|
|
@@ -867,7 +873,7 @@ export interface ReportAuthorBody {
|
|
|
867
873
|
}
|
|
868
874
|
|
|
869
875
|
export interface ReportWorkBody {
|
|
870
|
-
reason: "plagiarism" | "inadequate-tags" | "harassment" | "spam" | "inappropriate-field" | "tos-violation"
|
|
876
|
+
reason: "plagiarism" | "inadequate-tags" | "harassment" | "spam" | "inappropriate-field" | "tos-violation" | "work-unlock"
|
|
871
877
|
reason_body: string
|
|
872
878
|
}
|
|
873
879
|
|
package/openapi.json
CHANGED
|
@@ -3857,6 +3857,24 @@
|
|
|
3857
3857
|
},
|
|
3858
3858
|
"report-inappropriate": {
|
|
3859
3859
|
"$ref": "#/components/schema/NotificationType"
|
|
3860
|
+
},
|
|
3861
|
+
"report-work-unlock": {
|
|
3862
|
+
"$ref": "#/components/schema/NotificationType"
|
|
3863
|
+
},
|
|
3864
|
+
"work-locked": {
|
|
3865
|
+
"$ref": "#/components/schema/NotificationType"
|
|
3866
|
+
},
|
|
3867
|
+
"work-unlocked": {
|
|
3868
|
+
"$ref": "#/components/schema/NotificationType"
|
|
3869
|
+
},
|
|
3870
|
+
"author-censored": {
|
|
3871
|
+
"$ref": "#/components/schema/NotificationType"
|
|
3872
|
+
},
|
|
3873
|
+
"work-censored": {
|
|
3874
|
+
"$ref": "#/components/schema/NotificationType"
|
|
3875
|
+
},
|
|
3876
|
+
"chapter-censored": {
|
|
3877
|
+
"$ref": "#/components/schema/NotificationType"
|
|
3860
3878
|
}
|
|
3861
3879
|
},
|
|
3862
3880
|
"required": [
|
|
@@ -3872,7 +3890,13 @@
|
|
|
3872
3890
|
"report-inappropriate-field",
|
|
3873
3891
|
"report-inadequate-tags",
|
|
3874
3892
|
"report-tos-violation",
|
|
3875
|
-
"report-inappropriate"
|
|
3893
|
+
"report-inappropriate",
|
|
3894
|
+
"report-work-unlock",
|
|
3895
|
+
"work-locked",
|
|
3896
|
+
"work-unlocked",
|
|
3897
|
+
"author-censored",
|
|
3898
|
+
"work-censored",
|
|
3899
|
+
"chapter-censored"
|
|
3876
3900
|
]
|
|
3877
3901
|
},
|
|
3878
3902
|
"NotificationType": {
|
|
@@ -4847,7 +4871,8 @@
|
|
|
4847
4871
|
"harassment",
|
|
4848
4872
|
"spam",
|
|
4849
4873
|
"inappropriate-field",
|
|
4850
|
-
"tos-violation"
|
|
4874
|
+
"tos-violation",
|
|
4875
|
+
"work-unlock"
|
|
4851
4876
|
]
|
|
4852
4877
|
},
|
|
4853
4878
|
"reason_body": {
|
package/package.json
CHANGED