mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 14:31:13 -05:00
Fix build errors
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user