Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 01:43:18 +00:00
co-authored by renee-png
parent aa24b0c843
commit 6041e3ca9c
2 changed files with 171 additions and 0 deletions
+89
View File
@@ -446,6 +446,48 @@ export type Database = {
},
]
}
document_templates: {
Row: {
body: string
created_at: string
created_by: string | null
description: string | null
fields: Json
font_family: string
font_size_pt: number
id: string
kind: string
name: string
updated_at: string
}
Insert: {
body?: string
created_at?: string
created_by?: string | null
description?: string | null
fields?: Json
font_family?: string
font_size_pt?: number
id?: string
kind?: string
name: string
updated_at?: string
}
Update: {
body?: string
created_at?: string
created_by?: string | null
description?: string | null
fields?: Json
font_family?: string
font_size_pt?: number
id?: string
kind?: string
name?: string
updated_at?: string
}
Relationships: []
}
documents: {
Row: {
case_id: string
@@ -652,6 +694,53 @@ export type Database = {
}
Relationships: []
}
generated_documents: {
Row: {
body: string | null
created_at: string
created_by: string | null
id: string
kind: string
name: string
payload: Json
storage_path: string | null
template_id: string | null
updated_at: string
}
Insert: {
body?: string | null
created_at?: string
created_by?: string | null
id?: string
kind?: string
name: string
payload?: Json
storage_path?: string | null
template_id?: string | null
updated_at?: string
}
Update: {
body?: string | null
created_at?: string
created_by?: string | null
id?: string
kind?: string
name?: string
payload?: Json
storage_path?: string | null
template_id?: string | null
updated_at?: string
}
Relationships: [
{
foreignKeyName: "generated_documents_template_id_fkey"
columns: ["template_id"]
isOneToOne: false
referencedRelation: "document_templates"
referencedColumns: ["id"]
},
]
}
homeowners: {
Row: {
address: string | null