We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4363280 commit ac3dd69Copy full SHA for ac3dd69
src/gen/models/index.ts
@@ -8988,6 +8988,18 @@ export interface NotificationMarkUnreadEvent {
8988
user?: User;
8989
}
8990
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
9003
export interface NotificationSettings {
9004
enabled: boolean;
9005
@@ -9030,6 +9042,8 @@ export interface NotificationTarget {
9030
9042
attachments?: Attachment[];
9031
9043
9032
9044
comment?: NotificationComment;
9045
9046
+ parent_activity?: NotificationParentActivity;
9033
9047
9034
9048
9035
9049
export interface NotificationTrigger {
0 commit comments