From 121bde0e8bf365caa8757b67cad9d3925dc4af39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=98Swetha?= Date: Tue, 15 Oct 2024 14:34:27 +0200 Subject: [PATCH 1/2] chore: Add first_name and last_name to session information --- source/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/types.ts b/source/types.ts index 6572efc..e1ecd12 100644 --- a/source/types.ts +++ b/source/types.ts @@ -103,6 +103,8 @@ export interface ServerInformation { is_global_access_key?: boolean; restricted_user?: boolean; username?: string; + first_name?: string; + last_name?: string; }; product?: Data; version: string; From 83cd503732f5be8328bf93557de75c43f2a59b77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=98Swetha?= Date: Wed, 16 Oct 2024 10:48:16 +0200 Subject: [PATCH 2/2] thumbnail types --- source/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/types.ts b/source/types.ts index e1ecd12..4f2dac0 100644 --- a/source/types.ts +++ b/source/types.ts @@ -105,6 +105,8 @@ export interface ServerInformation { username?: string; first_name?: string; last_name?: string; + thumbnail_id?: string; + thumbnail_url?: string; }; product?: Data; version: string;