From a882365c56ed3d2f99dc0e9d3f98c5e21acbf037 Mon Sep 17 00:00:00 2001 From: Arthur Belleville Date: Tue, 28 Oct 2025 12:01:15 +0100 Subject: [PATCH] Sync types --- xtablo-expo/lib/database.types.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/xtablo-expo/lib/database.types.ts b/xtablo-expo/lib/database.types.ts index c22bd47..5c4ad28 100644 --- a/xtablo-expo/lib/database.types.ts +++ b/xtablo-expo/lib/database.types.ts @@ -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: [