mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-04 08:01:37 +00:00
218af13dd9
Add authenticated session listing and revocation APIs, track the auth provider on sessions, and expose active session controls in account security settings.
14 lines
305 B
TypeScript
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;
|
|
}
|