mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 14:51:13 -05:00
Implement the plan
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user