api.fluff4.me 1.0.1066 → 1.0.1069
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 -0
- package/openapi.json +9 -1
- 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"
|
|
@@ -324,6 +325,7 @@ export interface Work {
|
|
|
324
325
|
frequency?: Frequency | null
|
|
325
326
|
recently_updated: boolean
|
|
326
327
|
bookmarks?: Bookmarks | null
|
|
328
|
+
root_comment: string
|
|
327
329
|
synopsis: MentionsBody
|
|
328
330
|
custom_tags?: CustomTag[] | null
|
|
329
331
|
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": {
|
|
@@ -1974,6 +1978,9 @@
|
|
|
1974
1978
|
}
|
|
1975
1979
|
]
|
|
1976
1980
|
},
|
|
1981
|
+
"root_comment": {
|
|
1982
|
+
"type": "string"
|
|
1983
|
+
},
|
|
1977
1984
|
"synopsis": {
|
|
1978
1985
|
"$ref": "#/components/schema/MentionsBody"
|
|
1979
1986
|
},
|
|
@@ -2014,6 +2021,7 @@
|
|
|
2014
2021
|
"chapter_count_public",
|
|
2015
2022
|
"word_count",
|
|
2016
2023
|
"recently_updated",
|
|
2024
|
+
"root_comment",
|
|
2017
2025
|
"synopsis",
|
|
2018
2026
|
"last_chapter"
|
|
2019
2027
|
]
|
package/package.json
CHANGED