import { GeneratedSchema } from './../foundations/index.js'; /** * The last known geo coordinates per user for geo-velocity checks. * * @remarks This is a type for database creation. * @see {@link UserGeoLocation} for the original type. */ export type CreateUserGeoLocation = { tenantId?: string; userId: string; latitude?: number | null; longitude?: number | null; updatedAt?: number; }; /** The last known geo coordinates per user for geo-velocity checks. */ export type UserGeoLocation = { tenantId: string; userId: string; latitude: number | null; longitude: number | null; updatedAt: number; }; export type UserGeoLocationKeys = 'tenantId' | 'userId' | 'latitude' | 'longitude' | 'updatedAt'; export declare const UserGeoLocations: GeneratedSchema;