@stream-io/node-sdk 0.7.39 → 0.7.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5144,6 +5144,13 @@ export interface NotificationMarkUnreadEvent {
|
|
|
5144
5144
|
channel?: ChannelResponse;
|
|
5145
5145
|
user?: User;
|
|
5146
5146
|
}
|
|
5147
|
+
export interface NotificationParentActivity {
|
|
5148
|
+
id: string;
|
|
5149
|
+
text?: string;
|
|
5150
|
+
type?: string;
|
|
5151
|
+
user_id?: string;
|
|
5152
|
+
attachments?: Attachment[];
|
|
5153
|
+
}
|
|
5147
5154
|
export interface NotificationSettings {
|
|
5148
5155
|
enabled: boolean;
|
|
5149
5156
|
call_live_started: EventNotificationSettings;
|
|
@@ -5168,6 +5175,7 @@ export interface NotificationTarget {
|
|
|
5168
5175
|
user_id?: string;
|
|
5169
5176
|
attachments?: Attachment[];
|
|
5170
5177
|
comment?: NotificationComment;
|
|
5178
|
+
parent_activity?: NotificationParentActivity;
|
|
5171
5179
|
}
|
|
5172
5180
|
export interface NotificationTrigger {
|
|
5173
5181
|
text: string;
|
package/package.json
CHANGED
package/src/gen/models/index.ts
CHANGED
|
@@ -8988,6 +8988,18 @@ export interface NotificationMarkUnreadEvent {
|
|
|
8988
8988
|
user?: User;
|
|
8989
8989
|
}
|
|
8990
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
|
+
|
|
8991
9003
|
export interface NotificationSettings {
|
|
8992
9004
|
enabled: boolean;
|
|
8993
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 {
|