api.fluff4.me 1.0.1067 → 1.0.1070
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 +3 -0
- package/openapi.json +14 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -125,6 +125,7 @@ export interface WorkMetadata {
|
|
|
125
125
|
frequency?: Frequency | null
|
|
126
126
|
recently_updated: boolean
|
|
127
127
|
bookmarks?: Bookmarks | null
|
|
128
|
+
root_comment: string
|
|
128
129
|
}
|
|
129
130
|
|
|
130
131
|
export type WorkStatus = "Cancelled" | "Hiatus" | "Ongoing" | "Complete"
|
|
@@ -284,6 +285,7 @@ export interface Comment {
|
|
|
284
285
|
reactions?: number | null
|
|
285
286
|
reacted?: true | null
|
|
286
287
|
author_hearted?: true | null
|
|
288
|
+
replyable: boolean
|
|
287
289
|
}
|
|
288
290
|
|
|
289
291
|
export interface CommentCreateBody {
|
|
@@ -324,6 +326,7 @@ export interface Work {
|
|
|
324
326
|
frequency?: Frequency | null
|
|
325
327
|
recently_updated: boolean
|
|
326
328
|
bookmarks?: Bookmarks | null
|
|
329
|
+
root_comment: string
|
|
327
330
|
synopsis: MentionsBody
|
|
328
331
|
custom_tags?: CustomTag[] | null
|
|
329
332
|
last_chapter: string
|
package/openapi.json
CHANGED
|
@@ -768,6 +768,9 @@
|
|
|
768
768
|
"type": "null"
|
|
769
769
|
}
|
|
770
770
|
]
|
|
771
|
+
},
|
|
772
|
+
"root_comment": {
|
|
773
|
+
"type": "string"
|
|
771
774
|
}
|
|
772
775
|
},
|
|
773
776
|
"required": [
|
|
@@ -779,7 +782,8 @@
|
|
|
779
782
|
"visibility",
|
|
780
783
|
"chapter_count_public",
|
|
781
784
|
"word_count",
|
|
782
|
-
"recently_updated"
|
|
785
|
+
"recently_updated",
|
|
786
|
+
"root_comment"
|
|
783
787
|
]
|
|
784
788
|
},
|
|
785
789
|
"WorkStatus": {
|
|
@@ -1761,10 +1765,14 @@
|
|
|
1761
1765
|
"type": "null"
|
|
1762
1766
|
}
|
|
1763
1767
|
]
|
|
1768
|
+
},
|
|
1769
|
+
"replyable": {
|
|
1770
|
+
"type": "boolean"
|
|
1764
1771
|
}
|
|
1765
1772
|
},
|
|
1766
1773
|
"required": [
|
|
1767
|
-
"comment_id"
|
|
1774
|
+
"comment_id",
|
|
1775
|
+
"replyable"
|
|
1768
1776
|
]
|
|
1769
1777
|
},
|
|
1770
1778
|
"CommentCreateBody": {
|
|
@@ -1974,6 +1982,9 @@
|
|
|
1974
1982
|
}
|
|
1975
1983
|
]
|
|
1976
1984
|
},
|
|
1985
|
+
"root_comment": {
|
|
1986
|
+
"type": "string"
|
|
1987
|
+
},
|
|
1977
1988
|
"synopsis": {
|
|
1978
1989
|
"$ref": "#/components/schema/MentionsBody"
|
|
1979
1990
|
},
|
|
@@ -2014,6 +2025,7 @@
|
|
|
2014
2025
|
"chapter_count_public",
|
|
2015
2026
|
"word_count",
|
|
2016
2027
|
"recently_updated",
|
|
2028
|
+
"root_comment",
|
|
2017
2029
|
"synopsis",
|
|
2018
2030
|
"last_chapter"
|
|
2019
2031
|
]
|
package/package.json
CHANGED