feat: 增加 Jackpot 爆池实时弹层与奖池信息展示
This commit is contained in:
@@ -31,6 +31,14 @@ export type DrawCurrentPayload = {
|
||||
seconds_to_draw: number;
|
||||
cooling_end_time: string | null;
|
||||
seconds_remaining_in_cooldown: number | null;
|
||||
jackpot?: {
|
||||
currency_code: string;
|
||||
enabled: boolean;
|
||||
current_amount_minor: number;
|
||||
current_amount_formatted?: string;
|
||||
draws_since_last_burst: number | null;
|
||||
last_trigger_draw_id?: number | null;
|
||||
};
|
||||
risk_pool_alerts?: DrawCurrentRiskPoolAlert[];
|
||||
result_items?: DrawCurrentResultItem[];
|
||||
result_version?: number;
|
||||
|
||||
@@ -15,6 +15,14 @@ export type DrawResultListItem = {
|
||||
draw_time_iso?: string | null;
|
||||
result_version: number;
|
||||
result_source: string | null;
|
||||
jackpot?: {
|
||||
currency_code: string;
|
||||
enabled: boolean;
|
||||
current_amount_minor: number;
|
||||
current_amount_formatted?: string;
|
||||
draws_since_last_burst: number | null;
|
||||
last_trigger_draw_id?: number | null;
|
||||
};
|
||||
results: DrawResultsNumbers;
|
||||
result_items: Array<{
|
||||
prize_type: string;
|
||||
|
||||
@@ -2,4 +2,7 @@ export type JackpotSummaryData = {
|
||||
currency_code: string;
|
||||
enabled: boolean;
|
||||
current_amount_minor: number;
|
||||
current_amount_formatted?: string;
|
||||
draws_since_last_burst: number | null;
|
||||
last_trigger_draw_id?: number | null;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user