Sync types
This commit is contained in:
parent
2c2a41112c
commit
a882365c56
1 changed files with 9 additions and 0 deletions
|
|
@ -353,6 +353,7 @@ export type Database = {
|
|||
id: string
|
||||
is_temporary: boolean
|
||||
last_name: string | null
|
||||
last_signed_in: string | null
|
||||
name: string | null
|
||||
short_user_id: string
|
||||
}
|
||||
|
|
@ -363,6 +364,7 @@ export type Database = {
|
|||
id: string
|
||||
is_temporary?: boolean
|
||||
last_name?: string | null
|
||||
last_signed_in?: string | null
|
||||
name?: string | null
|
||||
short_user_id: string
|
||||
}
|
||||
|
|
@ -373,6 +375,7 @@ export type Database = {
|
|||
id?: string
|
||||
is_temporary?: boolean
|
||||
last_name?: string | null
|
||||
last_signed_in?: string | null
|
||||
name?: string | null
|
||||
short_user_id?: string
|
||||
}
|
||||
|
|
@ -471,24 +474,30 @@ export type Database = {
|
|||
}
|
||||
tablo_invites: {
|
||||
Row: {
|
||||
created_at: string
|
||||
id: number
|
||||
invite_token: string
|
||||
invited_by: string
|
||||
invited_email: string
|
||||
is_pending: boolean
|
||||
tablo_id: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
id?: number
|
||||
invite_token: string
|
||||
invited_by: string
|
||||
invited_email: string
|
||||
is_pending?: boolean
|
||||
tablo_id: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
id?: number
|
||||
invite_token?: string
|
||||
invited_by?: string
|
||||
invited_email?: string
|
||||
is_pending?: boolean
|
||||
tablo_id?: string
|
||||
}
|
||||
Relationships: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue