Refactor profile stats calculation

This commit is contained in:
gpt-engineer-app[bot]
2025-09-28 21:15:23 +00:00
parent 2f295b4879
commit ec664a1669
5 changed files with 250 additions and 2 deletions

View File

@@ -88,6 +88,13 @@ export interface Ride {
average_rating: number;
review_count: number;
image_url?: string;
// New roller coaster specific fields
coaster_type?: string;
seating_type?: string;
intensity_level?: string;
drop_height_meters?: number;
max_g_force?: number;
former_names?: any;
}
export interface Profile {