From 38ab56ae15079f9914bb920589cc455351bf989b Mon Sep 17 00:00:00 2001 From: Jana Naumoska Date: Tue, 3 Feb 2026 12:31:15 +0100 Subject: [PATCH] Add parent_activity to activity for NotificationTarget --- src/gen/models/index.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index dd77e1a..89d76fb 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -8988,6 +8988,18 @@ export interface NotificationMarkUnreadEvent { user?: User; } +export interface NotificationParentActivity { + id: string; + + text?: string; + + type?: string; + + user_id?: string; + + attachments?: Attachment[]; +} + export interface NotificationSettings { enabled: boolean; @@ -9030,6 +9042,8 @@ export interface NotificationTarget { attachments?: Attachment[]; comment?: NotificationComment; + + parent_activity?: NotificationParentActivity; } export interface NotificationTrigger {