Skip to content

Commit ac3dd69

Browse files
authored
feat: Add parent_activity to activity for NotificationTarget (#249)
1 parent 4363280 commit ac3dd69

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/gen/models/index.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8988,6 +8988,18 @@ export interface NotificationMarkUnreadEvent {
89888988
user?: User;
89898989
}
89908990

8991+
export interface NotificationParentActivity {
8992+
id: string;
8993+
8994+
text?: string;
8995+
8996+
type?: string;
8997+
8998+
user_id?: string;
8999+
9000+
attachments?: Attachment[];
9001+
}
9002+
89919003
export interface NotificationSettings {
89929004
enabled: boolean;
89939005

@@ -9030,6 +9042,8 @@ export interface NotificationTarget {
90309042
attachments?: Attachment[];
90319043

90329044
comment?: NotificationComment;
9045+
9046+
parent_activity?: NotificationParentActivity;
90339047
}
90349048

90359049
export interface NotificationTrigger {

0 commit comments

Comments
 (0)