1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-02 01:17:58 +02:00
unleash.unleash/frontend/src/openapi/models/projectInsightsSchema.ts

27 lines
1.1 KiB
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { FeatureTypeCountSchema } from './featureTypeCountSchema';
import type { ProjectInsightsSchemaHealth } from './projectInsightsSchemaHealth';
import type { ProjectDoraMetricsSchema } from './projectDoraMetricsSchema';
import type { ProjectInsightsSchemaMembers } from './projectInsightsSchemaMembers';
import type { ProjectStatsSchema } from './projectStatsSchema';
/**
* A high-level overview of a project insights. It contains information such as project statistics, overall health, types of flags, members overview, change requests overview.
*/
export interface ProjectInsightsSchema {
/** The number of features of each type */
featureTypeCounts: FeatureTypeCountSchema[];
/** Health summary of the project */
health: ProjectInsightsSchemaHealth;
/** Lead time (DORA) metrics */
leadTime: ProjectDoraMetricsSchema;
/** Active/inactive users summary */
members: ProjectInsightsSchemaMembers;
/** Project statistics */
stats: ProjectStatsSchema;
}