Sync types

This commit is contained in:
Arthur Belleville 2025-10-28 12:01:15 +01:00
parent 2c2a41112c
commit a882365c56
No known key found for this signature in database

View file

@ -353,6 +353,7 @@ export type Database = {
id: string id: string
is_temporary: boolean is_temporary: boolean
last_name: string | null last_name: string | null
last_signed_in: string | null
name: string | null name: string | null
short_user_id: string short_user_id: string
} }
@ -363,6 +364,7 @@ export type Database = {
id: string id: string
is_temporary?: boolean is_temporary?: boolean
last_name?: string | null last_name?: string | null
last_signed_in?: string | null
name?: string | null name?: string | null
short_user_id: string short_user_id: string
} }
@ -373,6 +375,7 @@ export type Database = {
id?: string id?: string
is_temporary?: boolean is_temporary?: boolean
last_name?: string | null last_name?: string | null
last_signed_in?: string | null
name?: string | null name?: string | null
short_user_id?: string short_user_id?: string
} }
@ -471,24 +474,30 @@ export type Database = {
} }
tablo_invites: { tablo_invites: {
Row: { Row: {
created_at: string
id: number id: number
invite_token: string invite_token: string
invited_by: string invited_by: string
invited_email: string invited_email: string
is_pending: boolean
tablo_id: string tablo_id: string
} }
Insert: { Insert: {
created_at?: string
id?: number id?: number
invite_token: string invite_token: string
invited_by: string invited_by: string
invited_email: string invited_email: string
is_pending?: boolean
tablo_id: string tablo_id: string
} }
Update: { Update: {
created_at?: string
id?: number id?: number
invite_token?: string invite_token?: string
invited_by?: string invited_by?: string
invited_email?: string invited_email?: string
is_pending?: boolean
tablo_id?: string tablo_id?: string
} }
Relationships: [ Relationships: [