ProjectHealth
type ProjectHealth = {
description?: string | null;
descriptionSummary?: string | null;
isStale: boolean;
projectId?: string | null;
status: "UNKNOWN" | "ON_TRACK" | "AT_RISK" | "CRITICAL" | "EXCELLENT" | "ERROR";
updatedAt?: Date | null;
updateInProgress: boolean;
};
Project health status.