api.fluff4.me 1.0.264 → 1.0.266
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 +10 -0
- package/openapi.json +61 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -580,6 +580,11 @@ export interface Paths {
|
|
|
580
580
|
body?: undefined
|
|
581
581
|
response: void | ErrorResponse
|
|
582
582
|
},
|
|
583
|
+
"/work/{author}/{vanity}/chapter/{url}/unreact": {
|
|
584
|
+
method: "post"
|
|
585
|
+
body?: undefined
|
|
586
|
+
response: void | ErrorResponse
|
|
587
|
+
},
|
|
583
588
|
"/work/{author}/{vanity}/chapters/list": {
|
|
584
589
|
method: "get"
|
|
585
590
|
body?: undefined
|
|
@@ -760,6 +765,11 @@ export interface Paths {
|
|
|
760
765
|
body?: undefined
|
|
761
766
|
response: void | ErrorResponse
|
|
762
767
|
},
|
|
768
|
+
"/comment/{comment_id}/unreact": {
|
|
769
|
+
method: "post"
|
|
770
|
+
body?: undefined
|
|
771
|
+
response: void | ErrorResponse
|
|
772
|
+
},
|
|
763
773
|
"/comments/{under}": {
|
|
764
774
|
method: "get"
|
|
765
775
|
body?: undefined
|
package/openapi.json
CHANGED
|
@@ -3226,6 +3226,39 @@
|
|
|
3226
3226
|
}
|
|
3227
3227
|
}
|
|
3228
3228
|
},
|
|
3229
|
+
"/work/{author}/{vanity}/chapter/{url}/unreact": {
|
|
3230
|
+
"parameters": [
|
|
3231
|
+
{
|
|
3232
|
+
"name": "author",
|
|
3233
|
+
"in": "path"
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
"name": "vanity",
|
|
3237
|
+
"in": "path"
|
|
3238
|
+
},
|
|
3239
|
+
{
|
|
3240
|
+
"name": "url",
|
|
3241
|
+
"in": "path"
|
|
3242
|
+
}
|
|
3243
|
+
],
|
|
3244
|
+
"post": {
|
|
3245
|
+
"responses": {
|
|
3246
|
+
"200": {
|
|
3247
|
+
"description": "200 response"
|
|
3248
|
+
},
|
|
3249
|
+
"default": {
|
|
3250
|
+
"description": "Error",
|
|
3251
|
+
"content": {
|
|
3252
|
+
"application/json": {
|
|
3253
|
+
"schema": {
|
|
3254
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
3255
|
+
}
|
|
3256
|
+
}
|
|
3257
|
+
}
|
|
3258
|
+
}
|
|
3259
|
+
}
|
|
3260
|
+
}
|
|
3261
|
+
},
|
|
3229
3262
|
"/work/{author}/{vanity}/chapters/list": {
|
|
3230
3263
|
"parameters": [
|
|
3231
3264
|
{
|
|
@@ -4929,6 +4962,31 @@
|
|
|
4929
4962
|
}
|
|
4930
4963
|
}
|
|
4931
4964
|
},
|
|
4965
|
+
"/comment/{comment_id}/unreact": {
|
|
4966
|
+
"parameters": [
|
|
4967
|
+
{
|
|
4968
|
+
"name": "comment_id",
|
|
4969
|
+
"in": "path"
|
|
4970
|
+
}
|
|
4971
|
+
],
|
|
4972
|
+
"post": {
|
|
4973
|
+
"responses": {
|
|
4974
|
+
"200": {
|
|
4975
|
+
"description": "200 response"
|
|
4976
|
+
},
|
|
4977
|
+
"default": {
|
|
4978
|
+
"description": "Error",
|
|
4979
|
+
"content": {
|
|
4980
|
+
"application/json": {
|
|
4981
|
+
"schema": {
|
|
4982
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
4983
|
+
}
|
|
4984
|
+
}
|
|
4985
|
+
}
|
|
4986
|
+
}
|
|
4987
|
+
}
|
|
4988
|
+
}
|
|
4989
|
+
},
|
|
4932
4990
|
"/comments/{under}": {
|
|
4933
4991
|
"parameters": [
|
|
4934
4992
|
{
|
|
@@ -4994,6 +5052,9 @@
|
|
|
4994
5052
|
}
|
|
4995
5053
|
}
|
|
4996
5054
|
},
|
|
5055
|
+
"304": {
|
|
5056
|
+
"description": "304 response"
|
|
5057
|
+
},
|
|
4997
5058
|
"default": {
|
|
4998
5059
|
"description": "Error",
|
|
4999
5060
|
"content": {
|
package/package.json
CHANGED