@stream-io/node-sdk 0.7.37 → 0.7.39

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.
@@ -7582,6 +7582,7 @@ export interface UnreadCountsThread {
7582
7582
  }
7583
7583
  export interface UpdateActivityPartialRequest {
7584
7584
  handle_mention_notifications?: boolean;
7585
+ run_activity_processors?: boolean;
7585
7586
  user_id?: string;
7586
7587
  unset?: string[];
7587
7588
  set?: Record<string, any>;
@@ -7596,6 +7597,7 @@ export interface UpdateActivityRequest {
7596
7597
  handle_mention_notifications?: boolean;
7597
7598
  poll_id?: string;
7598
7599
  restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
7600
+ run_activity_processors?: boolean;
7599
7601
  skip_enrich_url?: boolean;
7600
7602
  text?: string;
7601
7603
  user_id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/node-sdk",
3
- "version": "0.7.37",
3
+ "version": "0.7.39",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
@@ -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,
@@ -660,7 +662,7 @@ export class FeedsApi {
660
662
  const response = await this.apiClient.sendRequest<
661
663
  StreamResponse<RestoreActivityResponse>
662
664
  >(
663
- 'PUT',
665
+ 'POST',
664
666
  '/api/v2/feeds/activities/{id}/restore',
665
667
  pathParams,
666
668
  undefined,
@@ -13428,6 +13428,8 @@ export interface UnreadCountsThread {
13428
13428
  export interface UpdateActivityPartialRequest {
13429
13429
  handle_mention_notifications?: boolean;
13430
13430
 
13431
+ run_activity_processors?: boolean;
13432
+
13431
13433
  user_id?: string;
13432
13434
 
13433
13435
  unset?: string[];
@@ -13452,6 +13454,8 @@ export interface UpdateActivityRequest {
13452
13454
 
13453
13455
  restrict_replies?: 'everyone' | 'people_i_follow' | 'nobody';
13454
13456
 
13457
+ run_activity_processors?: boolean;
13458
+
13455
13459
  skip_enrich_url?: boolean;
13456
13460
 
13457
13461
  text?: string;