mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 13:11:14 -05:00
Update Lovable tool use
This commit is contained in:
@@ -24,6 +24,7 @@ export type Database = {
|
||||
id: string
|
||||
logo_url: string | null
|
||||
name: string
|
||||
person_type: string | null
|
||||
slug: string
|
||||
updated_at: string
|
||||
website_url: string | null
|
||||
@@ -37,6 +38,7 @@ export type Database = {
|
||||
id?: string
|
||||
logo_url?: string | null
|
||||
name: string
|
||||
person_type?: string | null
|
||||
slug: string
|
||||
updated_at?: string
|
||||
website_url?: string | null
|
||||
@@ -50,6 +52,7 @@ export type Database = {
|
||||
id?: string
|
||||
logo_url?: string | null
|
||||
name?: string
|
||||
person_type?: string | null
|
||||
slug?: string
|
||||
updated_at?: string
|
||||
website_url?: string | null
|
||||
@@ -490,6 +493,7 @@ export type Database = {
|
||||
park_id: string
|
||||
review_count: number | null
|
||||
ride_model_id: string | null
|
||||
ride_sub_type: string | null
|
||||
slug: string
|
||||
status: string
|
||||
technical_specs: Json | null
|
||||
@@ -519,6 +523,7 @@ export type Database = {
|
||||
park_id: string
|
||||
review_count?: number | null
|
||||
ride_model_id?: string | null
|
||||
ride_sub_type?: string | null
|
||||
slug: string
|
||||
status?: string
|
||||
technical_specs?: Json | null
|
||||
@@ -548,6 +553,7 @@ export type Database = {
|
||||
park_id?: string
|
||||
review_count?: number | null
|
||||
ride_model_id?: string | null
|
||||
ride_sub_type?: string | null
|
||||
slug?: string
|
||||
status?: string
|
||||
technical_specs?: Json | null
|
||||
|
||||
@@ -16,6 +16,7 @@ export interface Company {
|
||||
slug: string;
|
||||
description?: string;
|
||||
company_type: string; // Allow any string from database
|
||||
person_type: string; // 'company', 'individual', 'firm', 'organization'
|
||||
website_url?: string;
|
||||
founded_year?: number;
|
||||
headquarters_location?: string;
|
||||
@@ -68,6 +69,7 @@ export interface Ride {
|
||||
manufacturer?: Company;
|
||||
designer?: Company;
|
||||
category: string; // Allow any string from database
|
||||
ride_sub_type?: string; // Sub-category like "Flying Coaster", "Inverted Coaster", etc.
|
||||
status: string; // Allow any string from database
|
||||
opening_date?: string;
|
||||
closing_date?: string;
|
||||
|
||||
Reference in New Issue
Block a user