api.fluff4.me 1.0.988 → 1.0.990
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 +50 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -821,6 +821,7 @@ export interface FeedSearch {
|
|
|
821
821
|
maximum_word_count?: number | null
|
|
822
822
|
blacklisted_work_statuses?: ("Cancelled" | "Hiatus" | "Ongoing" | "Complete")[] | null
|
|
823
823
|
search?: string | null
|
|
824
|
+
is_following?: boolean | null
|
|
824
825
|
}
|
|
825
826
|
|
|
826
827
|
export interface HistoryResponse {
|
|
@@ -963,6 +964,7 @@ export interface ShelfInsertable {
|
|
|
963
964
|
minimum_word_count?: (number | false) | null
|
|
964
965
|
maximum_word_count?: (number | false) | null
|
|
965
966
|
blacklisted_work_statuses?: (("Cancelled" | "Hiatus" | "Ongoing" | "Complete")[] | false) | null
|
|
967
|
+
is_following?: boolean | null
|
|
966
968
|
}
|
|
967
969
|
|
|
968
970
|
export interface Shelf {
|
package/openapi.json
CHANGED
|
@@ -4723,6 +4723,16 @@
|
|
|
4723
4723
|
"type": "null"
|
|
4724
4724
|
}
|
|
4725
4725
|
]
|
|
4726
|
+
},
|
|
4727
|
+
"is_following": {
|
|
4728
|
+
"anyOf": [
|
|
4729
|
+
{
|
|
4730
|
+
"type": "boolean"
|
|
4731
|
+
},
|
|
4732
|
+
{
|
|
4733
|
+
"type": "null"
|
|
4734
|
+
}
|
|
4735
|
+
]
|
|
4726
4736
|
}
|
|
4727
4737
|
}
|
|
4728
4738
|
},
|
|
@@ -5640,6 +5650,16 @@
|
|
|
5640
5650
|
"type": "null"
|
|
5641
5651
|
}
|
|
5642
5652
|
]
|
|
5653
|
+
},
|
|
5654
|
+
"is_following": {
|
|
5655
|
+
"anyOf": [
|
|
5656
|
+
{
|
|
5657
|
+
"type": "boolean"
|
|
5658
|
+
},
|
|
5659
|
+
{
|
|
5660
|
+
"type": "null"
|
|
5661
|
+
}
|
|
5662
|
+
]
|
|
5643
5663
|
}
|
|
5644
5664
|
},
|
|
5645
5665
|
"required": [
|
|
@@ -11694,6 +11714,21 @@
|
|
|
11694
11714
|
}
|
|
11695
11715
|
]
|
|
11696
11716
|
}
|
|
11717
|
+
},
|
|
11718
|
+
{
|
|
11719
|
+
"name": "is_following",
|
|
11720
|
+
"in": "query",
|
|
11721
|
+
"required": false,
|
|
11722
|
+
"schema": {
|
|
11723
|
+
"anyOf": [
|
|
11724
|
+
{
|
|
11725
|
+
"type": "boolean"
|
|
11726
|
+
},
|
|
11727
|
+
{
|
|
11728
|
+
"type": "null"
|
|
11729
|
+
}
|
|
11730
|
+
]
|
|
11731
|
+
}
|
|
11697
11732
|
}
|
|
11698
11733
|
],
|
|
11699
11734
|
"responses": {
|
|
@@ -12039,6 +12074,21 @@
|
|
|
12039
12074
|
}
|
|
12040
12075
|
]
|
|
12041
12076
|
}
|
|
12077
|
+
},
|
|
12078
|
+
{
|
|
12079
|
+
"name": "is_following",
|
|
12080
|
+
"in": "query",
|
|
12081
|
+
"required": false,
|
|
12082
|
+
"schema": {
|
|
12083
|
+
"anyOf": [
|
|
12084
|
+
{
|
|
12085
|
+
"type": "boolean"
|
|
12086
|
+
},
|
|
12087
|
+
{
|
|
12088
|
+
"type": "null"
|
|
12089
|
+
}
|
|
12090
|
+
]
|
|
12091
|
+
}
|
|
12042
12092
|
}
|
|
12043
12093
|
],
|
|
12044
12094
|
"responses": {
|
package/package.json
CHANGED