feat(api, i18n): add agent_node_id to various admin queries and enhance multi-language support
Introduced the agent_node_id field in AdminDrawListQuery, AdminPlayerListQuery, AdminSettlementBatchListQuery, TicketItemsListQuery, and TransferOrderListQuery to improve filtering capabilities. Updated the admin-breadcrumb and admin-sidebar components to include new translations for agent-related terms in English, Nepali, and Chinese, enhancing the overall user experience and multi-language support across the admin interface.
This commit is contained in:
@@ -22,6 +22,8 @@ export type TransferOrderListQuery = {
|
||||
status?: string;
|
||||
/** 仅异常:processing / failed / pending_reconcile */
|
||||
abnormal?: boolean;
|
||||
site_code?: string;
|
||||
agent_node_id?: number;
|
||||
};
|
||||
|
||||
export async function getAdminTransferOrders(
|
||||
@@ -45,6 +47,8 @@ export type WalletTransactionListQuery = {
|
||||
biz_type?: string;
|
||||
status?: string;
|
||||
abnormal?: boolean;
|
||||
site_code?: string;
|
||||
agent_node_id?: number;
|
||||
};
|
||||
|
||||
export async function getAdminWalletTransactions(
|
||||
|
||||
Reference in New Issue
Block a user