api.fluff4.me 1.0.682 → 1.0.684
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 +16 -6
- package/openapi.json +68 -19
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -806,6 +806,10 @@ export interface SupporterCheckoutParams {
|
|
|
806
806
|
amount?: number | null
|
|
807
807
|
}
|
|
808
808
|
|
|
809
|
+
export interface SupporterGetTimestamp {
|
|
810
|
+
modified?: string | null
|
|
811
|
+
}
|
|
812
|
+
|
|
809
813
|
export interface ChangelogInsertBody {
|
|
810
814
|
body: string
|
|
811
815
|
version: number
|
|
@@ -1800,12 +1804,6 @@ export interface Paths {
|
|
|
1800
1804
|
search?: undefined
|
|
1801
1805
|
response: void | ErrorResponse
|
|
1802
1806
|
},
|
|
1803
|
-
"/supporter/poll": {
|
|
1804
|
-
method: "post"
|
|
1805
|
-
body?: undefined
|
|
1806
|
-
search?: undefined
|
|
1807
|
-
response: void | ErrorResponse
|
|
1808
|
-
},
|
|
1809
1807
|
"/supporter/checkout/monthly": {
|
|
1810
1808
|
method: "get"
|
|
1811
1809
|
body?: undefined
|
|
@@ -1830,6 +1828,18 @@ export interface Paths {
|
|
|
1830
1828
|
}
|
|
1831
1829
|
response: void | ErrorResponse
|
|
1832
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
|
+
},
|
|
1833
1843
|
"/changelog/add": {
|
|
1834
1844
|
method: "post"
|
|
1835
1845
|
body: ChangelogInsertBody
|
package/openapi.json
CHANGED
|
@@ -4522,6 +4522,21 @@
|
|
|
4522
4522
|
}
|
|
4523
4523
|
}
|
|
4524
4524
|
},
|
|
4525
|
+
"SupporterGetTimestamp": {
|
|
4526
|
+
"type": "object",
|
|
4527
|
+
"properties": {
|
|
4528
|
+
"modified": {
|
|
4529
|
+
"anyOf": [
|
|
4530
|
+
{
|
|
4531
|
+
"type": "string"
|
|
4532
|
+
},
|
|
4533
|
+
{
|
|
4534
|
+
"type": "null"
|
|
4535
|
+
}
|
|
4536
|
+
]
|
|
4537
|
+
}
|
|
4538
|
+
}
|
|
4539
|
+
},
|
|
4525
4540
|
"ChangelogInsertBody": {
|
|
4526
4541
|
"type": "object",
|
|
4527
4542
|
"properties": {
|
|
@@ -11096,25 +11111,6 @@
|
|
|
11096
11111
|
}
|
|
11097
11112
|
}
|
|
11098
11113
|
},
|
|
11099
|
-
"/supporter/poll": {
|
|
11100
|
-
"post": {
|
|
11101
|
-
"responses": {
|
|
11102
|
-
"200": {
|
|
11103
|
-
"description": "200 response"
|
|
11104
|
-
},
|
|
11105
|
-
"default": {
|
|
11106
|
-
"description": "Error",
|
|
11107
|
-
"content": {
|
|
11108
|
-
"application/json": {
|
|
11109
|
-
"schema": {
|
|
11110
|
-
"$ref": "#/components/schemas/ErrorResponse"
|
|
11111
|
-
}
|
|
11112
|
-
}
|
|
11113
|
-
}
|
|
11114
|
-
}
|
|
11115
|
-
}
|
|
11116
|
-
}
|
|
11117
|
-
},
|
|
11118
11114
|
"/supporter/checkout/monthly": {
|
|
11119
11115
|
"get": {
|
|
11120
11116
|
"parameters": [
|
|
@@ -11223,6 +11219,59 @@
|
|
|
11223
11219
|
}
|
|
11224
11220
|
}
|
|
11225
11221
|
},
|
|
11222
|
+
"/supporter/poll/full": {
|
|
11223
|
+
"post": {
|
|
11224
|
+
"responses": {
|
|
11225
|
+
"200": {
|
|
11226
|
+
"description": "200 response"
|
|
11227
|
+
},
|
|
11228
|
+
"default": {
|
|
11229
|
+
"description": "Error",
|
|
11230
|
+
"content": {
|
|
11231
|
+
"application/json": {
|
|
11232
|
+
"schema": {
|
|
11233
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
11234
|
+
}
|
|
11235
|
+
}
|
|
11236
|
+
}
|
|
11237
|
+
}
|
|
11238
|
+
}
|
|
11239
|
+
}
|
|
11240
|
+
},
|
|
11241
|
+
"/supporter/poll/modified": {
|
|
11242
|
+
"get": {
|
|
11243
|
+
"responses": {
|
|
11244
|
+
"200": {
|
|
11245
|
+
"description": "200 response",
|
|
11246
|
+
"content": {
|
|
11247
|
+
"application/json": {
|
|
11248
|
+
"schema": {
|
|
11249
|
+
"type": "object",
|
|
11250
|
+
"properties": {
|
|
11251
|
+
"data": {
|
|
11252
|
+
"$ref": "#/components/schemas/SupporterGetTimestamp"
|
|
11253
|
+
}
|
|
11254
|
+
},
|
|
11255
|
+
"required": [
|
|
11256
|
+
"data"
|
|
11257
|
+
]
|
|
11258
|
+
}
|
|
11259
|
+
}
|
|
11260
|
+
}
|
|
11261
|
+
},
|
|
11262
|
+
"default": {
|
|
11263
|
+
"description": "Error",
|
|
11264
|
+
"content": {
|
|
11265
|
+
"application/json": {
|
|
11266
|
+
"schema": {
|
|
11267
|
+
"$ref": "#/components/schemas/ErrorResponse"
|
|
11268
|
+
}
|
|
11269
|
+
}
|
|
11270
|
+
}
|
|
11271
|
+
}
|
|
11272
|
+
}
|
|
11273
|
+
}
|
|
11274
|
+
},
|
|
11226
11275
|
"/changelog/add": {
|
|
11227
11276
|
"post": {
|
|
11228
11277
|
"requestBody": {
|
package/package.json
CHANGED