deploy: auto commit repo-root changes 2026-07-10 01:01:12
This commit is contained in:
@@ -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 })
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user