api.fluff4.me 1.0.681 → 1.0.683
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 +17 -6
- package/openapi.json +74 -19
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -522,6 +522,7 @@ export interface CommentResolved {
|
|
|
522
522
|
author?: string | null
|
|
523
523
|
reactions?: number | null
|
|
524
524
|
reacted?: true | null
|
|
525
|
+
author_hearted?: boolean | null
|
|
525
526
|
}
|
|
526
527
|
|
|
527
528
|
export interface CommentCreateBody {
|
|
@@ -805,6 +806,10 @@ export interface SupporterCheckoutParams {
|
|
|
805
806
|
amount?: number | null
|
|
806
807
|
}
|
|
807
808
|
|
|
809
|
+
export interface SupporterGetTimestamp {
|
|
810
|
+
modified: string
|
|
811
|
+
}
|
|
812
|
+
|
|
808
813
|
export interface ChangelogInsertBody {
|
|
809
814
|
body: string
|
|
810
815
|
version: number
|
|
@@ -1799,12 +1804,6 @@ export interface Paths {
|
|
|
1799
1804
|
search?: undefined
|
|
1800
1805
|
response: void | ErrorResponse
|
|
1801
1806
|
},
|
|
1802
|
-
"/supporter/poll": {
|
|
1803
|
-
method: "post"
|
|
1804
|
-
body?: undefined
|
|
1805
|
-
search?: undefined
|
|
1806
|
-
response: void | ErrorResponse
|
|
1807
|
-
},
|
|
1808
1807
|
"/supporter/checkout/monthly": {
|
|
1809
1808
|
method: "get"
|
|
1810
1809
|
body?: undefined
|
|
@@ -1829,6 +1828,18 @@ export interface Paths {
|
|
|
1829
1828
|
}
|
|
1830
1829
|
response: void | ErrorResponse
|
|
1831
1830
|
},
|
|
1831
|
+
"/supporter/poll/full": {
|
|
1832
|
+
method: "post"
|
|
1833
|
+
body?: undefined
|
|
1834
|
+
search?: undefined
|
|
1835
|
+
response: void | ErrorResponse
|
|
1836
|
+
},
|
|
1837
|
+
"/supporter/poll/modified": {
|
|
1838
|
+
method: "get"
|
|
1839
|
+
body?: undefined
|
|
1840
|
+
search?: undefined
|
|
1841
|
+
response: Response<SupporterGetTimestamp> | ErrorResponse
|
|
1842
|
+
},
|
|
1832
1843
|
"/changelog/add": {
|
|
1833
1844
|
method: "post"
|
|
1834
1845
|
body: ChangelogInsertBody
|
package/openapi.json
CHANGED
|
@@ -3142,6 +3142,16 @@
|
|
|
3142
3142
|
"type": "null"
|
|
3143
3143
|
}
|
|
3144
3144
|
]
|
|
3145
|
+
},
|
|
3146
|
+
"author_hearted": {
|
|
3147
|
+
"anyOf": [
|
|
3148
|
+
{
|
|
3149
|
+
"type": "boolean"
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"type": "null"
|
|
3153
|
+
}
|
|
3154
|
+
]
|
|
3145
3155
|
}
|
|
3146
3156
|
},
|
|
3147
3157
|
"required": [
|
|
@@ -4512,6 +4522,17 @@
|
|
|
4512
4522
|
}
|
|
4513
4523
|
}
|
|
4514
4524
|
},
|
|
4525
|
+
"SupporterGetTimestamp": {
|
|
4526
|
+
"type": "object",
|
|
4527
|
+
"properties": {
|
|
4528
|
+
"modified": {
|
|
4529
|
+
"type": "string"
|
|
4530
|
+
}
|
|
4531
|
+
},
|
|
4532
|
+
"required": [
|
|
4533
|
+
"modified"
|
|
4534
|
+
]
|
|
4535
|
+
},
|
|
4515
4536
|
"ChangelogInsertBody": {
|
|
4516
4537
|
"type": "object",
|
|
4517
4538
|
"properties": {
|
|
@@ -11086,25 +11107,6 @@
|
|
|
11086
11107
|
}
|
|
11087
11108
|
}
|
|
11088
11109
|
},
|
|
11089
|
-
"/supporter/poll": {
|
|
11090
|
-
"post": {
|
|
11091
|
-
"responses": {
|
|
11092
|
-
"200": {
|
|
11093
|
-
"description": "200 response"
|
|
11094
|
-
},
|
|
11095
|
-
"default": {
|
|
11096
|
-
"description": "Error",
|
|
11097
|
-
"content": {
|
|
11098
|
-
"application/json": {
|
|
11099
|
-
"schema": {
|
|
11100
|
-
"$ref": "#/components/schemas/ErrorResponse"
|
|
11101
|
-
}
|
|
11102
|
-
}
|
|
11103
|
-
}
|
|
11104
|
-
}
|
|
11105
|
-
}
|
|
11106
|
-
}
|
|
11107
|
-
},
|
|
11108
11110
|
"/supporter/checkout/monthly": {
|
|
11109
11111
|
"get": {
|
|
11110
11112
|
"parameters": [
|
|
@@ -11213,6 +11215,59 @@
|
|
|
11213
11215
|
}
|
|
11214
11216
|
}
|
|
11215
11217
|
},
|
|
11218
|
+
"/supporter/poll/full": {
|
|
11219
|
+
"post": {
|
|
11220
|
+
"responses": {
|
|
11221
|
+
"200": {
|
|
11222
|
+
"description": "200 response"
|
|
11223
|
+
},
|
|
11224
|
+
"default": {
|
|
11225
|
+
"description": "Error",
|
|
11226
|
+
"content": {
|
|
11227
|
+
"application/json": {
|
|
11228
|
+
"schema": {
|
|
11229
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
11230
|
+
}
|
|
11231
|
+
}
|
|
11232
|
+
}
|
|
11233
|
+
}
|
|
11234
|
+
}
|
|
11235
|
+
}
|
|
11236
|
+
},
|
|
11237
|
+
"/supporter/poll/modified": {
|
|
11238
|
+
"get": {
|
|
11239
|
+
"responses": {
|
|
11240
|
+
"200": {
|
|
11241
|
+
"description": "200 response",
|
|
11242
|
+
"content": {
|
|
11243
|
+
"application/json": {
|
|
11244
|
+
"schema": {
|
|
11245
|
+
"type": "object",
|
|
11246
|
+
"properties": {
|
|
11247
|
+
"data": {
|
|
11248
|
+
"$ref": "#/components/schemas/SupporterGetTimestamp"
|
|
11249
|
+
}
|
|
11250
|
+
},
|
|
11251
|
+
"required": [
|
|
11252
|
+
"data"
|
|
11253
|
+
]
|
|
11254
|
+
}
|
|
11255
|
+
}
|
|
11256
|
+
}
|
|
11257
|
+
},
|
|
11258
|
+
"default": {
|
|
11259
|
+
"description": "Error",
|
|
11260
|
+
"content": {
|
|
11261
|
+
"application/json": {
|
|
11262
|
+
"schema": {
|
|
11263
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
11264
|
+
}
|
|
11265
|
+
}
|
|
11266
|
+
}
|
|
11267
|
+
}
|
|
11268
|
+
}
|
|
11269
|
+
}
|
|
11270
|
+
},
|
|
11216
11271
|
"/changelog/add": {
|
|
11217
11272
|
"post": {
|
|
11218
11273
|
"requestBody": {
|
package/package.json
CHANGED