@stream-io/node-sdk 0.7.51 → 0.7.52

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.
@@ -5841,6 +5841,10 @@ export interface EnrichmentOptions {
5841
5841
  * Default: false. When true, includes fetching and enriching own_followings (follows where activity author's feeds follow current user's feeds).
5842
5842
  */
5843
5843
  enrich_own_followings?: boolean;
5844
+ /**
5845
+ * Default: false. When true, includes the top-level flat 'activities' array in responses for aggregated feeds. By default, aggregated feeds only return 'aggregated_activities'.
5846
+ */
5847
+ include_flat_activities?: boolean;
5844
5848
  /**
5845
5849
  * Default: false. When true, includes score_vars in activity responses containing variable values used at ranking time.
5846
5850
  */
@@ -11782,7 +11786,13 @@ export interface QueryReactionsRequest {
11782
11786
  next?: string;
11783
11787
  prev?: string;
11784
11788
  user_id?: string;
11789
+ /**
11790
+ * Array of sort parameters
11791
+ */
11785
11792
  sort?: SortParamRequest[];
11793
+ /**
11794
+ * Filter to apply to the query
11795
+ */
11786
11796
  filter?: Record<string, any>;
11787
11797
  user?: UserRequest;
11788
11798
  }
@@ -11975,11 +11985,11 @@ export interface QueryThreadsRequest {
11975
11985
  reply_limit?: number;
11976
11986
  user_id?: string;
11977
11987
  /**
11978
- * Sort conditions to apply to threads
11988
+ * Array of sort parameters
11979
11989
  */
11980
11990
  sort?: SortParamRequest[];
11981
11991
  /**
11982
- * Filter conditions to apply to threads
11992
+ * Filter to apply to the query
11983
11993
  */
11984
11994
  filter?: Record<string, any>;
11985
11995
  user?: UserRequest;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/node-sdk",
3
- "version": "0.7.51",
3
+ "version": "0.7.52",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
@@ -8358,6 +8358,11 @@ export interface EnrichmentOptions {
8358
8358
  */
8359
8359
  enrich_own_followings?: boolean;
8360
8360
 
8361
+ /**
8362
+ * Default: false. When true, includes the top-level flat 'activities' array in responses for aggregated feeds. By default, aggregated feeds only return 'aggregated_activities'.
8363
+ */
8364
+ include_flat_activities?: boolean;
8365
+
8361
8366
  /**
8362
8367
  * Default: false. When true, includes score_vars in activity responses containing variable values used at ranking time.
8363
8368
  */
@@ -16901,8 +16906,14 @@ export interface QueryReactionsRequest {
16901
16906
 
16902
16907
  user_id?: string;
16903
16908
 
16909
+ /**
16910
+ * Array of sort parameters
16911
+ */
16904
16912
  sort?: SortParamRequest[];
16905
16913
 
16914
+ /**
16915
+ * Filter to apply to the query
16916
+ */
16906
16917
  filter?: Record<string, any>;
16907
16918
 
16908
16919
  user?: UserRequest;
@@ -17163,12 +17174,12 @@ export interface QueryThreadsRequest {
17163
17174
  user_id?: string;
17164
17175
 
17165
17176
  /**
17166
- * Sort conditions to apply to threads
17177
+ * Array of sort parameters
17167
17178
  */
17168
17179
  sort?: SortParamRequest[];
17169
17180
 
17170
17181
  /**
17171
- * Filter conditions to apply to threads
17182
+ * Filter to apply to the query
17172
17183
  */
17173
17184
  filter?: Record<string, any>;
17174
17185