mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
chore: update generated schemas
This commit is contained in:
parent
a4cc1d8daa
commit
8d07f89193
@ -25,7 +25,7 @@ export interface InstanceAdminStatsSchema {
|
||||
* @minimum 0
|
||||
*/
|
||||
contextFields?: number;
|
||||
/** The billable number of edge instances in the last 30, 60 and 90 days */
|
||||
/** The rounded up average number of edge instances in the last month and month before last */
|
||||
edgeInstances?: InstanceAdminStatsSchemaEdgeInstances;
|
||||
/**
|
||||
* The number of environments defined in this instance
|
||||
|
||||
@ -5,22 +5,17 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* The billable number of edge instances in the last 30, 60 and 90 days
|
||||
* The rounded up average number of edge instances in the last month and month before last
|
||||
*/
|
||||
export type InstanceAdminStatsSchemaEdgeInstances = {
|
||||
/**
|
||||
* The billable number of edge instances in the last 30 days
|
||||
* The rounded up average number of edge instances in the last month
|
||||
* @minimum 0
|
||||
*/
|
||||
last30?: number;
|
||||
lastMonth?: number;
|
||||
/**
|
||||
* The billable number of edge instances in the last 60 days
|
||||
* The rounded up average number of edge instances in the month before last
|
||||
* @minimum 0
|
||||
*/
|
||||
last60?: number;
|
||||
/**
|
||||
* The billable number of edge instances in the last 90 days
|
||||
* @minimum 0
|
||||
*/
|
||||
last90?: number;
|
||||
monthBeforeLast?: number;
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user