api.fluff4.me 1.0.212 → 1.0.213
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 +1 -1
- package/openapi.json +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -589,7 +589,7 @@ export interface Paths {
|
|
|
589
589
|
body?: undefined
|
|
590
590
|
response: Response<Follow> | ErrorResponse
|
|
591
591
|
},
|
|
592
|
-
"/unfollow/work/{
|
|
592
|
+
"/unfollow/work/{author}/{vanity}": {
|
|
593
593
|
method: "post"
|
|
594
594
|
body?: undefined
|
|
595
595
|
response: Response<Follow> | ErrorResponse
|
package/openapi.json
CHANGED
|
@@ -3464,14 +3464,14 @@
|
|
|
3464
3464
|
}
|
|
3465
3465
|
}
|
|
3466
3466
|
},
|
|
3467
|
-
"/unfollow/work/{
|
|
3467
|
+
"/unfollow/work/{author}/{vanity}": {
|
|
3468
3468
|
"parameters": [
|
|
3469
3469
|
{
|
|
3470
|
-
"name": "
|
|
3470
|
+
"name": "author",
|
|
3471
3471
|
"in": "path"
|
|
3472
3472
|
},
|
|
3473
3473
|
{
|
|
3474
|
-
"name": "
|
|
3474
|
+
"name": "vanity",
|
|
3475
3475
|
"in": "path"
|
|
3476
3476
|
}
|
|
3477
3477
|
],
|
package/package.json
CHANGED