1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/frontend/src/openapi/models/personalDashboardProjectDetailsSchemaInsights.ts

27 lines
630 B
TypeScript
Raw Normal View History

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;
totalFlags: number;
activeFlags: number;
staleFlags: number;
potentiallyStaleFlags: number;
health: number;
2024-10-02 13:50:31 +02:00
};