Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
67a87d356d
commit
e1514e8d0c
@@ -1290,6 +1290,126 @@ export type Database = {
|
||||
},
|
||||
]
|
||||
}
|
||||
imap_settings: {
|
||||
Row: {
|
||||
created_at: string
|
||||
enabled: boolean
|
||||
folder: string
|
||||
host: string
|
||||
id: string
|
||||
last_error: string | null
|
||||
last_polled_at: string | null
|
||||
last_uid: number | null
|
||||
notes: string | null
|
||||
port: number
|
||||
secure: boolean
|
||||
updated_at: string
|
||||
updated_by: string | null
|
||||
username: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
enabled?: boolean
|
||||
folder?: string
|
||||
host: string
|
||||
id?: string
|
||||
last_error?: string | null
|
||||
last_polled_at?: string | null
|
||||
last_uid?: number | null
|
||||
notes?: string | null
|
||||
port?: number
|
||||
secure?: boolean
|
||||
updated_at?: string
|
||||
updated_by?: string | null
|
||||
username: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
enabled?: boolean
|
||||
folder?: string
|
||||
host?: string
|
||||
id?: string
|
||||
last_error?: string | null
|
||||
last_polled_at?: string | null
|
||||
last_uid?: number | null
|
||||
notes?: string | null
|
||||
port?: number
|
||||
secure?: boolean
|
||||
updated_at?: string
|
||||
updated_by?: string | null
|
||||
username?: string
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
incoming_emails: {
|
||||
Row: {
|
||||
attachment_count: number
|
||||
body_html: string | null
|
||||
body_text: string | null
|
||||
case_id: string | null
|
||||
cc_addresses: string[]
|
||||
created_at: string
|
||||
from_address: string | null
|
||||
from_name: string | null
|
||||
has_attachments: boolean
|
||||
id: string
|
||||
imap_uid: number | null
|
||||
is_archived: boolean
|
||||
is_read: boolean
|
||||
message_id: string | null
|
||||
notes: string | null
|
||||
raw_size_bytes: number | null
|
||||
received_at: string
|
||||
snippet: string | null
|
||||
subject: string | null
|
||||
to_addresses: string[]
|
||||
}
|
||||
Insert: {
|
||||
attachment_count?: number
|
||||
body_html?: string | null
|
||||
body_text?: string | null
|
||||
case_id?: string | null
|
||||
cc_addresses?: string[]
|
||||
created_at?: string
|
||||
from_address?: string | null
|
||||
from_name?: string | null
|
||||
has_attachments?: boolean
|
||||
id?: string
|
||||
imap_uid?: number | null
|
||||
is_archived?: boolean
|
||||
is_read?: boolean
|
||||
message_id?: string | null
|
||||
notes?: string | null
|
||||
raw_size_bytes?: number | null
|
||||
received_at?: string
|
||||
snippet?: string | null
|
||||
subject?: string | null
|
||||
to_addresses?: string[]
|
||||
}
|
||||
Update: {
|
||||
attachment_count?: number
|
||||
body_html?: string | null
|
||||
body_text?: string | null
|
||||
case_id?: string | null
|
||||
cc_addresses?: string[]
|
||||
created_at?: string
|
||||
from_address?: string | null
|
||||
from_name?: string | null
|
||||
has_attachments?: boolean
|
||||
id?: string
|
||||
imap_uid?: number | null
|
||||
is_archived?: boolean
|
||||
is_read?: boolean
|
||||
message_id?: string | null
|
||||
notes?: string | null
|
||||
raw_size_bytes?: number | null
|
||||
received_at?: string
|
||||
snippet?: string | null
|
||||
subject?: string | null
|
||||
to_addresses?: string[]
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
invoice_line_items: {
|
||||
Row: {
|
||||
amount: number
|
||||
|
||||
Reference in New Issue
Block a user