Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
4b23394680
commit
82f943c308
@@ -17,49 +17,106 @@ export type Database = {
|
||||
cases: {
|
||||
Row: {
|
||||
assigned_attorney_id: string | null
|
||||
case_caption: string | null
|
||||
case_number: string
|
||||
case_summary: string | null
|
||||
claim_amount: number | null
|
||||
client_id: string
|
||||
closed_at: string | null
|
||||
court: string | null
|
||||
court_case_number: string | null
|
||||
created_at: string
|
||||
created_by: string | null
|
||||
default_hourly_rate: number | null
|
||||
description: string | null
|
||||
filing_date: string | null
|
||||
id: string
|
||||
judge: string | null
|
||||
jurisdiction: string | null
|
||||
key_dates: Json
|
||||
litigation_stage: string | null
|
||||
next_hearing_date: string | null
|
||||
next_hearing_notes: string | null
|
||||
opened_at: string
|
||||
opposing_counsel: string | null
|
||||
opposing_counsel_email: string | null
|
||||
opposing_counsel_firm: string | null
|
||||
opposing_counsel_phone: string | null
|
||||
opposing_party: string | null
|
||||
practice_area: string | null
|
||||
settlement_amount: number | null
|
||||
status: Database["public"]["Enums"]["case_status"]
|
||||
statute_of_limitations: string | null
|
||||
title: string
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
assigned_attorney_id?: string | null
|
||||
case_caption?: string | null
|
||||
case_number: string
|
||||
case_summary?: string | null
|
||||
claim_amount?: number | null
|
||||
client_id: string
|
||||
closed_at?: string | null
|
||||
court?: string | null
|
||||
court_case_number?: string | null
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
default_hourly_rate?: number | null
|
||||
description?: string | null
|
||||
filing_date?: string | null
|
||||
id?: string
|
||||
judge?: string | null
|
||||
jurisdiction?: string | null
|
||||
key_dates?: Json
|
||||
litigation_stage?: string | null
|
||||
next_hearing_date?: string | null
|
||||
next_hearing_notes?: string | null
|
||||
opened_at?: string
|
||||
opposing_counsel?: string | null
|
||||
opposing_counsel_email?: string | null
|
||||
opposing_counsel_firm?: string | null
|
||||
opposing_counsel_phone?: string | null
|
||||
opposing_party?: string | null
|
||||
practice_area?: string | null
|
||||
settlement_amount?: number | null
|
||||
status?: Database["public"]["Enums"]["case_status"]
|
||||
statute_of_limitations?: string | null
|
||||
title: string
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
assigned_attorney_id?: string | null
|
||||
case_caption?: string | null
|
||||
case_number?: string
|
||||
case_summary?: string | null
|
||||
claim_amount?: number | null
|
||||
client_id?: string
|
||||
closed_at?: string | null
|
||||
court?: string | null
|
||||
court_case_number?: string | null
|
||||
created_at?: string
|
||||
created_by?: string | null
|
||||
default_hourly_rate?: number | null
|
||||
description?: string | null
|
||||
filing_date?: string | null
|
||||
id?: string
|
||||
judge?: string | null
|
||||
jurisdiction?: string | null
|
||||
key_dates?: Json
|
||||
litigation_stage?: string | null
|
||||
next_hearing_date?: string | null
|
||||
next_hearing_notes?: string | null
|
||||
opened_at?: string
|
||||
opposing_counsel?: string | null
|
||||
opposing_counsel_email?: string | null
|
||||
opposing_counsel_firm?: string | null
|
||||
opposing_counsel_phone?: string | null
|
||||
opposing_party?: string | null
|
||||
practice_area?: string | null
|
||||
settlement_amount?: number | null
|
||||
status?: Database["public"]["Enums"]["case_status"]
|
||||
statute_of_limitations?: string | null
|
||||
title?: string
|
||||
updated_at?: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user