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
2024-10-30 14:33:51 +02:00

49 lines
1.2 KiB
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Insights for the project, including flag data and project health information.
*/
export type PersonalDashboardProjectDetailsSchemaInsights = {
/**
* 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
* @nullable
*/
avgHealthCurrentWindow: number | null;
/**
* The project's average health score over the previous 4-week window
* @minimum 0
* @nullable
*/
avgHealthPastWindow: number | null;
/**
* The project's current health score
* @minimum 0
*/
health: number;
/**
* 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;
};