mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-07 01:16:28 +02:00
27 lines
605 B
TypeScript
27 lines
605 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* The number of changes to the production environment in the last 30, 60 and 90 days
|
|
*/
|
|
export type InstanceAdminStatsSchemaProductionChanges = {
|
|
/**
|
|
* The number of changes in production in the last 30 days
|
|
* @minimum 0
|
|
*/
|
|
last30?: number;
|
|
/**
|
|
* The number of changes in production in the last 60 days
|
|
* @minimum 0
|
|
*/
|
|
last60?: number;
|
|
/**
|
|
* The number of changes in production in the last 90 days
|
|
* @minimum 0
|
|
*/
|
|
last90?: number;
|
|
};
|