api.fluff4.me 1.0.385 → 1.0.386
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 +6 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -704,19 +704,19 @@ export interface Paths {
|
|
|
704
704
|
search?: undefined
|
|
705
705
|
response: void | ErrorResponse
|
|
706
706
|
},
|
|
707
|
-
"/work/{author}/{
|
|
707
|
+
"/work/{author}/{work}/chapter/{url}/reorder": {
|
|
708
708
|
method: "post"
|
|
709
709
|
body: ChapterReorderBody
|
|
710
710
|
search?: undefined
|
|
711
711
|
response: void | ErrorResponse
|
|
712
712
|
},
|
|
713
|
-
"/work/{author}/{
|
|
713
|
+
"/work/{author}/{work}/chapter/{url}/react/{type}": {
|
|
714
714
|
method: "post"
|
|
715
715
|
body?: undefined
|
|
716
716
|
search?: undefined
|
|
717
717
|
response: void | ErrorResponse
|
|
718
718
|
},
|
|
719
|
-
"/work/{author}/{
|
|
719
|
+
"/work/{author}/{work}/chapter/{url}/unreact": {
|
|
720
720
|
method: "post"
|
|
721
721
|
body?: undefined
|
|
722
722
|
search?: undefined
|
package/openapi.json
CHANGED
|
@@ -3900,14 +3900,14 @@
|
|
|
3900
3900
|
}
|
|
3901
3901
|
}
|
|
3902
3902
|
},
|
|
3903
|
-
"/work/{author}/{
|
|
3903
|
+
"/work/{author}/{work}/chapter/{url}/reorder": {
|
|
3904
3904
|
"parameters": [
|
|
3905
3905
|
{
|
|
3906
3906
|
"name": "author",
|
|
3907
3907
|
"in": "path"
|
|
3908
3908
|
},
|
|
3909
3909
|
{
|
|
3910
|
-
"name": "
|
|
3910
|
+
"name": "work",
|
|
3911
3911
|
"in": "path"
|
|
3912
3912
|
},
|
|
3913
3913
|
{
|
|
@@ -3942,14 +3942,14 @@
|
|
|
3942
3942
|
}
|
|
3943
3943
|
}
|
|
3944
3944
|
},
|
|
3945
|
-
"/work/{author}/{
|
|
3945
|
+
"/work/{author}/{work}/chapter/{url}/react/{type}": {
|
|
3946
3946
|
"parameters": [
|
|
3947
3947
|
{
|
|
3948
3948
|
"name": "author",
|
|
3949
3949
|
"in": "path"
|
|
3950
3950
|
},
|
|
3951
3951
|
{
|
|
3952
|
-
"name": "
|
|
3952
|
+
"name": "work",
|
|
3953
3953
|
"in": "path"
|
|
3954
3954
|
},
|
|
3955
3955
|
{
|
|
@@ -3979,14 +3979,14 @@
|
|
|
3979
3979
|
}
|
|
3980
3980
|
}
|
|
3981
3981
|
},
|
|
3982
|
-
"/work/{author}/{
|
|
3982
|
+
"/work/{author}/{work}/chapter/{url}/unreact": {
|
|
3983
3983
|
"parameters": [
|
|
3984
3984
|
{
|
|
3985
3985
|
"name": "author",
|
|
3986
3986
|
"in": "path"
|
|
3987
3987
|
},
|
|
3988
3988
|
{
|
|
3989
|
-
"name": "
|
|
3989
|
+
"name": "work",
|
|
3990
3990
|
"in": "path"
|
|
3991
3991
|
},
|
|
3992
3992
|
{
|
package/package.json
CHANGED