api.fluff4.me 1.0.984 → 1.0.985
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 +14 -0
- package/openapi.json +76 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -125,6 +125,13 @@ export interface WorkMetadata {
|
|
|
125
125
|
}
|
|
126
126
|
| null
|
|
127
127
|
recently_updated: boolean
|
|
128
|
+
bookmarks?:
|
|
129
|
+
| {
|
|
130
|
+
url_read_next: string
|
|
131
|
+
url_read_last?: string | null
|
|
132
|
+
url_read_furthest?: string | null
|
|
133
|
+
}
|
|
134
|
+
| null
|
|
128
135
|
}
|
|
129
136
|
|
|
130
137
|
export type WorkStatus = "Cancelled" | "Hiatus" | "Ongoing" | "Complete"
|
|
@@ -275,6 +282,13 @@ export interface Work {
|
|
|
275
282
|
}
|
|
276
283
|
| null
|
|
277
284
|
recently_updated: boolean
|
|
285
|
+
bookmarks?:
|
|
286
|
+
| {
|
|
287
|
+
url_read_next: string
|
|
288
|
+
url_read_last?: string | null
|
|
289
|
+
url_read_furthest?: string | null
|
|
290
|
+
}
|
|
291
|
+
| null
|
|
278
292
|
synopsis: MentionsBody
|
|
279
293
|
custom_tags?: CustomTag[] | null
|
|
280
294
|
last_chapter: string
|
package/openapi.json
CHANGED
|
@@ -624,6 +624,44 @@
|
|
|
624
624
|
},
|
|
625
625
|
"recently_updated": {
|
|
626
626
|
"type": "boolean"
|
|
627
|
+
},
|
|
628
|
+
"bookmarks": {
|
|
629
|
+
"anyOf": [
|
|
630
|
+
{
|
|
631
|
+
"type": "object",
|
|
632
|
+
"properties": {
|
|
633
|
+
"url_read_next": {
|
|
634
|
+
"type": "string"
|
|
635
|
+
},
|
|
636
|
+
"url_read_last": {
|
|
637
|
+
"anyOf": [
|
|
638
|
+
{
|
|
639
|
+
"type": "string"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"type": "null"
|
|
643
|
+
}
|
|
644
|
+
]
|
|
645
|
+
},
|
|
646
|
+
"url_read_furthest": {
|
|
647
|
+
"anyOf": [
|
|
648
|
+
{
|
|
649
|
+
"type": "string"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"type": "null"
|
|
653
|
+
}
|
|
654
|
+
]
|
|
655
|
+
}
|
|
656
|
+
},
|
|
657
|
+
"required": [
|
|
658
|
+
"url_read_next"
|
|
659
|
+
]
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"type": "null"
|
|
663
|
+
}
|
|
664
|
+
]
|
|
627
665
|
}
|
|
628
666
|
},
|
|
629
667
|
"required": [
|
|
@@ -1488,6 +1526,44 @@
|
|
|
1488
1526
|
"recently_updated": {
|
|
1489
1527
|
"type": "boolean"
|
|
1490
1528
|
},
|
|
1529
|
+
"bookmarks": {
|
|
1530
|
+
"anyOf": [
|
|
1531
|
+
{
|
|
1532
|
+
"type": "object",
|
|
1533
|
+
"properties": {
|
|
1534
|
+
"url_read_next": {
|
|
1535
|
+
"type": "string"
|
|
1536
|
+
},
|
|
1537
|
+
"url_read_last": {
|
|
1538
|
+
"anyOf": [
|
|
1539
|
+
{
|
|
1540
|
+
"type": "string"
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
"type": "null"
|
|
1544
|
+
}
|
|
1545
|
+
]
|
|
1546
|
+
},
|
|
1547
|
+
"url_read_furthest": {
|
|
1548
|
+
"anyOf": [
|
|
1549
|
+
{
|
|
1550
|
+
"type": "string"
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
"type": "null"
|
|
1554
|
+
}
|
|
1555
|
+
]
|
|
1556
|
+
}
|
|
1557
|
+
},
|
|
1558
|
+
"required": [
|
|
1559
|
+
"url_read_next"
|
|
1560
|
+
]
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
"type": "null"
|
|
1564
|
+
}
|
|
1565
|
+
]
|
|
1566
|
+
},
|
|
1491
1567
|
"synopsis": {
|
|
1492
1568
|
"$ref": "#/components/schema/MentionsBody"
|
|
1493
1569
|
},
|
package/package.json
CHANGED