api.fluff4.me 1.0.209 → 1.0.210
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 +2 -2
- package/openapi.json +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -579,7 +579,7 @@ export interface Paths {
|
|
|
579
579
|
body?: undefined
|
|
580
580
|
response: Response<Follow> | ErrorResponse
|
|
581
581
|
},
|
|
582
|
-
"/follow/work/{
|
|
582
|
+
"/follow/work/{author}/{vanity}": {
|
|
583
583
|
method: "post"
|
|
584
584
|
body?: undefined
|
|
585
585
|
response: Response<Follow> | ErrorResponse
|
|
@@ -725,7 +725,7 @@ export interface Paths {
|
|
|
725
725
|
response: void | ErrorResponse
|
|
726
726
|
},
|
|
727
727
|
"/comment/get": {
|
|
728
|
-
method: "
|
|
728
|
+
method: "get"
|
|
729
729
|
body: CommentBody
|
|
730
730
|
response: Response<CommentWithAuthor> | ErrorResponse
|
|
731
731
|
},
|
package/openapi.json
CHANGED
|
@@ -3370,14 +3370,14 @@
|
|
|
3370
3370
|
}
|
|
3371
3371
|
}
|
|
3372
3372
|
},
|
|
3373
|
-
"/follow/work/{
|
|
3373
|
+
"/follow/work/{author}/{vanity}": {
|
|
3374
3374
|
"parameters": [
|
|
3375
3375
|
{
|
|
3376
|
-
"name": "
|
|
3376
|
+
"name": "author",
|
|
3377
3377
|
"in": "path"
|
|
3378
3378
|
},
|
|
3379
3379
|
{
|
|
3380
|
-
"name": "
|
|
3380
|
+
"name": "vanity",
|
|
3381
3381
|
"in": "path"
|
|
3382
3382
|
}
|
|
3383
3383
|
],
|
|
@@ -4582,7 +4582,7 @@
|
|
|
4582
4582
|
}
|
|
4583
4583
|
},
|
|
4584
4584
|
"/comment/get": {
|
|
4585
|
-
"
|
|
4585
|
+
"get": {
|
|
4586
4586
|
"requestBody": {
|
|
4587
4587
|
"content": {
|
|
4588
4588
|
"application/json": {
|
package/package.json
CHANGED