api.fluff4.me 1.0.212 → 1.0.214
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 +4 -4
- package/openapi.json +12 -12
- 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
|
|
@@ -619,7 +619,7 @@ export interface Paths {
|
|
|
619
619
|
body?: undefined
|
|
620
620
|
response: Response<Follow> | ErrorResponse
|
|
621
621
|
},
|
|
622
|
-
"/ignore/work/{
|
|
622
|
+
"/ignore/work/{author}/{vanity}": {
|
|
623
623
|
method: "post"
|
|
624
624
|
body?: undefined
|
|
625
625
|
response: Response<Follow> | ErrorResponse
|
|
@@ -629,7 +629,7 @@ export interface Paths {
|
|
|
629
629
|
body?: undefined
|
|
630
630
|
response: Response<Follow> | ErrorResponse
|
|
631
631
|
},
|
|
632
|
-
"/unignore/work/{
|
|
632
|
+
"/unignore/work/{author}/{vanity}": {
|
|
633
633
|
method: "post"
|
|
634
634
|
body?: undefined
|
|
635
635
|
response: Response<Follow> | ErrorResponse
|
|
@@ -649,7 +649,7 @@ export interface Paths {
|
|
|
649
649
|
body?: undefined
|
|
650
650
|
response: Response<Follow> | ErrorResponse
|
|
651
651
|
},
|
|
652
|
-
"/ignores/work/{
|
|
652
|
+
"/ignores/work/{author}/{vanity}": {
|
|
653
653
|
method: "get"
|
|
654
654
|
body?: undefined
|
|
655
655
|
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
|
],
|
|
@@ -3766,14 +3766,14 @@
|
|
|
3766
3766
|
}
|
|
3767
3767
|
}
|
|
3768
3768
|
},
|
|
3769
|
-
"/ignore/work/{
|
|
3769
|
+
"/ignore/work/{author}/{vanity}": {
|
|
3770
3770
|
"parameters": [
|
|
3771
3771
|
{
|
|
3772
|
-
"name": "
|
|
3772
|
+
"name": "author",
|
|
3773
3773
|
"in": "path"
|
|
3774
3774
|
},
|
|
3775
3775
|
{
|
|
3776
|
-
"name": "
|
|
3776
|
+
"name": "vanity",
|
|
3777
3777
|
"in": "path"
|
|
3778
3778
|
}
|
|
3779
3779
|
],
|
|
@@ -3854,14 +3854,14 @@
|
|
|
3854
3854
|
}
|
|
3855
3855
|
}
|
|
3856
3856
|
},
|
|
3857
|
-
"/unignore/work/{
|
|
3857
|
+
"/unignore/work/{author}/{vanity}": {
|
|
3858
3858
|
"parameters": [
|
|
3859
3859
|
{
|
|
3860
|
-
"name": "
|
|
3860
|
+
"name": "author",
|
|
3861
3861
|
"in": "path"
|
|
3862
3862
|
},
|
|
3863
3863
|
{
|
|
3864
|
-
"name": "
|
|
3864
|
+
"name": "vanity",
|
|
3865
3865
|
"in": "path"
|
|
3866
3866
|
}
|
|
3867
3867
|
],
|
|
@@ -4065,14 +4065,14 @@
|
|
|
4065
4065
|
}
|
|
4066
4066
|
}
|
|
4067
4067
|
},
|
|
4068
|
-
"/ignores/work/{
|
|
4068
|
+
"/ignores/work/{author}/{vanity}": {
|
|
4069
4069
|
"parameters": [
|
|
4070
4070
|
{
|
|
4071
|
-
"name": "
|
|
4071
|
+
"name": "author",
|
|
4072
4072
|
"in": "path"
|
|
4073
4073
|
},
|
|
4074
4074
|
{
|
|
4075
|
-
"name": "
|
|
4075
|
+
"name": "vanity",
|
|
4076
4076
|
"in": "path"
|
|
4077
4077
|
}
|
|
4078
4078
|
],
|
package/package.json
CHANGED