Skip to main content

WorkspaceInsights

type WorkspaceInsights = {
folderId: string | null;
projectInsights: {
health: | {
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;
}
| null;
progress: | {
activeCount: number;
completedCount: number;
progressPercent: number;
projectId: string;
}
| null;
projectId: string;
}[];
};

Workspace insights grouped by folder.

Type Declaration

NameType
folderIdstring | null
projectInsights{ health: | { 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; } | null; progress: | { activeCount: number; completedCount: number; progressPercent: number; projectId: string; } | null; projectId: string; }[]