api.fluff4.me 1.0.1009 → 1.0.1010
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 +3 -3
- package/openapi.json +48 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1927,19 +1927,19 @@ export interface Paths {
|
|
|
1927
1927
|
method: "post"
|
|
1928
1928
|
body?: undefined
|
|
1929
1929
|
search?: undefined
|
|
1930
|
-
response:
|
|
1930
|
+
response: Response<Bookmarks> | ErrorResponse
|
|
1931
1931
|
},
|
|
1932
1932
|
"/history/bookmarks/{author}/{vanity}/delete/furthest-read": {
|
|
1933
1933
|
method: "post"
|
|
1934
1934
|
body?: undefined
|
|
1935
1935
|
search?: undefined
|
|
1936
|
-
response:
|
|
1936
|
+
response: Response<Bookmarks> | ErrorResponse
|
|
1937
1937
|
},
|
|
1938
1938
|
"/history/bookmarks/{author}/{vanity}/delete/last-read": {
|
|
1939
1939
|
method: "post"
|
|
1940
1940
|
body?: undefined
|
|
1941
1941
|
search?: undefined
|
|
1942
|
-
response:
|
|
1942
|
+
response: Response<Bookmarks> | ErrorResponse
|
|
1943
1943
|
},
|
|
1944
1944
|
"/supporter/status": {
|
|
1945
1945
|
method: "get"
|
package/openapi.json
CHANGED
|
@@ -12595,7 +12595,22 @@
|
|
|
12595
12595
|
"post": {
|
|
12596
12596
|
"responses": {
|
|
12597
12597
|
"200": {
|
|
12598
|
-
"description": "200 response"
|
|
12598
|
+
"description": "200 response",
|
|
12599
|
+
"content": {
|
|
12600
|
+
"application/json": {
|
|
12601
|
+
"schema": {
|
|
12602
|
+
"type": "object",
|
|
12603
|
+
"properties": {
|
|
12604
|
+
"data": {
|
|
12605
|
+
"$ref": "#/components/schemas/Bookmarks"
|
|
12606
|
+
}
|
|
12607
|
+
},
|
|
12608
|
+
"required": [
|
|
12609
|
+
"data"
|
|
12610
|
+
]
|
|
12611
|
+
}
|
|
12612
|
+
}
|
|
12613
|
+
}
|
|
12599
12614
|
},
|
|
12600
12615
|
"default": {
|
|
12601
12616
|
"description": "Error",
|
|
@@ -12624,7 +12639,22 @@
|
|
|
12624
12639
|
"post": {
|
|
12625
12640
|
"responses": {
|
|
12626
12641
|
"200": {
|
|
12627
|
-
"description": "200 response"
|
|
12642
|
+
"description": "200 response",
|
|
12643
|
+
"content": {
|
|
12644
|
+
"application/json": {
|
|
12645
|
+
"schema": {
|
|
12646
|
+
"type": "object",
|
|
12647
|
+
"properties": {
|
|
12648
|
+
"data": {
|
|
12649
|
+
"$ref": "#/components/schemas/Bookmarks"
|
|
12650
|
+
}
|
|
12651
|
+
},
|
|
12652
|
+
"required": [
|
|
12653
|
+
"data"
|
|
12654
|
+
]
|
|
12655
|
+
}
|
|
12656
|
+
}
|
|
12657
|
+
}
|
|
12628
12658
|
},
|
|
12629
12659
|
"default": {
|
|
12630
12660
|
"description": "Error",
|
|
@@ -12653,7 +12683,22 @@
|
|
|
12653
12683
|
"post": {
|
|
12654
12684
|
"responses": {
|
|
12655
12685
|
"200": {
|
|
12656
|
-
"description": "200 response"
|
|
12686
|
+
"description": "200 response",
|
|
12687
|
+
"content": {
|
|
12688
|
+
"application/json": {
|
|
12689
|
+
"schema": {
|
|
12690
|
+
"type": "object",
|
|
12691
|
+
"properties": {
|
|
12692
|
+
"data": {
|
|
12693
|
+
"$ref": "#/components/schemas/Bookmarks"
|
|
12694
|
+
}
|
|
12695
|
+
},
|
|
12696
|
+
"required": [
|
|
12697
|
+
"data"
|
|
12698
|
+
]
|
|
12699
|
+
}
|
|
12700
|
+
}
|
|
12701
|
+
}
|
|
12657
12702
|
},
|
|
12658
12703
|
"default": {
|
|
12659
12704
|
"description": "Error",
|
package/package.json
CHANGED