Files
warmbly/web/src/lib/api/models/auth/ActiveSession.ts
T
Matthew Meszaros 218af13dd9 feat: add session management
Add authenticated session listing and revocation APIs, track the auth provider on sessions, and expose active session controls in account security settings.
2026-06-01 05:53:49 +02:00

14 lines
305 B
TypeScript

export default interface ActiveSession {
id: string;
current: boolean;
browser: string;
os: string;
location_city: string;
location_region: string;
location_country: string;
country_code: string;
auth_provider: string;
created_at: Date;
last_active_at: Date;
}