From d057703b2f0d39f4c79ea4a09b516e6da8f037df Mon Sep 17 00:00:00 2001 From: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com> Date: Fri, 1 Mar 2024 10:45:04 +0100 Subject: [PATCH] update openapi: add users to insights (#6401) frontend types update --- .../models/executiveSummarySchemaProjectFlagTrendsItem.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/openapi/models/executiveSummarySchemaProjectFlagTrendsItem.ts b/frontend/src/openapi/models/executiveSummarySchemaProjectFlagTrendsItem.ts index 8a8e0016c3..9ce5e493b4 100644 --- a/frontend/src/openapi/models/executiveSummarySchemaProjectFlagTrendsItem.ts +++ b/frontend/src/openapi/models/executiveSummarySchemaProjectFlagTrendsItem.ts @@ -21,6 +21,8 @@ export type ExecutiveSummarySchemaProjectFlagTrendsItem = { timeToProduction?: number; /** The number of all flags on a particular day */ total: number; + /** The number of users who have access to the project */ + users?: number; /** Year and week in a given year for which the stats were calculated */ week: string; };