api.fluff4.me 1.0.672 → 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 +5 -5
- package/openapi.json +37 -12
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -797,8 +797,8 @@ export interface SupporterCheckoutResponse {
|
|
|
797
797
|
url: string
|
|
798
798
|
}
|
|
799
799
|
|
|
800
|
-
export interface
|
|
801
|
-
amount
|
|
800
|
+
export interface SupporterCheckoutParams {
|
|
801
|
+
amount?: number | null
|
|
802
802
|
}
|
|
803
803
|
|
|
804
804
|
export interface ChangelogInsertBody {
|
|
@@ -1805,7 +1805,7 @@ export interface Paths {
|
|
|
1805
1805
|
method: "get"
|
|
1806
1806
|
body?: undefined
|
|
1807
1807
|
search: {
|
|
1808
|
-
amount
|
|
1808
|
+
amount?: number | null
|
|
1809
1809
|
}
|
|
1810
1810
|
response: Response<SupporterCheckoutResponse> | ErrorResponse
|
|
1811
1811
|
},
|
|
@@ -1813,7 +1813,7 @@ export interface Paths {
|
|
|
1813
1813
|
method: "get"
|
|
1814
1814
|
body?: undefined
|
|
1815
1815
|
search: {
|
|
1816
|
-
amount
|
|
1816
|
+
amount?: number | null
|
|
1817
1817
|
}
|
|
1818
1818
|
response: Response<SupporterCheckoutResponse> | ErrorResponse
|
|
1819
1819
|
},
|
|
@@ -1821,7 +1821,7 @@ export interface Paths {
|
|
|
1821
1821
|
method: "get"
|
|
1822
1822
|
body?: undefined
|
|
1823
1823
|
search: {
|
|
1824
|
-
amount
|
|
1824
|
+
amount?: number | null
|
|
1825
1825
|
}
|
|
1826
1826
|
response: Response<SupporterCheckoutResponse> | ErrorResponse
|
|
1827
1827
|
},
|
package/openapi.json
CHANGED
|
@@ -4460,16 +4460,20 @@
|
|
|
4460
4460
|
"url"
|
|
4461
4461
|
]
|
|
4462
4462
|
},
|
|
4463
|
-
"
|
|
4463
|
+
"SupporterCheckoutParams": {
|
|
4464
4464
|
"type": "object",
|
|
4465
4465
|
"properties": {
|
|
4466
4466
|
"amount": {
|
|
4467
|
-
"
|
|
4467
|
+
"anyOf": [
|
|
4468
|
+
{
|
|
4469
|
+
"type": "number"
|
|
4470
|
+
},
|
|
4471
|
+
{
|
|
4472
|
+
"type": "null"
|
|
4473
|
+
}
|
|
4474
|
+
]
|
|
4468
4475
|
}
|
|
4469
|
-
}
|
|
4470
|
-
"required": [
|
|
4471
|
-
"amount"
|
|
4472
|
-
]
|
|
4476
|
+
}
|
|
4473
4477
|
},
|
|
4474
4478
|
"ChangelogInsertBody": {
|
|
4475
4479
|
"type": "object",
|
|
@@ -11061,9 +11065,16 @@
|
|
|
11061
11065
|
{
|
|
11062
11066
|
"name": "amount",
|
|
11063
11067
|
"in": "query",
|
|
11064
|
-
"required":
|
|
11068
|
+
"required": false,
|
|
11065
11069
|
"schema": {
|
|
11066
|
-
"
|
|
11070
|
+
"anyOf": [
|
|
11071
|
+
{
|
|
11072
|
+
"type": "number"
|
|
11073
|
+
},
|
|
11074
|
+
{
|
|
11075
|
+
"type": "null"
|
|
11076
|
+
}
|
|
11077
|
+
]
|
|
11067
11078
|
}
|
|
11068
11079
|
}
|
|
11069
11080
|
],
|
|
@@ -11105,9 +11116,16 @@
|
|
|
11105
11116
|
{
|
|
11106
11117
|
"name": "amount",
|
|
11107
11118
|
"in": "query",
|
|
11108
|
-
"required":
|
|
11119
|
+
"required": false,
|
|
11109
11120
|
"schema": {
|
|
11110
|
-
"
|
|
11121
|
+
"anyOf": [
|
|
11122
|
+
{
|
|
11123
|
+
"type": "number"
|
|
11124
|
+
},
|
|
11125
|
+
{
|
|
11126
|
+
"type": "null"
|
|
11127
|
+
}
|
|
11128
|
+
]
|
|
11111
11129
|
}
|
|
11112
11130
|
}
|
|
11113
11131
|
],
|
|
@@ -11149,9 +11167,16 @@
|
|
|
11149
11167
|
{
|
|
11150
11168
|
"name": "amount",
|
|
11151
11169
|
"in": "query",
|
|
11152
|
-
"required":
|
|
11170
|
+
"required": false,
|
|
11153
11171
|
"schema": {
|
|
11154
|
-
"
|
|
11172
|
+
"anyOf": [
|
|
11173
|
+
{
|
|
11174
|
+
"type": "number"
|
|
11175
|
+
},
|
|
11176
|
+
{
|
|
11177
|
+
"type": "null"
|
|
11178
|
+
}
|
|
11179
|
+
]
|
|
11155
11180
|
}
|
|
11156
11181
|
}
|
|
11157
11182
|
],
|
package/package.json
CHANGED