Approve tool use

This commit is contained in:
gpt-engineer-app[bot]
2025-10-20 12:58:09 +00:00
parent 4983960138
commit 6f1baef8c0
7 changed files with 263 additions and 34 deletions

View File

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