Fix build errors

This commit is contained in:
gpt-engineer-app[bot]
2025-10-21 12:07:03 +00:00
parent 0c0d79754b
commit d4433da7aa
4 changed files with 164 additions and 16 deletions

View File

@@ -1898,6 +1898,69 @@ export type Database = {
}
Relationships: []
}
request_metadata: {
Row: {
client_version: string | null
completed_at: string | null
created_at: string
duration_ms: number | null
endpoint: string
error_message: string | null
error_type: string | null
id: string
ip_address_hash: string | null
method: string
parent_request_id: string | null
request_id: string
retry_count: number | null
started_at: string
status_code: number | null
trace_id: string | null
user_agent: string | null
user_id: string | null
}
Insert: {
client_version?: string | null
completed_at?: string | null
created_at?: string
duration_ms?: number | null
endpoint: string
error_message?: string | null
error_type?: string | null
id?: string
ip_address_hash?: string | null
method: string
parent_request_id?: string | null
request_id: string
retry_count?: number | null
started_at?: string
status_code?: number | null
trace_id?: string | null
user_agent?: string | null
user_id?: string | null
}
Update: {
client_version?: string | null
completed_at?: string | null
created_at?: string
duration_ms?: number | null
endpoint?: string
error_message?: string | null
error_type?: string | null
id?: string
ip_address_hash?: string | null
method?: string
parent_request_id?: string | null
request_id?: string
retry_count?: number | null
started_at?: string
status_code?: number | null
trace_id?: string | null
user_agent?: string | null
user_id?: string | null
}
Relationships: []
}
review_deletions: {
Row: {
content: string | null
@@ -3734,6 +3797,10 @@ export type Database = {
Args: Record<PropertyKey, never>
Returns: undefined
}
cleanup_old_request_metadata: {
Args: Record<PropertyKey, never>
Returns: undefined
}
cleanup_old_versions: {
Args: { entity_type: string; keep_versions?: number }
Returns: number