/** * 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; };