mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-18 11:14:57 +02:00
24 lines
656 B
TypeScript
24 lines
656 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Summary of the projects technical debt
|
|
*/
|
|
export type ProjectInsightsSchemaTechnicalDebt = {
|
|
/** 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
|
|
* @minimum 0
|
|
* @maximum 100
|
|
*/
|
|
rating: number;
|
|
/** The number of stale feature flags. */
|
|
staleCount: number;
|
|
};
|