@stream-io/node-sdk 0.7.38 → 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;
|
|
@@ -7582,6 +7590,7 @@ export interface UnreadCountsThread {
|
|
|
7582
7590
|
}
|
|
7583
7591
|
export interface UpdateActivityPartialRequest {
|
|
7584
7592
|
handle_mention_notifications?: boolean;
|
|
7593
|
+
run_activity_processors?: boolean;
|
|
7585
7594
|
user_id?: string;
|
|
7586
7595
|
unset?: string[];
|
|
7587
7596
|
set?: Record<string, any>;
|
|
@@ -7596,6 +7605,7 @@ export interface UpdateActivityRequest {
|
|
|
7596
7605
|
handle_mention_notifications?: boolean;
|
|
7597
7606
|
poll_id?: string;
|
|
7598
7607
|
restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
|
|
7608
|
+
run_activity_processors?: boolean;
|
|
7599
7609
|
skip_enrich_url?: boolean;
|
|
7600
7610
|
text?: string;
|
|
7601
7611
|
user_id?: string;
|
package/package.json
CHANGED
|
@@ -581,6 +581,7 @@ export class FeedsApi {
|
|
|
581
581
|
};
|
|
582
582
|
const body = {
|
|
583
583
|
handle_mention_notifications: request?.handle_mention_notifications,
|
|
584
|
+
run_activity_processors: request?.run_activity_processors,
|
|
584
585
|
user_id: request?.user_id,
|
|
585
586
|
unset: request?.unset,
|
|
586
587
|
set: request?.set,
|
|
@@ -614,6 +615,7 @@ export class FeedsApi {
|
|
|
614
615
|
handle_mention_notifications: request?.handle_mention_notifications,
|
|
615
616
|
poll_id: request?.poll_id,
|
|
616
617
|
restrict_replies: request?.restrict_replies,
|
|
618
|
+
run_activity_processors: request?.run_activity_processors,
|
|
617
619
|
skip_enrich_url: request?.skip_enrich_url,
|
|
618
620
|
text: request?.text,
|
|
619
621
|
user_id: request?.user_id,
|
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 {
|
|
@@ -13428,6 +13442,8 @@ export interface UnreadCountsThread {
|
|
|
13428
13442
|
export interface UpdateActivityPartialRequest {
|
|
13429
13443
|
handle_mention_notifications?: boolean;
|
|
13430
13444
|
|
|
13445
|
+
run_activity_processors?: boolean;
|
|
13446
|
+
|
|
13431
13447
|
user_id?: string;
|
|
13432
13448
|
|
|
13433
13449
|
unset?: string[];
|
|
@@ -13452,6 +13468,8 @@ export interface UpdateActivityRequest {
|
|
|
13452
13468
|
|
|
13453
13469
|
restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
|
|
13454
13470
|
|
|
13471
|
+
run_activity_processors?: boolean;
|
|
13472
|
+
|
|
13455
13473
|
skip_enrich_url?: boolean;
|
|
13456
13474
|
|
|
13457
13475
|
text?: string;
|