diff --git a/supabase/types.ts b/supabase/types.ts index fa5f356..a4447d1 100644 --- a/supabase/types.ts +++ b/supabase/types.ts @@ -13,7 +13,6 @@ export type Database = { Row: { created_at: string id: number - label: string md: string restricted: boolean slug: string @@ -22,7 +21,6 @@ export type Database = { Insert: { created_at?: string id?: number - label?: string md?: string restricted?: boolean slug: string @@ -31,7 +29,6 @@ export type Database = { Update: { created_at?: string id?: number - label?: string md?: string restricted?: boolean slug?: string @@ -39,6 +36,30 @@ export type Database = { } Relationships: [] } + "registration-links": { + Row: { + activated_at: string | null + created_at: string + id: string + "initial-perms": string[] + metadata: Json + } + Insert: { + activated_at?: string | null + created_at?: string + id?: string + "initial-perms"?: string[] + metadata?: Json + } + Update: { + activated_at?: string | null + created_at?: string + id?: string + "initial-perms"?: string[] + metadata?: Json + } + Relationships: [] + } users: { Row: { created_at: string