Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
aa24b0c843
commit
6041e3ca9c
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user