Fix: Make thread_id nullable

This commit is contained in:
gpt-engineer-app[bot]
2025-10-28 18:01:00 +00:00
parent c42b34b327
commit 1cc137da96
3 changed files with 25 additions and 7 deletions

View File

@@ -538,7 +538,7 @@ export type Database = {
response_count: number | null
status: string
subject: string
thread_id: string
thread_id: string | null
updated_at: string
user_agent: string | null
user_id: string | null
@@ -559,7 +559,7 @@ export type Database = {
response_count?: number | null
status?: string
subject: string
thread_id: string
thread_id?: string | null
updated_at?: string
user_agent?: string | null
user_id?: string | null
@@ -580,7 +580,7 @@ export type Database = {
response_count?: number | null
status?: string
subject?: string
thread_id?: string
thread_id?: string | null
updated_at?: string
user_agent?: string | null
user_id?: string | null