mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 14:31:13 -05:00
Approve tool use
This commit is contained in:
@@ -3235,6 +3235,94 @@ export type Database = {
|
||||
},
|
||||
]
|
||||
}
|
||||
timeline_event_submissions: {
|
||||
Row: {
|
||||
created_at: string
|
||||
description: string | null
|
||||
display_order: number | null
|
||||
entity_id: string
|
||||
entity_type: string
|
||||
event_date: string
|
||||
event_date_precision: string
|
||||
event_type: string
|
||||
from_entity_id: string | null
|
||||
from_location_id: string | null
|
||||
from_value: string | null
|
||||
id: string
|
||||
is_public: boolean | null
|
||||
submission_id: string
|
||||
title: string
|
||||
to_entity_id: string | null
|
||||
to_location_id: string | null
|
||||
to_value: string | null
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
display_order?: number | null
|
||||
entity_id: string
|
||||
entity_type: string
|
||||
event_date: string
|
||||
event_date_precision: string
|
||||
event_type: string
|
||||
from_entity_id?: string | null
|
||||
from_location_id?: string | null
|
||||
from_value?: string | null
|
||||
id?: string
|
||||
is_public?: boolean | null
|
||||
submission_id: string
|
||||
title: string
|
||||
to_entity_id?: string | null
|
||||
to_location_id?: string | null
|
||||
to_value?: string | null
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
display_order?: number | null
|
||||
entity_id?: string
|
||||
entity_type?: string
|
||||
event_date?: string
|
||||
event_date_precision?: string
|
||||
event_type?: string
|
||||
from_entity_id?: string | null
|
||||
from_location_id?: string | null
|
||||
from_value?: string | null
|
||||
id?: string
|
||||
is_public?: boolean | null
|
||||
submission_id?: string
|
||||
title?: string
|
||||
to_entity_id?: string | null
|
||||
to_location_id?: string | null
|
||||
to_value?: string | null
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "timeline_event_submissions_from_location_id_fkey"
|
||||
columns: ["from_location_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "locations"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
{
|
||||
foreignKeyName: "timeline_event_submissions_submission_id_fkey"
|
||||
columns: ["submission_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "content_submissions"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
{
|
||||
foreignKeyName: "timeline_event_submissions_to_location_id_fkey"
|
||||
columns: ["to_location_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "locations"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
user_blocks: {
|
||||
Row: {
|
||||
blocked_id: string
|
||||
|
||||
Reference in New Issue
Block a user