Add coaster-specific fields

This commit is contained in:
gpt-engineer-app[bot]
2025-10-30 12:35:48 +00:00
parent 8795e756ce
commit 05217b00d4
8 changed files with 192 additions and 31 deletions

View File

@@ -166,7 +166,9 @@ export interface Ride {
coaster_type?: string;
seating_type?: string;
intensity_level?: string;
track_material?: string;
track_material?: string[];
support_material?: string[];
propulsion_method?: string[];
drop_height_meters?: number;
max_g_force?: number;
}

View File

@@ -55,7 +55,9 @@ export interface RideSubmissionData {
coaster_type?: string | null;
seating_type?: string | null;
intensity_level?: string | null;
track_material?: string | null;
track_material?: string[] | null;
support_material?: string[] | null;
propulsion_method?: string[] | null;
// Water ride specific
water_depth_cm?: number | null;
splash_height_meters?: number | null;