export interface AuditEventFilters {
  actor_id?: string;
  actor_role?: 'advisor' | 'client' | 'unknown';
  client_uuid?: string;
  event_name?: string;
  session_id?: string;
  correlation_id?: string;
  startDate?: Date;
  endDate?: Date;
  limit?: number;
  offset?: number;
  rule_version?: string;
}

export interface AhaMetricsQuery {
  startDate?: Date;
  endDate?: Date;
  actor_id?: string;
  rule_version?: string;
}
