export type me_MeResponse = { /** * Email is the authenticated user's email address. */ email?: string; /** * FamilyName is the authenticated user's last (family) name. */ familyName?: string; /** * GivenName is the authenticated user's first (given) name. */ givenName?: string; /** * ID is the unique identifier of the authenticated user. */ id?: string; };