feat(api): Add CheckoutOrder request and response types, and update user purchase request parameters

This commit is contained in:
web@ppanel
2025-03-14 13:34:36 +07:00
parent 786ba0e41c
commit 48a1b97051
8 changed files with 91 additions and 36 deletions
+5 -1
View File
@@ -438,8 +438,8 @@ declare namespace API {
};
type PortalPurchaseRequest = {
auth_type: string;
identifier: string;
platform: string;
password?: string;
payment: number;
subscribe_id: number;
@@ -572,10 +572,14 @@ declare namespace API {
};
type QueryPurchaseOrderParams = {
auth_type: string;
identifier: string;
order_no: string;
};
type QueryPurchaseOrderRequest = {
auth_type: string;
identifier: string;
order_no: string;
};