api.fluff4.me 1.0.1001 → 1.0.1002
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 +5 -1
- package/openapi.json +41 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -150,11 +150,15 @@ export interface Frequency {
|
|
|
150
150
|
export interface Bookmarks {
|
|
151
151
|
url_first: string
|
|
152
152
|
url_next?: string | null
|
|
153
|
-
|
|
153
|
+
url_next_furthest?: string | null
|
|
154
154
|
url_read_last?: string | null
|
|
155
|
+
url_read_furthest?: string | null
|
|
155
156
|
read_completed?: true | null
|
|
157
|
+
chapters_from_last_patreon?: number | null
|
|
156
158
|
chapters_from_last?: number | null
|
|
159
|
+
chapters_from_furthest_patreon?: number | null
|
|
157
160
|
chapters_from_furthest?: number | null
|
|
161
|
+
url_next_page?: number | null
|
|
158
162
|
}
|
|
159
163
|
|
|
160
164
|
export interface Role {
|
package/openapi.json
CHANGED
|
@@ -734,7 +734,7 @@
|
|
|
734
734
|
}
|
|
735
735
|
]
|
|
736
736
|
},
|
|
737
|
-
"
|
|
737
|
+
"url_next_furthest": {
|
|
738
738
|
"anyOf": [
|
|
739
739
|
{
|
|
740
740
|
"type": "string"
|
|
@@ -754,6 +754,16 @@
|
|
|
754
754
|
}
|
|
755
755
|
]
|
|
756
756
|
},
|
|
757
|
+
"url_read_furthest": {
|
|
758
|
+
"anyOf": [
|
|
759
|
+
{
|
|
760
|
+
"type": "string"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"type": "null"
|
|
764
|
+
}
|
|
765
|
+
]
|
|
766
|
+
},
|
|
757
767
|
"read_completed": {
|
|
758
768
|
"anyOf": [
|
|
759
769
|
{
|
|
@@ -767,6 +777,16 @@
|
|
|
767
777
|
}
|
|
768
778
|
]
|
|
769
779
|
},
|
|
780
|
+
"chapters_from_last_patreon": {
|
|
781
|
+
"anyOf": [
|
|
782
|
+
{
|
|
783
|
+
"type": "number"
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"type": "null"
|
|
787
|
+
}
|
|
788
|
+
]
|
|
789
|
+
},
|
|
770
790
|
"chapters_from_last": {
|
|
771
791
|
"anyOf": [
|
|
772
792
|
{
|
|
@@ -777,6 +797,16 @@
|
|
|
777
797
|
}
|
|
778
798
|
]
|
|
779
799
|
},
|
|
800
|
+
"chapters_from_furthest_patreon": {
|
|
801
|
+
"anyOf": [
|
|
802
|
+
{
|
|
803
|
+
"type": "number"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"type": "null"
|
|
807
|
+
}
|
|
808
|
+
]
|
|
809
|
+
},
|
|
780
810
|
"chapters_from_furthest": {
|
|
781
811
|
"anyOf": [
|
|
782
812
|
{
|
|
@@ -786,6 +816,16 @@
|
|
|
786
816
|
"type": "null"
|
|
787
817
|
}
|
|
788
818
|
]
|
|
819
|
+
},
|
|
820
|
+
"url_next_page": {
|
|
821
|
+
"anyOf": [
|
|
822
|
+
{
|
|
823
|
+
"type": "number"
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"type": "null"
|
|
827
|
+
}
|
|
828
|
+
]
|
|
789
829
|
}
|
|
790
830
|
},
|
|
791
831
|
"required": [
|
package/package.json
CHANGED