From 8d07f89193465174c5e1967633b79f74269c0c84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20G=C3=B3is?= Date: Wed, 22 Oct 2025 10:40:35 +0100 Subject: [PATCH] chore: update generated schemas --- .../openapi/models/instanceAdminStatsSchema.ts | 2 +- .../instanceAdminStatsSchemaEdgeInstances.ts | 15 +++++---------- 2 files changed, 6 insertions(+), 11 deletions(-) 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; };