/** * Stable presentation model for a signed-in user. * * Components must consume this shape rather than raw Athena Auth / BAUI user * payloads (no DB column names, provider fields, or session tokens). */ export interface AuthUserView { email: string; emailVerified: boolean; id: string; imageUrl: string | null; name: string | null; }