api.fluff4.me 1.0.365 → 1.0.367
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 +4 -4
- package/openapi.json +8 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -644,17 +644,17 @@ export interface Paths {
|
|
|
644
644
|
body: ChapterCreateBody
|
|
645
645
|
response: Response<Chapter> | ErrorResponse
|
|
646
646
|
},
|
|
647
|
-
"/work/{author}/{
|
|
647
|
+
"/work/{author}/{work}/chapter/{url}/get": {
|
|
648
648
|
method: "get"
|
|
649
649
|
body?: undefined
|
|
650
650
|
response: PaginatedResponse<Chapter> | ErrorResponse
|
|
651
651
|
},
|
|
652
|
-
"/work/{author}/{
|
|
652
|
+
"/work/{author}/{work}/chapter/{url}/update": {
|
|
653
653
|
method: "post"
|
|
654
654
|
body: ChapterUpdateBody
|
|
655
655
|
response: Response<Chapter> | ErrorResponse
|
|
656
656
|
},
|
|
657
|
-
"/work/{author}/{
|
|
657
|
+
"/work/{author}/{work}/chapter/{url}/delete": {
|
|
658
658
|
method: "post"
|
|
659
659
|
body?: undefined
|
|
660
660
|
response: void | ErrorResponse
|
|
@@ -679,7 +679,7 @@ export interface Paths {
|
|
|
679
679
|
body?: undefined
|
|
680
680
|
response: PaginatedResponse<Chapters> | ErrorResponse
|
|
681
681
|
},
|
|
682
|
-
"/work/{author}/{
|
|
682
|
+
"/work/{author}/{work}/chapters/paged": {
|
|
683
683
|
method: "get"
|
|
684
684
|
body?: undefined
|
|
685
685
|
response: PaginatedResponse<Chapter> | ErrorResponse
|
package/openapi.json
CHANGED
|
@@ -3621,14 +3621,14 @@
|
|
|
3621
3621
|
}
|
|
3622
3622
|
}
|
|
3623
3623
|
},
|
|
3624
|
-
"/work/{author}/{
|
|
3624
|
+
"/work/{author}/{work}/chapter/{url}/get": {
|
|
3625
3625
|
"parameters": [
|
|
3626
3626
|
{
|
|
3627
3627
|
"name": "author",
|
|
3628
3628
|
"in": "path"
|
|
3629
3629
|
},
|
|
3630
3630
|
{
|
|
3631
|
-
"name": "
|
|
3631
|
+
"name": "work",
|
|
3632
3632
|
"in": "path"
|
|
3633
3633
|
},
|
|
3634
3634
|
{
|
|
@@ -3721,14 +3721,14 @@
|
|
|
3721
3721
|
}
|
|
3722
3722
|
}
|
|
3723
3723
|
},
|
|
3724
|
-
"/work/{author}/{
|
|
3724
|
+
"/work/{author}/{work}/chapter/{url}/update": {
|
|
3725
3725
|
"parameters": [
|
|
3726
3726
|
{
|
|
3727
3727
|
"name": "author",
|
|
3728
3728
|
"in": "path"
|
|
3729
3729
|
},
|
|
3730
3730
|
{
|
|
3731
|
-
"name": "
|
|
3731
|
+
"name": "work",
|
|
3732
3732
|
"in": "path"
|
|
3733
3733
|
},
|
|
3734
3734
|
{
|
|
@@ -3778,14 +3778,14 @@
|
|
|
3778
3778
|
}
|
|
3779
3779
|
}
|
|
3780
3780
|
},
|
|
3781
|
-
"/work/{author}/{
|
|
3781
|
+
"/work/{author}/{work}/chapter/{url}/delete": {
|
|
3782
3782
|
"parameters": [
|
|
3783
3783
|
{
|
|
3784
3784
|
"name": "author",
|
|
3785
3785
|
"in": "path"
|
|
3786
3786
|
},
|
|
3787
3787
|
{
|
|
3788
|
-
"name": "
|
|
3788
|
+
"name": "work",
|
|
3789
3789
|
"in": "path"
|
|
3790
3790
|
},
|
|
3791
3791
|
{
|
|
@@ -4019,14 +4019,14 @@
|
|
|
4019
4019
|
}
|
|
4020
4020
|
}
|
|
4021
4021
|
},
|
|
4022
|
-
"/work/{author}/{
|
|
4022
|
+
"/work/{author}/{work}/chapters/paged": {
|
|
4023
4023
|
"parameters": [
|
|
4024
4024
|
{
|
|
4025
4025
|
"name": "author",
|
|
4026
4026
|
"in": "path"
|
|
4027
4027
|
},
|
|
4028
4028
|
{
|
|
4029
|
-
"name": "
|
|
4029
|
+
"name": "work",
|
|
4030
4030
|
"in": "path"
|
|
4031
4031
|
}
|
|
4032
4032
|
],
|
package/package.json
CHANGED