Files
2026-07-13 13:32:57 +08:00

12 lines
397 B
TypeScript

export type AuthUser = {
userId: string;
// Present only when the session was established via SSO. Carries the
// minimum the periodic re-validation hook needs to ask the IdP whether
// the session is still valid. Signed into the session cookie, so it's
// tamper-proof. Absent ⇒ non-SSO session ⇒ never revalidated.
sso?: {
idpOrgId: string;
connectionId: string;
};
};