Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 01:33:35 +00:00
co-authored by renee-png
parent d3c7b7443a
commit 6deb196d2f
2 changed files with 195 additions and 0 deletions
+126
View File
@@ -141,6 +141,48 @@ export type Database = {
},
]
}
case_field_values: {
Row: {
case_id: string
created_at: string
field_id: string
id: string
updated_at: string
value: string | null
}
Insert: {
case_id: string
created_at?: string
field_id: string
id?: string
updated_at?: string
value?: string | null
}
Update: {
case_id?: string
created_at?: string
field_id?: string
id?: string
updated_at?: string
value?: string | null
}
Relationships: [
{
foreignKeyName: "case_field_values_case_id_fkey"
columns: ["case_id"]
isOneToOne: false
referencedRelation: "cases"
referencedColumns: ["id"]
},
{
foreignKeyName: "case_field_values_field_id_fkey"
columns: ["field_id"]
isOneToOne: false
referencedRelation: "custom_case_fields"
referencedColumns: ["id"]
},
]
}
cases: {
Row: {
assigned_attorney_id: string | null
@@ -859,6 +901,90 @@ export type Database = {
}
Relationships: []
}
custom_case_fields: {
Row: {
active: boolean
created_at: string
created_by: string | null
description: string | null
field_type: string
id: string
key: string
label: string
sort_order: number
updated_at: string
}
Insert: {
active?: boolean
created_at?: string
created_by?: string | null
description?: string | null
field_type?: string
id?: string
key: string
label: string
sort_order?: number
updated_at?: string
}
Update: {
active?: boolean
created_at?: string
created_by?: string | null
description?: string | null
field_type?: string
id?: string
key?: string
label?: string
sort_order?: number
updated_at?: string
}
Relationships: []
}
custom_form_templates: {
Row: {
body_html: string
created_at: string
created_by: string | null
description: string | null
font_family: string
font_size_pt: number
hide_title: boolean
id: string
name: string
signature_blocks: Json
title: string
updated_at: string
}
Insert: {
body_html?: string
created_at?: string
created_by?: string | null
description?: string | null
font_family?: string
font_size_pt?: number
hide_title?: boolean
id?: string
name: string
signature_blocks?: Json
title?: string
updated_at?: string
}
Update: {
body_html?: string
created_at?: string
created_by?: string | null
description?: string | null
font_family?: string
font_size_pt?: number
hide_title?: boolean
id?: string
name?: string
signature_blocks?: Json
title?: string
updated_at?: string
}
Relationships: []
}
document_folders: {
Row: {
case_id: string