api.fluff4.me 1.0.1072 → 1.0.1077
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 +23 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -159,6 +159,7 @@ export interface Bookmarks {
|
|
|
159
159
|
url_read_last?: string | null
|
|
160
160
|
url_read_furthest?: string | null
|
|
161
161
|
read_completed?: true | null
|
|
162
|
+
can_recommend?: true | null
|
|
162
163
|
chapters_from_last_patreon?: number | null
|
|
163
164
|
chapters_from_last?: number | null
|
|
164
165
|
chapters_from_furthest_patreon?: number | null
|
|
@@ -331,6 +332,7 @@ export interface Work {
|
|
|
331
332
|
custom_tags?: CustomTag[] | null
|
|
332
333
|
last_chapter: string
|
|
333
334
|
statistics?: WorkStatistics | null
|
|
335
|
+
recommendation?: Comment | null
|
|
334
336
|
}
|
|
335
337
|
|
|
336
338
|
export interface WorkCreateBody {
|
package/openapi.json
CHANGED
|
@@ -927,6 +927,19 @@
|
|
|
927
927
|
}
|
|
928
928
|
]
|
|
929
929
|
},
|
|
930
|
+
"can_recommend": {
|
|
931
|
+
"anyOf": [
|
|
932
|
+
{
|
|
933
|
+
"type": "boolean",
|
|
934
|
+
"enum": [
|
|
935
|
+
true
|
|
936
|
+
]
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"type": "null"
|
|
940
|
+
}
|
|
941
|
+
]
|
|
942
|
+
},
|
|
930
943
|
"chapters_from_last_patreon": {
|
|
931
944
|
"anyOf": [
|
|
932
945
|
{
|
|
@@ -2013,6 +2026,16 @@
|
|
|
2013
2026
|
"type": "null"
|
|
2014
2027
|
}
|
|
2015
2028
|
]
|
|
2029
|
+
},
|
|
2030
|
+
"recommendation": {
|
|
2031
|
+
"anyOf": [
|
|
2032
|
+
{
|
|
2033
|
+
"$ref": "#/components/schema/Comment"
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
"type": "null"
|
|
2037
|
+
}
|
|
2038
|
+
]
|
|
2016
2039
|
}
|
|
2017
2040
|
},
|
|
2018
2041
|
"required": [
|
package/package.json
CHANGED