/** * Request for testing email configuration */ export interface EmailTesterRequest { target_email: string; [key: string]: string | number | boolean | string[] | null | undefined; } /** * Response from email testing endpoint */ export interface EmailTesterResponse { succeeded: boolean; error_stack?: string | null; error_type?: string | null; error?: string | null; } /** * Full health check response */ export interface FullHealthCheck { passing: boolean; checks: { [key: string]: string; }; celery_queue_size: number; celery_export_queue_size: number; }