mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 23:31:12 -05:00
Approve tool use
This commit is contained in:
@@ -90,3 +90,21 @@ export interface RideModelSubmissionData {
|
||||
card_image_url?: string | null;
|
||||
card_image_id?: string | null;
|
||||
}
|
||||
|
||||
export interface TimelineEventItemData {
|
||||
entity_id: string;
|
||||
entity_type: 'park' | 'ride' | 'company' | 'ride_model';
|
||||
event_type: string;
|
||||
event_date: string; // ISO date
|
||||
event_date_precision: 'day' | 'month' | 'year';
|
||||
title: string;
|
||||
description?: string | null;
|
||||
from_value?: string | null;
|
||||
to_value?: string | null;
|
||||
from_entity_id?: string | null;
|
||||
to_entity_id?: string | null;
|
||||
from_location_id?: string | null;
|
||||
to_location_id?: string | null;
|
||||
display_order?: number;
|
||||
is_public?: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user