Implement the plan

This commit is contained in:
gpt-engineer-app[bot]
2025-10-16 13:26:05 +00:00
parent 866429aa40
commit 2106142150
6 changed files with 422 additions and 162 deletions

View File

@@ -113,11 +113,19 @@ export interface RideModel {
id: string;
name: string;
slug: string;
manufacturer_id: string;
manufacturer?: Company;
category: 'roller_coaster' | 'flat_ride' | 'water_ride' | 'dark_ride' | 'kiddie_ride' | 'transportation';
ride_type: string;
ride_type?: string;
description?: string;
technical_specs?: Record<string, any>;
technical_specifications?: RideModelTechnicalSpec[];
banner_image_url?: string;
banner_image_id?: string;
card_image_url?: string;
card_image_id?: string;
created_at?: string;
updated_at?: string;
}
export interface Ride {

View File

@@ -20,7 +20,7 @@ export type TimelineEventType =
| 'milestone'
| 'other';
export type EntityType = 'park' | 'ride' | 'company';
export type EntityType = 'park' | 'ride' | 'company' | 'ride_model';
export type DatePrecision = 'day' | 'month' | 'year';