feat: add admin order refund action
Build and Release / Build (push) Has been cancelled

This commit is contained in:
2026-05-24 09:11:02 -07:00
parent d8b65c6d82
commit 65641838f9
5 changed files with 168 additions and 5 deletions
+7
View File
@@ -1439,6 +1439,7 @@ declare namespace API {
fee_amount: number;
trade_no: string;
status: number;
status_name?: string;
subscribe_id: number;
created_at: number;
updated_at: number;
@@ -1462,6 +1463,7 @@ declare namespace API {
fee_amount: number;
trade_no: string;
status: number;
status_name?: string;
subscribe_id: number;
subscribe: Subscribe;
created_at: number;
@@ -2748,6 +2750,11 @@ declare namespace API {
order_no: string;
};
type RefundOrderRequest = {
id: number;
reason?: string;
};
type RedemptionCode = {
id: number;
code: string;