Update Lovable tool use

This commit is contained in:
gpt-engineer-app[bot]
2025-09-20 12:40:01 +00:00
parent 478ed74ef2
commit 162e18e08b
3 changed files with 30 additions and 0 deletions

View File

@@ -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;