From 4959a5c0444e5486bf094d389b634699a40048d2 Mon Sep 17 00:00:00 2001 From: Mattias Lagergren Date: Tue, 24 Sep 2024 14:16:54 +0200 Subject: [PATCH] Fix server information license typing issue --- source/types.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/types.ts b/source/types.ts index 2cacad7..6572efc 100644 --- a/source/types.ts +++ b/source/types.ts @@ -81,7 +81,12 @@ export interface ServerInformation { custom_widget?: Data; default_colors?: string[]; is_nested_subqueries_enabled?: boolean; - license?: string[]; + license?: { + feature_id: string; + quantity: number; + renewal_date: string; + date: string; + }[]; preferred_language?: string; week_startday?: number; workday_length?: number;