@stream-io/feeds-client 0.3.40 → 0.3.42

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.
@@ -724,6 +724,7 @@ export class FeedsApi {
724
724
  };
725
725
  const body = {
726
726
  handle_mention_notifications: request?.handle_mention_notifications,
727
+ run_activity_processors: request?.run_activity_processors,
727
728
  unset: request?.unset,
728
729
  set: request?.set,
729
730
  };
@@ -755,6 +756,7 @@ export class FeedsApi {
755
756
  handle_mention_notifications: request?.handle_mention_notifications,
756
757
  poll_id: request?.poll_id,
757
758
  restrict_replies: request?.restrict_replies,
759
+ run_activity_processors: request?.run_activity_processors,
758
760
  skip_enrich_url: request?.skip_enrich_url,
759
761
  text: request?.text,
760
762
  visibility: request?.visibility,
@@ -4078,6 +4078,18 @@ export interface NotificationFeedUpdatedEvent {
4078
4078
  user?: UserResponseCommonFields;
4079
4079
  }
4080
4080
 
4081
+ export interface NotificationParentActivity {
4082
+ id: string;
4083
+
4084
+ text?: string;
4085
+
4086
+ type?: string;
4087
+
4088
+ user_id?: string;
4089
+
4090
+ attachments?: Attachment[];
4091
+ }
4092
+
4081
4093
  export interface NotificationStatusResponse {
4082
4094
  unread: number;
4083
4095
 
@@ -4106,6 +4118,8 @@ export interface NotificationTarget {
4106
4118
  attachments?: Attachment[];
4107
4119
 
4108
4120
  comment?: NotificationComment;
4121
+
4122
+ parent_activity?: NotificationParentActivity;
4109
4123
  }
4110
4124
 
4111
4125
  export interface NotificationTrigger {
@@ -5759,6 +5773,8 @@ export interface UnpinActivityResponse {
5759
5773
  export interface UpdateActivityPartialRequest {
5760
5774
  handle_mention_notifications?: boolean;
5761
5775
 
5776
+ run_activity_processors?: boolean;
5777
+
5762
5778
  unset?: string[];
5763
5779
 
5764
5780
  set?: Record<string, any>;
@@ -5779,6 +5795,8 @@ export interface UpdateActivityRequest {
5779
5795
 
5780
5796
  restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
5781
5797
 
5798
+ run_activity_processors?: boolean;
5799
+
5782
5800
  skip_enrich_url?: boolean;
5783
5801
 
5784
5802
  text?: string;