1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-04 11:17:02 +02:00
unleash.unleash/frontend/src/openapi/models/projectStatusSchemaLifecycleSummaryCompleted.ts
Thomas Heartman 24a30e5ec3
Update orval for project status lifecycle (#8716)
Update schema and orval for project status to add lifecycle information
2024-11-12 09:28:27 +00:00

19 lines
552 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Statistics on feature flags in a given stage in this project.
*/
export type ProjectStatusSchemaLifecycleSummaryCompleted = {
/**
* The average number of days a feature flag remains in a stage in this project. Will be null if Unleash doesn't have any data for this stage yet.
* @nullable
*/
averageDays: number | null;
/** The number of feature flags currently in a stage in this project. */
currentFlags: number;
};