api.fluff4.me 1.0.663 → 1.0.665

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
@@ -787,6 +787,8 @@ export interface SupporterOrder {
787
787
  amount: number
788
788
  uuid: string
789
789
  interval?: "monthly" | "yearly" | null
790
+ interval_amount?: number | null
791
+ renewal_timestamp?: string | null
790
792
  }
791
793
 
792
794
  export interface ChangelogInsertBody {
package/openapi.json CHANGED
@@ -4402,6 +4402,26 @@
4402
4402
  "type": "null"
4403
4403
  }
4404
4404
  ]
4405
+ },
4406
+ "interval_amount": {
4407
+ "anyOf": [
4408
+ {
4409
+ "type": "number"
4410
+ },
4411
+ {
4412
+ "type": "null"
4413
+ }
4414
+ ]
4415
+ },
4416
+ "renewal_timestamp": {
4417
+ "anyOf": [
4418
+ {
4419
+ "type": "string"
4420
+ },
4421
+ {
4422
+ "type": "null"
4423
+ }
4424
+ ]
4405
4425
  }
4406
4426
  },
4407
4427
  "required": [
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "api.fluff4.me",
3
- "version": "1.0.663",
3
+ "version": "1.0.665",
4
4
  "types": "index.d.ts"
5
5
  }