export type DeploymentHistoryType = {
    deploymentId: string;
    createdAt: Date;
    endedAt?: Date;
    status: 'queued' | 'in_progress' | 'success' | 'failure';
    subdomain?: string;
    commitSha?: string;
    screenshot?: string;
    screenshotLight?: string;
    screenshotDark?: string;
    author?: {
        name?: string;
        avatarUrl?: string;
    };
};
