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

49 lines
1.2 KiB
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
*/
/**
2024-10-30 13:33:51 +01:00
* Insights for the project, including flag data and project health information.
2024-10-02 13:50:31 +02:00
*/
export type PersonalDashboardProjectDetailsSchemaInsights = {
/**
2024-10-30 13:33:51 +01:00
* The number of active flags that are not stale or potentially stale
* @minimum 0
*/
activeFlags: number;
/**
* The project's average health score over the last 4 weeks
* @minimum 0
2024-10-02 13:50:31 +02:00
* @nullable
*/
avgHealthCurrentWindow: number | null;
/**
2024-10-30 13:33:51 +01:00
* The project's average health score over the previous 4-week window
* @minimum 0
2024-10-02 13:50:31 +02:00
* @nullable
*/
avgHealthPastWindow: number | null;
2024-10-30 13:33:51 +01:00
/**
* The project's current health score
* @minimum 0
*/
health: number;
2024-10-30 13:33:51 +01:00
/**
* The number of potentially stale flags as calculated by Unleash
* @minimum 0
*/
potentiallyStaleFlags: number;
/**
* The current number of flags that have been manually marked as stale
* @minimum 0
*/
staleFlags: number;
/**
* The current number of non-archived flags
* @minimum 0
*/
totalFlags: number;
2024-10-02 13:50:31 +02:00
};