api.fluff4.me 1.0.211 → 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 +2 -2
- package/openapi.json +6 -6
- 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
|
|
@@ -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
|
@@ -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
|
],
|
|
@@ -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