Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-19 22:01:32 +00:00
co-authored by renee-png
parent 231b6eadf9
commit f11a2858b4
2 changed files with 14 additions and 0 deletions
+6
View File
@@ -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