1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-18 11:14:57 +02:00
unleash.unleash/frontend/src/openapi/models/projectInsightsSchemaHealth.ts
Tymoteusz Czech d5acbea711
chore: update frontend schema - technicalDebt (#10098)
generated with `api:gen`
2025-06-10 14:15:09 +02:00

21 lines
634 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Use `technicalDebt` instead. Summary of the project health
* @deprecated
*/
export type ProjectInsightsSchemaHealth = {
/** The number of active feature flags. */
activeCount: number;
/** The number of potentially stale feature flags. */
potentiallyStaleCount: number;
/** An indicator of the [project's technical debt](https://docs.getunleash.io/reference/technical-debt#project-status) on a scale from 0 to 100 */
rating: number;
/** The number of stale feature flags. */
staleCount: number;
};