deploy: auto commit repo-root changes 2026-06-21 19:30:16

This commit is contained in:
hajimi
2026-06-21 19:30:17 +08:00
parent 980b019809
commit f6d967869d
4 changed files with 186 additions and 130 deletions
+33
View File
@@ -49,6 +49,35 @@ export interface MatchLiveLineItem {
[key: string]: any
}
export interface WorldCupLiveCardItem {
live_id: number
match_id: number
title?: string
source_url?: string
play_url: string
default_play_url?: string
stream_options?: MatchLiveStreamOption[]
fetch_status?: string | number
last_fetch_at?: string | number
update_time?: string | number
id: number
competition_id?: number
league_name?: string
round_name?: string
stage?: string
home_team?: string
home_icon?: string
home_score?: number
away_team?: string
away_icon?: string
away_score?: number
status?: number
match_time?: number
current_minute?: string
half_score?: string
[key: string]: any
}
export function getMatchList(data?: Record<string, any>) {
return request.get({ url: '/match/lists', data: data }, { withToken: false })
}
@@ -84,3 +113,7 @@ export function getWorldCupRankings(data: { type: 'goals' | 'assists' }) {
export function getWorldCupSchedule() {
return request.get({ url: '/match/worldCupSchedule' }, { withToken: false })
}
export function getWorldCupLiveCards() {
return request.get({ url: '/match/worldCupLiveCards' }, { withToken: false })
}