Skip to main content

ProjectHealth

type ProjectHealth = {
description?: string | null;
descriptionSummary?: string | null;
isStale: boolean;
projectId?: string | null;
status: "UNKNOWN" | "ON_TRACK" | "AT_RISK" | "CRITICAL" | "EXCELLENT" | "ERROR";
taskRecommendations?: | {
recommendation: string;
taskId: string;
}[]
| null;
updatedAt?: string | null;
updateInProgress: boolean;
};

Project health status and recommendations.

Type Declaration

NameType
description?string | null
descriptionSummary?string | null
isStaleboolean
projectId?string | null
status"UNKNOWN" | "ON_TRACK" | "AT_RISK" | "CRITICAL" | "EXCELLENT" | "ERROR"
taskRecommendations?| { recommendation: string; taskId: string; }[] | null
updatedAt?string | null
updateInProgressboolean