api.fluff4.me 1.0.647 → 1.0.648
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 +7 -9
- package/openapi.json +24 -32
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -770,14 +770,12 @@ export interface LemonSqueezyProductDisplay {
|
|
|
770
770
|
buy_now_url: string
|
|
771
771
|
}
|
|
772
772
|
|
|
773
|
-
export interface
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
uuid: string
|
|
780
|
-
}[]
|
|
773
|
+
export interface SupporterOrder {
|
|
774
|
+
type: string
|
|
775
|
+
timestamp: string
|
|
776
|
+
status: string
|
|
777
|
+
amount: number
|
|
778
|
+
uuid: string
|
|
781
779
|
}
|
|
782
780
|
|
|
783
781
|
export interface ChangelogInsertBody {
|
|
@@ -1762,7 +1760,7 @@ export interface Paths {
|
|
|
1762
1760
|
page?: number
|
|
1763
1761
|
page_size?: number
|
|
1764
1762
|
}
|
|
1765
|
-
response: PaginatedResponse<
|
|
1763
|
+
response: PaginatedResponse<SupporterOrder[]> | ErrorResponse
|
|
1766
1764
|
},
|
|
1767
1765
|
"/supporter/order/{id}": {
|
|
1768
1766
|
method: "get"
|
package/openapi.json
CHANGED
|
@@ -4282,42 +4282,31 @@
|
|
|
4282
4282
|
"buy_now_url"
|
|
4283
4283
|
]
|
|
4284
4284
|
},
|
|
4285
|
-
"
|
|
4285
|
+
"SupporterOrder": {
|
|
4286
4286
|
"type": "object",
|
|
4287
4287
|
"properties": {
|
|
4288
|
-
"
|
|
4289
|
-
"type": "
|
|
4290
|
-
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
|
|
4295
|
-
|
|
4296
|
-
|
|
4297
|
-
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
"amount": {
|
|
4303
|
-
"type": "number"
|
|
4304
|
-
},
|
|
4305
|
-
"uuid": {
|
|
4306
|
-
"type": "string"
|
|
4307
|
-
}
|
|
4308
|
-
},
|
|
4309
|
-
"required": [
|
|
4310
|
-
"type",
|
|
4311
|
-
"timestamp",
|
|
4312
|
-
"status",
|
|
4313
|
-
"amount",
|
|
4314
|
-
"uuid"
|
|
4315
|
-
]
|
|
4316
|
-
}
|
|
4288
|
+
"type": {
|
|
4289
|
+
"type": "string"
|
|
4290
|
+
},
|
|
4291
|
+
"timestamp": {
|
|
4292
|
+
"type": "string"
|
|
4293
|
+
},
|
|
4294
|
+
"status": {
|
|
4295
|
+
"type": "string"
|
|
4296
|
+
},
|
|
4297
|
+
"amount": {
|
|
4298
|
+
"type": "number"
|
|
4299
|
+
},
|
|
4300
|
+
"uuid": {
|
|
4301
|
+
"type": "string"
|
|
4317
4302
|
}
|
|
4318
4303
|
},
|
|
4319
4304
|
"required": [
|
|
4320
|
-
"
|
|
4305
|
+
"type",
|
|
4306
|
+
"timestamp",
|
|
4307
|
+
"status",
|
|
4308
|
+
"amount",
|
|
4309
|
+
"uuid"
|
|
4321
4310
|
]
|
|
4322
4311
|
},
|
|
4323
4312
|
"ChangelogInsertBody": {
|
|
@@ -10795,7 +10784,10 @@
|
|
|
10795
10784
|
"type": "object",
|
|
10796
10785
|
"properties": {
|
|
10797
10786
|
"data": {
|
|
10798
|
-
"
|
|
10787
|
+
"type": "array",
|
|
10788
|
+
"items": {
|
|
10789
|
+
"$ref": "#/components/schema/SupporterOrder"
|
|
10790
|
+
}
|
|
10799
10791
|
},
|
|
10800
10792
|
"has_more": {
|
|
10801
10793
|
"type": "boolean"
|
package/package.json
CHANGED