Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 22:52:38 +00:00
co-authored by renee-png
parent 144e7e45ae
commit be07ab2fa3
2 changed files with 91 additions and 0 deletions
+48
View File
@@ -1786,6 +1786,54 @@ export type Database = {
}
Relationships: []
}
smtp_settings: {
Row: {
created_at: string
enabled: boolean
from_email: string
from_name: string | null
host: string
id: string
notes: string | null
port: number
reply_to: string | null
secure: boolean
updated_at: string
updated_by: string | null
username: string | null
}
Insert: {
created_at?: string
enabled?: boolean
from_email: string
from_name?: string | null
host: string
id?: string
notes?: string | null
port?: number
reply_to?: string | null
secure?: boolean
updated_at?: string
updated_by?: string | null
username?: string | null
}
Update: {
created_at?: string
enabled?: boolean
from_email?: string
from_name?: string | null
host?: string
id?: string
notes?: string | null
port?: number
reply_to?: string | null
secure?: boolean
updated_at?: string
updated_by?: string | null
username?: string | null
}
Relationships: []
}
status_updates: {
Row: {
body: string