2024-10-02 13:50:31 +02:00
|
|
|
/**
|
|
|
|
* Generated by Orval
|
|
|
|
* Do not edit manually.
|
|
|
|
* See `gen:api` script in package.json
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insights for the project
|
|
|
|
*/
|
|
|
|
export type PersonalDashboardProjectDetailsSchemaInsights = {
|
|
|
|
/**
|
|
|
|
* The average health score in the current window of the last 4 weeks
|
|
|
|
* @nullable
|
|
|
|
*/
|
|
|
|
avgHealthCurrentWindow: number | null;
|
|
|
|
/**
|
|
|
|
* The average health score in the previous 4 weeks before the current window
|
|
|
|
* @nullable
|
|
|
|
*/
|
|
|
|
avgHealthPastWindow: number | null;
|
2024-10-03 10:21:27 +02:00
|
|
|
totalFlags: number;
|
|
|
|
activeFlags: number;
|
|
|
|
staleFlags: number;
|
|
|
|
potentiallyStaleFlags: number;
|
|
|
|
health: number;
|
2024-10-02 13:50:31 +02:00
|
|
|
};
|