/** * ActiveIdentity type describes the active identity selection. * This replaces the activeDid field in the settings table for better * database architecture and data integrity. * * @author Matthew Raymer * @since 2025-08-29 */ export interface ActiveIdentity { id: number; activeDid: string; lastUpdated: string; }