deploy: auto commit repo-root changes 2026-07-10 01:01:12

This commit is contained in:
hajimi
2026-07-10 01:01:12 +08:00
parent 84a5fb43f5
commit 3b61f0ba38
82 changed files with 625 additions and 80 deletions
+52
View File
@@ -83,6 +83,48 @@ export interface WorldCupLiveCardItem {
[key: string]: any
}
export interface WorldCupOddsValue {
label: string
value: string
}
export interface WorldCupOddsMarket {
label: string
line?: string
values: WorldCupOddsValue[]
}
export interface WorldCupOddsPlatform {
platform_key: string
platform_name: string
show_type: string
show_type_text: string
odds_type?: string
source_match_id?: string
update_time?: number
markets: WorldCupOddsMarket[]
}
export interface WorldCupOddsMatchItem {
id?: number
match_id?: number
source_match_ids?: string[]
league_name?: string
match_time_text?: string
match_time?: number
home_team: string
home_icon?: string
home_score?: number
away_team: string
away_icon?: string
away_score?: number
status?: number
current_minute?: string
platforms: WorldCupOddsPlatform[]
update_time?: number
[key: string]: any
}
export function getMatchList(data?: Record<string, any>) {
return request.get({ url: '/match/lists', data: data }, { withToken: false })
}
@@ -122,3 +164,13 @@ export function getWorldCupSchedule() {
export function getWorldCupLiveCards() {
return request.get({ url: '/match/worldCupLiveCards' }, { withToken: false })
}
export function getWorldCupOdds(data?: {
show_type?: 'live' | 'today' | 'early'
source_site?: string
keyword?: string
include_special?: number
limit?: number
}) {
return request.get({ url: '/match/worldCupOdds', data }, { withToken: false })
}