api.fluff4.me 1.0.682 → 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.
Files changed (3) hide show
  1. package/index.d.ts +16 -6
  2. package/openapi.json +64 -19
  3. 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
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,17 @@
4522
4522
  }
4523
4523
  }
4524
4524
  },
4525
+ "SupporterGetTimestamp": {
4526
+ "type": "object",
4527
+ "properties": {
4528
+ "modified": {
4529
+ "type": "string"
4530
+ }
4531
+ },
4532
+ "required": [
4533
+ "modified"
4534
+ ]
4535
+ },
4525
4536
  "ChangelogInsertBody": {
4526
4537
  "type": "object",
4527
4538
  "properties": {
@@ -11096,25 +11107,6 @@
11096
11107
  }
11097
11108
  }
11098
11109
  },
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
11110
  "/supporter/checkout/monthly": {
11119
11111
  "get": {
11120
11112
  "parameters": [
@@ -11223,6 +11215,59 @@
11223
11215
  }
11224
11216
  }
11225
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
+ },
11226
11271
  "/changelog/add": {
11227
11272
  "post": {
11228
11273
  "requestBody": {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.682",
3
+ "version": "1.0.683",
4
4
  "types": "index.d.ts"
5
5
  }