Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
0fa129c193
commit
bba10d31ac
@@ -26,6 +26,7 @@ export type Database = {
|
||||
created_by: string | null
|
||||
direction: string
|
||||
duration_minutes: number | null
|
||||
external_id: string | null
|
||||
follow_up_date: string | null
|
||||
follow_up_required: boolean
|
||||
homeowner_id: string | null
|
||||
@@ -45,6 +46,7 @@ export type Database = {
|
||||
created_by?: string | null
|
||||
direction?: string
|
||||
duration_minutes?: number | null
|
||||
external_id?: string | null
|
||||
follow_up_date?: string | null
|
||||
follow_up_required?: boolean
|
||||
homeowner_id?: string | null
|
||||
@@ -64,6 +66,7 @@ export type Database = {
|
||||
created_by?: string | null
|
||||
direction?: string
|
||||
duration_minutes?: number | null
|
||||
external_id?: string | null
|
||||
follow_up_date?: string | null
|
||||
follow_up_required?: boolean
|
||||
homeowner_id?: string | null
|
||||
@@ -153,6 +156,7 @@ export type Database = {
|
||||
created_by: string | null
|
||||
default_hourly_rate: number | null
|
||||
description: string | null
|
||||
external_id: string | null
|
||||
filing_date: string | null
|
||||
id: string
|
||||
judge: string | null
|
||||
@@ -188,6 +192,7 @@ export type Database = {
|
||||
created_by?: string | null
|
||||
default_hourly_rate?: number | null
|
||||
description?: string | null
|
||||
external_id?: string | null
|
||||
filing_date?: string | null
|
||||
id?: string
|
||||
judge?: string | null
|
||||
@@ -223,6 +228,7 @@ export type Database = {
|
||||
created_by?: string | null
|
||||
default_hourly_rate?: number | null
|
||||
description?: string | null
|
||||
external_id?: string | null
|
||||
filing_date?: string | null
|
||||
id?: string
|
||||
judge?: string | null
|
||||
@@ -313,6 +319,7 @@ export type Database = {
|
||||
client_type: Database["public"]["Enums"]["client_type"]
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
external_id: string | null
|
||||
id: string
|
||||
management_company: string | null
|
||||
name: string
|
||||
@@ -334,6 +341,7 @@ export type Database = {
|
||||
client_type?: Database["public"]["Enums"]["client_type"]
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
management_company?: string | null
|
||||
name: string
|
||||
@@ -355,6 +363,7 @@ export type Database = {
|
||||
client_type?: Database["public"]["Enums"]["client_type"]
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
management_company?: string | null
|
||||
name?: string
|
||||
@@ -741,6 +750,7 @@ export type Database = {
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
email: string | null
|
||||
external_id: string | null
|
||||
id: string
|
||||
name: string
|
||||
notes: string | null
|
||||
@@ -759,6 +769,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
email?: string | null
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
@@ -777,6 +788,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
email?: string | null
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
name?: string
|
||||
notes?: string | null
|
||||
@@ -926,6 +938,7 @@ export type Database = {
|
||||
case_id: string
|
||||
created_at: string
|
||||
description: string | null
|
||||
external_id: string | null
|
||||
folder: string
|
||||
id: string
|
||||
mime_type: string | null
|
||||
@@ -938,6 +951,7 @@ export type Database = {
|
||||
case_id: string
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
external_id?: string | null
|
||||
folder?: string
|
||||
id?: string
|
||||
mime_type?: string | null
|
||||
@@ -950,6 +964,7 @@ export type Database = {
|
||||
case_id?: string
|
||||
created_at?: string
|
||||
description?: string | null
|
||||
external_id?: string | null
|
||||
folder?: string
|
||||
id?: string
|
||||
mime_type?: string | null
|
||||
@@ -1025,6 +1040,72 @@ export type Database = {
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
events: {
|
||||
Row: {
|
||||
all_day: boolean
|
||||
case_id: string | null
|
||||
client_id: string | null
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
description: string | null
|
||||
end_at: string | null
|
||||
event_type: string
|
||||
external_id: string | null
|
||||
id: string
|
||||
location: string | null
|
||||
start_at: string
|
||||
title: string
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
all_day?: boolean
|
||||
case_id?: string | null
|
||||
client_id?: string | null
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
description?: string | null
|
||||
end_at?: string | null
|
||||
event_type?: string
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
location?: string | null
|
||||
start_at: string
|
||||
title: string
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
all_day?: boolean
|
||||
case_id?: string | null
|
||||
client_id?: string | null
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
description?: string | null
|
||||
end_at?: string | null
|
||||
event_type?: string
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
location?: string | null
|
||||
start_at?: string
|
||||
title?: string
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "events_case_id_fkey"
|
||||
columns: ["case_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "cases"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
{
|
||||
foreignKeyName: "events_client_id_fkey"
|
||||
columns: ["client_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "clients"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
expenses: {
|
||||
Row: {
|
||||
amount: number
|
||||
@@ -1033,6 +1114,7 @@ export type Database = {
|
||||
created_at: string
|
||||
description: string
|
||||
expense_date: string
|
||||
external_id: string | null
|
||||
id: string
|
||||
invoice_id: string | null
|
||||
receipt_storage_path: string | null
|
||||
@@ -1046,6 +1128,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
description: string
|
||||
expense_date?: string
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
invoice_id?: string | null
|
||||
receipt_storage_path?: string | null
|
||||
@@ -1059,6 +1142,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
description?: string
|
||||
expense_date?: string
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
invoice_id?: string | null
|
||||
receipt_storage_path?: string | null
|
||||
@@ -1241,6 +1325,7 @@ export type Database = {
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
email: string | null
|
||||
external_id: string | null
|
||||
first_name: string
|
||||
id: string
|
||||
last_name: string
|
||||
@@ -1256,6 +1341,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
email?: string | null
|
||||
external_id?: string | null
|
||||
first_name: string
|
||||
id?: string
|
||||
last_name: string
|
||||
@@ -1271,6 +1357,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
email?: string | null
|
||||
external_id?: string | null
|
||||
first_name?: string
|
||||
id?: string
|
||||
last_name?: string
|
||||
@@ -1559,6 +1646,7 @@ export type Database = {
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
due_date: string | null
|
||||
external_id: string | null
|
||||
id: string
|
||||
invoice_number: string
|
||||
is_retainer: boolean
|
||||
@@ -1578,6 +1666,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
due_date?: string | null
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
invoice_number: string
|
||||
is_retainer?: boolean
|
||||
@@ -1597,6 +1686,7 @@ export type Database = {
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
due_date?: string | null
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
invoice_number?: string
|
||||
is_retainer?: boolean
|
||||
@@ -2023,6 +2113,7 @@ export type Database = {
|
||||
case_id: string
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
external_id: string | null
|
||||
id: string
|
||||
report_storage_path: string | null
|
||||
title: string
|
||||
@@ -2032,6 +2123,7 @@ export type Database = {
|
||||
case_id: string
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
report_storage_path?: string | null
|
||||
title: string
|
||||
@@ -2041,6 +2133,7 @@ export type Database = {
|
||||
case_id?: string
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
report_storage_path?: string | null
|
||||
title?: string
|
||||
@@ -2166,6 +2259,7 @@ export type Database = {
|
||||
created_by: string | null
|
||||
description: string | null
|
||||
due_date: string | null
|
||||
external_id: string | null
|
||||
id: string
|
||||
parent_task_id: string | null
|
||||
priority: Database["public"]["Enums"]["task_priority"]
|
||||
@@ -2183,6 +2277,7 @@ export type Database = {
|
||||
created_by?: string | null
|
||||
description?: string | null
|
||||
due_date?: string | null
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
parent_task_id?: string | null
|
||||
priority?: Database["public"]["Enums"]["task_priority"]
|
||||
@@ -2200,6 +2295,7 @@ export type Database = {
|
||||
created_by?: string | null
|
||||
description?: string | null
|
||||
due_date?: string | null
|
||||
external_id?: string | null
|
||||
id?: string
|
||||
parent_task_id?: string | null
|
||||
priority?: Database["public"]["Enums"]["task_priority"]
|
||||
@@ -2239,6 +2335,7 @@ export type Database = {
|
||||
case_id: string
|
||||
created_at: string
|
||||
description: string
|
||||
external_id: string | null
|
||||
hourly_rate: number
|
||||
hours: number
|
||||
id: string
|
||||
@@ -2252,6 +2349,7 @@ export type Database = {
|
||||
case_id: string
|
||||
created_at?: string
|
||||
description: string
|
||||
external_id?: string | null
|
||||
hourly_rate?: number
|
||||
hours: number
|
||||
id?: string
|
||||
@@ -2265,6 +2363,7 @@ export type Database = {
|
||||
case_id?: string
|
||||
created_at?: string
|
||||
description?: string
|
||||
external_id?: string | null
|
||||
hourly_rate?: number
|
||||
hours?: number
|
||||
id?: string
|
||||
|
||||
Reference in New Issue
Block a user