api.fluff4.me 1.0.654 → 1.0.656
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 +1 -1
- package/openapi.json +14 -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 {
|
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": {
|
package/package.json
CHANGED