api.fluff4.me 1.0.990 → 1.0.992
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 +18 -0
- package/openapi.json +87 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1919,6 +1919,24 @@ export interface Paths {
|
|
|
1919
1919
|
search?: undefined
|
|
1920
1920
|
response: void | ErrorResponse
|
|
1921
1921
|
},
|
|
1922
|
+
"/history/bookmarks/{author}/{vanity}/delete/all": {
|
|
1923
|
+
method: "post"
|
|
1924
|
+
body?: undefined
|
|
1925
|
+
search?: undefined
|
|
1926
|
+
response: void | ErrorResponse
|
|
1927
|
+
},
|
|
1928
|
+
"/history/bookmarks/{author}/{vanity}/delete/furthest-read": {
|
|
1929
|
+
method: "post"
|
|
1930
|
+
body?: undefined
|
|
1931
|
+
search?: undefined
|
|
1932
|
+
response: void | ErrorResponse
|
|
1933
|
+
},
|
|
1934
|
+
"/history/bookmarks/{author}/{vanity}/delete/last-read": {
|
|
1935
|
+
method: "post"
|
|
1936
|
+
body?: undefined
|
|
1937
|
+
search?: undefined
|
|
1938
|
+
response: void | ErrorResponse
|
|
1939
|
+
},
|
|
1922
1940
|
"/supporter/status": {
|
|
1923
1941
|
method: "get"
|
|
1924
1942
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -12541,6 +12541,93 @@
|
|
|
12541
12541
|
}
|
|
12542
12542
|
}
|
|
12543
12543
|
},
|
|
12544
|
+
"/history/bookmarks/{author}/{vanity}/delete/all": {
|
|
12545
|
+
"parameters": [
|
|
12546
|
+
{
|
|
12547
|
+
"name": "author",
|
|
12548
|
+
"in": "path"
|
|
12549
|
+
},
|
|
12550
|
+
{
|
|
12551
|
+
"name": "vanity",
|
|
12552
|
+
"in": "path"
|
|
12553
|
+
}
|
|
12554
|
+
],
|
|
12555
|
+
"post": {
|
|
12556
|
+
"responses": {
|
|
12557
|
+
"200": {
|
|
12558
|
+
"description": "200 response"
|
|
12559
|
+
},
|
|
12560
|
+
"default": {
|
|
12561
|
+
"description": "Error",
|
|
12562
|
+
"content": {
|
|
12563
|
+
"application/json": {
|
|
12564
|
+
"schema": {
|
|
12565
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
12566
|
+
}
|
|
12567
|
+
}
|
|
12568
|
+
}
|
|
12569
|
+
}
|
|
12570
|
+
}
|
|
12571
|
+
}
|
|
12572
|
+
},
|
|
12573
|
+
"/history/bookmarks/{author}/{vanity}/delete/furthest-read": {
|
|
12574
|
+
"parameters": [
|
|
12575
|
+
{
|
|
12576
|
+
"name": "author",
|
|
12577
|
+
"in": "path"
|
|
12578
|
+
},
|
|
12579
|
+
{
|
|
12580
|
+
"name": "vanity",
|
|
12581
|
+
"in": "path"
|
|
12582
|
+
}
|
|
12583
|
+
],
|
|
12584
|
+
"post": {
|
|
12585
|
+
"responses": {
|
|
12586
|
+
"200": {
|
|
12587
|
+
"description": "200 response"
|
|
12588
|
+
},
|
|
12589
|
+
"default": {
|
|
12590
|
+
"description": "Error",
|
|
12591
|
+
"content": {
|
|
12592
|
+
"application/json": {
|
|
12593
|
+
"schema": {
|
|
12594
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
12595
|
+
}
|
|
12596
|
+
}
|
|
12597
|
+
}
|
|
12598
|
+
}
|
|
12599
|
+
}
|
|
12600
|
+
}
|
|
12601
|
+
},
|
|
12602
|
+
"/history/bookmarks/{author}/{vanity}/delete/last-read": {
|
|
12603
|
+
"parameters": [
|
|
12604
|
+
{
|
|
12605
|
+
"name": "author",
|
|
12606
|
+
"in": "path"
|
|
12607
|
+
},
|
|
12608
|
+
{
|
|
12609
|
+
"name": "vanity",
|
|
12610
|
+
"in": "path"
|
|
12611
|
+
}
|
|
12612
|
+
],
|
|
12613
|
+
"post": {
|
|
12614
|
+
"responses": {
|
|
12615
|
+
"200": {
|
|
12616
|
+
"description": "200 response"
|
|
12617
|
+
},
|
|
12618
|
+
"default": {
|
|
12619
|
+
"description": "Error",
|
|
12620
|
+
"content": {
|
|
12621
|
+
"application/json": {
|
|
12622
|
+
"schema": {
|
|
12623
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
12624
|
+
}
|
|
12625
|
+
}
|
|
12626
|
+
}
|
|
12627
|
+
}
|
|
12628
|
+
}
|
|
12629
|
+
}
|
|
12630
|
+
},
|
|
12544
12631
|
"/supporter/status": {
|
|
12545
12632
|
"get": {
|
|
12546
12633
|
"responses": {
|
package/package.json
CHANGED