api.fluff4.me 1.0.211 → 1.0.212
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
|
@@ -609,7 +609,7 @@ export interface Paths {
|
|
|
609
609
|
body?: undefined
|
|
610
610
|
response: Response<Follow> | ErrorResponse
|
|
611
611
|
},
|
|
612
|
-
"/follows/work/{
|
|
612
|
+
"/follows/work/{author}/{vanity}": {
|
|
613
613
|
method: "get"
|
|
614
614
|
body?: undefined
|
|
615
615
|
response: Response<Follow> | ErrorResponse
|
package/openapi.json
CHANGED
|
@@ -3675,14 +3675,14 @@
|
|
|
3675
3675
|
}
|
|
3676
3676
|
}
|
|
3677
3677
|
},
|
|
3678
|
-
"/follows/work/{
|
|
3678
|
+
"/follows/work/{author}/{vanity}": {
|
|
3679
3679
|
"parameters": [
|
|
3680
3680
|
{
|
|
3681
|
-
"name": "
|
|
3681
|
+
"name": "author",
|
|
3682
3682
|
"in": "path"
|
|
3683
3683
|
},
|
|
3684
3684
|
{
|
|
3685
|
-
"name": "
|
|
3685
|
+
"name": "vanity",
|
|
3686
3686
|
"in": "path"
|
|
3687
3687
|
}
|
|
3688
3688
|
],
|
package/package.json
CHANGED