Interface: SessionInfo
Information about the current authentication session.
Remarks
Tracks when authentication was performed and whether the session is still considered valid based on timeout configuration.
Example
const session: SessionInfo = {
authenticatedAt: Date.now(),
strategyName: 'onprem',
isValid: true,
};
Properties
authenticatedAt
readonlyauthenticatedAt:number
When authentication was performed.
isValid
readonlyisValid:boolean
Whether session is still valid (based on timeout).
strategyName
readonlystrategyName:string
Auth strategy used.