From 5c1a1ce6df480458eb2f40e83876b18b14e41068 Mon Sep 17 00:00:00 2001 From: Tom <144813356+ttalty@users.noreply.github.com> Date: Tue, 23 Sep 2025 10:30:04 -0400 Subject: [PATCH] Just adding the report application type (#16492) --- .../dirt/reports/risk-insights/models/report-models.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bitwarden_license/bit-common/src/dirt/reports/risk-insights/models/report-models.ts b/bitwarden_license/bit-common/src/dirt/reports/risk-insights/models/report-models.ts index 5d0a14ca016..3fe40be7e1f 100644 --- a/bitwarden_license/bit-common/src/dirt/reports/risk-insights/models/report-models.ts +++ b/bitwarden_license/bit-common/src/dirt/reports/risk-insights/models/report-models.ts @@ -107,6 +107,15 @@ export type CriticalSummaryDetails = { totalCriticalApplicationsCount: number; }; +/** + * An entry for an organization application and if it is + * marked as critical + */ +export type OrganizationReportApplication = { + applicationName: string; + isCritical: boolean; +}; + /** * All applications report detail. Application is the cipher * uri. Has the at risk, password, and member information