api.fluff4.me 1.0.337 → 1.0.338
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 +8 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -685,7 +685,7 @@ export interface Paths {
|
|
|
685
685
|
"/following/{type}": {
|
|
686
686
|
method: "get"
|
|
687
687
|
body?: undefined
|
|
688
|
-
response: PaginatedResponse<
|
|
688
|
+
response: PaginatedResponse<Follow[]> | ErrorResponse
|
|
689
689
|
},
|
|
690
690
|
"/follows/{type}/{vanity}": {
|
|
691
691
|
method: "get"
|
|
@@ -725,7 +725,7 @@ export interface Paths {
|
|
|
725
725
|
"/ignoring/{type}": {
|
|
726
726
|
method: "get"
|
|
727
727
|
body?: undefined
|
|
728
|
-
response: PaginatedResponse<
|
|
728
|
+
response: PaginatedResponse<Follow[]> | ErrorResponse
|
|
729
729
|
},
|
|
730
730
|
"/ignores/{type}/{vanity}": {
|
|
731
731
|
method: "get"
|
package/openapi.json
CHANGED
|
@@ -4164,7 +4164,10 @@
|
|
|
4164
4164
|
"type": "object",
|
|
4165
4165
|
"properties": {
|
|
4166
4166
|
"data": {
|
|
4167
|
-
"
|
|
4167
|
+
"type": "array",
|
|
4168
|
+
"items": {
|
|
4169
|
+
"$ref": "#/components/schema/Follow"
|
|
4170
|
+
}
|
|
4168
4171
|
},
|
|
4169
4172
|
"has_more": {
|
|
4170
4173
|
"type": "boolean"
|
|
@@ -4552,7 +4555,10 @@
|
|
|
4552
4555
|
"type": "object",
|
|
4553
4556
|
"properties": {
|
|
4554
4557
|
"data": {
|
|
4555
|
-
"
|
|
4558
|
+
"type": "array",
|
|
4559
|
+
"items": {
|
|
4560
|
+
"$ref": "#/components/schema/Follow"
|
|
4561
|
+
}
|
|
4556
4562
|
},
|
|
4557
4563
|
"has_more": {
|
|
4558
4564
|
"type": "boolean"
|
package/package.json
CHANGED