diff --git a/frontend/src/openapi/models/instanceAdminStatsSchema.ts b/frontend/src/openapi/models/instanceAdminStatsSchema.ts index 644e878983..97f638ebf5 100644 --- a/frontend/src/openapi/models/instanceAdminStatsSchema.ts +++ b/frontend/src/openapi/models/instanceAdminStatsSchema.ts @@ -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 diff --git a/frontend/src/openapi/models/instanceAdminStatsSchemaEdgeInstances.ts b/frontend/src/openapi/models/instanceAdminStatsSchemaEdgeInstances.ts index 38a7e4f064..1c027c9077 100644 --- a/frontend/src/openapi/models/instanceAdminStatsSchemaEdgeInstances.ts +++ b/frontend/src/openapi/models/instanceAdminStatsSchemaEdgeInstances.ts @@ -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; };