mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-18 11:14:57 +02:00
21 lines
634 B
TypeScript
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;
|
|
};
|