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/projectStatusSchemaLifecycleSummaryArchived.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

16 lines
515 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* Information on archived flags in this project.
*/
export type ProjectStatusSchemaLifecycleSummaryArchived = {
/** The number of archived feature flags in this project. If a flag is deleted permanently, it will no longer be counted as part of this statistic. */
currentFlags: number;
/** The number of flags in this project that have been changed over the last 30 days. */
last30Days: number;
};