api.fluff4.me 1.0.655 → 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 +2 -1
- package/openapi.json +28 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -769,7 +769,7 @@ export interface SupporterStatus {
|
|
|
769
769
|
products: LemonSqueezyProductDisplay[]
|
|
770
770
|
months_remaining: number
|
|
771
771
|
end_time?: string | null
|
|
772
|
-
|
|
772
|
+
status?: "has_active_subscription" | "has_history" | null
|
|
773
773
|
}
|
|
774
774
|
|
|
775
775
|
export interface LemonSqueezyProductDisplay {
|
|
@@ -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
|
@@ -4319,14 +4319,24 @@
|
|
|
4319
4319
|
}
|
|
4320
4320
|
]
|
|
4321
4321
|
},
|
|
4322
|
-
"
|
|
4323
|
-
"
|
|
4322
|
+
"status": {
|
|
4323
|
+
"anyOf": [
|
|
4324
|
+
{
|
|
4325
|
+
"type": "string",
|
|
4326
|
+
"enum": [
|
|
4327
|
+
"has_active_subscription",
|
|
4328
|
+
"has_history"
|
|
4329
|
+
]
|
|
4330
|
+
},
|
|
4331
|
+
{
|
|
4332
|
+
"type": "null"
|
|
4333
|
+
}
|
|
4334
|
+
]
|
|
4324
4335
|
}
|
|
4325
4336
|
},
|
|
4326
4337
|
"required": [
|
|
4327
4338
|
"products",
|
|
4328
|
-
"months_remaining"
|
|
4329
|
-
"has_supporter_history"
|
|
4339
|
+
"months_remaining"
|
|
4330
4340
|
]
|
|
4331
4341
|
},
|
|
4332
4342
|
"LemonSqueezyProductDisplay": {
|
|
@@ -4377,6 +4387,20 @@
|
|
|
4377
4387
|
},
|
|
4378
4388
|
"uuid": {
|
|
4379
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
|
+
]
|
|
4380
4404
|
}
|
|
4381
4405
|
},
|
|
4382
4406
|
"required": [
|
package/package.json
CHANGED