feat(player): improve wallet activity and session handling
Some checks failed
lotteryfront CI / build (push) Has been cancelled

This commit is contained in:
wchino
2026-07-22 20:53:43 +08:00
parent 508b28df22
commit 827f369eb6
40 changed files with 925 additions and 349 deletions

View File

@@ -9,6 +9,7 @@ export type GetTicketItemsParams = {
page?: number;
per_page?: number;
draw_no?: string;
ticket_no?: string;
order_no?: string;
number?: string;
status?: string[];
@@ -27,6 +28,7 @@ export function getTicketItems(
page: params?.page,
per_page: params?.per_page,
draw_no: params?.draw_no,
ticket_no: params?.ticket_no,
order_no: params?.order_no,
number: params?.number,
status: params?.status,