api.fluff4.me 1.0.696 → 1.0.697
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 -4
- package/openapi.json +10 -10
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -851,22 +851,22 @@ export interface Fundraiser {
|
|
|
851
851
|
}
|
|
852
852
|
|
|
853
853
|
export interface ReportAuthorBody {
|
|
854
|
-
reason: "harassment" | "impersonation" | "spam" | "phishing" | "
|
|
854
|
+
reason: "harassment" | "impersonation" | "spam" | "phishing" | "inappropriate-field" | "tos-violation"
|
|
855
855
|
reason_body: string
|
|
856
856
|
}
|
|
857
857
|
|
|
858
858
|
export interface ReportWorkBody {
|
|
859
|
-
reason: "plagiarism" | "
|
|
859
|
+
reason: "plagiarism" | "inadequate-tags" | "harassment" | "spam" | "inappropriate-field" | "tos-violation"
|
|
860
860
|
reason_body: string
|
|
861
861
|
}
|
|
862
862
|
|
|
863
863
|
export interface ReportChapterBody {
|
|
864
|
-
reason: "plagiarism" | "
|
|
864
|
+
reason: "plagiarism" | "inadequate-tags" | "harassment" | "spam" | "inappropriate-field" | "tos-violation"
|
|
865
865
|
reason_body: string
|
|
866
866
|
}
|
|
867
867
|
|
|
868
868
|
export interface ReportCommentBody {
|
|
869
|
-
reason: "harassment" | "spam" | "
|
|
869
|
+
reason: "harassment" | "spam" | "inappropriate-field" | "tos-violation" | "phishing"
|
|
870
870
|
reason_body: string
|
|
871
871
|
}
|
|
872
872
|
|
package/openapi.json
CHANGED
|
@@ -4744,8 +4744,8 @@
|
|
|
4744
4744
|
"impersonation",
|
|
4745
4745
|
"spam",
|
|
4746
4746
|
"phishing",
|
|
4747
|
-
"
|
|
4748
|
-
"
|
|
4747
|
+
"inappropriate-field",
|
|
4748
|
+
"tos-violation"
|
|
4749
4749
|
]
|
|
4750
4750
|
},
|
|
4751
4751
|
"reason_body": {
|
|
@@ -4765,11 +4765,11 @@
|
|
|
4765
4765
|
"type": "string",
|
|
4766
4766
|
"enum": [
|
|
4767
4767
|
"plagiarism",
|
|
4768
|
-
"
|
|
4768
|
+
"inadequate-tags",
|
|
4769
4769
|
"harassment",
|
|
4770
4770
|
"spam",
|
|
4771
|
-
"
|
|
4772
|
-
"
|
|
4771
|
+
"inappropriate-field",
|
|
4772
|
+
"tos-violation"
|
|
4773
4773
|
]
|
|
4774
4774
|
},
|
|
4775
4775
|
"reason_body": {
|
|
@@ -4789,11 +4789,11 @@
|
|
|
4789
4789
|
"type": "string",
|
|
4790
4790
|
"enum": [
|
|
4791
4791
|
"plagiarism",
|
|
4792
|
-
"
|
|
4792
|
+
"inadequate-tags",
|
|
4793
4793
|
"harassment",
|
|
4794
4794
|
"spam",
|
|
4795
|
-
"
|
|
4796
|
-
"
|
|
4795
|
+
"inappropriate-field",
|
|
4796
|
+
"tos-violation"
|
|
4797
4797
|
]
|
|
4798
4798
|
},
|
|
4799
4799
|
"reason_body": {
|
|
@@ -4814,8 +4814,8 @@
|
|
|
4814
4814
|
"enum": [
|
|
4815
4815
|
"harassment",
|
|
4816
4816
|
"spam",
|
|
4817
|
-
"
|
|
4818
|
-
"
|
|
4817
|
+
"inappropriate-field",
|
|
4818
|
+
"tos-violation",
|
|
4819
4819
|
"phishing"
|
|
4820
4820
|
]
|
|
4821
4821
|
},
|
package/package.json
CHANGED