api.fluff4.me 1.0.261 → 1.0.262
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 +5 -0
- package/openapi.json +37 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -582,6 +582,11 @@ export interface Paths {
|
|
|
582
582
|
body: ChapterReorderBody
|
|
583
583
|
response: void | ErrorResponse
|
|
584
584
|
},
|
|
585
|
+
"/work/{author}/{vanity}/chapter/{url}/react/{type}": {
|
|
586
|
+
method: "post"
|
|
587
|
+
body?: undefined
|
|
588
|
+
response: void | ErrorResponse
|
|
589
|
+
},
|
|
585
590
|
"/work/{author}/{vanity}/chapters/list": {
|
|
586
591
|
method: "get"
|
|
587
592
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -3232,6 +3232,43 @@
|
|
|
3232
3232
|
}
|
|
3233
3233
|
}
|
|
3234
3234
|
},
|
|
3235
|
+
"/work/{author}/{vanity}/chapter/{url}/react/{type}": {
|
|
3236
|
+
"parameters": [
|
|
3237
|
+
{
|
|
3238
|
+
"name": "author",
|
|
3239
|
+
"in": "path"
|
|
3240
|
+
},
|
|
3241
|
+
{
|
|
3242
|
+
"name": "vanity",
|
|
3243
|
+
"in": "path"
|
|
3244
|
+
},
|
|
3245
|
+
{
|
|
3246
|
+
"name": "url",
|
|
3247
|
+
"in": "path"
|
|
3248
|
+
},
|
|
3249
|
+
{
|
|
3250
|
+
"name": "type",
|
|
3251
|
+
"in": "path"
|
|
3252
|
+
}
|
|
3253
|
+
],
|
|
3254
|
+
"post": {
|
|
3255
|
+
"responses": {
|
|
3256
|
+
"200": {
|
|
3257
|
+
"description": "200 response"
|
|
3258
|
+
},
|
|
3259
|
+
"default": {
|
|
3260
|
+
"description": "Error",
|
|
3261
|
+
"content": {
|
|
3262
|
+
"application/json": {
|
|
3263
|
+
"schema": {
|
|
3264
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
3265
|
+
}
|
|
3266
|
+
}
|
|
3267
|
+
}
|
|
3268
|
+
}
|
|
3269
|
+
}
|
|
3270
|
+
}
|
|
3271
|
+
},
|
|
3235
3272
|
"/work/{author}/{vanity}/chapters/list": {
|
|
3236
3273
|
"parameters": [
|
|
3237
3274
|
{
|
package/package.json
CHANGED