export type Database = { public: { Tables: { users: { Row: { id: string; email: string; onboarding_complete: boolean; created_at: string; }; }; user_profiles: { Row: { id: string; display_name: string; avatar_url: string | null; bio: string | null; created_at: string; updated_at: string; }; }; roles: { Row: { id: string; name: string; description: string | null; }; }; user_roles: { Row: { user_id: string; role_id: string; }; }; }; }; }; //# sourceMappingURL=database.types.d.ts.map