api.fluff4.me 1.0.656 → 1.0.657

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 CHANGED
@@ -786,6 +786,7 @@ export interface SupporterOrder {
786
786
  status: string
787
787
  amount: number
788
788
  uuid: string
789
+ interval?: "monthly" | "yearly" | null
789
790
  }
790
791
 
791
792
  export interface ChangelogInsertBody {
package/openapi.json CHANGED
@@ -4387,6 +4387,20 @@
4387
4387
  },
4388
4388
  "uuid": {
4389
4389
  "type": "string"
4390
+ },
4391
+ "interval": {
4392
+ "anyOf": [
4393
+ {
4394
+ "type": "string",
4395
+ "enum": [
4396
+ "monthly",
4397
+ "yearly"
4398
+ ]
4399
+ },
4400
+ {
4401
+ "type": "null"
4402
+ }
4403
+ ]
4390
4404
  }
4391
4405
  },
4392
4406
  "required": [
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.656",
3
+ "version": "1.0.657",
4
4
  "types": "index.d.ts"
5
5
  }