export interface AuditLogEntry { id: string; ts: string; actorId: string; action: string; target?: string; status: 'ok' | 'error'; message?: string; meta?: Record; }