修复(#HIF-43): 消除 typings.d.ts 重复类型声明,只保留最小必要字段变更
- WithdrawalLog 加入 method/account/qr_code_url 字段,content 改为可选 - GetWithdrawalListParams 加入 method 过滤字段 - 其余改动与 feat/HIF-43-withdrawal-payment-method 保持一致
This commit is contained in:
+5
-1
@@ -1163,6 +1163,7 @@ declare namespace API {
|
||||
size: number;
|
||||
user_id?: number;
|
||||
status?: number;
|
||||
method?: number;
|
||||
};
|
||||
|
||||
type GetWithdrawalListResponse = {
|
||||
@@ -3097,7 +3098,10 @@ declare namespace API {
|
||||
id: number;
|
||||
user_id: number;
|
||||
amount: number;
|
||||
content: string;
|
||||
method: number;
|
||||
account?: string;
|
||||
qr_code_url?: string;
|
||||
content?: string;
|
||||
status: number;
|
||||
reason?: string;
|
||||
created_at: number;
|
||||
|
||||
Reference in New Issue
Block a user