Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
d59f87961e
commit
1b454bf090
@@ -968,6 +968,63 @@ export type Database = {
|
||||
},
|
||||
]
|
||||
}
|
||||
email_logs: {
|
||||
Row: {
|
||||
bcc_addresses: string[]
|
||||
body_html: string | null
|
||||
body_text: string | null
|
||||
case_id: string | null
|
||||
cc_addresses: string[]
|
||||
context: string | null
|
||||
created_at: string
|
||||
error_message: string | null
|
||||
from_address: string | null
|
||||
id: string
|
||||
reply_to: string | null
|
||||
sent_at: string
|
||||
sent_by: string | null
|
||||
status: string
|
||||
subject: string
|
||||
to_addresses: string[]
|
||||
}
|
||||
Insert: {
|
||||
bcc_addresses?: string[]
|
||||
body_html?: string | null
|
||||
body_text?: string | null
|
||||
case_id?: string | null
|
||||
cc_addresses?: string[]
|
||||
context?: string | null
|
||||
created_at?: string
|
||||
error_message?: string | null
|
||||
from_address?: string | null
|
||||
id?: string
|
||||
reply_to?: string | null
|
||||
sent_at?: string
|
||||
sent_by?: string | null
|
||||
status?: string
|
||||
subject: string
|
||||
to_addresses?: string[]
|
||||
}
|
||||
Update: {
|
||||
bcc_addresses?: string[]
|
||||
body_html?: string | null
|
||||
body_text?: string | null
|
||||
case_id?: string | null
|
||||
cc_addresses?: string[]
|
||||
context?: string | null
|
||||
created_at?: string
|
||||
error_message?: string | null
|
||||
from_address?: string | null
|
||||
id?: string
|
||||
reply_to?: string | null
|
||||
sent_at?: string
|
||||
sent_by?: string | null
|
||||
status?: string
|
||||
subject?: string
|
||||
to_addresses?: string[]
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
expenses: {
|
||||
Row: {
|
||||
amount: number
|
||||
@@ -1789,6 +1846,7 @@ export type Database = {
|
||||
smtp_settings: {
|
||||
Row: {
|
||||
created_at: string
|
||||
default_bcc: string | null
|
||||
enabled: boolean
|
||||
from_email: string
|
||||
from_name: string | null
|
||||
@@ -1804,6 +1862,7 @@ export type Database = {
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
default_bcc?: string | null
|
||||
enabled?: boolean
|
||||
from_email: string
|
||||
from_name?: string | null
|
||||
@@ -1819,6 +1878,7 @@ export type Database = {
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
default_bcc?: string | null
|
||||
enabled?: boolean
|
||||
from_email?: string
|
||||
from_name?: string | null
|
||||
|
||||
@@ -742,12 +742,3 @@ const rootRouteChildren: RootRouteChildren = {
|
||||
export const routeTree = rootRouteImport
|
||||
._addFileChildren(rootRouteChildren)
|
||||
._addFileTypes<FileRouteTypes>()
|
||||
|
||||
import type { getRouter } from './router.tsx'
|
||||
import type { createStart } from '@tanstack/react-start'
|
||||
declare module '@tanstack/react-start' {
|
||||
interface Register {
|
||||
ssr: true
|
||||
router: Awaited<ReturnType<typeof getRouter>>
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user