@stream-io/node-sdk 0.7.27 → 0.7.29

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.
@@ -2972,6 +2972,7 @@ export interface EnrichedReaction {
2972
2972
  user?: Data;
2973
2973
  }
2974
2974
  export interface EnrichmentOptions {
2975
+ enrich_own_followings?: boolean;
2975
2976
  skip_activity?: boolean;
2976
2977
  skip_activity_collections?: boolean;
2977
2978
  skip_activity_comments?: boolean;
@@ -2987,7 +2988,6 @@ export interface EnrichmentOptions {
2987
2988
  skip_followers?: boolean;
2988
2989
  skip_following?: boolean;
2989
2990
  skip_own_capabilities?: boolean;
2990
- skip_own_followings?: boolean;
2991
2991
  skip_own_follows?: boolean;
2992
2992
  skip_pins?: boolean;
2993
2993
  }
@@ -6110,6 +6110,18 @@ export interface RankingConfig {
6110
6110
  defaults?: Record<string, any>;
6111
6111
  functions?: Record<string, DecayFunctionConfig>;
6112
6112
  }
6113
+ export interface RawRecordSettings {
6114
+ mode: 'available' | 'disabled' | 'auto-on';
6115
+ }
6116
+ export interface RawRecordingResponse {
6117
+ status: string;
6118
+ }
6119
+ export interface RawRecordingSettingsRequest {
6120
+ mode: 'available' | 'disabled' | 'auto-on';
6121
+ }
6122
+ export interface RawRecordingSettingsResponse {
6123
+ mode: 'available' | 'disabled' | 'auto-on';
6124
+ }
6113
6125
  export interface Reaction {
6114
6126
  created_at: Date;
6115
6127
  message_id: string;
@@ -7304,6 +7316,7 @@ export interface UpdateActivityRequest {
7304
7316
  feeds?: string[];
7305
7317
  filter_tags?: string[];
7306
7318
  interest_tags?: string[];
7319
+ mentioned_user_ids?: string[];
7307
7320
  custom?: Record<string, any>;
7308
7321
  location?: ActivityLocation;
7309
7322
  user?: UserRequest;
@@ -7619,6 +7632,9 @@ export interface UpdateFeedMembersResponse {
7619
7632
  }
7620
7633
  export interface UpdateFeedRequest {
7621
7634
  created_by_id?: string;
7635
+ description?: string;
7636
+ name?: string;
7637
+ filter_tags?: string[];
7622
7638
  custom?: Record<string, any>;
7623
7639
  }
7624
7640
  export interface UpdateFeedResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/node-sdk",
3
- "version": "0.7.27",
3
+ "version": "0.7.29",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
@@ -612,6 +612,7 @@ export class FeedsApi {
612
612
  feeds: request?.feeds,
613
613
  filter_tags: request?.filter_tags,
614
614
  interest_tags: request?.interest_tags,
615
+ mentioned_user_ids: request?.mentioned_user_ids,
615
616
  custom: request?.custom,
616
617
  location: request?.location,
617
618
  user: request?.user,
@@ -1274,6 +1275,9 @@ export class FeedsApi {
1274
1275
  };
1275
1276
  const body = {
1276
1277
  created_by_id: request?.created_by_id,
1278
+ description: request?.description,
1279
+ name: request?.name,
1280
+ filter_tags: request?.filter_tags,
1277
1281
  custom: request?.custom,
1278
1282
  };
1279
1283
 
@@ -5209,6 +5209,8 @@ export interface EnrichedReaction {
5209
5209
  }
5210
5210
 
5211
5211
  export interface EnrichmentOptions {
5212
+ enrich_own_followings?: boolean;
5213
+
5212
5214
  skip_activity?: boolean;
5213
5215
 
5214
5216
  skip_activity_collections?: boolean;
@@ -5239,8 +5241,6 @@ export interface EnrichmentOptions {
5239
5241
 
5240
5242
  skip_own_capabilities?: boolean;
5241
5243
 
5242
- skip_own_followings?: boolean;
5243
-
5244
5244
  skip_own_follows?: boolean;
5245
5245
 
5246
5246
  skip_pins?: boolean;
@@ -10672,6 +10672,22 @@ export interface RankingConfig {
10672
10672
  functions?: Record<string, DecayFunctionConfig>;
10673
10673
  }
10674
10674
 
10675
+ export interface RawRecordSettings {
10676
+ mode: 'available' | 'disabled' | 'auto-on';
10677
+ }
10678
+
10679
+ export interface RawRecordingResponse {
10680
+ status: string;
10681
+ }
10682
+
10683
+ export interface RawRecordingSettingsRequest {
10684
+ mode: 'available' | 'disabled' | 'auto-on';
10685
+ }
10686
+
10687
+ export interface RawRecordingSettingsResponse {
10688
+ mode: 'available' | 'disabled' | 'auto-on';
10689
+ }
10690
+
10675
10691
  export interface Reaction {
10676
10692
  created_at: Date;
10677
10693
 
@@ -12947,6 +12963,8 @@ export interface UpdateActivityRequest {
12947
12963
 
12948
12964
  interest_tags?: string[];
12949
12965
 
12966
+ mentioned_user_ids?: string[];
12967
+
12950
12968
  custom?: Record<string, any>;
12951
12969
 
12952
12970
  location?: ActivityLocation;
@@ -13514,6 +13532,12 @@ export interface UpdateFeedMembersResponse {
13514
13532
  export interface UpdateFeedRequest {
13515
13533
  created_by_id?: string;
13516
13534
 
13535
+ description?: string;
13536
+
13537
+ name?: string;
13538
+
13539
+ filter_tags?: string[];
13540
+
13517
13541
  custom?: Record<string, any>;
13518
13542
  }
13519
13543