Lib: Add schema + fetcher for seasonpickpoints table

This commit is contained in:
2025-12-26 21:38:16 +01:00
parent 5cf7974a79
commit db0365adad
2 changed files with 27 additions and 0 deletions

View File

@ -169,6 +169,19 @@ export interface RacePickPointsTotal {
total_points_per_pick: number;
}
export interface SeasonPickPoints {
id: string;
user: string;
hottake_points: number;
wdc_points: number;
wcc_points: number;
doohan_points: number;
overtakes_points: number;
dnfs_points: number;
teamwinner_points: number;
podium_points: number;
}
// Scraped Data
export interface ScrapedStartingGrid {