Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 00:51:11 +00:00
co-authored by renee-png
parent 09682a6c1d
commit 255d39a2d7
2 changed files with 205 additions and 0 deletions
+105
View File
@@ -405,6 +405,111 @@ export type Database = {
},
]
}
fee_schedule_items: {
Row: {
active: boolean
amount: number
billable: boolean
category: string
created_at: string
created_by: string | null
description: string | null
id: string
name: string
sort_order: number
updated_at: string
}
Insert: {
active?: boolean
amount?: number
billable?: boolean
category: string
created_at?: string
created_by?: string | null
description?: string | null
id?: string
name: string
sort_order?: number
updated_at?: string
}
Update: {
active?: boolean
amount?: number
billable?: boolean
category?: string
created_at?: string
created_by?: string | null
description?: string | null
id?: string
name?: string
sort_order?: number
updated_at?: string
}
Relationships: []
}
firm_settings: {
Row: {
address_line1: string | null
address_line2: string | null
city: string | null
company_name: string | null
contact_email: string | null
contact_phone: string | null
country: string | null
created_at: string
default_tax_rate: number | null
footer_note: string | null
id: string
invoice_prefix: string | null
logo_storage_path: string | null
postal_code: string | null
state: string | null
updated_at: string
updated_by: string | null
website: string | null
}
Insert: {
address_line1?: string | null
address_line2?: string | null
city?: string | null
company_name?: string | null
contact_email?: string | null
contact_phone?: string | null
country?: string | null
created_at?: string
default_tax_rate?: number | null
footer_note?: string | null
id?: string
invoice_prefix?: string | null
logo_storage_path?: string | null
postal_code?: string | null
state?: string | null
updated_at?: string
updated_by?: string | null
website?: string | null
}
Update: {
address_line1?: string | null
address_line2?: string | null
city?: string | null
company_name?: string | null
contact_email?: string | null
contact_phone?: string | null
country?: string | null
created_at?: string
default_tax_rate?: number | null
footer_note?: string | null
id?: string
invoice_prefix?: string | null
logo_storage_path?: string | null
postal_code?: string | null
state?: string | null
updated_at?: string
updated_by?: string | null
website?: string | null
}
Relationships: []
}
homeowners: {
Row: {
address: string | null