Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
f0687633b6
commit
01692742da
@@ -412,6 +412,48 @@ export type Database = {
|
||||
},
|
||||
]
|
||||
}
|
||||
client_field_values: {
|
||||
Row: {
|
||||
client_id: string
|
||||
created_at: string
|
||||
field_id: string
|
||||
id: string
|
||||
updated_at: string
|
||||
value: string | null
|
||||
}
|
||||
Insert: {
|
||||
client_id: string
|
||||
created_at?: string
|
||||
field_id: string
|
||||
id?: string
|
||||
updated_at?: string
|
||||
value?: string | null
|
||||
}
|
||||
Update: {
|
||||
client_id?: string
|
||||
created_at?: string
|
||||
field_id?: string
|
||||
id?: string
|
||||
updated_at?: string
|
||||
value?: string | null
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "client_field_values_client_id_fkey"
|
||||
columns: ["client_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "clients"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
{
|
||||
foreignKeyName: "client_field_values_field_id_fkey"
|
||||
columns: ["field_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "custom_client_fields"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
clients: {
|
||||
Row: {
|
||||
address_line1: string | null
|
||||
@@ -1007,6 +1049,45 @@ export type Database = {
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
custom_client_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
|
||||
|
||||
Reference in New Issue
Block a user