/** * BoundingBox type describes the geographical bounding box coordinates. */ export type BoundingBox = { eastLong: number; // Eastern longitude maxLat: number; // Maximum (Northernmost) latitude minLat: number; // Minimum (Southernmost) latitude westLong: number; // Western longitude }; /** * Settings type encompasses user-specific configuration details. */ export type Settings = { id: number; // Only one entry using MASTER_SETTINGS_KEY activeDid?: string; // Active Decentralized ID apiServer?: string; // API server URL firstName?: string; // User's first name lastName?: string; // User's last name lastViewedClaimId?: string; // Last viewed claim ID lastNotifiedClaimId?: string; // Last notified claim ID isRegistered?: boolean; webPushServer?: string; // Web Push server URL // Array of named search boxes defined by bounding boxes searchBoxes?: Array<{ name: string; bbox: BoundingBox; }>; showContactGivesInline?: boolean; // Display contact inline or not vapid?: string; // VAPID (Voluntary Application Server Identification) field for web push reminderTime?: number; // Time in milliseconds since UNIX epoch for reminders reminderOn?: boolean; // Toggle to enable or disable reminders }; /** * Schema for the Settings table in the database. */ export const SettingsSchema = { settings: "id", }; /** * Constants. */ export const MASTER_SETTINGS_KEY = 1;