Refactor: Implement complete plan

This commit is contained in:
gpt-engineer-app[bot]
2025-10-17 14:04:57 +00:00
parent a89a740611
commit a2e05c5080
10 changed files with 258 additions and 68 deletions

View File

@@ -118,8 +118,8 @@ export interface RideModel {
category: 'roller_coaster' | 'flat_ride' | 'water_ride' | 'dark_ride' | 'kiddie_ride' | 'transportation';
ride_type?: string;
description?: string;
technical_specs?: Record<string, any>;
technical_specifications?: RideModelTechnicalSpec[];
// Note: technical_specs deprecated - use ride_model_technical_specifications table
// Load via useTechnicalSpecifications hook instead
banner_image_url?: string;
banner_image_id?: string;
card_image_url?: string;

View File

@@ -127,7 +127,7 @@ export interface RideModelVersion extends BaseVersionWithProfile {
manufacturer_id: string | null;
category: string;
description: string | null;
technical_specs: Record<string, any> | null;
// Note: technical_specs removed - use ride_model_technical_specifications table
}
/**