From fd8b610dc4317d30110e3b6a90f80e7ea5888bd6 Mon Sep 17 00:00:00 2001 From: Luke <39926192+LukeWasTakenn@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:29:08 +0200 Subject: [PATCH] fix(types): add ownerName to OxAccount type --- types/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.ts b/types/index.ts index 1227619a..a0041b00 100644 --- a/types/index.ts +++ b/types/index.ts @@ -118,6 +118,7 @@ export interface OxAccount { group?: string; type: 'personal' | 'shared' | 'group'; role: OxAccountRoles; + ownerName: string; } export interface DbGroup {