api.fluff4.me 1.0.670 → 1.0.673
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 +6 -5
- package/openapi.json +42 -13
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -770,6 +770,7 @@ export interface SupporterStatus {
|
|
|
770
770
|
months_remaining: number
|
|
771
771
|
end_time?: string | null
|
|
772
772
|
status?: "has_active_subscription" | "has_history" | null
|
|
773
|
+
total_paid: number
|
|
773
774
|
}
|
|
774
775
|
|
|
775
776
|
export interface LemonSqueezyProductDisplay {
|
|
@@ -796,8 +797,8 @@ export interface SupporterCheckoutResponse {
|
|
|
796
797
|
url: string
|
|
797
798
|
}
|
|
798
799
|
|
|
799
|
-
export interface
|
|
800
|
-
amount
|
|
800
|
+
export interface SupporterCheckoutParams {
|
|
801
|
+
amount?: number | null
|
|
801
802
|
}
|
|
802
803
|
|
|
803
804
|
export interface ChangelogInsertBody {
|
|
@@ -1804,7 +1805,7 @@ export interface Paths {
|
|
|
1804
1805
|
method: "get"
|
|
1805
1806
|
body?: undefined
|
|
1806
1807
|
search: {
|
|
1807
|
-
amount
|
|
1808
|
+
amount?: number | null
|
|
1808
1809
|
}
|
|
1809
1810
|
response: Response<SupporterCheckoutResponse> | ErrorResponse
|
|
1810
1811
|
},
|
|
@@ -1812,7 +1813,7 @@ export interface Paths {
|
|
|
1812
1813
|
method: "get"
|
|
1813
1814
|
body?: undefined
|
|
1814
1815
|
search: {
|
|
1815
|
-
amount
|
|
1816
|
+
amount?: number | null
|
|
1816
1817
|
}
|
|
1817
1818
|
response: Response<SupporterCheckoutResponse> | ErrorResponse
|
|
1818
1819
|
},
|
|
@@ -1820,7 +1821,7 @@ export interface Paths {
|
|
|
1820
1821
|
method: "get"
|
|
1821
1822
|
body?: undefined
|
|
1822
1823
|
search: {
|
|
1823
|
-
amount
|
|
1824
|
+
amount?: number | null
|
|
1824
1825
|
}
|
|
1825
1826
|
response: Response<SupporterCheckoutResponse> | ErrorResponse
|
|
1826
1827
|
},
|
package/openapi.json
CHANGED
|
@@ -4333,11 +4333,15 @@
|
|
|
4333
4333
|
"type": "null"
|
|
4334
4334
|
}
|
|
4335
4335
|
]
|
|
4336
|
+
},
|
|
4337
|
+
"total_paid": {
|
|
4338
|
+
"type": "number"
|
|
4336
4339
|
}
|
|
4337
4340
|
},
|
|
4338
4341
|
"required": [
|
|
4339
4342
|
"products",
|
|
4340
|
-
"months_remaining"
|
|
4343
|
+
"months_remaining",
|
|
4344
|
+
"total_paid"
|
|
4341
4345
|
]
|
|
4342
4346
|
},
|
|
4343
4347
|
"LemonSqueezyProductDisplay": {
|
|
@@ -4456,16 +4460,20 @@
|
|
|
4456
4460
|
"url"
|
|
4457
4461
|
]
|
|
4458
4462
|
},
|
|
4459
|
-
"
|
|
4463
|
+
"SupporterCheckoutParams": {
|
|
4460
4464
|
"type": "object",
|
|
4461
4465
|
"properties": {
|
|
4462
4466
|
"amount": {
|
|
4463
|
-
"
|
|
4467
|
+
"anyOf": [
|
|
4468
|
+
{
|
|
4469
|
+
"type": "number"
|
|
4470
|
+
},
|
|
4471
|
+
{
|
|
4472
|
+
"type": "null"
|
|
4473
|
+
}
|
|
4474
|
+
]
|
|
4464
4475
|
}
|
|
4465
|
-
}
|
|
4466
|
-
"required": [
|
|
4467
|
-
"amount"
|
|
4468
|
-
]
|
|
4476
|
+
}
|
|
4469
4477
|
},
|
|
4470
4478
|
"ChangelogInsertBody": {
|
|
4471
4479
|
"type": "object",
|
|
@@ -11057,9 +11065,16 @@
|
|
|
11057
11065
|
{
|
|
11058
11066
|
"name": "amount",
|
|
11059
11067
|
"in": "query",
|
|
11060
|
-
"required":
|
|
11068
|
+
"required": false,
|
|
11061
11069
|
"schema": {
|
|
11062
|
-
"
|
|
11070
|
+
"anyOf": [
|
|
11071
|
+
{
|
|
11072
|
+
"type": "number"
|
|
11073
|
+
},
|
|
11074
|
+
{
|
|
11075
|
+
"type": "null"
|
|
11076
|
+
}
|
|
11077
|
+
]
|
|
11063
11078
|
}
|
|
11064
11079
|
}
|
|
11065
11080
|
],
|
|
@@ -11101,9 +11116,16 @@
|
|
|
11101
11116
|
{
|
|
11102
11117
|
"name": "amount",
|
|
11103
11118
|
"in": "query",
|
|
11104
|
-
"required":
|
|
11119
|
+
"required": false,
|
|
11105
11120
|
"schema": {
|
|
11106
|
-
"
|
|
11121
|
+
"anyOf": [
|
|
11122
|
+
{
|
|
11123
|
+
"type": "number"
|
|
11124
|
+
},
|
|
11125
|
+
{
|
|
11126
|
+
"type": "null"
|
|
11127
|
+
}
|
|
11128
|
+
]
|
|
11107
11129
|
}
|
|
11108
11130
|
}
|
|
11109
11131
|
],
|
|
@@ -11145,9 +11167,16 @@
|
|
|
11145
11167
|
{
|
|
11146
11168
|
"name": "amount",
|
|
11147
11169
|
"in": "query",
|
|
11148
|
-
"required":
|
|
11170
|
+
"required": false,
|
|
11149
11171
|
"schema": {
|
|
11150
|
-
"
|
|
11172
|
+
"anyOf": [
|
|
11173
|
+
{
|
|
11174
|
+
"type": "number"
|
|
11175
|
+
},
|
|
11176
|
+
{
|
|
11177
|
+
"type": "null"
|
|
11178
|
+
}
|
|
11179
|
+
]
|
|
11151
11180
|
}
|
|
11152
11181
|
}
|
|
11153
11182
|
],
|
package/package.json
CHANGED