Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
231b6eadf9
commit
f11a2858b4
@@ -1497,6 +1497,7 @@ export type Database = {
|
||||
Row: {
|
||||
amount: number
|
||||
billable: boolean
|
||||
billed: boolean
|
||||
case_id: string
|
||||
created_at: string
|
||||
description: string
|
||||
@@ -1511,6 +1512,7 @@ export type Database = {
|
||||
Insert: {
|
||||
amount: number
|
||||
billable?: boolean
|
||||
billed?: boolean
|
||||
case_id: string
|
||||
created_at?: string
|
||||
description: string
|
||||
@@ -1525,6 +1527,7 @@ export type Database = {
|
||||
Update: {
|
||||
amount?: number
|
||||
billable?: boolean
|
||||
billed?: boolean
|
||||
case_id?: string
|
||||
created_at?: string
|
||||
description?: string
|
||||
@@ -2911,6 +2914,7 @@ export type Database = {
|
||||
time_entries: {
|
||||
Row: {
|
||||
billable: boolean
|
||||
billed: boolean
|
||||
case_id: string
|
||||
created_at: string
|
||||
description: string
|
||||
@@ -2925,6 +2929,7 @@ export type Database = {
|
||||
}
|
||||
Insert: {
|
||||
billable?: boolean
|
||||
billed?: boolean
|
||||
case_id: string
|
||||
created_at?: string
|
||||
description: string
|
||||
@@ -2939,6 +2944,7 @@ export type Database = {
|
||||
}
|
||||
Update: {
|
||||
billable?: boolean
|
||||
billed?: boolean
|
||||
case_id?: string
|
||||
created_at?: string
|
||||
description?: string
|
||||
|
||||
Reference in New Issue
Block a user