1
0
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:
Nuno Góis 2025-10-22 10:40:35 +01:00
parent a4cc1d8daa
commit 8d07f89193
No known key found for this signature in database
GPG Key ID: 71ECC689F1091765
2 changed files with 6 additions and 11 deletions

View File

@ -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

View File

@ -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;
};