refactor(geoip): reconcile geoip system (#31)

This commit is contained in:
hampus-fluxer
2026-01-05 23:19:05 +01:00
committed by GitHub
parent 5d047b2856
commit 2e007b5076
86 changed files with 982 additions and 2648 deletions

View File

@@ -35,10 +35,8 @@ export interface AuthSessionRow {
created_at: Date;
approx_last_used_at: Date;
client_ip: string;
client_os: string;
client_platform: string;
client_country: Nullish<string>;
client_location: Nullish<string>;
client_user_agent: Nullish<string>;
client_is_desktop: Nullish<boolean>;
version: number;
}
@@ -142,10 +140,8 @@ export const AUTH_SESSION_COLUMNS = [
'created_at',
'approx_last_used_at',
'client_ip',
'client_os',
'client_platform',
'client_country',
'client_location',
'client_user_agent',
'client_is_desktop',
'version',
] as const satisfies ReadonlyArray<keyof AuthSessionRow>;